blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2 values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80 values | src_encoding stringclasses 28 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 8 9.86M | extension stringclasses 52 values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fce2c9977b454eccfd448c56f415fd476aaa2eb2 | 8bacf3fc46cfb298264ba775c6d9716e5ca0c673 | /ass4/section3.cpp | bf0cf5b5f0d9b1c953dbbd026a99abff0de09491 | [] | no_license | jaconstantin/CppMITLab | f495d4475386e897c7c68d8a432a6f4f171ced33 | a6f5ed1006bd33e95af282432743121eb0b8cc34 | refs/heads/master | 2021-01-12T18:14:29.156312 | 2016-10-19T23:10:09 | 2016-10-19T23:10:09 | 71,347,659 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 607 | cpp | #include <iostream>
#include "geometry.h"
//include geometry.h for this casting exercise
//remeber to define an int poly_n, which is the static int...
//Problem 3 Casting
using namespace std;
int Polygon::poly_n;
int main(){
Rectangle rec2(10,20,30,40);
int x=10;
float y=0.02;
cout << static_cast<float>(x) + y;
Rectangle *shape = &rec2;
//static_cast<Triangle*>(shape); //does not compile, since this is not a valid type casting, not equivalent
dynamic_cast<Triangle*>(shape); //note, dyanmic cast arguments must be both pointers...
return 0;
}
| [
"oteph113@gmail.com"
] | oteph113@gmail.com |
0f9ffb4297a2cebfa3118c2b8d9378a50f7ded49 | c8208aafc1bb9f699c24a7440e575bc5113f2e40 | /src/clsPresentacion.cpp | 252a1eb5f019e6c011818cae7c92047e38553d3e | [] | no_license | femansilla/PenalesSalvajes | d45c9a9dbb868743c55cbeb4f2f7a907f2adabc5 | 16bbe1f20cd6d99fd673660d7183d8c896b0ab68 | refs/heads/master | 2020-03-19T15:19:42.156965 | 2018-06-23T23:53:50 | 2018-06-23T23:53:50 | 136,666,581 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,203 | cpp | #include "clsPresentacion.h"
int clsPresentacion::init(clsScreen *scr, clsEvent *ev)
{
error.set(0);
screen = scr;
event = ev;
error.set(fondo.init(screen, event));
if (error.get()) return error.get();
error.set(continuar.init(screen, event));
if (error.get()) return error.get();
error.set(jugar.init(screen, event));
if (error.get()) return error.get();
error.set(ayuda.init(screen, event));
if (error.get()) return error.get();
error.set(boton_salir.init(screen, event));
if (error.get()) return error.get();
error.set(juego.init(screen, event));
if (error.get()) return error.get();
return error.get();
}
int clsPresentacion::run()
{
error.set(0);
screen->clean(BLACK); //Limpio la pantalla
fondo.PantallaPrincipal();
continuar.setButton(14);
error.set(continuar.setPath());
if (error.get()) return error.get();
continuar.mostrar(screen->getHeight()/2, 150);
jugar.setButton(10);
error.set(jugar.setPath());
if (error.get()) return error.get();
jugar.mostrar((screen->getHeight()/2), 270);
ayuda.setButton(15);
error.set(ayuda.setPath());
if (error.get()) return error.get();
ayuda.mostrar((screen->getHeight()/2), 390);
boton_salir.setButton(8);
error.set(boton_salir.setPath());
if (error.get()) return error.get();
boton_salir.mostrar((screen->getHeight()/2), 510);
screen->refresh();
while(true) //Ciclo del programa
{
if(event->wasEvent()) //Verifico si hay evento
{
if(event->getEventType() == MOUSE_DOWN) //Verifico si hay evento de teclado
{
mouseCommand(event->getKey());
}
}
}
return error.get();
}
int clsPresentacion::mouseCommand(Uint16 key){
error.set(0);
if(continuar.pressed()){
cout << "clic continuar";
}
if(jugar.pressed()){
error.set(juego.run());
if (error.get()) return error.get();
}
if(ayuda.pressed()){
cout << "clic ayuda";
}
if(boton_salir.pressed()){
cout << "clic salir";
exit(0);
}
return error.get();
}
| [
"32165585+femansilla@users.noreply.github.com"
] | 32165585+femansilla@users.noreply.github.com |
b37c1f908e8a864d7f94325e663a9f6b04f942a9 | 5f4fac1e15662986c0f9fcbdabfa8e42c04e9093 | /BBW_LIBIGL/igl/sort.cpp | dedee6f1a5b1bbf2cc533e1ea9a3ff4d620089b5 | [] | no_license | azer89/BBW | 7f76a8b9fdba01bc6a9628041f9e3cac5c8c9c1a | bbd9b757916027e1a8d1efc131663f3092a217e3 | refs/heads/master | 2021-01-10T13:22:01.123270 | 2016-03-29T10:31:53 | 2016-03-29T10:31:53 | 54,906,679 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,797 | cpp | // This file is part of libigl, a simple c++ geometry processing library.
//
// Copyright (C) 2013 Alec Jacobson <alecjacobson@gmail.com>
//
// This Source Code Form is subject to the terms of the Mozilla Public License
// v. 2.0. If a copy of the MPL was not distributed with this file, You can
// obtain one at http://mozilla.org/MPL/2.0/.
#include "sort.h"
#include "SortableRow.h"
#include "reorder.h"
#include "IndexComparison.h"
#include "colon.h"
#include <cassert>
#include <algorithm>
#include <iostream>
template <typename DerivedX, typename DerivedIX>
IGL_INLINE void igl::sort(
const Eigen::PlainObjectBase<DerivedX>& X,
const int dim,
const bool ascending,
Eigen::PlainObjectBase<DerivedX>& Y,
Eigen::PlainObjectBase<DerivedIX>& IX)
{
// get number of rows (or columns)
int num_inner = (dim == 1 ? X.rows() : X.cols() );
// Special case for swapping
if(num_inner == 2)
{
return igl::sort2(X,dim,ascending,Y,IX);
}
using namespace Eigen;
// get number of columns (or rows)
int num_outer = (dim == 1 ? X.cols() : X.rows() );
// dim must be 2 or 1
assert(dim == 1 || dim == 2);
// Resize output
Y.resize(X.rows(),X.cols());
IX.resize(X.rows(),X.cols());
// idea is to process each column (or row) as a std vector
// loop over columns (or rows)
for(int i = 0; i<num_outer;i++)
{
// Unsorted index map for this column (or row)
std::vector<size_t> index_map(num_inner);
std::vector<double> data(num_inner);
for(int j = 0;j<num_inner;j++)
{
if(dim == 1)
{
data[j] = (double) X(j,i);
}else
{
data[j] = (double) X(i,j);
}
}
// sort this column (or row)
igl::sort( data, ascending, data, index_map);
// Copy into Y and IX
for(int j = 0;j<num_inner;j++)
{
if(dim == 1)
{
Y(j,i) = data[j];
IX(j,i) = index_map[j];
}else
{
Y(i,j) = data[j];
IX(i,j) = index_map[j];
}
}
}
}
template <typename DerivedX, typename DerivedIX>
IGL_INLINE void igl::sort_new(
const Eigen::PlainObjectBase<DerivedX>& X,
const int dim,
const bool ascending,
Eigen::PlainObjectBase<DerivedX>& Y,
Eigen::PlainObjectBase<DerivedIX>& IX)
{
// get number of rows (or columns)
int num_inner = (dim == 1 ? X.rows() : X.cols() );
// Special case for swapping
if(num_inner == 2)
{
return igl::sort2(X,dim,ascending,Y,IX);
}
using namespace Eigen;
// get number of columns (or rows)
int num_outer = (dim == 1 ? X.cols() : X.rows() );
// dim must be 2 or 1
assert(dim == 1 || dim == 2);
// Resize output
Y.resize(X.rows(),X.cols());
IX.resize(X.rows(),X.cols());
// idea is to process each column (or row) as a std vector
// loop over columns (or rows)
for(int i = 0; i<num_outer;i++)
{
VectorXi ix;
colon(0,num_inner-1,ix);
// Sort the index map, using unsorted for comparison
if(dim == 1)
{
std::sort(
ix.data(),
ix.data()+ix.size(),
igl::IndexVectorLessThan<const typename DerivedX::ConstColXpr >(X.col(i)));
}else
{
std::sort(
ix.data(),
ix.data()+ix.size(),
igl::IndexVectorLessThan<const typename DerivedX::ConstRowXpr >(X.row(i)));
}
// if not ascending then reverse
if(!ascending)
{
std::reverse(ix.data(),ix.data()+ix.size());
}
for(int j = 0;j<num_inner;j++)
{
if(dim == 1)
{
Y(j,i) = X(ix[j],i);
IX(j,i) = ix[j];
}else
{
Y(i,j) = X(i,ix[j]);
IX(i,j) = ix[j];
}
}
}
}
template <typename DerivedX, typename DerivedIX>
IGL_INLINE void igl::sort2(
const Eigen::PlainObjectBase<DerivedX>& X,
const int dim,
const bool ascending,
Eigen::PlainObjectBase<DerivedX>& Y,
Eigen::PlainObjectBase<DerivedIX>& IX)
{
using namespace Eigen;
using namespace std;
Y = X;
// get number of columns (or rows)
int num_outer = (dim == 1 ? X.cols() : X.rows() );
// get number of rows (or columns)
int num_inner = (dim == 1 ? X.rows() : X.cols() );
assert(num_inner == 2);(void)num_inner;
typedef typename Eigen::PlainObjectBase<DerivedX>::Scalar Scalar;
typedef typename Eigen::PlainObjectBase<DerivedIX>::Scalar Index;
IX.resize(X.rows(),X.cols());
if(dim==1)
{
IX.row(0).setConstant(0);// = Eigen::PlainObjectBase<DerivedIX>::Zero(1,IX.cols());
IX.row(1).setConstant(1);// = Eigen::PlainObjectBase<DerivedIX>::Ones (1,IX.cols());
}else
{
IX.col(0).setConstant(0);// = Eigen::PlainObjectBase<DerivedIX>::Zero(IX.rows(),1);
IX.col(1).setConstant(1);// = Eigen::PlainObjectBase<DerivedIX>::Ones (IX.rows(),1);
}
// loop over columns (or rows)
for(int i = 0;i<num_outer;i++)
{
Scalar & a = (dim==1 ? Y(0,i) : Y(i,0));
Scalar & b = (dim==1 ? Y(1,i) : Y(i,1));
Index & ai = (dim==1 ? IX(0,i) : IX(i,0));
Index & bi = (dim==1 ? IX(1,i) : IX(i,1));
if((ascending && a>b) || (!ascending && a<b))
{
swap(a,b);
swap(ai,bi);
}
}
}
template <class T>
IGL_INLINE void igl::sort(
const std::vector<T> & unsorted,
const bool ascending,
std::vector<T> & sorted,
std::vector<size_t> & index_map)
{
// Original unsorted index map
index_map.resize(unsorted.size());
for(size_t i=0;i<unsorted.size();i++)
{
index_map[i] = i;
}
// Sort the index map, using unsorted for comparison
std::sort(
index_map.begin(),
index_map.end(),
igl::IndexLessThan<const std::vector<T>& >(unsorted));
// if not ascending then reverse
if(!ascending)
{
std::reverse(index_map.begin(),index_map.end());
}
// make space for output without clobbering
sorted.resize(unsorted.size());
// reorder unsorted into sorted using index map
igl::reorder(unsorted,index_map,sorted);
}
#ifndef IGL_HEADER_ONLY
// Explicit template specialization
// generated by autoexplicit.sh
template void igl::sort<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, int, bool, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&);
template void igl::sort<Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, int, bool, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&);
template void igl::sort<SortableRow<Eigen::Matrix<int, -1, 1, 0, -1, 1> > >(std::vector<SortableRow<Eigen::Matrix<int, -1, 1, 0, -1, 1> >, std::allocator<SortableRow<Eigen::Matrix<int, -1, 1, 0, -1, 1> > > > const&, bool, std::vector<SortableRow<Eigen::Matrix<int, -1, 1, 0, -1, 1> >, std::allocator<SortableRow<Eigen::Matrix<int, -1, 1, 0, -1, 1> > > >&, std::vector<unsigned long, std::allocator<unsigned long> >&);
template void igl::sort<int>(std::vector<int, std::allocator<int> > const&, bool, std::vector<int, std::allocator<int> >&, std::vector<unsigned long, std::allocator<unsigned long> >&);
template void igl::sort<SortableRow<Eigen::Matrix<double, -1, 1, 0, -1, 1> > >(std::vector<SortableRow<Eigen::Matrix<double, -1, 1, 0, -1, 1> >, std::allocator<SortableRow<Eigen::Matrix<double, -1, 1, 0, -1, 1> > > > const&, bool, std::vector<SortableRow<Eigen::Matrix<double, -1, 1, 0, -1, 1> >, std::allocator<SortableRow<Eigen::Matrix<double, -1, 1, 0, -1, 1> > > >&, std::vector<unsigned long, std::allocator<unsigned long> >&);
template void igl::sort2<Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, int, bool, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&);
template void igl::sort2<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, int, bool, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&);
template void igl::sort_new<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, int, bool, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&);
template void igl::sort<Eigen::Matrix<double, -1, 1, 0, -1, 1>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, 1, 0, -1, 1> > const&, int, bool, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, 1, 0, -1, 1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
template void igl::sort<Eigen::Matrix<double, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, 3, 0, -1, 3> > const&, int, bool, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, 3, 0, -1, 3> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
template void igl::sort<Eigen::Matrix<int, -1, 2, 0, -1, 2>, Eigen::Matrix<int, -1, 1, 0, -1, 1> >(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 2, 0, -1, 2> > const&, int, bool, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 2, 0, -1, 2> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
template void igl::sort<Eigen::Matrix<int, -1, 2, 0, -1, 2>, Eigen::Matrix<int, -1, 2, 0, -1, 2> >(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 2, 0, -1, 2> > const&, int, bool, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 2, 0, -1, 2> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 2, 0, -1, 2> >&);
#endif
| [
"radhitya@uwaterloo.ca"
] | radhitya@uwaterloo.ca |
7681226edefb190ba02610d43895121ff1f04983 | 1e97f266258329ccbfdb2f66c51d609e14a632f9 | /ifs_y_elses/ejercicio10/ejercicio10.cpp | 8c212d5468ecbcfd7c0c2f61842c9fb8bc25a34f | [] | no_license | pokemeta/Codigos-del-ejercicio | d54e7c55a9aabfda271bf2038505708b221e2c42 | a2d37e6f5952e7f96f3f9e6db9c817c679e5ff9f | refs/heads/main | 2023-01-15T04:51:45.144474 | 2020-11-22T03:24:14 | 2020-11-22T03:24:14 | 310,885,676 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 711 | cpp | #include <iostream>
using namespace std;
int main() {
float totalpago;
cout << "Introduzca su total de la compra para determinar el descuento: ";
cin >> totalpago;
if(totalpago <= 0){
cout << "Tu numero no es valido." << endl;
return main();
}
else if(totalpago < 200){
cout << "No te toca algun descuento";
cout << "Tu precio a pagar es: " << totalpago;
}
else if(totalpago > 200 && totalpago <= 400){
totalpago = totalpago - (totalpago * 0.10);
}
else if(totalpago > 400 && totalpago < 800){
totalpago = totalpago - (totalpago * 0.20);
}
else if(totalpago >= 800){
totalpago = totalpago - (totalpago * 0.30);
}
cout << "Tu precio a pagar es: " << totalpago;
return 0;
}
| [
"47202318+pokemeta@users.noreply.github.com"
] | 47202318+pokemeta@users.noreply.github.com |
51f746547420e4a18d2526d51549ae9ede7c56df | 6584a3675663415fe0ed62c604e5fd383ac46e09 | /Contest/Samsung contest/14.cpp | 18ddd11524c72cefa07c789df744eef16b04fae0 | [] | no_license | lsiddiqsunny/Days-with-programming | 753e1569a5a389fa05f39742d691707496557f1b | b9d8ce24065d775a8ce2be981d177b69dc4fede5 | refs/heads/master | 2021-06-25T02:49:50.931406 | 2021-01-23T12:14:23 | 2021-01-23T12:14:23 | 184,076,547 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,272 | cpp | #include<bits/stdc++.h>
using namespace std;
int tree[1000000];
int A[200000];
void build(int node, int start, int end)
{
if(start == end)
{
tree[node] = A[start];
}
else
{
int mid = (start + end) / 2;
build(2*node, start, mid);
build(2*node+1, mid+1, end);
tree[node] = max(tree[2*node], tree[2*node+1]);
}
}
int query(int node, int start, int end, int l, int r)
{
if(r < start or end < l)
{
return 0;
}
if(l <= start and end <= r)
{
return tree[node];
}
int mid = (start + end) / 2;
int p1 = query(2*node, start, mid, l, r);
int p2 = query(2*node+1, mid+1, end, l, r);
return max(p1, p2);
}
int main()
{
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
int q,n,d;
cin >> n >> q;
for(int i=0; i<n; ++i)
cin >> A[i];
build(1,0,n-1);
while(q--)
{
cin >> d;
int mini=INT_MAX;
for(int i=0; i<=n-d; ++i)
{
int temp_max=query(1,0,n-1,i,i+d-1);
if(temp_max<mini)
mini = temp_max;
}
cout<<mini<<endl;
}
return 0;
}
| [
"lsiddiqsunny@DESKTOP-VGRAGF8.localdomain"
] | lsiddiqsunny@DESKTOP-VGRAGF8.localdomain |
1c2283ecd95cd27be78baa7fa4be79698416d75f | 119210c2b1b46df6bde882556fbe26707be371be | /Programmers/타겟넘버.cpp | d868b889596892dcd40a0d70814f8dda3742be71 | [] | no_license | kimgibaam/Algorithm | 0af2ba4dfd09d75f7f7866a867bdc2350a86507f | f7581724e0361211909ad01a2ae8597b4a3d2960 | refs/heads/master | 2023-02-20T05:34:45.061825 | 2021-01-23T01:36:42 | 2021-01-23T01:36:42 | 294,576,790 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 398 | cpp | #include <string>
#include <vector>
using namespace std;
int answer = 0;
int t;
vector<int> v;
void solve(int cnt,int num){
if(cnt == v.size()){
if(num == t) answer++;
return;
}
solve(cnt + 1, num - v[cnt]);
solve(cnt + 1, num + v[cnt]);
}
int solution(vector<int> numbers, int target) {
v = numbers;
t = target;
solve(0,0);
return answer;
} | [
"rlqjarhrh@naver.com"
] | rlqjarhrh@naver.com |
4ae5c6e9b7b7faaa89b409ee8a97025e3083337e | d19e32a89c9f3756dd375e33a1c51bbeb2551649 | /C++/TestSBB/SBB/cpp/sbofficexmlcore.cpp | 2e789e1a32a765cdb9fb0abf42f5506256b75d23 | [] | no_license | hackerlank/code_samples | 9982e3a8c36300f1fcfcd56eec46e82f80b25fad | 7be3fe03d901f405f650156890b55c455929afdd | refs/heads/master | 2020-06-12T18:38:24.684787 | 2016-09-12T20:50:37 | 2016-09-12T20:50:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 240,796 | cpp | #include "sbofficexmlcore.h"
namespace SecureBlackbox {
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLELEMENT
SB_INLINE void TElOfficeOpenXMLElement::Clear()
{
SBCheckError(TElOfficeOpenXMLElement_Clear(_Handle));
}
bool TElOfficeOpenXMLElement::get_IsModified()
{
int8_t OutResultRaw = 0;
SBCheckError(TElOfficeOpenXMLElement_get_IsModified(_Handle, &OutResultRaw));
return (OutResultRaw != 0);
}
SB_INLINE void TElOfficeOpenXMLElement::set_IsModified(bool Value)
{
SBCheckError(TElOfficeOpenXMLElement_set_IsModified(_Handle, (int8_t)Value));
}
TElOfficeOpenXMLElement::TElOfficeOpenXMLElement(TElOfficeOpenXMLElementHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
}
TElOfficeOpenXMLElement::TElOfficeOpenXMLElement() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeOpenXMLElement_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLELEMENT */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP
SB_INLINE void TElOfficeOpenXMLRelationship::Clear()
{
SBCheckError(TElOfficeOpenXMLRelationship_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeOpenXMLRelationship::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeOpenXMLRelationship_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeOpenXMLRelationship::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeOpenXMLRelationship_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLRelationship::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationship_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLRelationship::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationship_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOfficeOpenXMLRelationship::get_ID(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLRelationship_get_ID(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1988139510, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLRelationship::get_ID(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLRelationship_get_ID(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1988139510, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLRelationship::set_ID(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLRelationship_set_ID(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLRelationship::set_ID(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLRelationship_set_ID(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeOpenXMLRelationship::get_RelationshipType(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLRelationship_get_RelationshipType(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(658718039, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLRelationship::get_RelationshipType(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLRelationship_get_RelationshipType(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(658718039, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLRelationship::set_RelationshipType(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLRelationship_set_RelationshipType(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLRelationship::set_RelationshipType(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLRelationship_set_RelationshipType(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeOpenXMLRelationship::get_Target(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLRelationship_get_Target(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1778460431, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLRelationship::get_Target(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLRelationship_get_Target(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1778460431, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLRelationship::set_Target(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLRelationship_set_Target(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLRelationship::set_Target(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLRelationship_set_Target(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
TSBOfficeOpenXMLTargetMode TElOfficeOpenXMLRelationship::get_TargetMode()
{
TSBOfficeOpenXMLTargetModeRaw OutResultRaw = 0;
SBCheckError(TElOfficeOpenXMLRelationship_get_TargetMode(_Handle, &OutResultRaw));
return (TSBOfficeOpenXMLTargetMode)OutResultRaw;
}
SB_INLINE void TElOfficeOpenXMLRelationship::set_TargetMode(TSBOfficeOpenXMLTargetMode Value)
{
SBCheckError(TElOfficeOpenXMLRelationship_set_TargetMode(_Handle, (TSBOfficeOpenXMLTargetModeRaw)Value));
}
TElOfficeOpenXMLRelationship::TElOfficeOpenXMLRelationship(TElOfficeOpenXMLRelationshipHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
}
TElOfficeOpenXMLRelationship::TElOfficeOpenXMLRelationship() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeOpenXMLRelationship_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIPS
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP
SB_INLINE int32_t TElOfficeOpenXMLRelationships::Add(TElOfficeOpenXMLRelationship &ARelationship)
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLRelationships_Add(_Handle, ARelationship.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE int32_t TElOfficeOpenXMLRelationships::Add(TElOfficeOpenXMLRelationship *ARelationship)
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLRelationships_Add(_Handle, (ARelationship != NULL) ? ARelationship->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP */
SB_INLINE int32_t TElOfficeOpenXMLRelationships::Add(const sb_u16string &ID, const sb_u16string &Target, const sb_u16string &RelationshipType)
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLRelationships_Add_1(_Handle, ID.data(), (int32_t)ID.length(), Target.data(), (int32_t)Target.length(), RelationshipType.data(), (int32_t)RelationshipType.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE int32_t TElOfficeOpenXMLRelationships::Add(const std::wstring &ID, const std::wstring &Target, const std::wstring &RelationshipType)
{
int32_t OutResult;
std::string u16ID;
sb_to_u16string(ID, u16ID);
std::string u16Target;
sb_to_u16string(Target, u16Target);
std::string u16RelationshipType;
sb_to_u16string(RelationshipType, u16RelationshipType);
SBCheckError(TElOfficeOpenXMLRelationships_Add_1(_Handle, reinterpret_cast<const sb_char16_t*>(u16ID.data()), (int32_t)u16ID.length() >> 1, reinterpret_cast<const sb_char16_t*>(u16Target.data()), (int32_t)u16Target.length() >> 1, reinterpret_cast<const sb_char16_t*>(u16RelationshipType.data()), (int32_t)u16RelationshipType.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP
SB_INLINE void TElOfficeOpenXMLRelationships::Insert(int32_t Index, TElOfficeOpenXMLRelationship &ARelationship)
{
SBCheckError(TElOfficeOpenXMLRelationships_Insert(_Handle, Index, ARelationship.getHandle()));
}
SB_INLINE void TElOfficeOpenXMLRelationships::Insert(int32_t Index, TElOfficeOpenXMLRelationship *ARelationship)
{
SBCheckError(TElOfficeOpenXMLRelationships_Insert(_Handle, Index, (ARelationship != NULL) ? ARelationship->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP */
SB_INLINE void TElOfficeOpenXMLRelationships::Delete(int32_t Index)
{
SBCheckError(TElOfficeOpenXMLRelationships_Delete(_Handle, Index));
}
SB_INLINE void TElOfficeOpenXMLRelationships::Clear()
{
SBCheckError(TElOfficeOpenXMLRelationships_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP
SB_INLINE TElOfficeOpenXMLRelationshipHandle TElOfficeOpenXMLRelationships::CreateRelationship(const sb_u16string &Target, TSBOfficeOpenXMLTargetMode TargetMode, const sb_u16string &RelationshipType, const sb_u16string &ID)
{
TElOfficeOpenXMLRelationshipHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationships_CreateRelationship(_Handle, Target.data(), (int32_t)Target.length(), (TSBOfficeOpenXMLTargetModeRaw)TargetMode, RelationshipType.data(), (int32_t)RelationshipType.length(), ID.data(), (int32_t)ID.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE TElOfficeOpenXMLRelationshipHandle TElOfficeOpenXMLRelationships::CreateRelationship(const std::wstring &Target, TSBOfficeOpenXMLTargetMode TargetMode, const std::wstring &RelationshipType, const std::wstring &ID)
{
TElOfficeOpenXMLRelationshipHandle OutResult;
std::string u16Target;
sb_to_u16string(Target, u16Target);
std::string u16RelationshipType;
sb_to_u16string(RelationshipType, u16RelationshipType);
std::string u16ID;
sb_to_u16string(ID, u16ID);
SBCheckError(TElOfficeOpenXMLRelationships_CreateRelationship(_Handle, reinterpret_cast<const sb_char16_t*>(u16Target.data()), (int32_t)u16Target.length() >> 1, (TSBOfficeOpenXMLTargetModeRaw)TargetMode, reinterpret_cast<const sb_char16_t*>(u16RelationshipType.data()), (int32_t)u16RelationshipType.length() >> 1, reinterpret_cast<const sb_char16_t*>(u16ID.data()), (int32_t)u16ID.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP
SB_INLINE TElOfficeOpenXMLRelationshipHandle TElOfficeOpenXMLRelationships::GetRelationshipById(const sb_u16string &ID)
{
TElOfficeOpenXMLRelationshipHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationships_GetRelationshipById(_Handle, ID.data(), (int32_t)ID.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE TElOfficeOpenXMLRelationshipHandle TElOfficeOpenXMLRelationships::GetRelationshipById(const std::wstring &ID)
{
TElOfficeOpenXMLRelationshipHandle OutResult;
std::string u16ID;
sb_to_u16string(ID, u16ID);
SBCheckError(TElOfficeOpenXMLRelationships_GetRelationshipById(_Handle, reinterpret_cast<const sb_char16_t*>(u16ID.data()), (int32_t)u16ID.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP
SB_INLINE TElOfficeOpenXMLRelationshipHandle TElOfficeOpenXMLRelationships::GetRelationshipByType(const sb_u16string &RelType)
{
TElOfficeOpenXMLRelationshipHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationships_GetRelationshipByType(_Handle, RelType.data(), (int32_t)RelType.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE TElOfficeOpenXMLRelationshipHandle TElOfficeOpenXMLRelationships::GetRelationshipByType(const std::wstring &RelType)
{
TElOfficeOpenXMLRelationshipHandle OutResult;
std::string u16RelType;
sb_to_u16string(RelType, u16RelType);
SBCheckError(TElOfficeOpenXMLRelationships_GetRelationshipByType(_Handle, reinterpret_cast<const sb_char16_t*>(u16RelType.data()), (int32_t)u16RelType.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP */
SB_INLINE void TElOfficeOpenXMLRelationships::SortRelationshipsById()
{
SBCheckError(TElOfficeOpenXMLRelationships_SortRelationshipsById(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeOpenXMLRelationships::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeOpenXMLRelationships_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeOpenXMLRelationships::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeOpenXMLRelationships_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLRelationships::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationships_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLRelationships::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationships_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
SB_INLINE int32_t TElOfficeOpenXMLRelationships::get_Count()
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLRelationships_get_Count(_Handle, &OutResult));
return OutResult;
}
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP
TElOfficeOpenXMLRelationship* TElOfficeOpenXMLRelationships::get_Relationships(int32_t Index)
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeOpenXMLRelationships_get_Relationships(_Handle, Index, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_Relationships)
this->_Inst_Relationships = new TElOfficeOpenXMLRelationship(hOutResult, ohFalse);
else
this->_Inst_Relationships->updateHandle(hOutResult);
return this->_Inst_Relationships;
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP */
void TElOfficeOpenXMLRelationships::initInstances()
{
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP
this->_Inst_Relationships = NULL;
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP */
}
TElOfficeOpenXMLRelationships::TElOfficeOpenXMLRelationships(TElOfficeOpenXMLRelationshipsHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
initInstances();
}
TElOfficeOpenXMLRelationships::TElOfficeOpenXMLRelationships() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOfficeOpenXMLRelationships_Create(&_Handle));
}
TElOfficeOpenXMLRelationships::~TElOfficeOpenXMLRelationships()
{
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP
delete this->_Inst_Relationships;
this->_Inst_Relationships = NULL;
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIP */
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIPS */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT
SB_INLINE void TElOfficeOpenXMLDefault::Clear()
{
SBCheckError(TElOfficeOpenXMLDefault_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeOpenXMLDefault::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeOpenXMLDefault_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeOpenXMLDefault::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeOpenXMLDefault_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLDefault::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLDefault_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLDefault::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLDefault_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOfficeOpenXMLDefault::get_ContentType(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLDefault_get_ContentType(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-578014713, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLDefault::get_ContentType(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLDefault_get_ContentType(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-578014713, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLDefault::set_ContentType(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLDefault_set_ContentType(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLDefault::set_ContentType(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLDefault_set_ContentType(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeOpenXMLDefault::get_Extension(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLDefault_get_Extension(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-2136707027, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLDefault::get_Extension(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLDefault_get_Extension(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-2136707027, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLDefault::set_Extension(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLDefault_set_Extension(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLDefault::set_Extension(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLDefault_set_Extension(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
TElOfficeOpenXMLDefault::TElOfficeOpenXMLDefault(TElOfficeOpenXMLDefaultHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
}
TElOfficeOpenXMLDefault::TElOfficeOpenXMLDefault() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeOpenXMLDefault_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLDEFAULTLIST
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT
SB_INLINE int32_t TElOfficeOpenXMLDefaultList::Add(TElOfficeOpenXMLDefault &ADefault)
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLDefaultList_Add(_Handle, ADefault.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE int32_t TElOfficeOpenXMLDefaultList::Add(TElOfficeOpenXMLDefault *ADefault)
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLDefaultList_Add(_Handle, (ADefault != NULL) ? ADefault->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT
SB_INLINE void TElOfficeOpenXMLDefaultList::Insert(int32_t Index, TElOfficeOpenXMLDefault &ADefault)
{
SBCheckError(TElOfficeOpenXMLDefaultList_Insert(_Handle, Index, ADefault.getHandle()));
}
SB_INLINE void TElOfficeOpenXMLDefaultList::Insert(int32_t Index, TElOfficeOpenXMLDefault *ADefault)
{
SBCheckError(TElOfficeOpenXMLDefaultList_Insert(_Handle, Index, (ADefault != NULL) ? ADefault->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT */
SB_INLINE void TElOfficeOpenXMLDefaultList::Delete(int32_t Index)
{
SBCheckError(TElOfficeOpenXMLDefaultList_Delete(_Handle, Index));
}
SB_INLINE void TElOfficeOpenXMLDefaultList::Clear()
{
SBCheckError(TElOfficeOpenXMLDefaultList_Clear(_Handle));
}
SB_INLINE int32_t TElOfficeOpenXMLDefaultList::get_Count()
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLDefaultList_get_Count(_Handle, &OutResult));
return OutResult;
}
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT
TElOfficeOpenXMLDefault* TElOfficeOpenXMLDefaultList::get_DefaultItems(int32_t Index)
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeOpenXMLDefaultList_get_DefaultItems(_Handle, Index, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_DefaultItems)
this->_Inst_DefaultItems = new TElOfficeOpenXMLDefault(hOutResult, ohFalse);
else
this->_Inst_DefaultItems->updateHandle(hOutResult);
return this->_Inst_DefaultItems;
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT */
void TElOfficeOpenXMLDefaultList::initInstances()
{
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT
this->_Inst_DefaultItems = NULL;
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT */
}
TElOfficeOpenXMLDefaultList::TElOfficeOpenXMLDefaultList(TElOfficeOpenXMLDefaultListHandle handle, TElOwnHandle ownHandle) : TObject(handle, ownHandle)
{
initInstances();
}
TElOfficeOpenXMLDefaultList::TElOfficeOpenXMLDefaultList() : TObject(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOfficeOpenXMLDefaultList_Create(&_Handle));
}
TElOfficeOpenXMLDefaultList::~TElOfficeOpenXMLDefaultList()
{
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT
delete this->_Inst_DefaultItems;
this->_Inst_DefaultItems = NULL;
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLDEFAULT */
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLDEFAULTLIST */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE
SB_INLINE void TElOfficeOpenXMLOverride::Clear()
{
SBCheckError(TElOfficeOpenXMLOverride_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeOpenXMLOverride::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeOpenXMLOverride_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeOpenXMLOverride::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeOpenXMLOverride_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLOverride::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLOverride_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLOverride::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLOverride_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOfficeOpenXMLOverride::get_ContentType(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLOverride_get_ContentType(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1381049018, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLOverride::get_ContentType(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLOverride_get_ContentType(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1381049018, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLOverride::set_ContentType(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLOverride_set_ContentType(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLOverride::set_ContentType(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLOverride_set_ContentType(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeOpenXMLOverride::get_PartName(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLOverride_get_PartName(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1395948497, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLOverride::get_PartName(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLOverride_get_PartName(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1395948497, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLOverride::set_PartName(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLOverride_set_PartName(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLOverride::set_PartName(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLOverride_set_PartName(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
TElOfficeOpenXMLOverride::TElOfficeOpenXMLOverride(TElOfficeOpenXMLOverrideHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
}
TElOfficeOpenXMLOverride::TElOfficeOpenXMLOverride() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeOpenXMLOverride_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDELIST
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE
SB_INLINE int32_t TElOfficeOpenXMLOverrideList::Add(TElOfficeOpenXMLOverride &AOverride)
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLOverrideList_Add(_Handle, AOverride.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE int32_t TElOfficeOpenXMLOverrideList::Add(TElOfficeOpenXMLOverride *AOverride)
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLOverrideList_Add(_Handle, (AOverride != NULL) ? AOverride->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE
SB_INLINE void TElOfficeOpenXMLOverrideList::Insert(int32_t Index, TElOfficeOpenXMLOverride &AOverride)
{
SBCheckError(TElOfficeOpenXMLOverrideList_Insert(_Handle, Index, AOverride.getHandle()));
}
SB_INLINE void TElOfficeOpenXMLOverrideList::Insert(int32_t Index, TElOfficeOpenXMLOverride *AOverride)
{
SBCheckError(TElOfficeOpenXMLOverrideList_Insert(_Handle, Index, (AOverride != NULL) ? AOverride->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE */
SB_INLINE void TElOfficeOpenXMLOverrideList::Delete(int32_t Index)
{
SBCheckError(TElOfficeOpenXMLOverrideList_Delete(_Handle, Index));
}
SB_INLINE void TElOfficeOpenXMLOverrideList::Clear()
{
SBCheckError(TElOfficeOpenXMLOverrideList_Clear(_Handle));
}
SB_INLINE int32_t TElOfficeOpenXMLOverrideList::get_Count()
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLOverrideList_get_Count(_Handle, &OutResult));
return OutResult;
}
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE
TElOfficeOpenXMLOverride* TElOfficeOpenXMLOverrideList::get_OverrideItems(int32_t Index)
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeOpenXMLOverrideList_get_OverrideItems(_Handle, Index, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_OverrideItems)
this->_Inst_OverrideItems = new TElOfficeOpenXMLOverride(hOutResult, ohFalse);
else
this->_Inst_OverrideItems->updateHandle(hOutResult);
return this->_Inst_OverrideItems;
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE */
void TElOfficeOpenXMLOverrideList::initInstances()
{
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE
this->_Inst_OverrideItems = NULL;
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE */
}
TElOfficeOpenXMLOverrideList::TElOfficeOpenXMLOverrideList(TElOfficeOpenXMLOverrideListHandle handle, TElOwnHandle ownHandle) : TObject(handle, ownHandle)
{
initInstances();
}
TElOfficeOpenXMLOverrideList::TElOfficeOpenXMLOverrideList() : TObject(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOfficeOpenXMLOverrideList_Create(&_Handle));
}
TElOfficeOpenXMLOverrideList::~TElOfficeOpenXMLOverrideList()
{
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE
delete this->_Inst_OverrideItems;
this->_Inst_OverrideItems = NULL;
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDE */
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDELIST */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLCONTENTTYPES
SB_INLINE void TElOfficeOpenXMLContentTypes::Clear()
{
SBCheckError(TElOfficeOpenXMLContentTypes_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeOpenXMLContentTypes::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeOpenXMLContentTypes_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeOpenXMLContentTypes::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeOpenXMLContentTypes_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLContentTypes::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLContentTypes_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLContentTypes::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLContentTypes_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLDEFAULTLIST
TElOfficeOpenXMLDefaultList* TElOfficeOpenXMLContentTypes::get_Defaults()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeOpenXMLContentTypes_get_Defaults(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_Defaults)
this->_Inst_Defaults = new TElOfficeOpenXMLDefaultList(hOutResult, ohFalse);
else
this->_Inst_Defaults->updateHandle(hOutResult);
return this->_Inst_Defaults;
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLDEFAULTLIST */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDELIST
TElOfficeOpenXMLOverrideList* TElOfficeOpenXMLContentTypes::get_Overrides()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeOpenXMLContentTypes_get_Overrides(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_Overrides)
this->_Inst_Overrides = new TElOfficeOpenXMLOverrideList(hOutResult, ohFalse);
else
this->_Inst_Overrides->updateHandle(hOutResult);
return this->_Inst_Overrides;
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDELIST */
void TElOfficeOpenXMLContentTypes::initInstances()
{
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLDEFAULTLIST
this->_Inst_Defaults = NULL;
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLDEFAULTLIST */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDELIST
this->_Inst_Overrides = NULL;
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDELIST */
}
TElOfficeOpenXMLContentTypes::TElOfficeOpenXMLContentTypes(TElOfficeOpenXMLContentTypesHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
initInstances();
}
TElOfficeOpenXMLContentTypes::TElOfficeOpenXMLContentTypes() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOfficeOpenXMLContentTypes_Create(&_Handle));
}
TElOfficeOpenXMLContentTypes::~TElOfficeOpenXMLContentTypes()
{
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLDEFAULTLIST
delete this->_Inst_Defaults;
this->_Inst_Defaults = NULL;
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLDEFAULTLIST */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDELIST
delete this->_Inst_Overrides;
this->_Inst_Overrides = NULL;
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLOVERRIDELIST */
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLCONTENTTYPES */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
SB_INLINE void TElOfficeXMLDCSimpleLiteral::Clear()
{
SBCheckError(TElOfficeXMLDCSimpleLiteral_Clear(_Handle));
}
bool TElOfficeXMLDCSimpleLiteral::IsEmpty()
{
int8_t OutResultRaw = 0;
SBCheckError(TElOfficeXMLDCSimpleLiteral_IsEmpty(_Handle, &OutResultRaw));
return (OutResultRaw != 0);
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLDCSimpleLiteral::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLDCSimpleLiteral_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLDCSimpleLiteral::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLDCSimpleLiteral_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLDCSimpleLiteral::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLDCSimpleLiteral_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLDCSimpleLiteral::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLDCSimpleLiteral_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOfficeXMLDCSimpleLiteral::get_Language(std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLDCSimpleLiteral_get_Language(_Handle, (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(-1717743294, 1, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOfficeXMLDCSimpleLiteral::set_Language(const std::string &Value)
{
SBCheckError(TElOfficeXMLDCSimpleLiteral_set_Language(_Handle, Value.data(), (int32_t)Value.length()));
}
void TElOfficeXMLDCSimpleLiteral::get_Value(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLDCSimpleLiteral_get_Value(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-455273086, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLDCSimpleLiteral::get_Value(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLDCSimpleLiteral_get_Value(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-455273086, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLDCSimpleLiteral::set_Value(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLDCSimpleLiteral_set_Value(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLDCSimpleLiteral::set_Value(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLDCSimpleLiteral_set_Value(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
TElOfficeXMLDCSimpleLiteral::TElOfficeXMLDCSimpleLiteral(TElOfficeXMLDCSimpleLiteralHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
}
TElOfficeXMLDCSimpleLiteral::TElOfficeXMLDCSimpleLiteral(const sb_u16string &AName) : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeXMLDCSimpleLiteral_Create(AName.data(), (int32_t)AName.length(), &_Handle));
}
#ifdef SB_U16STRING_USED
TElOfficeXMLDCSimpleLiteral::TElOfficeXMLDCSimpleLiteral(const std::wstring &AName) : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
std::string u16AName;
sb_to_u16string(AName, u16AName);
SBCheckError(TElOfficeXMLDCSimpleLiteral_Create(reinterpret_cast<const sb_char16_t*>(u16AName.data()), (int32_t)u16AName.length() >> 1, &_Handle));
}
#endif /* SB_U16STRING_USED */
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCDATE
SB_INLINE void TElOfficeXMLDCDate::Clear()
{
SBCheckError(TElOfficeXMLDCDate_Clear(_Handle));
}
bool TElOfficeXMLDCDate::IsEmpty()
{
int8_t OutResultRaw = 0;
SBCheckError(TElOfficeXMLDCDate_IsEmpty(_Handle, &OutResultRaw));
return (OutResultRaw != 0);
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLDCDate::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLDCDate_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLDCDate::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLDCDate_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLDCDate::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLDCDate_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLDCDate::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLDCDate_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOfficeXMLDCDate::get_Value(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLDCDate_get_Value(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(33401455, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLDCDate::get_Value(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLDCDate_get_Value(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(33401455, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLDCDate::set_Value(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLDCDate_set_Value(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLDCDate::set_Value(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLDCDate_set_Value(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
SB_INLINE int64_t TElOfficeXMLDCDate::get_ValueUTC()
{
int64_t OutResult;
SBCheckError(TElOfficeXMLDCDate_get_ValueUTC(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLDCDate::set_ValueUTC(int64_t Value)
{
SBCheckError(TElOfficeXMLDCDate_set_ValueUTC(_Handle, Value));
}
TSBXMLDateTimeFormat TElOfficeXMLDCDate::get_DateTimeFormat()
{
TSBXMLDateTimeFormatRaw OutResultRaw = 0;
SBCheckError(TElOfficeXMLDCDate_get_DateTimeFormat(_Handle, &OutResultRaw));
return (TSBXMLDateTimeFormat)OutResultRaw;
}
SB_INLINE void TElOfficeXMLDCDate::set_DateTimeFormat(TSBXMLDateTimeFormat Value)
{
SBCheckError(TElOfficeXMLDCDate_set_DateTimeFormat(_Handle, (TSBXMLDateTimeFormatRaw)Value));
}
bool TElOfficeXMLDCDate::get_IncludeTimeZone()
{
int8_t OutResultRaw = 0;
SBCheckError(TElOfficeXMLDCDate_get_IncludeTimeZone(_Handle, &OutResultRaw));
return (OutResultRaw != 0);
}
SB_INLINE void TElOfficeXMLDCDate::set_IncludeTimeZone(bool Value)
{
SBCheckError(TElOfficeXMLDCDate_set_IncludeTimeZone(_Handle, (int8_t)Value));
}
TElOfficeXMLDCDate::TElOfficeXMLDCDate(TElOfficeXMLDCDateHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
}
TElOfficeXMLDCDate::TElOfficeXMLDCDate() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeXMLDCDate_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEXMLDCDATE */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLCOREPROPERTIES
SB_INLINE void TElOfficeOpenXMLCoreProperties::Clear()
{
SBCheckError(TElOfficeOpenXMLCoreProperties_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeOpenXMLCoreProperties::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeOpenXMLCoreProperties_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeOpenXMLCoreProperties::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeOpenXMLCoreProperties_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLCoreProperties::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLCoreProperties_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLCoreProperties::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLCoreProperties_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOfficeOpenXMLCoreProperties::get_Category(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLCoreProperties_get_Category(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-827807140, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLCoreProperties::get_Category(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLCoreProperties_get_Category(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-827807140, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLCoreProperties::set_Category(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLCoreProperties_set_Category(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLCoreProperties::set_Category(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLCoreProperties_set_Category(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeOpenXMLCoreProperties::get_ContentStatus(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLCoreProperties_get_ContentStatus(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1357645974, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLCoreProperties::get_ContentStatus(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLCoreProperties_get_ContentStatus(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1357645974, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLCoreProperties::set_ContentStatus(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLCoreProperties_set_ContentStatus(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLCoreProperties::set_ContentStatus(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLCoreProperties_set_ContentStatus(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
TElOfficeXMLDCSimpleLiteral* TElOfficeOpenXMLCoreProperties::get_Creator()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeOpenXMLCoreProperties_get_Creator(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_Creator)
this->_Inst_Creator = new TElOfficeXMLDCSimpleLiteral(hOutResult, ohFalse);
else
this->_Inst_Creator->updateHandle(hOutResult);
return this->_Inst_Creator;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
TElOfficeXMLDCSimpleLiteral* TElOfficeOpenXMLCoreProperties::get_Description()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeOpenXMLCoreProperties_get_Description(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_Description)
this->_Inst_Description = new TElOfficeXMLDCSimpleLiteral(hOutResult, ohFalse);
else
this->_Inst_Description->updateHandle(hOutResult);
return this->_Inst_Description;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
TElOfficeXMLDCSimpleLiteral* TElOfficeOpenXMLCoreProperties::get_Identifier()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeOpenXMLCoreProperties_get_Identifier(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_Identifier)
this->_Inst_Identifier = new TElOfficeXMLDCSimpleLiteral(hOutResult, ohFalse);
else
this->_Inst_Identifier->updateHandle(hOutResult);
return this->_Inst_Identifier;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
TElOfficeXMLDCSimpleLiteral* TElOfficeOpenXMLCoreProperties::get_Language()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeOpenXMLCoreProperties_get_Language(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_Language)
this->_Inst_Language = new TElOfficeXMLDCSimpleLiteral(hOutResult, ohFalse);
else
this->_Inst_Language->updateHandle(hOutResult);
return this->_Inst_Language;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
void TElOfficeOpenXMLCoreProperties::get_LastModifiedBy(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLCoreProperties_get_LastModifiedBy(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(2014039483, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLCoreProperties::get_LastModifiedBy(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLCoreProperties_get_LastModifiedBy(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(2014039483, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLCoreProperties::set_LastModifiedBy(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLCoreProperties_set_LastModifiedBy(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLCoreProperties::set_LastModifiedBy(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLCoreProperties_set_LastModifiedBy(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeOpenXMLCoreProperties::get_Revision(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLCoreProperties_get_Revision(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1517836719, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLCoreProperties::get_Revision(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLCoreProperties_get_Revision(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1517836719, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLCoreProperties::set_Revision(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLCoreProperties_set_Revision(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLCoreProperties::set_Revision(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLCoreProperties_set_Revision(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
TElOfficeXMLDCSimpleLiteral* TElOfficeOpenXMLCoreProperties::get_Subject()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeOpenXMLCoreProperties_get_Subject(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_Subject)
this->_Inst_Subject = new TElOfficeXMLDCSimpleLiteral(hOutResult, ohFalse);
else
this->_Inst_Subject->updateHandle(hOutResult);
return this->_Inst_Subject;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
TElOfficeXMLDCSimpleLiteral* TElOfficeOpenXMLCoreProperties::get_Title()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeOpenXMLCoreProperties_get_Title(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_Title)
this->_Inst_Title = new TElOfficeXMLDCSimpleLiteral(hOutResult, ohFalse);
else
this->_Inst_Title->updateHandle(hOutResult);
return this->_Inst_Title;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
void TElOfficeOpenXMLCoreProperties::get_Version(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLCoreProperties_get_Version(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-2087403817, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLCoreProperties::get_Version(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLCoreProperties_get_Version(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-2087403817, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLCoreProperties::set_Version(const sb_u16string &Value)
{
SBCheckError(TElOfficeOpenXMLCoreProperties_set_Version(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeOpenXMLCoreProperties::set_Version(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeOpenXMLCoreProperties_set_Version(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeOpenXMLCoreProperties::initInstances()
{
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
this->_Inst_Creator = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
this->_Inst_Description = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
this->_Inst_Identifier = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
this->_Inst_Language = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
this->_Inst_Subject = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
this->_Inst_Title = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
}
TElOfficeOpenXMLCoreProperties::TElOfficeOpenXMLCoreProperties(TElOfficeOpenXMLCorePropertiesHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
initInstances();
}
TElOfficeOpenXMLCoreProperties::TElOfficeOpenXMLCoreProperties() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOfficeOpenXMLCoreProperties_Create(&_Handle));
}
TElOfficeOpenXMLCoreProperties::~TElOfficeOpenXMLCoreProperties()
{
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
delete this->_Inst_Creator;
this->_Inst_Creator = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
delete this->_Inst_Description;
this->_Inst_Description = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
delete this->_Inst_Identifier;
this->_Inst_Identifier = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
delete this->_Inst_Language;
this->_Inst_Language = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
delete this->_Inst_Subject;
this->_Inst_Subject = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
#ifdef SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL
delete this->_Inst_Title;
this->_Inst_Title = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDCSIMPLELITERAL */
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLCOREPROPERTIES */
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYDATA
SB_INLINE void TElOfficeXMLKeyData::Clear()
{
SBCheckError(TElOfficeXMLKeyData_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLKeyData::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLKeyData_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLKeyData::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLKeyData_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLKeyData::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLKeyData_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLKeyData::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLKeyData_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
SB_INLINE int32_t TElOfficeXMLKeyData::get_SaltSize()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLKeyData_get_SaltSize(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLKeyData::set_SaltSize(int32_t Value)
{
SBCheckError(TElOfficeXMLKeyData_set_SaltSize(_Handle, Value));
}
SB_INLINE int32_t TElOfficeXMLKeyData::get_BlockSize()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLKeyData_get_BlockSize(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLKeyData::set_BlockSize(int32_t Value)
{
SBCheckError(TElOfficeXMLKeyData_set_BlockSize(_Handle, Value));
}
SB_INLINE int32_t TElOfficeXMLKeyData::get_KeyBits()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLKeyData_get_KeyBits(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLKeyData::set_KeyBits(int32_t Value)
{
SBCheckError(TElOfficeXMLKeyData_set_KeyBits(_Handle, Value));
}
SB_INLINE int32_t TElOfficeXMLKeyData::get_HashSize()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLKeyData_get_HashSize(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLKeyData::set_HashSize(int32_t Value)
{
SBCheckError(TElOfficeXMLKeyData_set_HashSize(_Handle, Value));
}
void TElOfficeXMLKeyData::get_CipherAlgorithm(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLKeyData_get_CipherAlgorithm(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1567607358, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLKeyData::get_CipherAlgorithm(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLKeyData_get_CipherAlgorithm(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1567607358, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLKeyData::set_CipherAlgorithm(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLKeyData_set_CipherAlgorithm(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLKeyData::set_CipherAlgorithm(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLKeyData_set_CipherAlgorithm(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLKeyData::get_CipherChaining(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLKeyData_get_CipherChaining(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-755038679, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLKeyData::get_CipherChaining(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLKeyData_get_CipherChaining(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-755038679, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLKeyData::set_CipherChaining(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLKeyData_set_CipherChaining(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLKeyData::set_CipherChaining(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLKeyData_set_CipherChaining(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLKeyData::get_HashAlgorithm(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLKeyData_get_HashAlgorithm(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1399059053, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLKeyData::get_HashAlgorithm(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLKeyData_get_HashAlgorithm(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1399059053, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLKeyData::set_HashAlgorithm(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLKeyData_set_HashAlgorithm(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLKeyData::set_HashAlgorithm(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLKeyData_set_HashAlgorithm(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLKeyData::get_SaltValue(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOfficeXMLKeyData_get_SaltValue(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(1003988636, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOfficeXMLKeyData::set_SaltValue(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOfficeXMLKeyData_set_SaltValue(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
TElOfficeXMLKeyData::TElOfficeXMLKeyData(TElOfficeXMLKeyDataHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
}
TElOfficeXMLKeyData::TElOfficeXMLKeyData() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeXMLKeyData_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYDATA */
#ifdef SB_USE_CLASS_TELOFFICEXMLDATAINTEGRITY
SB_INLINE void TElOfficeXMLDataIntegrity::Clear()
{
SBCheckError(TElOfficeXMLDataIntegrity_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLDataIntegrity::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLDataIntegrity_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLDataIntegrity::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLDataIntegrity_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLDataIntegrity::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLDataIntegrity_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLDataIntegrity::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLDataIntegrity_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOfficeXMLDataIntegrity::get_EncryptedHmacKey(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOfficeXMLDataIntegrity_get_EncryptedHmacKey(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(-2134324377, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOfficeXMLDataIntegrity::set_EncryptedHmacKey(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOfficeXMLDataIntegrity_set_EncryptedHmacKey(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
void TElOfficeXMLDataIntegrity::get_EncryptedHmacValue(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOfficeXMLDataIntegrity_get_EncryptedHmacValue(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(1147525899, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOfficeXMLDataIntegrity::set_EncryptedHmacValue(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOfficeXMLDataIntegrity_set_EncryptedHmacValue(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
TElOfficeXMLDataIntegrity::TElOfficeXMLDataIntegrity(TElOfficeXMLDataIntegrityHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
}
TElOfficeXMLDataIntegrity::TElOfficeXMLDataIntegrity() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeXMLDataIntegrity_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEXMLDATAINTEGRITY */
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR
void TElOfficeXMLKeyEncryptor::get_URI(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLKeyEncryptor_get_URI(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-104741397, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLKeyEncryptor::get_URI(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLKeyEncryptor_get_URI(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-104741397, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
TElOfficeXMLKeyEncryptor::TElOfficeXMLKeyEncryptor(TElOfficeXMLKeyEncryptorHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
}
TElOfficeXMLKeyEncryptor::TElOfficeXMLKeyEncryptor() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeXMLKeyEncryptor_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR */
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTORS
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR
SB_INLINE int32_t TElOfficeXMLKeyEncryptors::Add(TElOfficeXMLKeyEncryptor &AKeyEncryptor)
{
int32_t OutResult;
SBCheckError(TElOfficeXMLKeyEncryptors_Add(_Handle, AKeyEncryptor.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE int32_t TElOfficeXMLKeyEncryptors::Add(TElOfficeXMLKeyEncryptor *AKeyEncryptor)
{
int32_t OutResult;
SBCheckError(TElOfficeXMLKeyEncryptors_Add(_Handle, (AKeyEncryptor != NULL) ? AKeyEncryptor->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR */
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR
SB_INLINE void TElOfficeXMLKeyEncryptors::Insert(int32_t Index, TElOfficeXMLKeyEncryptor &AKeyEncryptor)
{
SBCheckError(TElOfficeXMLKeyEncryptors_Insert(_Handle, Index, AKeyEncryptor.getHandle()));
}
SB_INLINE void TElOfficeXMLKeyEncryptors::Insert(int32_t Index, TElOfficeXMLKeyEncryptor *AKeyEncryptor)
{
SBCheckError(TElOfficeXMLKeyEncryptors_Insert(_Handle, Index, (AKeyEncryptor != NULL) ? AKeyEncryptor->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR */
SB_INLINE void TElOfficeXMLKeyEncryptors::Delete(int32_t Index)
{
SBCheckError(TElOfficeXMLKeyEncryptors_Delete(_Handle, Index));
}
SB_INLINE void TElOfficeXMLKeyEncryptors::Clear()
{
SBCheckError(TElOfficeXMLKeyEncryptors_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLKeyEncryptors::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLKeyEncryptors_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLKeyEncryptors::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLKeyEncryptors_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLKeyEncryptors::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLKeyEncryptors_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLKeyEncryptors::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLKeyEncryptors_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
SB_INLINE int32_t TElOfficeXMLKeyEncryptors::get_Count()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLKeyEncryptors_get_Count(_Handle, &OutResult));
return OutResult;
}
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR
TElOfficeXMLKeyEncryptor* TElOfficeXMLKeyEncryptors::get_KeyEncryptors(int32_t Index)
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeXMLKeyEncryptors_get_KeyEncryptors(_Handle, Index, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_KeyEncryptors)
this->_Inst_KeyEncryptors = new TElOfficeXMLKeyEncryptor(hOutResult, ohFalse);
else
this->_Inst_KeyEncryptors->updateHandle(hOutResult);
return this->_Inst_KeyEncryptors;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR */
void TElOfficeXMLKeyEncryptors::initInstances()
{
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR
this->_Inst_KeyEncryptors = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR */
}
TElOfficeXMLKeyEncryptors::TElOfficeXMLKeyEncryptors(TElOfficeXMLKeyEncryptorsHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
initInstances();
}
TElOfficeXMLKeyEncryptors::TElOfficeXMLKeyEncryptors() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOfficeXMLKeyEncryptors_Create(&_Handle));
}
TElOfficeXMLKeyEncryptors::~TElOfficeXMLKeyEncryptors()
{
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR
delete this->_Inst_KeyEncryptors;
this->_Inst_KeyEncryptors = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTOR */
}
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTORS */
#ifdef SB_USE_CLASS_TELOFFICEXMLPASSWORDKEYENCRYPTOR
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::Clear()
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLPasswordKeyEncryptor::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLPasswordKeyEncryptor::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
SB_INLINE int32_t TElOfficeXMLPasswordKeyEncryptor::get_SaltSize()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_get_SaltSize(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_SaltSize(int32_t Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_SaltSize(_Handle, Value));
}
SB_INLINE int32_t TElOfficeXMLPasswordKeyEncryptor::get_BlockSize()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_get_BlockSize(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_BlockSize(int32_t Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_BlockSize(_Handle, Value));
}
SB_INLINE int32_t TElOfficeXMLPasswordKeyEncryptor::get_KeyBits()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_get_KeyBits(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_KeyBits(int32_t Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_KeyBits(_Handle, Value));
}
SB_INLINE int32_t TElOfficeXMLPasswordKeyEncryptor::get_HashSize()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_get_HashSize(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_HashSize(int32_t Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_HashSize(_Handle, Value));
}
void TElOfficeXMLPasswordKeyEncryptor::get_CipherAlgorithm(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLPasswordKeyEncryptor_get_CipherAlgorithm(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1252187826, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLPasswordKeyEncryptor::get_CipherAlgorithm(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLPasswordKeyEncryptor_get_CipherAlgorithm(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1252187826, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_CipherAlgorithm(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_CipherAlgorithm(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_CipherAlgorithm(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_CipherAlgorithm(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLPasswordKeyEncryptor::get_CipherChaining(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLPasswordKeyEncryptor_get_CipherChaining(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1488995694, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLPasswordKeyEncryptor::get_CipherChaining(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLPasswordKeyEncryptor_get_CipherChaining(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1488995694, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_CipherChaining(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_CipherChaining(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_CipherChaining(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_CipherChaining(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLPasswordKeyEncryptor::get_HashAlgorithm(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLPasswordKeyEncryptor_get_HashAlgorithm(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-166287736, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLPasswordKeyEncryptor::get_HashAlgorithm(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLPasswordKeyEncryptor_get_HashAlgorithm(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-166287736, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_HashAlgorithm(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_HashAlgorithm(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_HashAlgorithm(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_HashAlgorithm(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLPasswordKeyEncryptor::get_SaltValue(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOfficeXMLPasswordKeyEncryptor_get_SaltValue(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(-1900816166, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_SaltValue(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_SaltValue(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
SB_INLINE int32_t TElOfficeXMLPasswordKeyEncryptor::get_SpinCount()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_get_SpinCount(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_SpinCount(int32_t Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_SpinCount(_Handle, Value));
}
void TElOfficeXMLPasswordKeyEncryptor::get_EncryptedVerifierHashInput(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOfficeXMLPasswordKeyEncryptor_get_EncryptedVerifierHashInput(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(-204195702, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_EncryptedVerifierHashInput(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_EncryptedVerifierHashInput(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
void TElOfficeXMLPasswordKeyEncryptor::get_EncryptedVerifierHashValue(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOfficeXMLPasswordKeyEncryptor_get_EncryptedVerifierHashValue(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(915100265, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_EncryptedVerifierHashValue(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_EncryptedVerifierHashValue(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
void TElOfficeXMLPasswordKeyEncryptor::get_EncryptedKeyValue(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOfficeXMLPasswordKeyEncryptor_get_EncryptedKeyValue(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(-1288739055, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOfficeXMLPasswordKeyEncryptor::set_EncryptedKeyValue(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_set_EncryptedKeyValue(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
TElOfficeXMLPasswordKeyEncryptor::TElOfficeXMLPasswordKeyEncryptor(TElOfficeXMLPasswordKeyEncryptorHandle handle, TElOwnHandle ownHandle) : TElOfficeXMLKeyEncryptor(handle, ownHandle)
{
}
TElOfficeXMLPasswordKeyEncryptor::TElOfficeXMLPasswordKeyEncryptor() : TElOfficeXMLKeyEncryptor(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeXMLPasswordKeyEncryptor_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEXMLPASSWORDKEYENCRYPTOR */
#ifdef SB_USE_CLASS_TELOFFICEXMLENCRYPTION
SB_INLINE void TElOfficeXMLEncryption::Clear()
{
SBCheckError(TElOfficeXMLEncryption_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLEncryption::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLEncryption_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLEncryption::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLEncryption_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLEncryption::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLEncryption_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLEncryption::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLEncryption_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASS_TELOFFICEXMLDATAINTEGRITY
TElOfficeXMLDataIntegrity* TElOfficeXMLEncryption::get_DataIntegrity()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeXMLEncryption_get_DataIntegrity(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_DataIntegrity)
this->_Inst_DataIntegrity = new TElOfficeXMLDataIntegrity(hOutResult, ohFalse);
else
this->_Inst_DataIntegrity->updateHandle(hOutResult);
return this->_Inst_DataIntegrity;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLDATAINTEGRITY */
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYDATA
TElOfficeXMLKeyData* TElOfficeXMLEncryption::get_KeyData()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeXMLEncryption_get_KeyData(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_KeyData)
this->_Inst_KeyData = new TElOfficeXMLKeyData(hOutResult, ohFalse);
else
this->_Inst_KeyData->updateHandle(hOutResult);
return this->_Inst_KeyData;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYDATA */
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTORS
TElOfficeXMLKeyEncryptors* TElOfficeXMLEncryption::get_KeyEncryptors()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeXMLEncryption_get_KeyEncryptors(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_KeyEncryptors)
this->_Inst_KeyEncryptors = new TElOfficeXMLKeyEncryptors(hOutResult, ohFalse);
else
this->_Inst_KeyEncryptors->updateHandle(hOutResult);
return this->_Inst_KeyEncryptors;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTORS */
void TElOfficeXMLEncryption::initInstances()
{
#ifdef SB_USE_CLASS_TELOFFICEXMLDATAINTEGRITY
this->_Inst_DataIntegrity = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDATAINTEGRITY */
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYDATA
this->_Inst_KeyData = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYDATA */
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTORS
this->_Inst_KeyEncryptors = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTORS */
}
TElOfficeXMLEncryption::TElOfficeXMLEncryption(TElOfficeXMLEncryptionHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
initInstances();
}
TElOfficeXMLEncryption::TElOfficeXMLEncryption() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOfficeXMLEncryption_Create(&_Handle));
}
TElOfficeXMLEncryption::~TElOfficeXMLEncryption()
{
#ifdef SB_USE_CLASS_TELOFFICEXMLDATAINTEGRITY
delete this->_Inst_DataIntegrity;
this->_Inst_DataIntegrity = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLDATAINTEGRITY */
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYDATA
delete this->_Inst_KeyData;
this->_Inst_KeyData = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYDATA */
#ifdef SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTORS
delete this->_Inst_KeyEncryptors;
this->_Inst_KeyEncryptors = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLKEYENCRYPTORS */
}
#endif /* SB_USE_CLASS_TELOFFICEXMLENCRYPTION */
#ifdef SB_USE_CLASS_TELOFFICEXMLSIGNATURETIME
SB_INLINE void TElOfficeXMLSignatureTime::Clear()
{
SBCheckError(TElOfficeXMLSignatureTime_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLSignatureTime::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLSignatureTime_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLSignatureTime::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLSignatureTime_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLSignatureTime::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLSignatureTime_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLSignatureTime::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLSignatureTime_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOfficeXMLSignatureTime::get_Format(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureTime_get_Format(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1483281771, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureTime::get_Format(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureTime_get_Format(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1483281771, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureTime::set_Format(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureTime_set_Format(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureTime::set_Format(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureTime_set_Format(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureTime::get_Value(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureTime_get_Value(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-499268069, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureTime::get_Value(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureTime_get_Value(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-499268069, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureTime::set_Value(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureTime_set_Value(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureTime::set_Value(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureTime_set_Value(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
SB_INLINE int64_t TElOfficeXMLSignatureTime::get_ValueUTC()
{
int64_t OutResult;
SBCheckError(TElOfficeXMLSignatureTime_get_ValueUTC(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLSignatureTime::set_ValueUTC(int64_t Value)
{
SBCheckError(TElOfficeXMLSignatureTime_set_ValueUTC(_Handle, Value));
}
TElOfficeXMLSignatureTime::TElOfficeXMLSignatureTime(TElOfficeXMLSignatureTimeHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
}
TElOfficeXMLSignatureTime::TElOfficeXMLSignatureTime() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeXMLSignatureTime_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEXMLSIGNATURETIME */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIPTRANSFORM
void TElOfficeOpenXMLRelationshipTransform::GetDefaultTransformAlgorithmURI(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLRelationshipTransform_GetDefaultTransformAlgorithmURI((sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-2060801548, 0, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLRelationshipTransform::GetDefaultTransformAlgorithmURI(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLRelationshipTransform_GetDefaultTransformAlgorithmURI(NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-2060801548, 0, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
void TElOfficeOpenXMLRelationshipTransform::GetDefaultTransformAlgorithmURI_Inst(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLRelationshipTransform_GetDefaultTransformAlgorithmURI_1(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-2060801548, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLRelationshipTransform::GetDefaultTransformAlgorithmURI_Inst(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLRelationshipTransform_GetDefaultTransformAlgorithmURI_1(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-2060801548, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
bool TElOfficeOpenXMLRelationshipTransform::IsTransformAlgorithmSupported(const sb_u16string &Algorithm)
{
int8_t OutResultRaw = 0;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_IsTransformAlgorithmSupported(Algorithm.data(), (int32_t)Algorithm.length(), &OutResultRaw));
return (OutResultRaw != 0);
}
#ifdef SB_U16STRING_USED
bool TElOfficeOpenXMLRelationshipTransform::IsTransformAlgorithmSupported(const std::wstring &Algorithm)
{
std::string u16Algorithm;
sb_to_u16string(Algorithm, u16Algorithm);
int8_t OutResultRaw = 0;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_IsTransformAlgorithmSupported(reinterpret_cast<const sb_char16_t*>(u16Algorithm.data()), (int32_t)u16Algorithm.length() >> 1, &OutResultRaw));
return (OutResultRaw != 0);
}
#endif /* SB_U16STRING_USED */
bool TElOfficeOpenXMLRelationshipTransform::IsTransformAlgorithmSupported_Inst(const sb_u16string &Algorithm)
{
int8_t OutResultRaw = 0;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_IsTransformAlgorithmSupported_1(_Handle, Algorithm.data(), (int32_t)Algorithm.length(), &OutResultRaw));
return (OutResultRaw != 0);
}
#ifdef SB_U16STRING_USED
bool TElOfficeOpenXMLRelationshipTransform::IsTransformAlgorithmSupported_Inst(const std::wstring &Algorithm)
{
std::string u16Algorithm;
sb_to_u16string(Algorithm, u16Algorithm);
int8_t OutResultRaw = 0;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_IsTransformAlgorithmSupported_1(_Handle, reinterpret_cast<const sb_char16_t*>(u16Algorithm.data()), (int32_t)u16Algorithm.length() >> 1, &OutResultRaw));
return (OutResultRaw != 0);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLRelationshipTransform::Clear()
{
SBCheckError(TElOfficeOpenXMLRelationshipTransform_Clear(_Handle));
}
SB_INLINE int32_t TElOfficeOpenXMLRelationshipTransform::AddSourceId(const sb_u16string &SourceId)
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_AddSourceId(_Handle, SourceId.data(), (int32_t)SourceId.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE int32_t TElOfficeOpenXMLRelationshipTransform::AddSourceId(const std::wstring &SourceId)
{
int32_t OutResult;
std::string u16SourceId;
sb_to_u16string(SourceId, u16SourceId);
SBCheckError(TElOfficeOpenXMLRelationshipTransform_AddSourceId(_Handle, reinterpret_cast<const sb_char16_t*>(u16SourceId.data()), (int32_t)u16SourceId.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
SB_INLINE int32_t TElOfficeOpenXMLRelationshipTransform::AddSourceType(const sb_u16string &SourceType)
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_AddSourceType(_Handle, SourceType.data(), (int32_t)SourceType.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE int32_t TElOfficeOpenXMLRelationshipTransform::AddSourceType(const std::wstring &SourceType)
{
int32_t OutResult;
std::string u16SourceType;
sb_to_u16string(SourceType, u16SourceType);
SBCheckError(TElOfficeOpenXMLRelationshipTransform_AddSourceType(_Handle, reinterpret_cast<const sb_char16_t*>(u16SourceType.data()), (int32_t)u16SourceType.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeOpenXMLRelationshipTransform::DeleteSourceId(int32_t Index)
{
SBCheckError(TElOfficeOpenXMLRelationshipTransform_DeleteSourceId(_Handle, Index));
}
SB_INLINE void TElOfficeOpenXMLRelationshipTransform::DeleteSourceType(int32_t Index)
{
SBCheckError(TElOfficeOpenXMLRelationshipTransform_DeleteSourceType(_Handle, Index));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeOpenXMLRelationshipTransform::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeOpenXMLRelationshipTransform_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeOpenXMLRelationshipTransform::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeOpenXMLRelationshipTransform_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLRelationshipTransform::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeOpenXMLRelationshipTransform::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
TSBTransformedDataType TElOfficeOpenXMLRelationshipTransform::TransformData(const std::vector<uint8_t> &Data)
{
TSBTransformedDataTypeRaw OutResultRaw = 0;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_TransformData(_Handle, SB_STD_VECTOR_FRONT_ADR(Data), (int32_t)Data.size(), &OutResultRaw));
return (TSBTransformedDataType)OutResultRaw;
}
#ifdef SB_USE_CLASS_TELXMLDOMNODE
TSBTransformedDataType TElOfficeOpenXMLRelationshipTransform::TransformData(TElXMLDOMNode &Node, TElXMLDOMNode &Reference)
{
TSBTransformedDataTypeRaw OutResultRaw = 0;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_TransformData_1(_Handle, Node.getHandle(), Reference.getHandle(), &OutResultRaw));
return (TSBTransformedDataType)OutResultRaw;
}
TSBTransformedDataType TElOfficeOpenXMLRelationshipTransform::TransformData(TElXMLDOMNode *Node, TElXMLDOMNode *Reference)
{
TSBTransformedDataTypeRaw OutResultRaw = 0;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_TransformData_1(_Handle, (Node != NULL) ? Node->getHandle() : SB_NULL_HANDLE, (Reference != NULL) ? Reference->getHandle() : SB_NULL_HANDLE, &OutResultRaw));
return (TSBTransformedDataType)OutResultRaw;
}
#endif /* SB_USE_CLASS_TELXMLDOMNODE */
#ifdef SB_USE_CLASSES_TELXMLDOMNODE_AND_TELXMLDOMNODELIST
TSBTransformedDataType TElOfficeOpenXMLRelationshipTransform::TransformData(TElXMLDOMNodeList &Nodes, const std::vector<TElXMLDOMNodeHandle> &Reference)
{
TSBTransformedDataTypeRaw OutResultRaw = 0;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_TransformData_2(_Handle, Nodes.getHandle(), SB_STD_VECTOR_FRONT_ADR(Reference), (int32_t)Reference.size(), &OutResultRaw));
return (TSBTransformedDataType)OutResultRaw;
}
TSBTransformedDataType TElOfficeOpenXMLRelationshipTransform::TransformData(TElXMLDOMNodeList *Nodes, const std::vector<TElXMLDOMNodeHandle> &Reference)
{
TSBTransformedDataTypeRaw OutResultRaw = 0;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_TransformData_2(_Handle, (Nodes != NULL) ? Nodes->getHandle() : SB_NULL_HANDLE, SB_STD_VECTOR_FRONT_ADR(Reference), (int32_t)Reference.size(), &OutResultRaw));
return (TSBTransformedDataType)OutResultRaw;
}
#endif /* SB_USE_CLASSES_TELXMLDOMNODE_AND_TELXMLDOMNODELIST */
#ifdef SB_USE_CLASS_TELXMLDOMNODE
SB_INLINE TElXMLDOMNodeHandle TElOfficeOpenXMLRelationshipTransform::TransformNode(TElXMLDOMNode &Node)
{
TElXMLDOMNodeHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_TransformNode(_Handle, Node.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMNodeHandle TElOfficeOpenXMLRelationshipTransform::TransformNode(TElXMLDOMNode *Node)
{
TElXMLDOMNodeHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_TransformNode(_Handle, (Node != NULL) ? Node->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASS_TELXMLDOMNODE */
SB_INLINE TClassHandle TElOfficeOpenXMLRelationshipTransform::ClassType()
{
TClassHandle OutResult;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_ClassType(&OutResult));
return OutResult;
}
SB_INLINE int32_t TElOfficeOpenXMLRelationshipTransform::get_SourceIdCount()
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_get_SourceIdCount(_Handle, &OutResult));
return OutResult;
}
SB_INLINE int32_t TElOfficeOpenXMLRelationshipTransform::get_SourceTypeCount()
{
int32_t OutResult;
SBCheckError(TElOfficeOpenXMLRelationshipTransform_get_SourceTypeCount(_Handle, &OutResult));
return OutResult;
}
void TElOfficeOpenXMLRelationshipTransform::get_SourceIds(int32_t Index, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLRelationshipTransform_get_SourceIds(_Handle, Index, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1766373945, 2, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLRelationshipTransform::get_SourceIds(int32_t Index, std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLRelationshipTransform_get_SourceIds(_Handle, Index, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1766373945, 2, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
void TElOfficeOpenXMLRelationshipTransform::get_SourceTypes(int32_t Index, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeOpenXMLRelationshipTransform_get_SourceTypes(_Handle, Index, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-933108686, 2, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeOpenXMLRelationshipTransform::get_SourceTypes(int32_t Index, std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeOpenXMLRelationshipTransform_get_SourceTypes(_Handle, Index, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-933108686, 2, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
TElOfficeOpenXMLRelationshipTransform::TElOfficeOpenXMLRelationshipTransform(TElOfficeOpenXMLRelationshipTransformHandle handle, TElOwnHandle ownHandle) : TElXMLTransform(handle, ownHandle)
{
}
TElOfficeOpenXMLRelationshipTransform::TElOfficeOpenXMLRelationshipTransform() : TElXMLTransform(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeOpenXMLRelationshipTransform_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIPTRANSFORM */
#ifdef SB_USE_CLASS_TELOFFICEXMLSIGNATUREINFOV1
SB_INLINE void TElOfficeXMLSignatureInfoV1::Clear()
{
SBCheckError(TElOfficeXMLSignatureInfoV1_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLREFERENCELIST
bool TElOfficeXMLSignatureInfoV1::CheckReferences(TElXMLReferenceList &Refs)
{
int8_t OutResultRaw = 0;
SBCheckError(TElOfficeXMLSignatureInfoV1_CheckReferences(_Handle, Refs.getHandle(), &OutResultRaw));
return (OutResultRaw != 0);
}
bool TElOfficeXMLSignatureInfoV1::CheckReferences(TElXMLReferenceList *Refs)
{
int8_t OutResultRaw = 0;
SBCheckError(TElOfficeXMLSignatureInfoV1_CheckReferences(_Handle, (Refs != NULL) ? Refs->getHandle() : SB_NULL_HANDLE, &OutResultRaw));
return (OutResultRaw != 0);
}
#endif /* SB_USE_CLASS_TELXMLREFERENCELIST */
#ifdef SB_USE_CLASS_TELXMLREFERENCELIST
SB_INLINE void TElOfficeXMLSignatureInfoV1::CreateReferences(TElXMLReferenceList &Refs, TElXMLDigestMethod DigestMethod)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_CreateReferences(_Handle, Refs.getHandle(), (TElXMLDigestMethodRaw)DigestMethod));
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::CreateReferences(TElXMLReferenceList *Refs, TElXMLDigestMethod DigestMethod)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_CreateReferences(_Handle, (Refs != NULL) ? Refs->getHandle() : SB_NULL_HANDLE, (TElXMLDigestMethodRaw)DigestMethod));
}
#endif /* SB_USE_CLASS_TELXMLREFERENCELIST */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLOBJECTLIST
SB_INLINE void TElOfficeXMLSignatureInfoV1::CreateObjects(TElXMLObjectList &Objects, const sb_u16string &Target, TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_CreateObjects(_Handle, Objects.getHandle(), Target.data(), (int32_t)Target.length(), Document.getHandle(), Formatter.getHandle()));
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::CreateObjects(TElXMLObjectList *Objects, const sb_u16string &Target, TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_CreateObjects(_Handle, (Objects != NULL) ? Objects->getHandle() : SB_NULL_HANDLE, Target.data(), (int32_t)Target.length(), (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::CreateObjects(TElXMLObjectList &Objects, const std::wstring &Target, TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
std::string u16Target;
sb_to_u16string(Target, u16Target);
SBCheckError(TElOfficeXMLSignatureInfoV1_CreateObjects(_Handle, Objects.getHandle(), reinterpret_cast<const sb_char16_t*>(u16Target.data()), (int32_t)u16Target.length() >> 1, Document.getHandle(), Formatter.getHandle()));
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::CreateObjects(TElXMLObjectList *Objects, const std::wstring &Target, TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
std::string u16Target;
sb_to_u16string(Target, u16Target);
SBCheckError(TElOfficeXMLSignatureInfoV1_CreateObjects(_Handle, (Objects != NULL) ? Objects->getHandle() : SB_NULL_HANDLE, reinterpret_cast<const sb_char16_t*>(u16Target.data()), (int32_t)u16Target.length() >> 1, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_U16STRING_USED */
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLOBJECTLIST */
#ifdef SB_USE_CLASS_TELXMLOBJECTLIST
SB_INLINE void TElOfficeXMLSignatureInfoV1::LoadFromObjectList(TElXMLObjectList &Objects)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_LoadFromObjectList(_Handle, Objects.getHandle()));
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::LoadFromObjectList(TElXMLObjectList *Objects)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_LoadFromObjectList(_Handle, (Objects != NULL) ? Objects->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLOBJECTLIST */
bool TElOfficeXMLSignatureInfoV1::get_Included()
{
int8_t OutResultRaw = 0;
SBCheckError(TElOfficeXMLSignatureInfoV1_get_Included(_Handle, &OutResultRaw));
return (OutResultRaw != 0);
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_Included(bool Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_Included(_Handle, (int8_t)Value));
}
void TElOfficeXMLSignatureInfoV1::get_ApplicationVersion(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_ApplicationVersion(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1605837511, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_ApplicationVersion(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_ApplicationVersion(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1605837511, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_ApplicationVersion(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_ApplicationVersion(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_ApplicationVersion(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_ApplicationVersion(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
SB_INLINE int32_t TElOfficeXMLSignatureInfoV1::get_ColorDepth()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLSignatureInfoV1_get_ColorDepth(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_ColorDepth(int32_t Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_ColorDepth(_Handle, Value));
}
void TElOfficeXMLSignatureInfoV1::get_DelegateSuggestedSigner(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_DelegateSuggestedSigner(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-857214124, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_DelegateSuggestedSigner(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_DelegateSuggestedSigner(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-857214124, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_DelegateSuggestedSigner(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_DelegateSuggestedSigner(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_DelegateSuggestedSigner(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_DelegateSuggestedSigner(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureInfoV1::get_DelegateSuggestedSigner2(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_DelegateSuggestedSigner2(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1541594210, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_DelegateSuggestedSigner2(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_DelegateSuggestedSigner2(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1541594210, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_DelegateSuggestedSigner2(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_DelegateSuggestedSigner2(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_DelegateSuggestedSigner2(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_DelegateSuggestedSigner2(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureInfoV1::get_DelegateSuggestedSignerEmail(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_DelegateSuggestedSignerEmail(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1926441544, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_DelegateSuggestedSignerEmail(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_DelegateSuggestedSignerEmail(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1926441544, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_DelegateSuggestedSignerEmail(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_DelegateSuggestedSignerEmail(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_DelegateSuggestedSignerEmail(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_DelegateSuggestedSignerEmail(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
SB_INLINE int32_t TElOfficeXMLSignatureInfoV1::get_HorizontalResolution()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLSignatureInfoV1_get_HorizontalResolution(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_HorizontalResolution(int32_t Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_HorizontalResolution(_Handle, Value));
}
void TElOfficeXMLSignatureInfoV1::get_ManifestHashAlgorithm(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_ManifestHashAlgorithm(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1641202620, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_ManifestHashAlgorithm(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_ManifestHashAlgorithm(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1641202620, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_ManifestHashAlgorithm(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_ManifestHashAlgorithm(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_ManifestHashAlgorithm(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_ManifestHashAlgorithm(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
SB_INLINE int32_t TElOfficeXMLSignatureInfoV1::get_Monitors()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLSignatureInfoV1_get_Monitors(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_Monitors(int32_t Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_Monitors(_Handle, Value));
}
void TElOfficeXMLSignatureInfoV1::get_OfficeVersion(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_OfficeVersion(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-366684934, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_OfficeVersion(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_OfficeVersion(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-366684934, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_OfficeVersion(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_OfficeVersion(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_OfficeVersion(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_OfficeVersion(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureInfoV1::get_SetupID(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_SetupID(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-338532916, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_SetupID(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_SetupID(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-338532916, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SetupID(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SetupID(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SetupID(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SetupID(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureInfoV1::get_SignatureComments(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_SignatureComments(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-953225723, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_SignatureComments(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_SignatureComments(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-953225723, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SignatureComments(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SignatureComments(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SignatureComments(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SignatureComments(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureInfoV1::get_SignatureImage(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_SignatureImage(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(1916885363, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SignatureImage(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SignatureImage(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
SB_INLINE int32_t TElOfficeXMLSignatureInfoV1::get_SignatureProviderDetails()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLSignatureInfoV1_get_SignatureProviderDetails(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SignatureProviderDetails(int32_t Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SignatureProviderDetails(_Handle, Value));
}
void TElOfficeXMLSignatureInfoV1::get_SignatureProviderId(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_SignatureProviderId(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(861831050, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_SignatureProviderId(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_SignatureProviderId(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(861831050, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SignatureProviderId(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SignatureProviderId(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SignatureProviderId(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SignatureProviderId(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureInfoV1::get_SignatureProviderUrl(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_SignatureProviderUrl(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1090451185, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_SignatureProviderUrl(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_SignatureProviderUrl(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1090451185, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SignatureProviderUrl(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SignatureProviderUrl(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SignatureProviderUrl(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SignatureProviderUrl(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureInfoV1::get_SignatureText(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_SignatureText(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-169820001, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_SignatureText(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_SignatureText(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-169820001, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SignatureText(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SignatureText(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SignatureText(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SignatureText(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
SB_INLINE int32_t TElOfficeXMLSignatureInfoV1::get_SignatureType()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLSignatureInfoV1_get_SignatureType(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_SignatureType(int32_t Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_SignatureType(_Handle, Value));
}
SB_INLINE int32_t TElOfficeXMLSignatureInfoV1::get_VerticalResolution()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLSignatureInfoV1_get_VerticalResolution(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_VerticalResolution(int32_t Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_VerticalResolution(_Handle, Value));
}
void TElOfficeXMLSignatureInfoV1::get_WindowsVersion(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_WindowsVersion(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-115538176, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureInfoV1::get_WindowsVersion(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_WindowsVersion(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-115538176, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_WindowsVersion(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_WindowsVersion(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_WindowsVersion(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureInfoV1_set_WindowsVersion(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureInfoV1::get_ValidSignatureLnImage(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_ValidSignatureLnImage(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(1673339568, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_ValidSignatureLnImage(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_ValidSignatureLnImage(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
void TElOfficeXMLSignatureInfoV1::get_InvalidSignatureLnImage(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOfficeXMLSignatureInfoV1_get_InvalidSignatureLnImage(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(517510345, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOfficeXMLSignatureInfoV1::set_InvalidSignatureLnImage(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_set_InvalidSignatureLnImage(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
TElOfficeXMLSignatureInfoV1::TElOfficeXMLSignatureInfoV1(TElOfficeXMLSignatureInfoV1Handle handle, TElOwnHandle ownHandle) : TObject(handle, ownHandle)
{
}
TElOfficeXMLSignatureInfoV1::TElOfficeXMLSignatureInfoV1() : TObject(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeXMLSignatureInfoV1_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEXMLSIGNATUREINFOV1 */
#ifdef SB_USE_CLASS_TELOFFICEXMLSPOTLOCATION
SB_INLINE void TElOfficeXMLSpotLocation::Clear()
{
SBCheckError(TElOfficeXMLSpotLocation_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLSpotLocation::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLSpotLocation_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLSpotLocation::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLSpotLocation_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLSpotLocation::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLSpotLocation_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLSpotLocation::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLSpotLocation_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOfficeXMLSpotLocation::get_PageURI(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSpotLocation_get_PageURI(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(585057936, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSpotLocation::get_PageURI(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSpotLocation_get_PageURI(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(585057936, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSpotLocation::set_PageURI(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSpotLocation_set_PageURI(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSpotLocation::set_PageURI(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSpotLocation_set_PageURI(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
SB_INLINE double TElOfficeXMLSpotLocation::get_StartX()
{
double OutResult;
SBCheckError(TElOfficeXMLSpotLocation_get_StartX(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLSpotLocation::set_StartX(double Value)
{
SBCheckError(TElOfficeXMLSpotLocation_set_StartX(_Handle, Value));
}
SB_INLINE double TElOfficeXMLSpotLocation::get_StartY()
{
double OutResult;
SBCheckError(TElOfficeXMLSpotLocation_get_StartY(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLSpotLocation::set_StartY(double Value)
{
SBCheckError(TElOfficeXMLSpotLocation_set_StartY(_Handle, Value));
}
TElOfficeXMLSpotLocation::TElOfficeXMLSpotLocation(TElOfficeXMLSpotLocationHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
}
TElOfficeXMLSpotLocation::TElOfficeXMLSpotLocation() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeXMLSpotLocation_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEXMLSPOTLOCATION */
#ifdef SB_USE_CLASS_TELOFFICEXMLSIGNATUREDEFINITION
SB_INLINE void TElOfficeXMLSignatureDefinition::Clear()
{
SBCheckError(TElOfficeXMLSignatureDefinition_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLSignatureDefinition::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLSignatureDefinition_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLSignatureDefinition::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLSignatureDefinition_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLSignatureDefinition::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLSignatureDefinition_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLSignatureDefinition::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLSignatureDefinition_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOfficeXMLSignatureDefinition::get_Intent(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureDefinition_get_Intent(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1859872542, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureDefinition::get_Intent(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureDefinition_get_Intent(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1859872542, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureDefinition::set_Intent(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureDefinition_set_Intent(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureDefinition::set_Intent(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureDefinition_set_Intent(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureDefinition::get_SignBy(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureDefinition_get_SignBy(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-2010094196, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureDefinition::get_SignBy(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureDefinition_get_SignBy(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-2010094196, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureDefinition::set_SignBy(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureDefinition_set_SignBy(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureDefinition::set_SignBy(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureDefinition_set_SignBy(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
SB_INLINE int64_t TElOfficeXMLSignatureDefinition::get_SignByUTC()
{
int64_t OutResult;
SBCheckError(TElOfficeXMLSignatureDefinition_get_SignByUTC(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLSignatureDefinition::set_SignByUTC(int64_t Value)
{
SBCheckError(TElOfficeXMLSignatureDefinition_set_SignByUTC(_Handle, Value));
}
void TElOfficeXMLSignatureDefinition::get_SigningLocation(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureDefinition_get_SigningLocation(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-655547144, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureDefinition::get_SigningLocation(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureDefinition_get_SigningLocation(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-655547144, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureDefinition::set_SigningLocation(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureDefinition_set_SigningLocation(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureDefinition::set_SigningLocation(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureDefinition_set_SigningLocation(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureDefinition::get_SignerName(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureDefinition_get_SignerName(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1738159890, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureDefinition::get_SignerName(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureDefinition_get_SignerName(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1738159890, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureDefinition::set_SignerName(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureDefinition_set_SignerName(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureDefinition::set_SignerName(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureDefinition_set_SignerName(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOfficeXMLSignatureDefinition::get_SpotID(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLSignatureDefinition_get_SpotID(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1973875732, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLSignatureDefinition::get_SpotID(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLSignatureDefinition_get_SpotID(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1973875732, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLSignatureDefinition::set_SpotID(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLSignatureDefinition_set_SpotID(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLSignatureDefinition::set_SpotID(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLSignatureDefinition_set_SpotID(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
#ifdef SB_USE_CLASS_TELOFFICEXMLSPOTLOCATION
TElOfficeXMLSpotLocation* TElOfficeXMLSignatureDefinition::get_SpotLocation()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeXMLSignatureDefinition_get_SpotLocation(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_SpotLocation)
this->_Inst_SpotLocation = new TElOfficeXMLSpotLocation(hOutResult, ohFalse);
else
this->_Inst_SpotLocation->updateHandle(hOutResult);
return this->_Inst_SpotLocation;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLSPOTLOCATION */
void TElOfficeXMLSignatureDefinition::initInstances()
{
#ifdef SB_USE_CLASS_TELOFFICEXMLSPOTLOCATION
this->_Inst_SpotLocation = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLSPOTLOCATION */
}
TElOfficeXMLSignatureDefinition::TElOfficeXMLSignatureDefinition(TElOfficeXMLSignatureDefinitionHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
initInstances();
}
TElOfficeXMLSignatureDefinition::TElOfficeXMLSignatureDefinition() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOfficeXMLSignatureDefinition_Create(&_Handle));
}
TElOfficeXMLSignatureDefinition::~TElOfficeXMLSignatureDefinition()
{
#ifdef SB_USE_CLASS_TELOFFICEXMLSPOTLOCATION
delete this->_Inst_SpotLocation;
this->_Inst_SpotLocation = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLSPOTLOCATION */
}
#endif /* SB_USE_CLASS_TELOFFICEXMLSIGNATUREDEFINITION */
#ifdef SB_USE_CLASS_TELOFFICEXMLFIXEDDOCUMENTSEQUENCE
SB_INLINE int32_t TElOfficeXMLFixedDocumentSequence::Add(const sb_u16string &DocRef)
{
int32_t OutResult;
SBCheckError(TElOfficeXMLFixedDocumentSequence_Add(_Handle, DocRef.data(), (int32_t)DocRef.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE int32_t TElOfficeXMLFixedDocumentSequence::Add(const std::wstring &DocRef)
{
int32_t OutResult;
std::string u16DocRef;
sb_to_u16string(DocRef, u16DocRef);
SBCheckError(TElOfficeXMLFixedDocumentSequence_Add(_Handle, reinterpret_cast<const sb_char16_t*>(u16DocRef.data()), (int32_t)u16DocRef.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLFixedDocumentSequence::Delete(int32_t Index)
{
SBCheckError(TElOfficeXMLFixedDocumentSequence_Delete(_Handle, Index));
}
SB_INLINE void TElOfficeXMLFixedDocumentSequence::Clear()
{
SBCheckError(TElOfficeXMLFixedDocumentSequence_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLFixedDocumentSequence::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLFixedDocumentSequence_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLFixedDocumentSequence::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLFixedDocumentSequence_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLFixedDocumentSequence::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLFixedDocumentSequence_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLFixedDocumentSequence::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLFixedDocumentSequence_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
SB_INLINE int32_t TElOfficeXMLFixedDocumentSequence::get_Count()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLFixedDocumentSequence_get_Count(_Handle, &OutResult));
return OutResult;
}
void TElOfficeXMLFixedDocumentSequence::get_DocumentReferences(int32_t Index, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLFixedDocumentSequence_get_DocumentReferences(_Handle, Index, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-625651289, 2, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLFixedDocumentSequence::get_DocumentReferences(int32_t Index, std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLFixedDocumentSequence_get_DocumentReferences(_Handle, Index, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-625651289, 2, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
TElOfficeXMLFixedDocumentSequence::TElOfficeXMLFixedDocumentSequence(TElOfficeXMLFixedDocumentSequenceHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
}
TElOfficeXMLFixedDocumentSequence::TElOfficeXMLFixedDocumentSequence() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeXMLFixedDocumentSequence_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEXMLFIXEDDOCUMENTSEQUENCE */
#ifdef SB_USE_CLASS_TELOFFICEXMLPAGECONTENT
SB_INLINE int32_t TElOfficeXMLPageContent::AddLinkTarget(const sb_u16string &Name)
{
int32_t OutResult;
SBCheckError(TElOfficeXMLPageContent_AddLinkTarget(_Handle, Name.data(), (int32_t)Name.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE int32_t TElOfficeXMLPageContent::AddLinkTarget(const std::wstring &Name)
{
int32_t OutResult;
std::string u16Name;
sb_to_u16string(Name, u16Name);
SBCheckError(TElOfficeXMLPageContent_AddLinkTarget(_Handle, reinterpret_cast<const sb_char16_t*>(u16Name.data()), (int32_t)u16Name.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLPageContent::DeleteLinkTarget(int32_t Index)
{
SBCheckError(TElOfficeXMLPageContent_DeleteLinkTarget(_Handle, Index));
}
SB_INLINE void TElOfficeXMLPageContent::Clear()
{
SBCheckError(TElOfficeXMLPageContent_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLPageContent::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLPageContent_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLPageContent::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLPageContent_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLPageContent::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLPageContent_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLPageContent::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLPageContent_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOfficeXMLPageContent::get_Source(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLPageContent_get_Source(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1662997969, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLPageContent::get_Source(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLPageContent_get_Source(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1662997969, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOfficeXMLPageContent::set_Source(const sb_u16string &Value)
{
SBCheckError(TElOfficeXMLPageContent_set_Source(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOfficeXMLPageContent::set_Source(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOfficeXMLPageContent_set_Source(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
SB_INLINE int32_t TElOfficeXMLPageContent::get_Width()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLPageContent_get_Width(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLPageContent::set_Width(int32_t Value)
{
SBCheckError(TElOfficeXMLPageContent_set_Width(_Handle, Value));
}
SB_INLINE int32_t TElOfficeXMLPageContent::get_Height()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLPageContent_get_Height(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOfficeXMLPageContent::set_Height(int32_t Value)
{
SBCheckError(TElOfficeXMLPageContent_set_Height(_Handle, Value));
}
SB_INLINE int32_t TElOfficeXMLPageContent::get_LinkTargetCount()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLPageContent_get_LinkTargetCount(_Handle, &OutResult));
return OutResult;
}
void TElOfficeXMLPageContent::get_LinkTargets(int32_t Index, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOfficeXMLPageContent_get_LinkTargets(_Handle, Index, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(385774551, 2, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOfficeXMLPageContent::get_LinkTargets(int32_t Index, std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOfficeXMLPageContent_get_LinkTargets(_Handle, Index, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(385774551, 2, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
TElOfficeXMLPageContent::TElOfficeXMLPageContent(TElOfficeXMLPageContentHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
}
TElOfficeXMLPageContent::TElOfficeXMLPageContent() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOfficeXMLPageContent_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOFFICEXMLPAGECONTENT */
#ifdef SB_USE_CLASS_TELOFFICEXMLFIXEDDOCUMENT
#ifdef SB_USE_CLASS_TELOFFICEXMLPAGECONTENT
SB_INLINE int32_t TElOfficeXMLFixedDocument::Add(TElOfficeXMLPageContent &PageContent)
{
int32_t OutResult;
SBCheckError(TElOfficeXMLFixedDocument_Add(_Handle, PageContent.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE int32_t TElOfficeXMLFixedDocument::Add(TElOfficeXMLPageContent *PageContent)
{
int32_t OutResult;
SBCheckError(TElOfficeXMLFixedDocument_Add(_Handle, (PageContent != NULL) ? PageContent->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLPAGECONTENT */
SB_INLINE void TElOfficeXMLFixedDocument::Delete(int32_t Index)
{
SBCheckError(TElOfficeXMLFixedDocument_Delete(_Handle, Index));
}
SB_INLINE void TElOfficeXMLFixedDocument::Clear()
{
SBCheckError(TElOfficeXMLFixedDocument_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOfficeXMLFixedDocument::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOfficeXMLFixedDocument_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOfficeXMLFixedDocument::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOfficeXMLFixedDocument_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLFixedDocument::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLFixedDocument_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOfficeXMLFixedDocument::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOfficeXMLFixedDocument_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
SB_INLINE int32_t TElOfficeXMLFixedDocument::get_Count()
{
int32_t OutResult;
SBCheckError(TElOfficeXMLFixedDocument_get_Count(_Handle, &OutResult));
return OutResult;
}
#ifdef SB_USE_CLASS_TELOFFICEXMLPAGECONTENT
TElOfficeXMLPageContent* TElOfficeXMLFixedDocument::get_PageContents(int32_t Index)
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOfficeXMLFixedDocument_get_PageContents(_Handle, Index, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_PageContents)
this->_Inst_PageContents = new TElOfficeXMLPageContent(hOutResult, ohFalse);
else
this->_Inst_PageContents->updateHandle(hOutResult);
return this->_Inst_PageContents;
}
#endif /* SB_USE_CLASS_TELOFFICEXMLPAGECONTENT */
void TElOfficeXMLFixedDocument::initInstances()
{
#ifdef SB_USE_CLASS_TELOFFICEXMLPAGECONTENT
this->_Inst_PageContents = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLPAGECONTENT */
}
TElOfficeXMLFixedDocument::TElOfficeXMLFixedDocument(TElOfficeXMLFixedDocumentHandle handle, TElOwnHandle ownHandle) : TElXMLCustomElement(handle, ownHandle)
{
initInstances();
}
TElOfficeXMLFixedDocument::TElOfficeXMLFixedDocument() : TElXMLCustomElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOfficeXMLFixedDocument_Create(&_Handle));
}
TElOfficeXMLFixedDocument::~TElOfficeXMLFixedDocument()
{
#ifdef SB_USE_CLASS_TELOFFICEXMLPAGECONTENT
delete this->_Inst_PageContents;
this->_Inst_PageContents = NULL;
#endif /* SB_USE_CLASS_TELOFFICEXMLPAGECONTENT */
}
#endif /* SB_USE_CLASS_TELOFFICEXMLFIXEDDOCUMENT */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTALGORITHM
SB_INLINE void TElOpenOfficeXMLManifestAlgorithm::Clear()
{
SBCheckError(TElOpenOfficeXMLManifestAlgorithm_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOpenOfficeXMLManifestAlgorithm::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOpenOfficeXMLManifestAlgorithm_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOpenOfficeXMLManifestAlgorithm::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOpenOfficeXMLManifestAlgorithm_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifestAlgorithm::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifestAlgorithm_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifestAlgorithm::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifestAlgorithm_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOpenOfficeXMLManifestAlgorithm::get_AlgorithmName(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOpenOfficeXMLManifestAlgorithm_get_AlgorithmName(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(286051589, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOpenOfficeXMLManifestAlgorithm::get_AlgorithmName(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOpenOfficeXMLManifestAlgorithm_get_AlgorithmName(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(286051589, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOpenOfficeXMLManifestAlgorithm::set_AlgorithmName(const sb_u16string &Value)
{
SBCheckError(TElOpenOfficeXMLManifestAlgorithm_set_AlgorithmName(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOpenOfficeXMLManifestAlgorithm::set_AlgorithmName(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOpenOfficeXMLManifestAlgorithm_set_AlgorithmName(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOpenOfficeXMLManifestAlgorithm::get_IV(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOpenOfficeXMLManifestAlgorithm_get_IV(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(1097412376, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOpenOfficeXMLManifestAlgorithm::set_IV(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOpenOfficeXMLManifestAlgorithm_set_IV(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
TElOpenOfficeXMLManifestAlgorithm::TElOpenOfficeXMLManifestAlgorithm(TElOpenOfficeXMLManifestAlgorithmHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
}
TElOpenOfficeXMLManifestAlgorithm::TElOpenOfficeXMLManifestAlgorithm() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOpenOfficeXMLManifestAlgorithm_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTALGORITHM */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTKEYDERIVATION
SB_INLINE void TElOpenOfficeXMLManifestKeyDerivation::Clear()
{
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOpenOfficeXMLManifestKeyDerivation::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOpenOfficeXMLManifestKeyDerivation::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifestKeyDerivation::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifestKeyDerivation::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
SB_INLINE int32_t TElOpenOfficeXMLManifestKeyDerivation::get_IterationCount()
{
int32_t OutResult;
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_get_IterationCount(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOpenOfficeXMLManifestKeyDerivation::set_IterationCount(int32_t Value)
{
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_set_IterationCount(_Handle, Value));
}
void TElOpenOfficeXMLManifestKeyDerivation::get_KeyDerivationName(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOpenOfficeXMLManifestKeyDerivation_get_KeyDerivationName(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1722159515, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOpenOfficeXMLManifestKeyDerivation::get_KeyDerivationName(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOpenOfficeXMLManifestKeyDerivation_get_KeyDerivationName(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1722159515, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOpenOfficeXMLManifestKeyDerivation::set_KeyDerivationName(const sb_u16string &Value)
{
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_set_KeyDerivationName(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOpenOfficeXMLManifestKeyDerivation::set_KeyDerivationName(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_set_KeyDerivationName(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
SB_INLINE int32_t TElOpenOfficeXMLManifestKeyDerivation::get_KeySize()
{
int32_t OutResult;
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_get_KeySize(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOpenOfficeXMLManifestKeyDerivation::set_KeySize(int32_t Value)
{
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_set_KeySize(_Handle, Value));
}
void TElOpenOfficeXMLManifestKeyDerivation::get_Salt(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOpenOfficeXMLManifestKeyDerivation_get_Salt(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(2094983757, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOpenOfficeXMLManifestKeyDerivation::set_Salt(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_set_Salt(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
TElOpenOfficeXMLManifestKeyDerivation::TElOpenOfficeXMLManifestKeyDerivation(TElOpenOfficeXMLManifestKeyDerivationHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
}
TElOpenOfficeXMLManifestKeyDerivation::TElOpenOfficeXMLManifestKeyDerivation() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOpenOfficeXMLManifestKeyDerivation_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTKEYDERIVATION */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTSTARTKEYGENERATION
SB_INLINE void TElOpenOfficeXMLManifestStartKeyGeneration::Clear()
{
SBCheckError(TElOpenOfficeXMLManifestStartKeyGeneration_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOpenOfficeXMLManifestStartKeyGeneration::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOpenOfficeXMLManifestStartKeyGeneration_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOpenOfficeXMLManifestStartKeyGeneration::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOpenOfficeXMLManifestStartKeyGeneration_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifestStartKeyGeneration::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifestStartKeyGeneration_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifestStartKeyGeneration::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifestStartKeyGeneration_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
SB_INLINE int32_t TElOpenOfficeXMLManifestStartKeyGeneration::get_KeySize()
{
int32_t OutResult;
SBCheckError(TElOpenOfficeXMLManifestStartKeyGeneration_get_KeySize(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOpenOfficeXMLManifestStartKeyGeneration::set_KeySize(int32_t Value)
{
SBCheckError(TElOpenOfficeXMLManifestStartKeyGeneration_set_KeySize(_Handle, Value));
}
void TElOpenOfficeXMLManifestStartKeyGeneration::get_StartKeyGenerationName(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOpenOfficeXMLManifestStartKeyGeneration_get_StartKeyGenerationName(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1899420940, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOpenOfficeXMLManifestStartKeyGeneration::get_StartKeyGenerationName(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOpenOfficeXMLManifestStartKeyGeneration_get_StartKeyGenerationName(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1899420940, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOpenOfficeXMLManifestStartKeyGeneration::set_StartKeyGenerationName(const sb_u16string &Value)
{
SBCheckError(TElOpenOfficeXMLManifestStartKeyGeneration_set_StartKeyGenerationName(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOpenOfficeXMLManifestStartKeyGeneration::set_StartKeyGenerationName(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOpenOfficeXMLManifestStartKeyGeneration_set_StartKeyGenerationName(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
TElOpenOfficeXMLManifestStartKeyGeneration::TElOpenOfficeXMLManifestStartKeyGeneration(TElOpenOfficeXMLManifestStartKeyGenerationHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
}
TElOpenOfficeXMLManifestStartKeyGeneration::TElOpenOfficeXMLManifestStartKeyGeneration() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
SBCheckError(TElOpenOfficeXMLManifestStartKeyGeneration_Create(&_Handle));
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTSTARTKEYGENERATION */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTENCRYPTIONDATA
SB_INLINE void TElOpenOfficeXMLManifestEncryptionData::Clear()
{
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOpenOfficeXMLManifestEncryptionData::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOpenOfficeXMLManifestEncryptionData::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifestEncryptionData::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifestEncryptionData::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
void TElOpenOfficeXMLManifestEncryptionData::get_Checksum(std::vector<uint8_t> &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.size();
uint32_t _err = TElOpenOfficeXMLManifestEncryptionData_get_Checksum(_Handle, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnBuffer(-1421802494, 1, (uint8_t *)SB_STD_VECTOR_FRONT_ADR(OutResult), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
SB_INLINE void TElOpenOfficeXMLManifestEncryptionData::set_Checksum(const std::vector<uint8_t> &Value)
{
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_set_Checksum(_Handle, SB_STD_VECTOR_FRONT_ADR(Value), (int32_t)Value.size()));
}
void TElOpenOfficeXMLManifestEncryptionData::get_ChecksumType(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOpenOfficeXMLManifestEncryptionData_get_ChecksumType(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(147735416, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOpenOfficeXMLManifestEncryptionData::get_ChecksumType(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOpenOfficeXMLManifestEncryptionData_get_ChecksumType(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(147735416, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOpenOfficeXMLManifestEncryptionData::set_ChecksumType(const sb_u16string &Value)
{
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_set_ChecksumType(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOpenOfficeXMLManifestEncryptionData::set_ChecksumType(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_set_ChecksumType(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTALGORITHM
TElOpenOfficeXMLManifestAlgorithm* TElOpenOfficeXMLManifestEncryptionData::get_Algorithm()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_get_Algorithm(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_Algorithm)
this->_Inst_Algorithm = new TElOpenOfficeXMLManifestAlgorithm(hOutResult, ohFalse);
else
this->_Inst_Algorithm->updateHandle(hOutResult);
return this->_Inst_Algorithm;
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTALGORITHM */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTKEYDERIVATION
TElOpenOfficeXMLManifestKeyDerivation* TElOpenOfficeXMLManifestEncryptionData::get_KeyDerivation()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_get_KeyDerivation(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_KeyDerivation)
this->_Inst_KeyDerivation = new TElOpenOfficeXMLManifestKeyDerivation(hOutResult, ohFalse);
else
this->_Inst_KeyDerivation->updateHandle(hOutResult);
return this->_Inst_KeyDerivation;
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTKEYDERIVATION */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTSTARTKEYGENERATION
TElOpenOfficeXMLManifestStartKeyGeneration* TElOpenOfficeXMLManifestEncryptionData::get_StartKeyGeneration()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_get_StartKeyGeneration(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_StartKeyGeneration)
this->_Inst_StartKeyGeneration = new TElOpenOfficeXMLManifestStartKeyGeneration(hOutResult, ohFalse);
else
this->_Inst_StartKeyGeneration->updateHandle(hOutResult);
return this->_Inst_StartKeyGeneration;
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTSTARTKEYGENERATION */
void TElOpenOfficeXMLManifestEncryptionData::initInstances()
{
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTALGORITHM
this->_Inst_Algorithm = NULL;
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTALGORITHM */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTKEYDERIVATION
this->_Inst_KeyDerivation = NULL;
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTKEYDERIVATION */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTSTARTKEYGENERATION
this->_Inst_StartKeyGeneration = NULL;
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTSTARTKEYGENERATION */
}
TElOpenOfficeXMLManifestEncryptionData::TElOpenOfficeXMLManifestEncryptionData(TElOpenOfficeXMLManifestEncryptionDataHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
initInstances();
}
TElOpenOfficeXMLManifestEncryptionData::TElOpenOfficeXMLManifestEncryptionData() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOpenOfficeXMLManifestEncryptionData_Create(&_Handle));
}
TElOpenOfficeXMLManifestEncryptionData::~TElOpenOfficeXMLManifestEncryptionData()
{
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTALGORITHM
delete this->_Inst_Algorithm;
this->_Inst_Algorithm = NULL;
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTALGORITHM */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTKEYDERIVATION
delete this->_Inst_KeyDerivation;
this->_Inst_KeyDerivation = NULL;
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTKEYDERIVATION */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTSTARTKEYGENERATION
delete this->_Inst_StartKeyGeneration;
this->_Inst_StartKeyGeneration = NULL;
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTSTARTKEYGENERATION */
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTENCRYPTIONDATA */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::Clear()
{
SBCheckError(TElOpenOfficeXMLManifestFileEntry_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOpenOfficeXMLManifestFileEntry_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOpenOfficeXMLManifestFileEntry_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifestFileEntry::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifestFileEntry_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifestFileEntry::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifestFileEntry_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
bool TElOpenOfficeXMLManifestFileEntry::get_IsEncrypted()
{
int8_t OutResultRaw = 0;
SBCheckError(TElOpenOfficeXMLManifestFileEntry_get_IsEncrypted(_Handle, &OutResultRaw));
return (OutResultRaw != 0);
}
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTENCRYPTIONDATA
TElOpenOfficeXMLManifestEncryptionData* TElOpenOfficeXMLManifestFileEntry::get_EncryptionData()
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOpenOfficeXMLManifestFileEntry_get_EncryptionData(_Handle, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_EncryptionData)
this->_Inst_EncryptionData = new TElOpenOfficeXMLManifestEncryptionData(hOutResult, ohFalse);
else
this->_Inst_EncryptionData->updateHandle(hOutResult);
return this->_Inst_EncryptionData;
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTENCRYPTIONDATA */
void TElOpenOfficeXMLManifestFileEntry::get_FullPath(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOpenOfficeXMLManifestFileEntry_get_FullPath(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1551237872, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOpenOfficeXMLManifestFileEntry::get_FullPath(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOpenOfficeXMLManifestFileEntry_get_FullPath(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1551237872, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::set_FullPath(const sb_u16string &Value)
{
SBCheckError(TElOpenOfficeXMLManifestFileEntry_set_FullPath(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::set_FullPath(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOpenOfficeXMLManifestFileEntry_set_FullPath(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOpenOfficeXMLManifestFileEntry::get_MediaType(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOpenOfficeXMLManifestFileEntry_get_MediaType(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-863833276, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOpenOfficeXMLManifestFileEntry::get_MediaType(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOpenOfficeXMLManifestFileEntry_get_MediaType(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-863833276, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::set_MediaType(const sb_u16string &Value)
{
SBCheckError(TElOpenOfficeXMLManifestFileEntry_set_MediaType(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::set_MediaType(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOpenOfficeXMLManifestFileEntry_set_MediaType(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOpenOfficeXMLManifestFileEntry::get_PreferredViewMode(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOpenOfficeXMLManifestFileEntry_get_PreferredViewMode(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1023042605, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOpenOfficeXMLManifestFileEntry::get_PreferredViewMode(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOpenOfficeXMLManifestFileEntry_get_PreferredViewMode(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1023042605, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::set_PreferredViewMode(const sb_u16string &Value)
{
SBCheckError(TElOpenOfficeXMLManifestFileEntry_set_PreferredViewMode(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::set_PreferredViewMode(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOpenOfficeXMLManifestFileEntry_set_PreferredViewMode(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
SB_INLINE int32_t TElOpenOfficeXMLManifestFileEntry::get_Size()
{
int32_t OutResult;
SBCheckError(TElOpenOfficeXMLManifestFileEntry_get_Size(_Handle, &OutResult));
return OutResult;
}
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::set_Size(int32_t Value)
{
SBCheckError(TElOpenOfficeXMLManifestFileEntry_set_Size(_Handle, Value));
}
void TElOpenOfficeXMLManifestFileEntry::get_Version(sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = TElOpenOfficeXMLManifestFileEntry_get_Version(_Handle, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1049693767, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void TElOpenOfficeXMLManifestFileEntry::get_Version(std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = TElOpenOfficeXMLManifestFileEntry_get_Version(_Handle, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1049693767, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::set_Version(const sb_u16string &Value)
{
SBCheckError(TElOpenOfficeXMLManifestFileEntry_set_Version(_Handle, Value.data(), (int32_t)Value.length()));
}
#ifdef SB_U16STRING_USED
SB_INLINE void TElOpenOfficeXMLManifestFileEntry::set_Version(const std::wstring &Value)
{
std::string u16Value;
sb_to_u16string(Value, u16Value);
SBCheckError(TElOpenOfficeXMLManifestFileEntry_set_Version(_Handle, reinterpret_cast<const sb_char16_t*>(u16Value.data()), (int32_t)u16Value.length() >> 1));
}
#endif /* SB_U16STRING_USED */
void TElOpenOfficeXMLManifestFileEntry::initInstances()
{
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTENCRYPTIONDATA
this->_Inst_EncryptionData = NULL;
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTENCRYPTIONDATA */
}
TElOpenOfficeXMLManifestFileEntry::TElOpenOfficeXMLManifestFileEntry(TElOpenOfficeXMLManifestFileEntryHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
initInstances();
}
TElOpenOfficeXMLManifestFileEntry::TElOpenOfficeXMLManifestFileEntry() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOpenOfficeXMLManifestFileEntry_Create(&_Handle));
}
TElOpenOfficeXMLManifestFileEntry::~TElOpenOfficeXMLManifestFileEntry()
{
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTENCRYPTIONDATA
delete this->_Inst_EncryptionData;
this->_Inst_EncryptionData = NULL;
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTENCRYPTIONDATA */
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFEST
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY
SB_INLINE int32_t TElOpenOfficeXMLManifest::Add(TElOpenOfficeXMLManifestFileEntry &AFileEntry)
{
int32_t OutResult;
SBCheckError(TElOpenOfficeXMLManifest_Add(_Handle, AFileEntry.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE int32_t TElOpenOfficeXMLManifest::Add(TElOpenOfficeXMLManifestFileEntry *AFileEntry)
{
int32_t OutResult;
SBCheckError(TElOpenOfficeXMLManifest_Add(_Handle, (AFileEntry != NULL) ? AFileEntry->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY */
SB_INLINE int32_t TElOpenOfficeXMLManifest::Add(const sb_u16string &FullPath, const sb_u16string &MediaType)
{
int32_t OutResult;
SBCheckError(TElOpenOfficeXMLManifest_Add_1(_Handle, FullPath.data(), (int32_t)FullPath.length(), MediaType.data(), (int32_t)MediaType.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE int32_t TElOpenOfficeXMLManifest::Add(const std::wstring &FullPath, const std::wstring &MediaType)
{
int32_t OutResult;
std::string u16FullPath;
sb_to_u16string(FullPath, u16FullPath);
std::string u16MediaType;
sb_to_u16string(MediaType, u16MediaType);
SBCheckError(TElOpenOfficeXMLManifest_Add_1(_Handle, reinterpret_cast<const sb_char16_t*>(u16FullPath.data()), (int32_t)u16FullPath.length() >> 1, reinterpret_cast<const sb_char16_t*>(u16MediaType.data()), (int32_t)u16MediaType.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY
SB_INLINE void TElOpenOfficeXMLManifest::Insert(int32_t Index, TElOpenOfficeXMLManifestFileEntry &AFileEntry)
{
SBCheckError(TElOpenOfficeXMLManifest_Insert(_Handle, Index, AFileEntry.getHandle()));
}
SB_INLINE void TElOpenOfficeXMLManifest::Insert(int32_t Index, TElOpenOfficeXMLManifestFileEntry *AFileEntry)
{
SBCheckError(TElOpenOfficeXMLManifest_Insert(_Handle, Index, (AFileEntry != NULL) ? AFileEntry->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY */
SB_INLINE void TElOpenOfficeXMLManifest::Delete(int32_t Index)
{
SBCheckError(TElOpenOfficeXMLManifest_Delete(_Handle, Index));
}
SB_INLINE void TElOpenOfficeXMLManifest::Clear()
{
SBCheckError(TElOpenOfficeXMLManifest_Clear(_Handle));
}
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY
SB_INLINE TElOpenOfficeXMLManifestFileEntryHandle TElOpenOfficeXMLManifest::GetFileEntryByFullPath(const sb_u16string &FullPath)
{
TElOpenOfficeXMLManifestFileEntryHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifest_GetFileEntryByFullPath(_Handle, FullPath.data(), (int32_t)FullPath.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE TElOpenOfficeXMLManifestFileEntryHandle TElOpenOfficeXMLManifest::GetFileEntryByFullPath(const std::wstring &FullPath)
{
TElOpenOfficeXMLManifestFileEntryHandle OutResult;
std::string u16FullPath;
sb_to_u16string(FullPath, u16FullPath);
SBCheckError(TElOpenOfficeXMLManifest_GetFileEntryByFullPath(_Handle, reinterpret_cast<const sb_char16_t*>(u16FullPath.data()), (int32_t)u16FullPath.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY */
#ifdef SB_USE_CLASS_TELXMLDOMELEMENT
SB_INLINE void TElOpenOfficeXMLManifest::LoadFromXML(TElXMLDOMElement &Element)
{
SBCheckError(TElOpenOfficeXMLManifest_LoadFromXML(_Handle, Element.getHandle()));
}
SB_INLINE void TElOpenOfficeXMLManifest::LoadFromXML(TElXMLDOMElement *Element)
{
SBCheckError(TElOpenOfficeXMLManifest_LoadFromXML(_Handle, (Element != NULL) ? Element->getHandle() : SB_NULL_HANDLE));
}
#endif /* SB_USE_CLASS_TELXMLDOMELEMENT */
#ifdef SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifest::SaveToXML(TElXMLDOMDocument &Document, TElXMLCustomFormatter &Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifest_SaveToXML(_Handle, Document.getHandle(), Formatter.getHandle(), &OutResult));
return OutResult;
}
SB_INLINE TElXMLDOMElementHandle TElOpenOfficeXMLManifest::SaveToXML(TElXMLDOMDocument *Document, TElXMLCustomFormatter *Formatter)
{
TElXMLDOMElementHandle OutResult;
SBCheckError(TElOpenOfficeXMLManifest_SaveToXML(_Handle, (Document != NULL) ? Document->getHandle() : SB_NULL_HANDLE, (Formatter != NULL) ? Formatter->getHandle() : SB_NULL_HANDLE, &OutResult));
return OutResult;
}
#endif /* SB_USE_CLASSES_TELXMLCUSTOMFORMATTER_AND_TELXMLDOMDOCUMENT_AND_TELXMLDOMELEMENT */
SB_INLINE int32_t TElOpenOfficeXMLManifest::get_Count()
{
int32_t OutResult;
SBCheckError(TElOpenOfficeXMLManifest_get_Count(_Handle, &OutResult));
return OutResult;
}
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY
TElOpenOfficeXMLManifestFileEntry* TElOpenOfficeXMLManifest::get_FileEntries(int32_t Index)
{
TElClassHandle hOutResult = SB_NULL_HANDLE;
SBCheckError(TElOpenOfficeXMLManifest_get_FileEntries(_Handle, Index, &hOutResult));
if (SB_NULL_HANDLE == hOutResult)
return NULL;
if (NULL == this->_Inst_FileEntries)
this->_Inst_FileEntries = new TElOpenOfficeXMLManifestFileEntry(hOutResult, ohFalse);
else
this->_Inst_FileEntries->updateHandle(hOutResult);
return this->_Inst_FileEntries;
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY */
void TElOpenOfficeXMLManifest::initInstances()
{
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY
this->_Inst_FileEntries = NULL;
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY */
}
TElOpenOfficeXMLManifest::TElOpenOfficeXMLManifest(TElOpenOfficeXMLManifestHandle handle, TElOwnHandle ownHandle) : TElOfficeOpenXMLElement(handle, ownHandle)
{
initInstances();
}
TElOpenOfficeXMLManifest::TElOpenOfficeXMLManifest() : TElOfficeOpenXMLElement(SB_NULL_HANDLE, SB_OWN_HANDLE)
{
initInstances();
SBCheckError(TElOpenOfficeXMLManifest_Create(&_Handle));
}
TElOpenOfficeXMLManifest::~TElOpenOfficeXMLManifest()
{
#ifdef SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY
delete this->_Inst_FileEntries;
this->_Inst_FileEntries = NULL;
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFESTFILEENTRY */
}
#endif /* SB_USE_CLASS_TELOPENOFFICEXMLMANIFEST */
#ifdef SB_USE_GLOBAL_PROCS_OFFICEXMLCORE
bool IsValidPartIRI(const sb_u16string &IRI)
{
int8_t OutResultRaw = 0;
SBCheckError(SBOfficeXMLCore_IsValidPartIRI(IRI.data(), (int32_t)IRI.length(), &OutResultRaw));
return (OutResultRaw != 0);
}
#ifdef SB_U16STRING_USED
bool IsValidPartIRI(const std::wstring &IRI)
{
std::string u16IRI;
sb_to_u16string(IRI, u16IRI);
int8_t OutResultRaw = 0;
SBCheckError(SBOfficeXMLCore_IsValidPartIRI(reinterpret_cast<const sb_char16_t*>(u16IRI.data()), (int32_t)u16IRI.length() >> 1, &OutResultRaw));
return (OutResultRaw != 0);
}
#endif /* SB_U16STRING_USED */
bool IsValidPartURI(const std::string &URI)
{
int8_t OutResultRaw = 0;
SBCheckError(SBOfficeXMLCore_IsValidPartURI(URI.data(), (int32_t)URI.length(), &OutResultRaw));
return (OutResultRaw != 0);
}
void ConvertPartIRIToURI(const sb_u16string &IRI, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_ConvertPartIRIToURI(IRI.data(), (int32_t)IRI.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(801477801, 1, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void ConvertPartIRIToURI(const std::wstring &IRI, std::string &OutResult)
{
std::string u16IRI;
sb_to_u16string(IRI, u16IRI);
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_ConvertPartIRIToURI(reinterpret_cast<const sb_char16_t*>(u16IRI.data()), (int32_t)u16IRI.length() >> 1, (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(801477801, 1, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#endif /* SB_U16STRING_USED */
void ConvertPartURIToIRI(const std::string &URI, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_ConvertPartURIToIRI(URI.data(), (int32_t)URI.length(), (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-9801094, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void ConvertPartURIToIRI(const std::string &URI, std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = SBOfficeXMLCore_ConvertPartURIToIRI(URI.data(), (int32_t)URI.length(), NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-9801094, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
SB_INLINE int32_t ComparePartIRI(const sb_u16string &X, const sb_u16string &Y)
{
int32_t OutResult;
SBCheckError(SBOfficeXMLCore_ComparePartIRI(X.data(), (int32_t)X.length(), Y.data(), (int32_t)Y.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE int32_t ComparePartIRI(const std::wstring &X, const std::wstring &Y)
{
int32_t OutResult;
std::string u16X;
sb_to_u16string(X, u16X);
std::string u16Y;
sb_to_u16string(Y, u16Y);
SBCheckError(SBOfficeXMLCore_ComparePartIRI(reinterpret_cast<const sb_char16_t*>(u16X.data()), (int32_t)u16X.length() >> 1, reinterpret_cast<const sb_char16_t*>(u16Y.data()), (int32_t)u16Y.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
SB_INLINE int32_t ComparePartURI(const std::string &X, const std::string &Y)
{
int32_t OutResult;
SBCheckError(SBOfficeXMLCore_ComparePartURI(X.data(), (int32_t)X.length(), Y.data(), (int32_t)Y.length(), &OutResult));
return OutResult;
}
void NormalizePartIRI(const sb_u16string &IRI, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_NormalizePartIRI(IRI.data(), (int32_t)IRI.length(), (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-37187060, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void NormalizePartIRI(const std::wstring &IRI, std::wstring &OutResult)
{
std::string u16IRI;
sb_to_u16string(IRI, u16IRI);
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = SBOfficeXMLCore_NormalizePartIRI(reinterpret_cast<const sb_char16_t*>(u16IRI.data()), (int32_t)u16IRI.length() >> 1, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-37187060, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
void NormalizePartURI(const std::string &URI, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_NormalizePartURI(URI.data(), (int32_t)URI.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(-1803625732, 1, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void ResolveRelativePartIRI(const sb_u16string &BaseIRI, const sb_u16string &TargetIRI, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_ResolveRelativePartIRI(BaseIRI.data(), (int32_t)BaseIRI.length(), TargetIRI.data(), (int32_t)TargetIRI.length(), (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1132668677, 2, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void ResolveRelativePartIRI(const std::wstring &BaseIRI, const std::wstring &TargetIRI, std::wstring &OutResult)
{
std::string u16BaseIRI;
sb_to_u16string(BaseIRI, u16BaseIRI);
std::string u16TargetIRI;
sb_to_u16string(TargetIRI, u16TargetIRI);
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = SBOfficeXMLCore_ResolveRelativePartIRI(reinterpret_cast<const sb_char16_t*>(u16BaseIRI.data()), (int32_t)u16BaseIRI.length() >> 1, reinterpret_cast<const sb_char16_t*>(u16TargetIRI.data()), (int32_t)u16TargetIRI.length() >> 1, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1132668677, 2, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
void ResolveRelativePartURI(const std::string &BaseURI, const std::string &TargetURI, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_ResolveRelativePartURI(BaseURI.data(), (int32_t)BaseURI.length(), TargetURI.data(), (int32_t)TargetURI.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(-1291373468, 2, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void GetRelativePartURI(const std::string &URI, const std::string &BaseURI, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_GetRelativePartURI(URI.data(), (int32_t)URI.length(), BaseURI.data(), (int32_t)BaseURI.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(-506918966, 2, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void GetRelationshipURI(const std::string &PartURI, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_GetRelationshipURI(PartURI.data(), (int32_t)PartURI.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(854082343, 1, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void GetPartURIExtension(const std::string &URI, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_GetPartURIExtension(URI.data(), (int32_t)URI.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(-1795341552, 1, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void GetPartURIPath(const std::string &URI, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_GetPartURIPath(URI.data(), (int32_t)URI.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(1261753645, 1, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void GetPartURIName(const std::string &URI, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_GetPartURIName(URI.data(), (int32_t)URI.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(1011110045, 1, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void GetPartURIQueryComponent(const std::string &URI, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_GetPartURIQueryComponent(URI.data(), (int32_t)URI.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(-1837785038, 1, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void RemovePartURIExtension(const std::string &URI, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_RemovePartURIExtension(URI.data(), (int32_t)URI.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(-1570077630, 1, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void RemovePartIRIQueryComponent(const sb_u16string &IRI, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_RemovePartIRIQueryComponent(IRI.data(), (int32_t)IRI.length(), (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1733538700, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void RemovePartIRIQueryComponent(const std::wstring &IRI, std::wstring &OutResult)
{
std::string u16IRI;
sb_to_u16string(IRI, u16IRI);
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = SBOfficeXMLCore_RemovePartIRIQueryComponent(reinterpret_cast<const sb_char16_t*>(u16IRI.data()), (int32_t)u16IRI.length() >> 1, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1733538700, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
void RemovePartURIQueryComponent(const std::string &URI, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_RemovePartURIQueryComponent(URI.data(), (int32_t)URI.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(1249695014, 1, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void GetValueFromQueryComponent(const std::string &Query, const std::string &Key, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_GetValueFromQueryComponent(Query.data(), (int32_t)Query.length(), Key.data(), (int32_t)Key.length(), (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(1202203801, 2, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
bool IsLogicalItemSuffixName(const std::string &SuffixName)
{
int8_t OutResultRaw = 0;
SBCheckError(SBOfficeXMLCore_IsLogicalItemSuffixName(SuffixName.data(), (int32_t)SuffixName.length(), &OutResultRaw));
return (OutResultRaw != 0);
}
int32_t ParseLogicalItemSuffixName(const std::string &SuffixName, bool &IsLast)
{
int32_t OutResult;
int8_t IsLastRaw = (int8_t)IsLast;
SBCheckError(SBOfficeXMLCore_ParseLogicalItemSuffixName(SuffixName.data(), (int32_t)SuffixName.length(), &IsLastRaw, &OutResult));
IsLast = (IsLastRaw != 0);
return OutResult;
}
void FormatLogicalItemSuffixName(int32_t PieceNumber, bool IsLast, bool SkipSlash, std::string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_FormatLogicalItemSuffixName(PieceNumber, (int8_t)IsLast, (int8_t)SkipSlash, (char *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringA(1812580396, 3, (char *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void DecodeXMLEntities(const sb_u16string &Str, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_DecodeXMLEntities(Str.data(), (int32_t)Str.length(), (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1747653219, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void DecodeXMLEntities(const std::wstring &Str, std::wstring &OutResult)
{
std::string u16Str;
sb_to_u16string(Str, u16Str);
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = SBOfficeXMLCore_DecodeXMLEntities(reinterpret_cast<const sb_char16_t*>(u16Str.data()), (int32_t)u16Str.length() >> 1, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1747653219, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
void EncodeXMLEntities(const sb_u16string &Str, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_EncodeXMLEntities(Str.data(), (int32_t)Str.length(), (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-601103557, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void EncodeXMLEntities(const std::wstring &Str, std::wstring &OutResult)
{
std::string u16Str;
sb_to_u16string(Str, u16Str);
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = SBOfficeXMLCore_EncodeXMLEntities(reinterpret_cast<const sb_char16_t*>(u16Str.data()), (int32_t)u16Str.length() >> 1, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-601103557, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
void DecodeXMLName(const sb_u16string &Str, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_DecodeXMLName(Str.data(), (int32_t)Str.length(), (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(1816909424, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void DecodeXMLName(const std::wstring &Str, std::wstring &OutResult)
{
std::string u16Str;
sb_to_u16string(Str, u16Str);
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = SBOfficeXMLCore_DecodeXMLName(reinterpret_cast<const sb_char16_t*>(u16Str.data()), (int32_t)u16Str.length() >> 1, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(1816909424, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
void EncodeXMLNameSimple(const sb_u16string &Str, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_EncodeXMLNameSimple(Str.data(), (int32_t)Str.length(), (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(-1030837033, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void EncodeXMLNameSimple(const std::wstring &Str, std::wstring &OutResult)
{
std::string u16Str;
sb_to_u16string(Str, u16Str);
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = SBOfficeXMLCore_EncodeXMLNameSimple(reinterpret_cast<const sb_char16_t*>(u16Str.data()), (int32_t)u16Str.length() >> 1, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(-1030837033, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
#ifdef SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIPS
void GenerateUniqueIdForRelationship(TElOfficeOpenXMLRelationships &Relationships, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_GenerateUniqueIdForRelationship(Relationships.getHandle(), (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(842750698, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
void GenerateUniqueIdForRelationship(TElOfficeOpenXMLRelationships *Relationships, sb_u16string &OutResult)
{
int32_t szOutResult = (int32_t)OutResult.length();
uint32_t _err = SBOfficeXMLCore_GenerateUniqueIdForRelationship((Relationships != NULL) ? Relationships->getHandle() : SB_NULL_HANDLE, (sb_char16_t *)OutResult.data(), &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
OutResult.resize(szOutResult);
SBCheckError(SBGetLastReturnStringW(842750698, 1, (sb_char16_t *)OutResult.data(), &szOutResult));
}
else
SBCheckError(_err);
OutResult.resize(szOutResult);
}
#ifdef SB_U16STRING_USED
void GenerateUniqueIdForRelationship(TElOfficeOpenXMLRelationships &Relationships, std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = SBOfficeXMLCore_GenerateUniqueIdForRelationship(Relationships.getHandle(), NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(842750698, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
void GenerateUniqueIdForRelationship(TElOfficeOpenXMLRelationships *Relationships, std::wstring &OutResult)
{
std::string u16OutResult;
int32_t szOutResult = 0;
uint32_t _err = SBOfficeXMLCore_GenerateUniqueIdForRelationship((Relationships != NULL) ? Relationships->getHandle() : SB_NULL_HANDLE, NULL, &szOutResult);
if (SB_ERROR_INSUFFICIENT_BUFFER_SIZE == _err)
{
u16OutResult.resize(szOutResult << 1);
SBCheckError(SBGetLastReturnStringW(842750698, 1, reinterpret_cast<sb_char16_t*>((char*)u16OutResult.data()), &szOutResult));
}
else
SBCheckError(_err);
u16OutResult.resize(szOutResult << 1);
sb_u16_to_wstring(u16OutResult, OutResult);
}
#endif /* SB_U16STRING_USED */
#endif /* SB_USE_CLASS_TELOFFICEOPENXMLRELATIONSHIPS */
TSBOfficeOpenXMLDocumentType GetOpenXMLDocumentTypeFromContentType(const std::string &ContentType)
{
TSBOfficeOpenXMLDocumentTypeRaw OutResultRaw = 0;
SBCheckError(SBOfficeXMLCore_GetOpenXMLDocumentTypeFromContentType(ContentType.data(), (int32_t)ContentType.length(), &OutResultRaw));
return (TSBOfficeOpenXMLDocumentType)OutResultRaw;
}
TSBOpenOfficeDocumentType GetOpenDocumentTypeFromMimeType(const std::string &MimeType)
{
TSBOpenOfficeDocumentTypeRaw OutResultRaw = 0;
SBCheckError(SBOfficeXMLCore_GetOpenDocumentTypeFromMimeType(MimeType.data(), (int32_t)MimeType.length(), &OutResultRaw));
return (TSBOpenOfficeDocumentType)OutResultRaw;
}
SB_INLINE int32_t WideCompareStrOrdinal(const sb_u16string &S1, const sb_u16string &S2)
{
int32_t OutResult;
SBCheckError(SBOfficeXMLCore_WideCompareStrOrdinal(S1.data(), (int32_t)S1.length(), S2.data(), (int32_t)S2.length(), &OutResult));
return OutResult;
}
#ifdef SB_U16STRING_USED
SB_INLINE int32_t WideCompareStrOrdinal(const std::wstring &S1, const std::wstring &S2)
{
int32_t OutResult;
std::string u16S1;
sb_to_u16string(S1, u16S1);
std::string u16S2;
sb_to_u16string(S2, u16S2);
SBCheckError(SBOfficeXMLCore_WideCompareStrOrdinal(reinterpret_cast<const sb_char16_t*>(u16S1.data()), (int32_t)u16S1.length() >> 1, reinterpret_cast<const sb_char16_t*>(u16S2.data()), (int32_t)u16S2.length() >> 1, &OutResult));
return OutResult;
}
#endif /* SB_U16STRING_USED */
#endif /* SB_USE_GLOBAL_PROCS_OFFICEXMLCORE */
}; /* namespace SecureBlackbox */
| [
"leovant@gmail.com"
] | leovant@gmail.com |
4a78d14126b04e9b02ccd8f300ccdaca212952cc | 4c23be1a0ca76f68e7146f7d098e26c2bbfb2650 | /ic8h18/0.002/NEOC5H11CO | f695cf0b276e37ae1b104fb222b4bd4f02b0666e | [] | no_license | labsandy/OpenFOAM_workspace | a74b473903ddbd34b31dc93917e3719bc051e379 | 6e0193ad9dabd613acf40d6b3ec4c0536c90aed4 | refs/heads/master | 2022-02-25T02:36:04.164324 | 2019-08-23T02:27:16 | 2019-08-23T02:27:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 842 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.002";
object NEOC5H11CO;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField uniform 9.43653e-14;
boundaryField
{
boundary
{
type empty;
}
}
// ************************************************************************* //
| [
"jfeatherstone123@gmail.com"
] | jfeatherstone123@gmail.com | |
bd8dd50a54c848615f44ee52c02e212dad7166c2 | 7ef42c66e7a4f0071cd7d79a5ed68997470bbd23 | /ASprojektSC/Time Events 2.h | 3ab8c1f83fcdec3bf069038738bfa07de10b2d6f | [] | no_license | kedzierzawy2310/ASprojektSC | c21ed85190902d2885aac24c9aaa4abffd1079e5 | 2e7fc428b0e08d57933ba9882063b27a6d65f1f0 | refs/heads/master | 2020-07-11T08:38:05.233000 | 2019-09-05T00:28:45 | 2019-09-05T00:28:45 | 204,492,440 | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 3,232 | h | #pragma once
#include "Restaurant.h"
#include "Manager.h"
#include "Hall.h"
#include "Stats.h"
class Harmonogram;
class ZdarzeniaCzasowe
{
double czas_wykonania_;
int rozklad_;
//------------------------------------------------------------------------------------------- PARAMETRY GENERATORÓW -----------------------------------------------------------------------------------------------------------------
double mean_a_ = 650; //modyfikacja możliwa - 1500
double sigma_a_ = 10; //modyyfikacja możliwa - 100
double mean_b_ = 2900;
double sigma_b_ = 80; //modyfikacja możliwa - 80
double mean_c_ = 4200;
double sigma_c_ = 50;
double lambda_kasy_ = 1 / 3000.0; //modyfikacja możliwa - 1/220
double lambda_konsumpcja_ = 1 / 2020.0;
double lambda_jedzenie_ = 1 / 3000.0; //modyfikacja możliwa - 1/2000
double lambda_napoje_ = 1 / 6000.0; //modyfikacja możliwa - 1/370
public:
ZdarzeniaCzasowe();
virtual ~ZdarzeniaCzasowe();
virtual void execute();
void UstawRozklad(int i);
double PodajCzasWykonania();
void UstawCzasWykonania(Harmonogram* harmonogram);
double losuj(int rozklad, Harmonogram* harmonogram);
int PodajRozklad();
};
class nowaGrupa:public ZdarzeniaCzasowe
{
Restauracja* restauracja_;
Harmonogram* harmonogram_;
Statystyki* statystyki_;
public:
nowaGrupa(Restauracja* restauracja, Harmonogram* harmonogram, Statystyki* statystyki);
void execute() override;
};
class powrotKierownika :public ZdarzeniaCzasowe
{
Kierownik * kierownik_;
Harmonogram* harmonogram_;
public:
powrotKierownika(Kierownik* kierownik, Harmonogram* harmonogram);
void execute() override;
};
class podanieNapojow :public ZdarzeniaCzasowe
{
Sala* sala_;
Harmonogram* harmonogram_;
public:
podanieNapojow(Sala* sala, Harmonogram* harmonogram);
void execute() override;
};
class podanieDan :public ZdarzeniaCzasowe
{
Restauracja * restauracja_;
Sala * sala_;
Harmonogram* harmonogram_;
Statystyki* statystyki_;
public:
podanieDan(Restauracja* restauracja, Sala* sala, Harmonogram* harmonogram, Statystyki* statystyki);
void execute() override;
};
class powrotZBufetu :public ZdarzeniaCzasowe
{
Restauracja* restauracja_;
Bufet* bufet_;
Harmonogram* harmonogram_;
Statystyki* statystyki_;
public:
powrotZBufetu(Restauracja* restauracja, Bufet* bufet, Harmonogram* harmonogram, Statystyki* statystyki);
void execute() override;
};
class koniecKonsumpcji :public ZdarzeniaCzasowe
{
Restauracja * restauracja_;
Sala* sala_;
Harmonogram* harmonogram_;
Statystyki* statystyki_;
public:
koniecKonsumpcji(Restauracja* restauracja, Sala* sala, Harmonogram* harmonogram, Statystyki* statystyki);
void execute() override;
};
class dokonaniePlatnosci :public ZdarzeniaCzasowe
{
Restauracja * restauracja_;
Harmonogram* harmonogram_;
Statystyki* statystyki_;
public:
dokonaniePlatnosci(Restauracja* restauracja, Harmonogram* harmonogram, Statystyki* statystyki);
void execute() override;
};
class alarm :public ZdarzeniaCzasowe
{
Restauracja * restauracja_;
Sala* sala_;
Bufet* bufet_;
Harmonogram* harmonogram_;
Statystyki* statystyki_;
public:
alarm(Restauracja* restauracja, Sala* sala, Bufet* bufet, Harmonogram* harmonogram, Statystyki* statystyki);
void execute() override;
}; | [
"kedzierzawy2310@interia.pl"
] | kedzierzawy2310@interia.pl |
da433585e8dc278a98e95dfc1d15ee11be1e51b9 | 299648a8c633728662d0b7651cd98afdc28db902 | /src/thirdparty/cef_binary_78/tests/cefclient/browser/osr_accessibility_node.cc | a86125188ac071d9068523cda826f712a9a7f690 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown"
] | permissive | aardvarkxr/aardvark | 2978277b34c2c3894d6aafc4c590f3bda50f4d43 | 300d0d5e9b872ed839fae932c56eff566967d24b | refs/heads/master | 2023-01-12T18:42:10.705028 | 2021-08-18T04:09:02 | 2021-08-18T04:09:02 | 182,431,653 | 183 | 25 | BSD-3-Clause | 2023-01-07T12:42:14 | 2019-04-20T16:55:30 | TypeScript | UTF-8 | C++ | false | false | 5,515 | cc | // Copyright 2017 The Chromium Embedded Framework Authors. Portions copyright
// 2013 The Chromium Authors. All rights reserved. Use of this source code is
// governed by a BSD-style license that can be found in the LICENSE file.
// Base class implementation for CEF Acccessibility node. This is subclassed and
// used by both IAccessible/NSAccessibility protocol implementation.
#include "tests/cefclient/browser/osr_accessibility_node.h"
#include "tests/cefclient/browser/osr_accessibility_helper.h"
namespace client {
OsrAXNode::OsrAXNode(int treeId,
int nodeId,
CefRefPtr<CefDictionaryValue> value,
OsrAccessibilityHelper* helper)
: tree_id_(treeId),
node_id_(nodeId),
child_tree_id_(-1),
platform_accessibility_(NULL),
parent_(NULL),
offset_container_id_(-1),
accessibility_helper_(helper) {
UpdateValue(value);
}
void OsrAXNode::UpdateLocation(CefRefPtr<CefDictionaryValue> value) {
// Update Bounds
if (value->HasKey("bounds")) {
CefRefPtr<CefDictionaryValue> loc = value->GetDictionary("bounds");
if (loc) {
location_ = CefRect(loc->GetDouble("x"), loc->GetDouble("y"),
loc->GetDouble("width"), loc->GetDouble("height"));
}
}
// Update offsets
if (value->HasKey("offset_container_id")) {
offset_container_id_ = OsrAccessibilityHelper::CastToInt(
value->GetValue("offset_container_id"));
}
}
void OsrAXNode::UpdateValue(CefRefPtr<CefDictionaryValue> value) {
if (value->HasKey("role"))
role_ = value->GetString("role");
if (value->HasKey("child_ids")) {
CefRefPtr<CefListValue> childs = value->GetList("child_ids");
// Reset child Ids
child_ids_.clear();
for (size_t idx = 0; idx < childs->GetSize(); idx++)
child_ids_.push_back(
OsrAccessibilityHelper::CastToInt(childs->GetValue(idx)));
}
// Update Location
if (value->HasKey("location")) {
CefRefPtr<CefDictionaryValue> loc = value->GetDictionary("location");
if (loc) {
location_ = CefRect(loc->GetDouble("x"), loc->GetDouble("y"),
loc->GetDouble("width"), loc->GetDouble("height"));
}
}
// Update offsets
if (value->HasKey("offset_container_id")) {
offset_container_id_ = OsrAccessibilityHelper::CastToInt(
value->GetValue("offset_container_id"));
}
// Update attributes
if (value->HasKey("attributes")) {
child_tree_id_ = -1;
attributes_ = value->GetDictionary("attributes");
if (attributes_) {
scroll_.x = attributes_->HasKey("scrollX")
? OsrAccessibilityHelper::CastToInt(
attributes_->GetValue("scrollX"))
: 0;
scroll_.y = attributes_->HasKey("scrollY")
? OsrAccessibilityHelper::CastToInt(
attributes_->GetValue("scrollY"))
: 0;
}
if (attributes_ && attributes_->HasKey("childTreeId")) {
child_tree_id_ = OsrAccessibilityHelper::CastToInt(
attributes_->GetValue("childTreeId"));
}
if (attributes_ && attributes_->HasKey("name"))
name_ = attributes_->GetString("name");
if (attributes_ && attributes_->HasKey("value"))
value_ = attributes_->GetString("value");
if (attributes_ && attributes_->HasKey("description"))
description_ = attributes_->GetString("description");
}
}
CefWindowHandle OsrAXNode::GetWindowHandle() const {
if (accessibility_helper_)
return accessibility_helper_->GetWindowHandle();
return NULL;
}
CefRefPtr<CefBrowser> OsrAXNode::GetBrowser() const {
if (accessibility_helper_)
return accessibility_helper_->GetBrowser();
return NULL;
}
void OsrAXNode::SetParent(OsrAXNode* parent) {
parent_ = parent;
}
CefRect OsrAXNode::AxLocation() const {
CefRect loc = location_;
loc.x -= scroll_.x;
loc.y -= scroll_.y;
OsrAXNode* offsetNode =
accessibility_helper_->GetNode(OsrAXTreeId(), offset_container_id_);
if (!offsetNode) {
OsrAXNode* p = parent_;
while (p) {
if (p->OsrAXTreeId() != OsrAXTreeId()) {
offsetNode = p;
break;
}
p = p->parent_;
}
}
// Add offset from parent Location
if (offsetNode) {
CefRect offset = offsetNode->AxLocation();
loc.x += offset.x;
loc.y += offset.y;
}
return loc;
}
int OsrAXNode::GetChildCount() const {
int count = static_cast<int>(child_ids_.size());
if (child_tree_id_ >= 0) {
OsrAXNode* childTreeRootNode =
accessibility_helper_->GetTreeRootNode(child_tree_id_);
if (childTreeRootNode) {
count++;
}
}
return count;
}
OsrAXNode* OsrAXNode::ChildAtIndex(int index) const {
int count = static_cast<int>(child_ids_.size());
if (index < count)
return accessibility_helper_->GetNode(OsrAXTreeId(), child_ids_[index]);
if ((index == count) && (child_tree_id_ >= 0)) {
OsrAXNode* childTreeRootNode =
accessibility_helper_->GetTreeRootNode(child_tree_id_);
if (childTreeRootNode) {
return childTreeRootNode;
}
}
return NULL;
}
// Create and return the platform specific OsrAXNode Object
OsrAXNode* OsrAXNode::CreateNode(int treeId,
int nodeId,
CefRefPtr<CefDictionaryValue> value,
OsrAccessibilityHelper* helper) {
return new OsrAXNode(treeId, nodeId, value, helper);
}
} // namespace client
| [
"joe@valvesoftware.com"
] | joe@valvesoftware.com |
2579e92bfed4b9e700c20e563ce0d515c5fe7571 | c4aa092e45dc943ed3932a796a0870ce84714500 | /CommonUtl/utl/UI/GdiCoords.h | 7a007d81d530fcaa38a35813f966284305eeecd5 | [] | no_license | 15831944/DevTools | d07897dd7a36afa6d287cac72a54589da15f968d | 50723004dc9c705e8f095d6f503beeb4096e4987 | refs/heads/master | 2022-11-21T05:41:56.927474 | 2020-07-24T12:30:59 | 2020-07-24T12:30:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,180 | h | #ifndef GdiCoords_h
#define GdiCoords_h
#pragma once
#include "ui_fwd.h"
namespace ui
{
inline CPoint MaxPoint( const POINT& left, const POINT& right ) { return CPoint( std::max( left.x, right.x ), std::max( left.y, right.y ) ); }
inline CPoint MinPoint( const POINT& left, const POINT& right ) { return CPoint( std::min( left.x, right.x ), std::min( left.y, right.y ) ); }
inline CSize MaxSize( const SIZE& left, const SIZE& right ) { return CSize( std::max( left.cx, right.cx ), std::max( left.cy, right.cy ) ); }
inline CSize MinSize( const SIZE& left, const SIZE& right ) { return CSize( std::min( left.cx, right.cx ), std::min( left.cy, right.cy ) ); }
inline bool IsEmptySize( const SIZE& size ) { return 0 == size.cx || 0 == size.cy; }
inline CSize ScaleSize( const SIZE& size, int mulBy, int divBy = 100 )
{
return CSize( MulDiv( size.cx, mulBy, divBy ), MulDiv( size.cy, mulBy, divBy ) );
}
inline CSize ScaleSize( const SIZE& size, double factor )
{
return CSize( static_cast< long >( factor * size.cx ), static_cast< long >( factor * size.cy ) );
}
inline CRect& SetRectSize( CRect& rRect, const SIZE& size )
{
rRect.BottomRight() = rRect.TopLeft() + size;
return rRect;
}
inline bool FitsInside( const SIZE& destBoundsSize, const SIZE& srcSize )
{
return srcSize.cx <= destBoundsSize.cx && srcSize.cy <= destBoundsSize.cy;
}
inline bool FitsExactly( const SIZE& destBoundsSize, const SIZE& srcSize )
{
return
( srcSize.cx == destBoundsSize.cx && srcSize.cy <= destBoundsSize.cy ) ||
( srcSize.cx <= destBoundsSize.cx && srcSize.cy == destBoundsSize.cy );
}
inline __int64 GetSizeArea( const SIZE& size ) { return static_cast<__int64>( size.cx ) * static_cast<__int64>( size.cy ); }
// aspect ratio
inline double GetAspectRatio( const SIZE& size ) { return (double)size.cx / size.cy; }
double GetDistFromSquareAspect( const SIZE& size );
CSize StretchToFit( const SIZE& destBoundsSize, const SIZE& srcSize );
CRect StretchToFit( const CRect& destBoundsRect, const SIZE& srcSize, CSize spacingSize = CSize( 0, 0 ), int alignment = H_AlignCenter | V_AlignCenter );
inline CSize ShrinkToFit( const SIZE& destBoundsSize, const SIZE& srcSize )
{
return FitsInside( destBoundsSize, srcSize )
? srcSize
: StretchToFit( destBoundsSize, srcSize );
}
CSize StretchSize( const SIZE& destBoundsSize, const SIZE& srcSize, StretchMode stretchMode );
inline CPoint TopLeft( const RECT& rect ) { return CPoint( rect.left, rect.top ); }
inline CPoint TopRight( const RECT& rect ) { return CPoint( rect.right, rect.top ); }
inline CPoint BottomLeft( const RECT& rect ) { return CPoint( rect.left, rect.bottom ); }
inline CPoint BottomRight( const RECT& rect ) { return CPoint( rect.right, rect.bottom ); }
inline CSize RectSize( const RECT& rect ) { return CSize( rect.right - rect.left, rect.bottom - rect.top ); }
inline int RectWidth( const RECT& rect ) { return rect.right - rect.left; }
inline int RectHeight( const RECT& rect ) { return rect.bottom - rect.top; }
CRect& AlignRect( CRect& rDest, const RECT& anchor, int alignment, bool limitDest = false );
inline CRect& AlignRectHV( CRect& rDest, const RECT& anchor, Alignment horz, Alignment vert, bool limitDest = false )
{
return AlignRect( rDest, anchor, horz | vert, limitDest );
}
CRect& CenterRect( CRect& rDest, const RECT& anchor, bool horiz = true, bool vert = true, bool limitDest = false, const CSize& offset = CSize( 0, 0 ) );
enum Stretch { Width, Height, Size };
void StretchRect( CRect& rDest, const RECT& anchor, Stretch stretch );
bool EnsureVisibleRect( CRect& rDest, const RECT& anchor, bool horiz = true, bool vert = true );
void EnsureMinEdge( CRect& rInner, const RECT& outer, int edge = 1 );
enum LineOrientation { HorizontalLine, VerticalLine, DiagonalLine, NoLine };
LineOrientation GetLineOrientation( const POINT& point1, const POINT& point2 );
}
namespace ui
{
// GDI utils
int CombineWithRegion( CRgn* pCombined, const RECT& rect, int combineMode );
int CombineRects( CRgn* pCombined, const RECT& outerRect, const RECT& innerRect, int combineMode = RGN_DIFF );
}
#endif // GdiCoords_h
| [
"phc.2nd@gmail.com"
] | phc.2nd@gmail.com |
0d54022a2bbb47e8d934105ce25c81d71b83ab56 | 0b86923a757c16333d53f7d0e6f1ba9dd4e15553 | /Source/Pot/Model/Submesh.h | 0aaa271b926f3f522423377040fc1c53e4d3876e | [] | no_license | KanayaMaki/CPot | f302688d73c29a77bd93778567c3bbe941f052ea | 60d690471cde22fa735bb5fb627f46bd4dc6c419 | refs/heads/master | 2021-09-14T01:36:02.553433 | 2018-02-14T06:51:27 | 2018-02-14T06:51:27 | 109,659,404 | 0 | 0 | null | 2017-12-10T17:34:26 | 2017-11-06T07:04:30 | C | UTF-8 | C++ | false | false | 181 | h | #pragma once
#include "./Pot/Atom/atom.h"
namespace cpot {
template <typename MaterialType>
struct Submesh {
u32 indexCount;
u32 indexStartCount;
MaterialType material;
};
}
| [
"chlminami64@gmail.com"
] | chlminami64@gmail.com |
5f863d4c733fb6b5536fb836f93ddf04f9097eed | 8571e954058c35894d334bb5325c579419475a6c | /chrome/browser/ui/webui/memories/memories_handler.cc | a043f7d98f7351609e226fdb1222abc40d1534ac | [
"BSD-3-Clause"
] | permissive | SHITIZ-AGGARWAL/chromium | a6a3c88715f4e78bae922fdb78e28f46980cd3d3 | 94b656d5d3a9fd41f5cfc240efa7a8494a3c128f | refs/heads/main | 2023-03-24T13:13:24.992693 | 2021-04-14T13:31:09 | 2021-04-14T13:31:09 | 357,918,068 | 0 | 1 | BSD-3-Clause | 2021-04-14T13:37:51 | 2021-04-14T13:37:51 | null | UTF-8 | C++ | false | false | 11,515 | cc | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/webui/memories/memories_handler.h"
#include <algorithm>
#include <utility>
#include <vector>
#include "chrome/browser/history_clusters/memories_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "components/history_clusters/core/memories_features.h"
#include "components/history_clusters/core/memories_service.h"
#include "content/public/browser/web_contents.h"
#include "url/gurl.h"
#if !defined(CHROME_BRANDED)
#include "base/bind.h"
#include "base/containers/contains.h"
#include "base/i18n/case_conversion.h"
#include "base/i18n/time_formatting.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "base/unguessable_token.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/history/history_service_factory.h"
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/tabs/tab_group.h"
#include "chrome/browser/ui/tabs/tab_group_model.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/bookmarks/browser/url_and_title.h"
#include "components/history/core/browser/history_service.h"
#include "components/history/core/browser/history_types.h"
#include "components/search_engines/template_url_service.h"
#include "ui/base/l10n/time_format.h"
namespace {
GURL GetRandomlySizedThumbnailUrl() {
const std::vector<int> dimensions = {150, 160, 170, 180, 190, 200};
auto random_dimension = [&dimensions]() {
return dimensions[rand() % dimensions.size()];
};
return GURL(base::StringPrintf("https://via.placeholder.com/%dX%d",
random_dimension(), random_dimension()));
}
} // namespace
#endif
MemoriesHandler::MemoriesHandler(
mojo::PendingReceiver<history_clusters::mojom::PageHandler>
pending_page_handler,
Profile* profile,
content::WebContents* web_contents)
: profile_(profile),
web_contents_(web_contents),
page_handler_(this, std::move(pending_page_handler)) {
DCHECK(profile_);
DCHECK(web_contents_);
}
MemoriesHandler::~MemoriesHandler() = default;
void MemoriesHandler::SetPage(
mojo::PendingRemote<history_clusters::mojom::Page> pending_page) {
page_.Bind(std::move(pending_page));
}
void MemoriesHandler::QueryMemories(const std::string& query,
QueryMemoriesCallback callback) {
auto result_callback = base::BindOnce(
&MemoriesHandler::OnMemoriesQueryResults, weak_ptr_factory_.GetWeakPtr(),
query, std::move(callback));
if (history_clusters::RemoteModelEndpoint().is_valid()) {
auto* memory_service =
MemoriesServiceFactory::GetForBrowserContext(profile_);
memory_service->QueryMemories(query, std::move(result_callback));
} else {
#if defined(CHROME_BRANDED)
std::move(callback).Run(history_clusters::mojom::MemoriesResult::New());
#else
history::HistoryService* history_service =
HistoryServiceFactory::GetForProfile(
profile_, ServiceAccessType::EXPLICIT_ACCESS);
history::QueryOptions query_options;
query_options.duplicate_policy = history::QueryOptions::KEEP_ALL_DUPLICATES;
query_options.SetRecentDayRange(90);
history_service->QueryHistory(
base::UTF8ToUTF16(query), query_options,
base::BindOnce(&MemoriesHandler::OnHistoryQueryResults,
weak_ptr_factory_.GetWeakPtr(),
std::move(result_callback)),
&history_task_tracker_);
#endif
}
}
void MemoriesHandler::OnMemoriesQueryResults(
const std::string& query,
QueryMemoriesCallback callback,
std::vector<history_clusters::mojom::MemoryPtr> memory_mojoms) {
auto result_mojom = history_clusters::mojom::MemoriesResult::New();
result_mojom->title = base::UTF8ToUTF16(query);
result_mojom->thumbnail_url = GetRandomlySizedThumbnailUrl();
result_mojom->memories = std::move(memory_mojoms);
std::move(callback).Run(std::move(result_mojom));
}
#if !defined(CHROME_BRANDED)
void MemoriesHandler::OnHistoryQueryResults(
MemoriesQueryResultsCallback callback,
history::QueryResults results) {
if (results.empty()) {
std::move(callback).Run({});
return;
}
auto memory_mojom = history_clusters::mojom::Memory::New();
memory_mojom->id = base::UnguessableToken::Create();
const TemplateURLService* template_url_service =
TemplateURLServiceFactory::GetForProfile(profile_);
const TemplateURL* default_search_provider =
template_url_service->GetDefaultSearchProvider();
const SearchTermsData& search_terms_data =
template_url_service->search_terms_data();
for (const auto& result : results) {
// Last visit time of the Memory is that of the most recently visited URL.
if (memory_mojom->last_visit_time.is_null()) {
memory_mojom->last_visit_time = result.visit_time();
}
// Check if the URL is a valid search URL.
std::u16string search_terms;
bool is_valid_search_url =
default_search_provider &&
default_search_provider->ExtractSearchTermsFromURL(
result.url(), search_terms_data, &search_terms) &&
!search_terms.empty();
if (is_valid_search_url) {
// If the URL is a valid search URL, try to create a related search query.
const std::u16string& search_query =
base::i18n::ToLower(base::CollapseWhitespace(search_terms, false));
// Skip duplicate search queries.
if (base::Contains(memory_mojom->related_searches, search_query,
[](const auto& search_query_ptr) {
return search_query_ptr->query;
})) {
continue;
}
TemplateURLRef::SearchTermsArgs search_terms_args(search_query);
const TemplateURLRef& search_url_ref = default_search_provider->url_ref();
const std::string& search_url = search_url_ref.ReplaceSearchTerms(
search_terms_args, search_terms_data);
auto search_query_mojom = history_clusters::mojom::SearchQuery::New();
search_query_mojom->query = search_query;
search_query_mojom->url = GURL(search_url);
memory_mojom->related_searches.push_back(std::move(search_query_mojom));
} else { // !is_valid_search_url
// If the URL is not a search URL, try to add the visit to the top visits.
auto visit = history_clusters::mojom::Visit::New();
// TOOD(mahmadi): URLResult does not contain visit_id.
visit->url = result.url();
visit->page_title = result.title();
visit->thumbnail_url = GetRandomlySizedThumbnailUrl();
visit->time = result.visit_time();
visit->relative_date = ui::TimeFormat::Simple(
ui::TimeFormat::FORMAT_ELAPSED, ui::TimeFormat::LENGTH_SHORT,
base::Time::Now() - visit->time);
visit->time_of_day = base::TimeFormatTimeOfDay(visit->time);
std::function<void(std::vector<history_clusters::mojom::VisitPtr>&, bool)>
add_visit;
add_visit = [&visit, &add_visit](auto& visits, bool are_top_visits) {
// Count |visit| toward duplicate visits if the same URL is seen before.
auto duplicate_visit_it = std::find_if(
visits.begin(), visits.end(), [&visit](const auto& visit_ptr) {
return visit_ptr->url == visit->url;
});
if (duplicate_visit_it != visits.end()) {
(*duplicate_visit_it)->num_duplicate_visits++;
return;
}
// For the top visits, if the domain name is seen before, add |visit| to
// the related visits of the respective top visit recursively.
if (are_top_visits) {
auto related_visit_it = std::find_if(
visits.begin(), visits.end(), [&visit](const auto& visit_ptr) {
return visit_ptr->url.host() == visit->url.host();
});
if (related_visit_it != visits.end()) {
add_visit((*related_visit_it)->related_visits, false);
return;
}
}
// Otherwise, simply add |visit| to the list of visits.
visits.push_back(std::move(visit));
};
add_visit(memory_mojom->top_visits, true);
}
}
// Add related tab groups (tab groups containing any of the visited URLs).
Browser* browser = chrome::FindBrowserWithWebContents(web_contents_);
if (browser) {
const TabStripModel* tab_strip_model = browser->tab_strip_model();
const TabGroupModel* group_model = tab_strip_model->group_model();
for (const auto& group_id : group_model->ListTabGroups()) {
const TabGroup* tab_group = group_model->GetTabGroup(group_id);
bool tab_group_has_url_in_memory = false;
gfx::Range tabs = tab_group->ListTabs();
for (uint32_t index = tabs.start(); index < tabs.end(); ++index) {
content::WebContents* web_contents =
tab_strip_model->GetWebContentsAt(index);
const GURL& url = web_contents->GetLastCommittedURL();
auto matching_result_it = std::find_if(
results.begin(), results.end(),
[&url](const auto& result) { return result.url() == url; });
if (matching_result_it != results.end()) {
tab_group_has_url_in_memory = true;
break;
}
}
if (tab_group_has_url_in_memory) {
auto tab_group_mojom = history_clusters::mojom::TabGroup::New();
tab_group_mojom->id = tab_group->id().token();
tab_group_mojom->title = tab_group->visual_data()->title();
for (uint32_t index = tabs.start(); index < tabs.end(); ++index) {
content::WebContents* web_contents =
tab_strip_model->GetWebContentsAt(index);
auto webpage = history_clusters::mojom::WebPage::New();
webpage->url = web_contents->GetLastCommittedURL();
webpage->title = web_contents->GetTitle();
webpage->thumbnail_url = GetRandomlySizedThumbnailUrl();
tab_group_mojom->pages.push_back(std::move(webpage));
}
memory_mojom->related_tab_groups.push_back(std::move(tab_group_mojom));
}
}
}
// Add related bookmarks (bookmarked URLs among the visited URLs).
bookmarks::BookmarkModel* model =
BookmarkModelFactory::GetForBrowserContext(profile_);
if (model && model->loaded()) {
std::vector<bookmarks::UrlAndTitle> bookmarks;
model->GetBookmarks(&bookmarks);
for (const auto& bookmark : bookmarks) {
auto matching_result_it = std::find_if(
results.begin(), results.end(), [&bookmark](const auto& result) {
return result.url() == bookmark.url;
});
if (matching_result_it != results.end()) {
auto webpage = history_clusters::mojom::WebPage::New();
webpage->url = matching_result_it->url();
webpage->title = matching_result_it->title();
webpage->thumbnail_url = GetRandomlySizedThumbnailUrl();
memory_mojom->bookmarks.push_back(std::move(webpage));
}
}
}
std::vector<history_clusters::mojom::MemoryPtr> memory_mojoms;
memory_mojoms.push_back(std::move(memory_mojom));
std::move(callback).Run(std::move(memory_mojoms));
}
#endif
| [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
779bb3f009dbded75c6e1bb119b01dbeb566e680 | af278a0a4521a1b7373d27cfc81f26c1c41d8b44 | /framework/archive/QEArchiveManager.cpp | 6518bfad0ec22595dc959ae4b2ae960b8068e9b1 | [] | no_license | TDControlsGroup/CLARA_RGA | 0cb90a130c5d64d75a263ae517b5f43f4ff6d06f | 31c92e97e3037f60f7bd1551979ca1771c3ee437 | refs/heads/master | 2021-01-13T05:20:24.894596 | 2017-03-27T16:42:42 | 2017-03-27T16:42:42 | 81,346,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,823 | cpp | /* QEArchiveManager.cpp
*
* This file is part of the EPICS QT Framework, initially developed at the
* Australian Synchrotron.
*
* The EPICS QT Framework is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The EPICS QT Framework is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the EPICS QT Framework. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (c) 2012,2016 Australian Synchrotron
*
* Author:
* Andrew Starritt
* Contact details:
* andrew.starritt@synchrotron.org.au
*/
#include <stdlib.h>
#include <QDebug>
#include <QHash>
#include <QMap>
#include <QList>
#include <QMutex>
#include <QRegExp>
#include <QThread>
#include <QUrl>
#include <QECommon.h>
#include <QEAdaptationParameters.h>
#include <QEArchiveManager.h>
#define DEBUG qDebug () << "QEArchiveManager" << __LINE__ << __FUNCTION__ << " "
//------------------------------------------------------------------------------
//
ArchiveInterfacePlus::ArchiveInterfacePlus (QUrl url, QObject* parent) : QEArchiveInterface (url, parent)
{
this->state = QEArchiveAccess::Unknown;
this->available = 0;
this->read = 0;
this->numberPVs = 0;
this->timer = new QTimer (this);
this->timer->setInterval (100); // Allow 100 mS between requests.
this->requestIndex = 0;
connect (this->timer, SIGNAL (timeout ()),
this, SLOT (timeout ()));
}
//------------------------------------------------------------------------------
//
void ArchiveInterfacePlus::timeout ()
{
if (this->requestIndex < this->available) {
emit this->nextRequest (this->requestIndex);
this->requestIndex++;
} else {
// All requests send - we can stop now.
//
this->timer->stop ();
}
}
//------------------------------------------------------------------------------
// The archive manager can support many different interfaces.
//
typedef QList <ArchiveInterfacePlus*> ArchiveInterfaceLists;
//------------------------------------------------------------------------------
// Archive class type provides key (and name and path - these not used as such
// but may prove to be usefull).
// For a particualar PV, we also retrieve a start and stop time.
//
class KeyTimeSpec : public QEArchiveInterface::Archive {
public:
QCaDateTime startTime;
QCaDateTime endTime;
};
//------------------------------------------------------------------------------
// Each PV may have one or more archives available on the same
// host, e.g. a short term archive and a long term archive.
// However we expect all archives for a particlar PV to be co-hosted.
//
// This type provides a mapping from key (sparce numbers) to KeyTimeSpec
// which contain the key itself, together with the available start/stop
// times. This allows use to choose the key that best fits the request
// time frame.
//
// Note: QHash provides faster lookups than QMap.
// When iterating over a QMap, the items are always sorted by key.
// With QHash, the items are arbitrarily ordered.
//
class SourceSpec {
public:
ArchiveInterfacePlus* interface;
QHash <int, KeyTimeSpec> keyToTimeSpecLookUp;
};
//------------------------------------------------------------------------------
// Mapping by PV name to essentially archive source to key(s) and time range(s)
// that support the PV.
// NOTE: We use a map here as we want sorted keys.
//
typedef QMap <QString, SourceSpec> PVNameToSourceSpecLookUp;
//------------------------------------------------------------------------------
//
class QEArchiveThread : public QThread {
public:
void run () { exec (); }
};
//==============================================================================
// Local Data
//==============================================================================
// We declare these items here as opposed as static members of the class because
// the later made all the EPICS plugin widgets "go away" in designer.
// I think the are issues when QObjects declared in header files.
//
// Allows only one object to be effectively created. Second and subsequent object
// do nothing, except waste space.
//
static QMutex *singletonMutex = new QMutex ();
static QEArchiveManager *singletonManager = NULL;
static QEArchiveThread *singletonThread = NULL;
static QMutex *archiveDataMutex = new QMutex ();
static ArchiveInterfaceLists archiveInterfaceList;
static PVNameToSourceSpecLookUp pvNameToSourceLookUp;
static bool allArchivesRead = false;
static int numberArchivesRead = 0;
static bool environmentErrorReported = false;
//==============================================================================
// QEArchiveManager Class Methods
//==============================================================================
//
//The singleton manager object is an orphan because we move it to singletonThread.
//
QEArchiveManager::QEArchiveManager (const QString& archivesIn,
const QString& patternIn) : QObject (NULL)
{
this->archives = archivesIn;
this->pattern = patternIn;
this->timer = new QTimer (this);
this->lastReadTime = QDateTime::currentDateTime ().toUTC ().addSecs (-300);
// Hard-coded message Id.
//
this->setSourceId (9001);
// Register status message types.
//
qRegisterMetaType<QEArchiveAccess::States> ("QEArchiveAccess::States");
qRegisterMetaType<QEArchiveAccess::Status> ("QEArchiveAccess::Status");
qRegisterMetaType<QEArchiveAccess::StatusList> ("QEArchiveAccess::StatusList");
qRegisterMetaType<QEArchiveAccess::PVDataRequests> ("QEArchiveAccess::PVDataRequests");
qRegisterMetaType<QEArchiveAccess::PVDataResponses> ("QEArchiveAccess::PVDataResponses");
}
//------------------------------------------------------------------------------
//
void QEArchiveManager::clear ()
{
allArchivesRead = false;
numberArchivesRead = 0;
pvNameToSourceLookUp.clear ();
}
//------------------------------------------------------------------------------
// called from start (which is a thread slot).
//
void QEArchiveManager::setup ()
{
QStringList archiveList;
QString item;
QUrl url;
ArchiveInterfacePlus* interface;
// First check we are the one and only ....
// Belts 'n' braces sanity check.
//
if (this != singletonManager) {
// This is NOT the singleton object.
//
this->sendMessage ("QEArchiveManager::initialise - attempt to use non-singleton object",
message_types (MESSAGE_TYPE_ERROR));
return;
}
// Split input string using space as delimiter.
// Could extend to use regular expression and split on any white space character.
//
archiveList = archives.split (' ', QString::SkipEmptyParts);
if (archiveList.count () == 0) {
this->sendMessage ("QEArchiveManager: no archives specified",
message_types (MESSAGE_TYPE_INFO));
return;
}
this->clear ();
this->sendMessage (QString ("pattern: ").append (pattern),
message_types (MESSAGE_TYPE_INFO));
for (int j = 0; j < archiveList.count (); j++) {
item = "http://";
item.append (archiveList.value (j));
url = QUrl (item);
// Create and save a reference to each interface.
//
interface = new ArchiveInterfacePlus (url, this);
archiveInterfaceList.append (interface);
connect (interface, SIGNAL (archivesResponse (const QObject*, const bool, const QEArchiveInterface::ArchiveList &)),
this, SLOT (archivesResponse (const QObject*, const bool, const QEArchiveInterface::ArchiveList &)));
connect (interface, SIGNAL (pvNamesResponse (const QObject*, const bool, const QEArchiveInterface::PVNameList &)),
this, SLOT (pvNamesResponse (const QObject*, const bool, const QEArchiveInterface::PVNameList &)));
connect (interface, SIGNAL (valuesResponse (const QObject*, const bool, const QEArchiveInterface::ResponseValueList &)),
this, SLOT (valuesResponse (const QObject*, const bool, const QEArchiveInterface::ResponseValueList &)));
connect (interface, SIGNAL (nextRequest (const int )),
this, SLOT (nextRequest (const int )));
interface->archivesRequest (interface);
interface->state = QEArchiveAccess::Updating;
this->sendMessage (QString ("requesting PV name info from ").append (interface->getName ()),
message_types (MESSAGE_TYPE_INFO));
}
this->resendStatus ();
// Lastly connect timer to re interogate the archiver automatically once a day.
//
connect (this->timer, SIGNAL (timeout ()),
this, SLOT (timeout ()));
this->timer->start (24*3600*1000); // mSec
}
//------------------------------------------------------------------------------
// slot
void QEArchiveManager::started ()
{
this->setup ();
}
//------------------------------------------------------------------------------
// slot
void QEArchiveManager::reInterogateArchives ()
{
QDateTime timeNow = QDateTime::currentDateTime ().toUTC ();
int timeSinceLastRead = this->lastReadTime.secsTo (timeNow);
if (timeSinceLastRead >= 300) {
// More than 5 minutes - re-start interogating the archiver.
//
this->clear ();
for (int j = 0; j < archiveInterfaceList.count (); j++) {
// Extract reference to each interface.
//
ArchiveInterfacePlus* interface = archiveInterfaceList.value (j);
interface->archivesRequest (interface);
interface->state = QEArchiveAccess::Updating;
interface->available = 0;
interface->read = 0;
interface->numberPVs = 0;
this->sendMessage (QString ("requesting PV name info from ").append (interface->getName ()),
message_types (MESSAGE_TYPE_INFO));
}
this->resendStatus ();
} else {
this->sendMessage ("Re Archive PVs: less than 5 minutes since last update - request ignored.",
message_types (MESSAGE_TYPE_WARNING));
}
}
//------------------------------------------------------------------------------
// slot
void QEArchiveManager::timeout ()
{
this->reInterogateArchives ();
}
//------------------------------------------------------------------------------
// static
void QEArchiveManager::initialise (const QString& archivesIn, const QString& patternIn)
{
if (archivesIn.isEmpty ()) {
qDebug() << "QEArchiveManager: Archive list is undefined.";
}
QMutexLocker locker (singletonMutex);
if (!singletonManager) {
singletonManager = new QEArchiveManager (archivesIn, patternIn);
singletonThread = new QEArchiveThread ();
// Remome the singletonManager to belong to thread, connect the signal and start it.
//
singletonManager->moveToThread (singletonThread);
QObject::connect (singletonThread, SIGNAL (started ()),
singletonManager, SLOT (started ()));
singletonThread->start ();
}
}
//------------------------------------------------------------------------------
// static
void QEArchiveManager::initialise ()
{
{
QMutexLocker locker (singletonMutex);
if (singletonManager) return; // Already defined.
}
QEAdaptationParameters ap ("QE_");
QString archives = ap.getString ("archive_list", "");
QString pattern = ap.getString ("archive_pattern", ".*");
if (!archives.isEmpty ()) {
// Something, albeit maybe invalid, has been defined - proceed with initialisation.
//
QEArchiveManager::initialise (archives, pattern);
} else {
// Has this error already been reported??
// Not strictly 100% thread safe but not strictly critical either.
//
if (!environmentErrorReported) {
environmentErrorReported = true;
qDebug() << "QE_ARCHIVE_LIST undefined. This is required to be defined in order to backfill QEStripChart widgets.";
qDebug() << "Define as space delimited archiver URLs";
}
}
}
//------------------------------------------------------------------------------
//
void QEArchiveManager::resendStatus ()
{
QEArchiveAccess::StatusList statusList;
int j;
QUrl url;
QEArchiveAccess::Status status;
statusList.clear ();
for (j = 0; j < archiveInterfaceList.count(); j++) {
ArchiveInterfacePlus* archiveInterface = archiveInterfaceList.value (j);
url = archiveInterface->getUrl ();
status.hostName = url.host ();
status.portNumber = url.port();
status.endPoint = url.path ();
status.state = archiveInterface->state;
status.available = archiveInterface->available;
status.read = archiveInterface->read;
status.numberPVs = archiveInterface->numberPVs;
status.pending = archiveInterface->getNumberPending();
statusList.append (status);
}
emit this->archiveStatusResponse (statusList);
}
//------------------------------------------------------------------------------
//
void QEArchiveManager::archiveStatusRequest () {
QMutexLocker locker (archiveDataMutex);
this->resendStatus ();
}
//==============================================================================
//
class NamesResponseContext:public QObject {
public:
ArchiveInterfacePlus* interface;
QEArchiveInterface::Archive archive;
int instance;
// constructor
NamesResponseContext (ArchiveInterfacePlus * interfaceIn,
ArchiveInterfacePlus::Archive archiveIn,
int i)
{
this->interface = interfaceIn;
this->archive = archiveIn;
this->instance = i; // used to determine if this last received, i.e complete. TODO maybe be received in order.
}
};
//------------------------------------------------------------------------------
//
void QEArchiveManager::archivesResponse (const QObject * userData,
const bool isSuccess,
const QEArchiveInterface::ArchiveList& archiveListIn)
{
QMutexLocker locker (archiveDataMutex);
ArchiveInterfacePlus *interface = (ArchiveInterfacePlus *) userData;
int count;
if (isSuccess) {
count = archiveListIn.count ();
interface->available = count;
interface->archiveList = archiveListIn;
interface->requestIndex = 0;
interface->timer->start ();
// for (j = 0; j < count; j++) {
// QEArchiveInterface::Archive archive; // key (name and path)
// NamesResponseContext *context;
// // Create the callback context.
// //
// archive = archiveListIn.value (j);
// context = new NamesResponseContext (interface, archive, j + 1);
// DEBUG << archive.key << pattern;
// interface->namesRequest (context, archive.key, pattern);
// }
} else {
this->sendMessage (QString ("request failure from ").append (interface->getName ()),
message_types (MESSAGE_TYPE_ERROR));
interface->state = QEArchiveAccess::Error;
}
this->resendStatus ();
}
//------------------------------------------------------------------------------
//
void QEArchiveManager::nextRequest (const int requestIndex)
{
ArchiveInterfacePlus* interface = dynamic_cast <ArchiveInterfacePlus *> ( this->sender ());
QEArchiveInterface::Archive archive; // key (name and path)
NamesResponseContext *context;
// sainity checks
if (!interface) return;
if (requestIndex < 0 || requestIndex >= interface->archiveList.count ()) return;
// Create the callback context.
//
archive = interface->archiveList.value (requestIndex);
context = new NamesResponseContext (interface, archive, requestIndex + 1);
// DEBUG << archive.key << pattern;
interface->namesRequest (context, archive.key, pattern);
this->resendStatus ();
}
//------------------------------------------------------------------------------
//
void QEArchiveManager::pvNamesResponse (const QObject * userData,
const bool isSuccess,
const QEArchiveInterface::PVNameList &pvNameList)
{
QMutexLocker locker (archiveDataMutex);
NamesResponseContext *context = (NamesResponseContext *) userData;
ArchiveInterfacePlus *interface = context->interface;
QString message;
int j;
if (isSuccess) {
interface->read++;
// DEBUG << interface->read << pvNameList.count ();
for (j = 0; j < pvNameList.count (); j++) {
QEArchiveInterface::PVName pvChannel = pvNameList.value (j);
KeyTimeSpec keyTimeSpec;
SourceSpec sourceSpec;
keyTimeSpec.key = context->archive.key;
keyTimeSpec.name = context->archive.name;
keyTimeSpec.path = context->archive.path;
keyTimeSpec.startTime = pvChannel.startTime;
keyTimeSpec.endTime = pvChannel.endTime;
if (pvNameToSourceLookUp.contains (pvChannel.pvName) == false) {
// First instance of this PV Name
//
interface->numberPVs++;
sourceSpec.interface = context->interface;
sourceSpec.keyToTimeSpecLookUp.insert (keyTimeSpec.key, keyTimeSpec);
pvNameToSourceLookUp.insert (pvChannel.pvName, sourceSpec);
} else {
// Second or subsequent instance of this PV.
//
sourceSpec = pvNameToSourceLookUp.value (pvChannel.pvName);
if (sourceSpec.interface == context->interface) {
if (sourceSpec.keyToTimeSpecLookUp.contains (keyTimeSpec.key) == false) {
sourceSpec.keyToTimeSpecLookUp.insert (keyTimeSpec.key, keyTimeSpec);
// QHash: If there is already an item with the key, that item's value is replaced with value.
pvNameToSourceLookUp.insert (pvChannel.pvName, sourceSpec);
} else {
message.sprintf ("PV %s has multiple instances of key %d",
pvChannel.pvName.toLatin1().data (), keyTimeSpec.key ) ;
this->sendMessage (message, message_types (MESSAGE_TYPE_ERROR));
}
} else {
message.sprintf ("PV %s hosted on multiple interfaces. Primary %s, Secondary %s",
pvChannel.pvName.toLatin1().data (),
sourceSpec.interface->getName ().toLatin1().data (),
context->interface->getName ().toLatin1().data ());
this->sendMessage (message, message_types (MESSAGE_TYPE_ERROR));
}
}
}
} else {
this->sendMessage (QString ("PV names failure from ").
append (context->interface->getName ()).
append (" for archive ").
append (context->archive.name),
message_types (MESSAGE_TYPE_ERROR));
}
if (context->instance == interface->available) {
message = "PV name retrival from ";
message.append (context->interface->getName ());
message.append (" complete");
this->sendMessage (message);
if (interface->read == interface->available) {
interface->state = QEArchiveAccess::Complete;
} else {
interface->state = QEArchiveAccess::InComplete;
}
numberArchivesRead++;
allArchivesRead = (numberArchivesRead = archiveInterfaceList.count ());
if (allArchivesRead) {
// All archives have now been read
this->lastReadTime = QDateTime::currentDateTime().toUTC ();
}
}
delete context;
this->resendStatus ();
}
//==============================================================================
//
class ValuesResponseContext : public QObject {
public:
const QEArchiveAccess* archiveAccess;
QString pvName;
QObject* userData;
// constructor
ValuesResponseContext (const QEArchiveAccess* archiveAccessIn,
const QString& pvNameIn,
QObject* userDataIn)
{
this->archiveAccess = archiveAccessIn;
this->pvName = pvNameIn;
this->userData = userDataIn;
}
};
//------------------------------------------------------------------------------
//
void QEArchiveManager::readArchiveRequest (const QEArchiveAccess* archiveAccess,
const QEArchiveAccess::PVDataRequests& request)
{
QMutexLocker locker (archiveDataMutex);
QString effectivePvName;
bool isKnownPVName;
int j;
QStringList pvNames;
SourceSpec sourceSpec;
KeyTimeSpec keyTimeSpec;
int key;
int bestOverlap;
QList < int >keys;
QCaDateTime useStart;
QCaDateTime useEnd;
int overlap;
QString message;
QEArchiveAccess::PVDataResponses response;
// Initialise failed response.
//
response.pvName = request.pvName;
response.userData = request.userData;
response.isSuccess = false;
response.pointsList.clear ();
response.supplementary = "fail";
// Is this PV currently being archived?
//
effectivePvName = request.pvName;
isKnownPVName = pvNameToSourceLookUp.contains (effectivePvName);
if (!isKnownPVName) {
// No - the PV 'as is' is not archived.
// If user has requested XXXXXX.VAL, check if XXXXXX is archived.
// Similarly, if user requested YYYYYY, check if YYYYYY.VAL archived.
//
if (effectivePvName.right (4) == ".VAL") {
// Remove the .VAL field and try again.
//
effectivePvName.chop (4);
} else {
// Add .VAL and try again.
//
effectivePvName.append (".VAL");
}
isKnownPVName = pvNameToSourceLookUp.contains (effectivePvName);
}
if (isKnownPVName) {
sourceSpec = pvNameToSourceLookUp.value (effectivePvName);
key = -1;
bestOverlap = -864000;
keys = sourceSpec.keyToTimeSpecLookUp.keys ();
for (j = 0; j < keys.count (); j++) {
keyTimeSpec = sourceSpec.keyToTimeSpecLookUp.value (keys.value (j));
useStart = MAX (request.startTime.toUTC (), keyTimeSpec.startTime);
useEnd = MIN (request.endTime.toUTC (), keyTimeSpec.endTime);
// We don't worry about calculating the overlap to an accuracy
// of any one than one second.
//
overlap = useStart.secsTo (useEnd);
if (bestOverlap < overlap) {
bestOverlap = overlap;
key = keyTimeSpec.key;
}
}
isKnownPVName = (key >= 0);
if (isKnownPVName) {
pvNames.append (effectivePvName);
// Create a reasponse context.
//
ValuesResponseContext* context = new ValuesResponseContext (archiveAccess, request.pvName, request.userData);
// The interface signals return data to the valuesResponse slot in the QEArchiveManager
// object which (using supplied context) emits QEArchiveAccess setArchiveData signal on behalf
// of this object.
//
sourceSpec.interface->valuesRequest (context, key,
request.startTime, request.endTime,
request.count, request.how,
pvNames, request.element);
this->resendStatus ();
} else {
message = "Archive Manager: PV ";
message.append (request.pvName);
message.append (" has no matching time overlaps.");
this->sendMessage (message, message_types (MESSAGE_TYPE_WARNING));
response.supplementary = message;
emit this->readArchiveResponse (archiveAccess, response);
}
} else {
message = "Archive Manager: PV ";
message.append (request.pvName);
message.append (" not found in archive.");
this->sendMessage (message, message_types (MESSAGE_TYPE_WARNING));
response.supplementary = message;
emit this->readArchiveResponse (archiveAccess, response);
}
}
//------------------------------------------------------------------------------
//
void QEArchiveManager::valuesResponse (const QObject* userData,
const bool isSuccess,
const QEArchiveInterface::ResponseValueList& valuesList)
{
const ValuesResponseContext* context = dynamic_cast <ValuesResponseContext*> ((QObject*) userData);
if (context) {
QEArchiveAccess::PVDataResponses response;
response.userData = context->userData;
response.isSuccess = ((isSuccess) && (valuesList.count () == 1));
if (response.isSuccess) {
response.pointsList = valuesList.value (0).dataPoints;
}
response.pvName = context->pvName;
response.supplementary = response.isSuccess ? "okay" : "archiver response failure";
emit this->readArchiveResponse (context->archiveAccess, response);
delete context;
}
this->resendStatus ();
}
//==============================================================================
//
QEArchiveAccess::QEArchiveAccess (QObject * parent) : QObject (parent)
{
// Construct and initialise singleton QEArchiveManager object if needs be.
//
QEArchiveManager::initialise ();
// Connect status request response signals.
//
if( singletonManager )
{
// Request that manager re-read the set of avialble PVs from the archiver.
//
QObject::connect (this, SIGNAL (reInterogateArchives ()),
singletonManager, SLOT (reInterogateArchives ()));
// archive status request and response.
//
QObject::connect (this, SIGNAL (archiveStatusRequest ()),
singletonManager, SLOT (archiveStatusRequest ()));
QObject::connect (singletonManager, SIGNAL (archiveStatusResponse (const QEArchiveAccess::StatusList&)),
this, SLOT (archiveStatusResponse (const QEArchiveAccess::StatusList&)));
// Connect data request response signals.
//
QObject::connect (this, SIGNAL (readArchiveRequest (const QEArchiveAccess*, const QEArchiveAccess::PVDataRequests&)),
singletonManager, SLOT (readArchiveRequest (const QEArchiveAccess*, const QEArchiveAccess::PVDataRequests&)));
QObject::connect (singletonManager, SIGNAL (readArchiveResponse (const QEArchiveAccess*, const QEArchiveAccess::PVDataResponses&)),
this, SLOT (readArchiveResponse (const QEArchiveAccess*, const QEArchiveAccess::PVDataResponses&)));
}
}
//------------------------------------------------------------------------------
//
QEArchiveAccess::~QEArchiveAccess ()
{
}
//------------------------------------------------------------------------------
//
unsigned int QEArchiveAccess::getMessageSourceId ()
{
return this->getSourceId ();
}
//------------------------------------------------------------------------------
//
void QEArchiveAccess::setMessageSourceId (unsigned int messageSourceIdIn)
{
this->setSourceId (messageSourceIdIn);
}
//------------------------------------------------------------------------------
//
void QEArchiveAccess::resendStatus ()
{
if (singletonManager) {
emit this->archiveStatusRequest ();
}
}
//------------------------------------------------------------------------------
//
void QEArchiveAccess::reReadAvailablePVs ()
{
if (singletonManager) {
emit this->reInterogateArchives ();
}
}
//------------------------------------------------------------------------------
//
void QEArchiveAccess::archiveStatusResponse (const QEArchiveAccess::StatusList& stringList)
{
// Just re-broadcast status signal - no filtering.
//
emit this->archiveStatus (stringList);
}
//------------------------------------------------------------------------------
//
void QEArchiveAccess::readArchive (QObject* userData,
const QString pvName,
const QCaDateTime startTime,
const QCaDateTime endTime,
const int count,
const QEArchiveInterface::How how,
const unsigned int element)
{
QEArchiveAccess::PVDataRequests request;
// Set up request - aggragate parameters
//
request.userData = userData;
request.pvName = pvName;
request.startTime = startTime;
request.endTime = endTime;
request.count = count;
request.how = how;
request.element = element;
// and hand-ball off to archiver manager thread.
//
emit this->readArchiveRequest (this, request);
}
//------------------------------------------------------------------------------
//
void QEArchiveAccess::readArchiveResponse (const QEArchiveAccess* archiveAccess,
const QEArchiveAccess::PVDataResponses& response)
{
// Filter and re-broadcast status signal.
//
if (archiveAccess == this) {
emit this->setArchiveData (response.userData, response.isSuccess,
response.pointsList, response.pvName,
response.supplementary);
// Depricated form.
emit this->setArchiveData (response.userData, response.isSuccess,
response.pointsList);
}
}
//------------------------------------------------------------------------------
// static functions
//------------------------------------------------------------------------------
//
void QEArchiveAccess::initialise (const QString& archives, const QString& pattern)
{
// Construct and initialise singleton QEArchiveManager object if needs be.
//
QEArchiveManager::initialise (archives, pattern);
}
//------------------------------------------------------------------------------
//
void QEArchiveAccess::initialise ()
{
// Construct and initialise singleton QEArchiveManager object if needs be.
//
QEArchiveManager::initialise ();
}
//------------------------------------------------------------------------------
//
bool QEArchiveAccess::isReady ()
{
return allArchivesRead;
}
//------------------------------------------------------------------------------
//
int QEArchiveAccess::getNumberInterfaces ()
{
return archiveInterfaceList.count ();
}
//------------------------------------------------------------------------------
//
QString QEArchiveAccess::getPattern ()
{
QMutexLocker locker (singletonMutex);
return singletonManager ? singletonManager->pattern : "";
}
//------------------------------------------------------------------------------
//
int QEArchiveAccess::getNumberPVs ()
{
QMutexLocker locker (archiveDataMutex);
return pvNameToSourceLookUp.count ();
}
//------------------------------------------------------------------------------
//
QStringList QEArchiveAccess::getAllPvNames ()
{
QMutexLocker locker (archiveDataMutex);
QStringList result;
result = pvNameToSourceLookUp.keys ();
return result;
}
// end
| [
"rorydog1@gmail.com"
] | rorydog1@gmail.com |
1b1a4b53ed4904b777195cac0865e015847274e9 | 16987ebfd020e6dde64c82a998df5dcc05dac35d | /DS_LAB/Day1/002TestStack.cpp | 6e4a95bd14cf2b4e4035cf01a52e62628ae082a4 | [] | no_license | B-Nishant/CdacActsAssignment | c31a5338048a4cdd4f5ff07d32923a2eba0f2435 | cb863d74344f1755710eb1212202d4edb63892c3 | refs/heads/master | 2021-10-12T04:18:25.354227 | 2019-02-01T19:44:15 | 2019-02-01T19:44:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,106 | cpp | #include<iostream>
using namespace std;
class StackException:public exception
{
public:
StackException(char *expMsg):exception(expMsg)
{
}
};
template<int size>
class StackBase
{
protected:
int top;
StackBase():top(-1)
{
}
bool IsEmpty()
{
return top==-1;
}
bool IsFull()
{
return top==size-1;
}
};
template<typename T,int size>
class Stack:public StackBase<size>
{
T data[size];
public:
Stack()
{
}
void Push(int val)
{
if(!IsFull())
{
data[++top]=val;
}
else
{
throw StackException("Stack Overflow");
}
}
int Pop()
{
if(!IsEmpty())
{
return data[top--];
}
else
{
throw StackException("Stack UnderFlow");
}
}
int Peek()
{
if(!IsEmpty())
{
return data[top];
}
else
{
throw StackException("Stack is Empty");
}
}
void List()
{
for(int i=top;i>=0;i--)
{
cout<<data[i]<<endl;
}
}
};
void main()
{
Stack<int,10> stk;
try
{
stk.Pop();
}
catch(StackException & exp)
{
cout<<exp.what()<<endl;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
85837c620ef69825442a62ddff7af095aa0e3170 | 13c3630445d73fb2703e5574b70942742f37fb89 | /Stable/CSCommon/Include/MBaseGameType.h | 9a39115a09989b81cb4070cb9deccf72077be5d4 | [] | no_license | NovaDV/Gunz1.5 | 8cb660462c386f4c35d7f5198e614a29d5276547 | 97e7bc51fd082e37f3de0f02c5e2ce6c33530c50 | refs/heads/main | 2023-06-14T15:41:07.759755 | 2021-07-11T18:25:07 | 2021-07-11T18:25:07 | 385,099,338 | 1 | 0 | null | 2021-07-12T02:10:18 | 2021-07-12T02:10:18 | null | UHC | C++ | false | false | 7,997 | h | #ifndef _MBASEGAMETYPE_H
#define _MBASEGAMETYPE_H
#include <crtdbg.h>
#include <map>
#include <set>
using namespace std;
/// 게임 타입
enum MMATCH_GAMETYPE {
MMATCH_GAMETYPE_DEATHMATCH_SOLO =0, ///< 개인 데쓰매치
MMATCH_GAMETYPE_DEATHMATCH_TEAM =1, ///< 팀 데쓰매치
MMATCH_GAMETYPE_GLADIATOR_SOLO =2, ///< 개인 글래디에이터
MMATCH_GAMETYPE_GLADIATOR_TEAM =3, ///< 팀 글래디에이터
MMATCH_GAMETYPE_ASSASSINATE =4, ///< 보스전(암살전)
MMATCH_GAMETYPE_TRAINING =5, ///< 연습
MMATCH_GAMETYPE_SURVIVAL =6, ///< 서바이벌
MMATCH_GAMETYPE_QUEST =7, ///< 퀘스트
MMATCH_GAMETYPE_BERSERKER =8, ///< 데쓰매치 버서커
MMATCH_GAMETYPE_DEATHMATCH_TEAM2 =9, ///< 팀데쓰매치 익스트림
MMATCH_GAMETYPE_DUEL =10, ///< 듀얼 매치
MMATCH_GAMETYPE_DUELTOURNAMENT =11, ///< 듀얼 토너먼트
MMATCH_GAMETYPE_CTF =12, ///< 듀얼 토너먼트
/*MMATCH_GAMETYPE_CLASSIC_SOLO,
MMATCH_GAMETYPE_CLASSIC_TEAM,*/
MMATCH_GAMETYPE_GUNGAME,
MMATCH_GAMETYPE_SPYMODE,
MMATCH_GAMETYPE_QUEST_CHALLENGE,
MMATCH_GAMETYPE_INFECTION,
MMATCH_GAMETYPE_BLITZKRIEG,
MMATCH_GAMETYPE_SKILLMAP,
MMATCH_GAMETYPE_DEMOLITION,
MMATCH_GAMETYPE_MAX,
};
// 모드가 추가되면 리플레이 저장용 모드 약어도 추가해야 한다 (cpp)
extern const char* MMatchGameTypeAcronym[MMATCH_GAMETYPE_MAX];
#define MAX_RELAYMAP_LIST_COUNT 20
struct RelayMap
{
int nMapID;
};
enum RELAY_MAP_TYPE
{
RELAY_MAP_TURN = 0,
RELAY_MAP_RANDOM,
RELAY_MAP_MAX_TYPE_COUNT
};
enum RELAY_MAP_REPEAT_COUNT
{
RELAY_MAP_1REPEAT = 0,
RELAY_MAP_2REPEAT,
RELAY_MAP_3REPEAT,
RELAY_MAP_4REPEAT,
RELAY_MAP_5REPEAT,
RELAYMAP_MAX_REPEAT_COUNT,
};
// 디폴트 게임 타입
const MMATCH_GAMETYPE MMATCH_GAMETYPE_DEFAULT = MMATCH_GAMETYPE_DEATHMATCH_SOLO;
//const MMATCH_GAMETYPE MMATCH_GAMETYPE_DEFAULT = MMATCH_GAMETYPE_DEATHMATCH_TEAM2;
struct MMatchGameTypeInfo
{
MMATCH_GAMETYPE nGameTypeID; // ID
char szGameTypeStr[32]; // 게임 타입 이름
float fGameExpRatio; // 경험치 배분 비율 - 현재 Gladiator만 50%이다
float fTeamMyExpRatio; // 팀전에서 개인에게 적용되는 경험치
float fTeamBonusExpRatio; // 팀전에서 팀에게 적립되는 경험치
set<int> MapSet; // 이 게임타입에서 플레이 가능한 맵
void Set(const MMATCH_GAMETYPE a_nGameTypeID, const char* a_szGameTypeStr, const float a_fGameExpRatio,
const float a_fTeamMyExpRatio, const float a_fTeamBonusExpRatio);
void AddMap(int nMapID);
void AddAllMap();
};
class MBaseGameTypeCatalogue
{
private:
MMatchGameTypeInfo m_GameTypeInfo[MMATCH_GAMETYPE_MAX];
public:
MBaseGameTypeCatalogue();
virtual ~MBaseGameTypeCatalogue();
inline MMatchGameTypeInfo* GetInfo(MMATCH_GAMETYPE nGameType);
inline const char* GetGameTypeStr(MMATCH_GAMETYPE nGameType);
inline void SetGameTypeStr(MMATCH_GAMETYPE nGameType, const char* szName);
inline bool IsCorrectGameType(const int nGameTypeID); ///< 올바른 게임 타입 ID인지 여부
inline bool IsTeamGame(MMATCH_GAMETYPE nGameType); ///< 해당 게임타입이 팀전인지 여부
inline bool IsTeamExtremeGame(MMATCH_GAMETYPE nGameType); ///< 해당 게임타입이 팀전인지 여부
inline bool IsTeamLimitTime(MMATCH_GAMETYPE nGameType);
inline bool IsWaitForRoundEnd(MMATCH_GAMETYPE nGameType); ///< 라운드 끝날때까지 대기모드 해야하는지 여부
inline bool IsQuestOnly(MMATCH_GAMETYPE nGameType); ///< 해당 게임타입이 퀘스트인지 여부
inline bool IsSurvivalOnly(MMATCH_GAMETYPE nGameType); ///< 해당 게임타입이 서바이벌인지 여부
inline bool IsQuestDerived(MMATCH_GAMETYPE nGameType); ///< 해당 게임타입이 퀘스트 관련(NPC가 나오는지)인지 여부
inline bool IsNewQuestDerived(MMATCH_GAMETYPE nGameType);
inline bool IsWorldItemSpawnEnable(MMATCH_GAMETYPE nGameType); ///< 해당 게임타입에서 월드아이템이 스폰되는지 여부
};
//////////////////////////////////////////////////////////////////////////////////
inline bool MBaseGameTypeCatalogue::IsTeamGame(MMATCH_GAMETYPE nGameType)
{
// 좀더 복잡해지면 Description에 teamgame인지 여부값을 넣도록 하자.
if ((nGameType == MMATCH_GAMETYPE_DEATHMATCH_TEAM) ||
(nGameType == MMATCH_GAMETYPE_DEATHMATCH_TEAM2)||
(nGameType == MMATCH_GAMETYPE_GLADIATOR_TEAM) ||
(nGameType == MMATCH_GAMETYPE_ASSASSINATE) ||
(nGameType == MMATCH_GAMETYPE_CTF) ||
(nGameType == MMATCH_GAMETYPE_SPYMODE)||
(nGameType == MMATCH_GAMETYPE_INFECTION)||
(nGameType == MMATCH_GAMETYPE_BLITZKRIEG)||
(nGameType == MMATCH_GAMETYPE_DEMOLITION))
{
return true;
}
return false;
}
inline bool MBaseGameTypeCatalogue::IsTeamLimitTime(MMATCH_GAMETYPE nGameType)
{
// 좀더 복잡해지면 Description에 teamgame인지 여부값을 넣도록 하자.
if ((nGameType == MMATCH_GAMETYPE_DEATHMATCH_TEAM) ||
(nGameType == MMATCH_GAMETYPE_GLADIATOR_TEAM) ||
(nGameType == MMATCH_GAMETYPE_DUEL) ||
(nGameType == MMATCH_GAMETYPE_ASSASSINATE) ||
(nGameType == MMATCH_GAMETYPE_CTF)||
(nGameType == MMATCH_GAMETYPE_SPYMODE)||
(nGameType == MMATCH_GAMETYPE_INFECTION)||
(nGameType == MMATCH_GAMETYPE_DEMOLITION))
{
return true;
}
return false;
}
inline bool MBaseGameTypeCatalogue::IsWaitForRoundEnd(MMATCH_GAMETYPE nGameType)
{
// 라운드 끝날때까지 대기모드 하는가?
if ((nGameType == MMATCH_GAMETYPE_DEATHMATCH_TEAM) ||
(nGameType == MMATCH_GAMETYPE_DUEL) ||
(nGameType == MMATCH_GAMETYPE_GLADIATOR_TEAM) ||
(nGameType == MMATCH_GAMETYPE_ASSASSINATE) ||
(nGameType == MMATCH_GAMETYPE_DUELTOURNAMENT)||
(nGameType == MMATCH_GAMETYPE_INFECTION)||
(nGameType == MMATCH_GAMETYPE_SPYMODE)||
(nGameType == MMATCH_GAMETYPE_DEMOLITION))
{
return true;
}
return false;
}
inline bool MBaseGameTypeCatalogue::IsQuestDerived(MMATCH_GAMETYPE nGameType)
{
if ( (nGameType == MMATCH_GAMETYPE_SURVIVAL) ||(nGameType == MMATCH_GAMETYPE_QUEST) )
{
return true;
}
return false;
}
inline bool MBaseGameTypeCatalogue::IsNewQuestDerived(MMATCH_GAMETYPE nGameType)
{
if ((nGameType == MMATCH_GAMETYPE_QUEST_CHALLENGE) || (nGameType == MMATCH_GAMETYPE_BLITZKRIEG))
return true;
return false;
}
inline bool MBaseGameTypeCatalogue::IsQuestOnly(MMATCH_GAMETYPE nGameType)
{
return nGameType == MMATCH_GAMETYPE_QUEST;
}
inline bool MBaseGameTypeCatalogue::IsSurvivalOnly(MMATCH_GAMETYPE nGameType)
{
return nGameType == MMATCH_GAMETYPE_SURVIVAL;
}
inline const char* MBaseGameTypeCatalogue::GetGameTypeStr(MMATCH_GAMETYPE nGameType)
{
return m_GameTypeInfo[nGameType].szGameTypeStr;
}
inline void MBaseGameTypeCatalogue::SetGameTypeStr(MMATCH_GAMETYPE nGameType, const char* szName)
{
strcpy_s( m_GameTypeInfo[nGameType].szGameTypeStr,sizeof(m_GameTypeInfo[nGameType].szGameTypeStr), szName) ;
}
bool MBaseGameTypeCatalogue::IsCorrectGameType(const int nGameTypeID)
{
if ((nGameTypeID < 0) || (nGameTypeID >= MMATCH_GAMETYPE_MAX)) return false;
return true;
}
inline MMatchGameTypeInfo* MBaseGameTypeCatalogue::GetInfo(MMATCH_GAMETYPE nGameType)
{
_ASSERT((nGameType >= 0) && (nGameType < MMATCH_GAMETYPE_MAX));
return &m_GameTypeInfo[nGameType];
}
inline bool MBaseGameTypeCatalogue::IsWorldItemSpawnEnable(MMATCH_GAMETYPE nGameType)
{
if ( (nGameType == MMATCH_GAMETYPE_SURVIVAL) || (nGameType == MMATCH_GAMETYPE_QUEST) || (nGameType == MMATCH_GAMETYPE_QUEST_CHALLENGE))
{
return false;
}
return true;
}
//////////////////////////////////////////////////////////////////////////////////
inline bool MBaseGameTypeCatalogue::IsTeamExtremeGame(MMATCH_GAMETYPE nGameType)
{
// 좀더 복잡해지면 Description에 teamgame인지 여부값을 넣도록 하자.
//blitz is extreme, players can always respawn
if ((nGameType == MMATCH_GAMETYPE_DEATHMATCH_TEAM2) ||
(nGameType == MMATCH_GAMETYPE_CTF)||
(nGameType == MMATCH_GAMETYPE_BLITZKRIEG))
{
return true;
}
return false;
}
#endif | [
"jduncan0392@gmail.com"
] | jduncan0392@gmail.com |
36717b93846a83aa7c8ceae330be1e4741f91cb5 | fe42b7b833f55d153b2d5014a1da44f8b73a403c | /5492_2019Robot/src/main/cpp/commands/DeadLift.cpp | 204c39e4f47cb644455a99146c2e4c1b158cc3dd | [] | no_license | WCR-FRC-2016/2019rep | 52fcfd4130b58061c69c4353a8f05d1139f06ec9 | 9da87b1ed2af5143612f9eb6d674753c29f27112 | refs/heads/master | 2020-04-16T00:40:01.484564 | 2019-03-26T23:01:25 | 2019-03-26T23:01:25 | 165,146,883 | 0 | 1 | null | 2019-03-23T19:05:45 | 2019-01-10T23:33:32 | C++ | UTF-8 | C++ | false | false | 2,158 | cpp | /*----------------------------------------------------------------------------*/
/* Copyright (c) 2017-2018 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
#include "commands/DeadLift.h"
#include "subsystems/DoWeEvenLift.h"
#include "OI.h"
#include "Robot.h"
#include "RobotMap.h"
DeadLift::DeadLift() {
// Use Requires() here to declare subsystem dependencies
// eg. Requires(Robot::chassis.get());
Requires(&Robot::m_doweevenlift);
DeadLift::SetInterruptible(true);
}
// Called just before this Command runs the first time
void DeadLift::Initialize() {
}
// Called repeatedly when this Command is scheduled to run
void DeadLift::Execute() {
/*if (Robot::m_oi.ReturnManualXButton()){
if (Robot::m_bicep.ReturnBicepEncoder() < 0){
Robot::m_doweevenlift.ChonkySquat(liftCollect);
Robot::m_bicep.BicepCurl(armHab * abs(Robot::m_bicep.ReturnBicepEncoder())/Robot::m_bicep.ReturnBicepEncoder());
}
else{
Robot::m_doweevenlift.ChonkySquat(liftHab);
Robot::m_bicep.BicepCurl(armHab * abs(Robot::m_bicep.ReturnBicepEncoder())/Robot::m_bicep.ReturnBicepEncoder());
}
}
else if (Robot::m_oi.ReturnManualYButton()){
Robot::m_doweevenlift.ChonkySquat(liftMid);
Robot::m_bicep.BicepCurl(armMid * abs(Robot::m_bicep.ReturnBicepEncoder())/Robot::m_bicep.ReturnBicepEncoder());
}
else
{
Robot::m_doweevenlift.Lift(Robot::m_oi.ReturnManualLeftYAxis());
}
*/
Robot::m_doweevenlift.Lift(Robot::m_oi.ReturnManualLeftYAxis());
}
// Make this return true when this Command no longer needs to run execute()
bool DeadLift::IsFinished() { return false; }
// Called once after isFinished returns true
void DeadLift::End() {}
// Called when another command which requires one or more of the same
// subsystems is scheduled to run
void DeadLift::Interrupted() {}
| [
"TempestSTorm7258@gmail.com"
] | TempestSTorm7258@gmail.com |
e3f74a4f3fbbbfea39df3bd7268c8f0f9a015ed2 | aff95ec4050bb261604d8fcacc2249ef20203760 | /OpenGlBack/OPENGL/Chapter01/MD3 File Loader/Main.cpp | e8179185923831cb1c85512d058076235bc5b6ad | [] | no_license | TwTravel/OpenGLRefCode | b82ee644259e27817a6451d8cbed494eec0fa265 | daa11168a098108a21ae9df9aa71b34b20fc09f0 | refs/heads/master | 2020-04-01T16:35:12.391700 | 2018-10-17T07:24:22 | 2018-10-17T07:24:22 | 153,388,135 | 1 | 1 | null | null | null | null | GB18030 | C++ | false | false | 3,028 | cpp | #pragma comment(lib, "opengl32.lib")
#pragma comment(lib, "glu32.lib")
#pragma comment(lib, "glaux.lib")
#include "main.h"
#include "Md3.h"
bool g_bFullScreen = true;
HWND g_hWnd;
RECT g_rRect;
HDC g_hDC;
HGLRC g_hRC;
HINSTANCE g_hInstance;
UINT g_Texture[MAX_TEXTURES] = {0};
#define MODEL_PATH "lara"
#define MODEL_NAME "lara"
#define GUN_NAME "Railgun"
CModelMD3 g_Model;
float g_RotateX = 0.0f;
float g_RotationSpeed = 0.1f;
float g_TranslationZ = -120.0f;
bool g_RenderMode = true;
void Init(HWND hWnd)
{
g_hWnd = hWnd;
GetClientRect(g_hWnd, &g_rRect);
InitializeOpenGL(g_rRect.right, g_rRect.bottom);
bool bResult = g_Model.LoadModel(MODEL_PATH, MODEL_NAME);
bResult = g_Model.LoadWeapon(MODEL_PATH, GUN_NAME);
glEnable(GL_CULL_FACE);
glCullFace(GL_FRONT);
glEnable(GL_TEXTURE_2D);
glEnable(GL_DEPTH_TEST);
}
WPARAM MainLoop()
{
MSG msg;
while(1)
{
if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
{
if(msg.message == WM_QUIT)
break;
TranslateMessage(&msg);
DispatchMessage(&msg);
}
else
{
RenderScene();
}
}
DeInit();
return(msg.wParam);
}
void RenderScene()
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glLoadIdentity();
gluLookAt( 0, 5.5f, g_TranslationZ, 0, 5.5f, 0, 0, 1, 0);
glRotatef(g_RotateX, 0, 1.0f, 0);
g_RotateX += g_RotationSpeed;
g_Model.DrawModel();
SwapBuffers(g_hDC);
}
LRESULT CALLBACK WinProc(HWND hWnd,UINT uMsg, WPARAM wParam, LPARAM lParam)
{
LONG lRet = 0;
PAINTSTRUCT ps;
switch (uMsg)
{
case WM_SIZE:
if(!g_bFullScreen)
{
SizeOpenGLScreen(LOWORD(lParam),HIWORD(lParam));
GetClientRect(hWnd, &g_rRect);
}
break;
case WM_PAINT:
BeginPaint(hWnd, &ps);
EndPaint(hWnd, &ps);
break;
case WM_KEYDOWN:
switch(wParam) {
case VK_ESCAPE: // ESC键
PostQuitMessage(0);
break;
case VK_LEFT: // LEFT箭头键
g_RotationSpeed -= 0.05f;
break;
case VK_RIGHT: // RIGHT箭头键
g_RotationSpeed += 0.05f;
break;
case VK_UP: // UP箭头键
g_TranslationZ += 2;
break;
case VK_DOWN: // DOWN箭头键
g_TranslationZ -= 2;
break;
case 'W':
g_RenderMode = !g_RenderMode; // 改变渲染模式
if(g_RenderMode)
{
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
}
else
{
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
}
break;
}
break;
case WM_CLOSE:
PostQuitMessage(0);
break;
default:
lRet = DefWindowProc (hWnd, uMsg, wParam, lParam);
break;
}
return lRet;
}
| [
"twtravel@126.com"
] | twtravel@126.com |
d6bac8ca9f486b80cb635f379001c2d5046440ea | 56aa9564888e62b52bdf2ff06468b96c3632bb92 | /medium/769 Max Chunks To Make Sorted/web_test/main.cpp | 49f2c2e3baa5e0fa6f35fe6c88f33574093c071c | [] | no_license | slowstone/leetcode | 1d0a5926704e04a91068efa7ad2ee79bcb617930 | ccbfa19c9521abb6a99d4956ea3c4fda428e017e | refs/heads/master | 2021-05-01T11:38:48.771902 | 2019-08-13T04:45:09 | 2019-08-13T04:45:09 | 121,125,175 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,351 | cpp | #include <iostream>
#include <vector>
#include <sstream>
#include <algorithm>
using namespace std;
class Solution {
public:
int maxChunksToSorted(vector<int>& arr) {
int ret = 0, imax = 0;
for(int i = 0; i < arr.size(); ++i){
if(imax < arr[i]) imax = arr[i];
if(imax == i) ++ret;
}
return ret;
}
};
void trimLeftTrailingSpaces(string &input) {
input.erase(input.begin(), find_if(input.begin(), input.end(), [](int ch) {
return !isspace(ch);
}));
}
void trimRightTrailingSpaces(string &input) {
input.erase(find_if(input.rbegin(), input.rend(), [](int ch) {
return !isspace(ch);
}).base(), input.end());
}
vector<int> stringToIntegerVector(string input) {
vector<int> output;
trimLeftTrailingSpaces(input);
trimRightTrailingSpaces(input);
input = input.substr(1, input.length() - 2);
stringstream ss;
ss.str(input);
string item;
char delim = ',';
while (getline(ss, item, delim)) {
output.push_back(stoi(item));
}
return output;
}
int main() {
string line;
while (getline(cin, line)) {
vector<int> arr = stringToIntegerVector(line);
int ret = Solution().maxChunksToSorted(arr);
string out = to_string(ret);
cout << out << endl;
}
return 0;
} | [
"498436005@qq.com"
] | 498436005@qq.com |
d30d0cf386ff7166867839c383ebc2a17c264605 | 49cd5b923560b3258bdc4bddf183a89d847bd3ff | /test/common/protobuf/value_util_fuzz_test.cc | fec766f9e505f18c5c6be23eb7f44f476671d85d | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | envoyproxy/envoy-wasm | 4b12c109387594122915dcc8de36bf5958eba95b | ab5d9381fdf92a1efa0b87cff80036b5b3e81198 | refs/heads/master | 2023-08-01T12:38:34.269641 | 2020-10-09T18:27:33 | 2020-10-09T18:27:33 | 185,880,979 | 223 | 96 | Apache-2.0 | 2020-12-15T18:56:39 | 2019-05-09T22:37:07 | C++ | UTF-8 | C++ | false | false | 241 | cc | #include "common/protobuf/utility.h"
#include "test/fuzz/fuzz_runner.h"
namespace Envoy {
namespace Fuzz {
DEFINE_PROTO_FUZZER(const ProtobufWkt::Value& input) { ValueUtil::equal(input, input); }
} // namespace Fuzz
} // namespace Envoy
| [
"noreply@github.com"
] | noreply@github.com |
c67731bad7b4669855dd7c9714cb51559e14c575 | ae01bf4d128384d158f6c60f342a6a1b0a32fc29 | /Q1018/main.cpp | a6929a8d503cdb66d71af43bc6456be811f7583d | [] | no_license | AliTaheriNastooh/LightOJ_Problem | 17809cecea225c1c75ba77e4037d1d43172f1d61 | 7f0e62c92a6040c985dcb2d0663e6abd0d3c8000 | refs/heads/master | 2021-04-29T12:07:56.615461 | 2018-02-16T07:15:49 | 2018-02-16T07:15:49 | 121,723,718 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,666 | cpp |
#include <iostream>
#include <vector>
#include <cstring>
#define mymax 666
using namespace std;
int his[20][20];
/*
*
solution one ----> time limit
*/
vector <pair<int ,int > > arr;
int end1;
int h[(1<<20)];
int rec(int bm){
//cout<<"bit"<<bm<<endl;
if(bm==end1){
return 0;
}
if(h[bm]!= -1){
return h[bm];
}
if(__builtin_popcount(bm) == (arr.size() - 1)) {
return h[bm] = 1;
}
int min1=mymax;
int i;
for(i=0;(bm>>i)&1;i++);
for(int j=0;j<arr.size();j++)if(((bm>>j)& 1)==0 && (i!= j)){
//cout<<"min1 : "<<min1<<" "<<his[i][j]<<endl;
min1=min(min1,rec(his[i][j])+1);
}
return h[bm]=min1;
}
bool coolin(int i,int j,int k){
if(((arr[i].first - arr[j].first)*(arr[k].second - arr[j].second) ) -
((arr[i].second - arr[j].second) *(arr[k].first - arr[j].first)) ==0){
return true;
}
return false;
}
void set(){
memset(his,0, sizeof(his));
for(int i=0;i<arr.size();i++)
for(int j=0;j< arr.size();j++){
for(int k=0;k<arr.size();k++)
if( (i!=j) && coolin(i,j,k) ){
his[i][j] |= (1<<k);
}
// cout<<" his "<<i<<" "<<j<<" :"<<his[i][j]<<endl;
}
}
int main() {
int t;cin>>t;
for(int i=0;i<t;i++){
int n;cin>>n;
arr.clear();
for(int j=0;j<n;j++){
int x;cin>>x;
int y;cin>>y;
arr.push_back(make_pair(x,y));
}
memset(h,-1, sizeof(h));
end1=(1<<n)-1;
set();
cout<<"Case "<<i+1<<": "<<rec(0)<<endl;
}
return 0;
}
| [
"ali.taherinastooh@gmail.com"
] | ali.taherinastooh@gmail.com |
47fcd1d62b5cd6135d615a51ea779262fc7c8948 | fafece28b618900b3a02a01787331325900c595f | /include/GLUtils/FBO.hpp | c01c858d7bc2b46a0a2bca8b7ecbf51d03ff1c75 | [] | no_license | Hurlevent/PG6200-Assignment-4 | 18d7370c8cf0a8ab70885d542f1ebb11f060adbf | e2cd09a38f7f1a1214fb1a97434382686ab53ff7 | refs/heads/master | 2021-01-12T02:48:56.336987 | 2017-01-05T12:21:26 | 2017-01-05T12:21:26 | 78,110,167 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,668 | hpp | #ifndef _FBO_HPP_
#define _FBO_HPP_
#include "GLutils/GLUtils.hpp"
// LearnOpengl.com is a nice resource
namespace GLUtils {
class FBO
{
public:
FBO(unsigned int width, unsigned int height) : m_width(width), m_height(height)
{
glGenTextures(1, &m_texture);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, m_texture);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_BORDER);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_BORDER);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, m_width, m_height, 0, GL_RGBA, GL_FLOAT, nullptr);
// Create and initialize FBO
glGenFramebuffers(1, &m_fbo);
glBindFramebuffer(GL_FRAMEBUFFER, m_fbo);
//glDrawBuffer(GL_NONE);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_texture, 0);
glClear(GL_COLOR_BUFFER_BIT);
glBindFramebuffer(GL_FRAMEBUFFER, 0);
glBindTexture(GL_TEXTURE_2D, 0);
if(glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE)
{
throw std::runtime_error("Failed to init framebuffer");
}
}
~FBO()
{
glDeleteFramebuffers(1, &m_fbo);
}
void bind() {
glBindFramebuffer(GL_FRAMEBUFFER, m_fbo);
}
void unbind() {
glBindFramebuffer(GL_FRAMEBUFFER, 0);
}
unsigned int getWidth() { return m_width; }
unsigned int getHeight() { return m_height; }
GLuint getTexture() { return m_texture; }
private:
GLuint m_fbo;
GLuint m_texture;
unsigned int m_width, m_height;
};
}
#endif // _FBO_HPP_
| [
"Olivereftevaag@gmail.com"
] | Olivereftevaag@gmail.com |
c9b5dcc1e3a9d43da3294705379c6fe25ea51de0 | ef633b4a66ace856e9a0ac126983eeffb7fe0658 | /main.cpp | b9b207aacc4a80fdc69cf38f9e5b66307ce5d5b6 | [] | no_license | aflyingwolf/TinyWebServer | 246178f3754d45fdceccbd9333b80e56550f222e | b1ebe829a89080545e795918b4bb413605bfea78 | refs/heads/master | 2022-07-01T19:50:14.390337 | 2020-05-10T00:36:00 | 2020-05-10T00:36:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 751 | cpp | #include "config.h"
int main(int argc, char *argv[])
{
//需要修改的数据库信息,登录名,密码,库名
string user = "root";
string passwd = "root";
string databasename = "yourdb";
//命令行解析
Config config;
config.parse_arg(argc, argv);
WebServer server;
//初始化
server.init(config.PORT, user, passwd, databasename, config.LOGWrite, config.SQLVerify,
config.OPT_LINGER, config.TRIGMode, config.sql_num, config.thread_num, config.close_log);
//日志
server.log_write();
//数据库
server.sql_pool();
//线程池
server.thread_pool();
//监听
server.eventListen();
//运行
server.eventLoop();
return 0;
}
| [
"1532979219@qq.com"
] | 1532979219@qq.com |
329f177cb4728e1706ea60321bcb53f885081106 | 42c62082d6d1d0871067f43c1fa1608d38fdbfc1 | /Test_Suite_0/TS001/tc001_01.cpp | dcf7b8e21b33bbbbfab66c3496ffa5c2d922b0eb | [] | no_license | B1kon/jenkins | 70679264b9d983d7317b0ad303ffbca343b04ecc | 3a629bd4bd922fd4347d871cfcf2911e7ca6e748 | refs/heads/master | 2023-03-21T16:34:33.970925 | 2021-03-04T09:16:02 | 2021-03-04T09:16:02 | 324,006,535 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,052 | cpp | /*
Реализация тестового набора для БЗО МС12705
*/
#include <common_mc12705_tc.h>
int main() {
const char *ASSERTION="If PL_GetVersion returns PL_OK, the value >0\n"\
"was written by at least into one reference version _*";
const char *TC="001_01";
char fnd [256];
char exp [256];
int res;
unsigned int version_major = 0;
unsigned int version_minor = 0;
int test_res=Pass;
tc_id(TC, ASSERTION);
res = PL_GetVersion(&version_major, &version_minor);
if (res != PL_OK) {
sprintf_s(fnd, "PL_GetVersion returns %s %d",sp_error_name[res], res);
sprintf_s(exp, "PL_GetVersion returns PL_OK %d", PL_OK);
err_msg(fnd, exp);
test_res = Fail;
} else if((version_minor == 0) & (version_major == 0)) {
sprintf_s(fnd, "version_major=%d version_minor=%d",
version_major, version_major);
sprintf_s(exp, "at least one of versions >0");
err_msg(fnd, exp);
test_res = Fail;
}
result_msg(TC, test_res);
return(test_res);
}
| [
"biva00@mail.ru"
] | biva00@mail.ru |
47bba1ccc1898eb4caf9758707c50bab5ac12818 | 229f3fb7f27585c840e42a45812cde1e7a2388b3 | /queueImp.cpp | bfd08448e378a9c47d66b71d8ee821857198084e | [] | no_license | wtligit/Classical-Algorithm | b4f247f265b8ae7dcc35ab0f84a239fa8653f50e | 52447ac4bf88711602996bed557880aa34f507c0 | refs/heads/master | 2021-04-09T14:14:31.592815 | 2018-03-18T07:49:53 | 2018-03-18T07:49:53 | 125,478,726 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,521 | cpp | #include<iostream>
#include<stdio.h>
using namespace std;
template <class Type>
struct queueItem {
Type value;
queueItem<Type>* next;
/*
myClass()=delete;//表示删除默认构造函数
myClass()=default;//表示默认存在构造函数
*/
queueItem() = default;
queueItem(Type t):value(t),next(NULL){}
};
template <class Type>
class my_queue {
private:
int count;
queueItem<Type>* phead;
queueItem<Type>* pend;
public:
my_queue() :phead(NULL), pend(NULL), count(0) {
phead = new queueItem<Type>();
pend = phead;
count = 0;
}
~my_queue() {
while (phead->next != NULL) {
phead = phead->next;
}
}
bool IsEmpty();
int Size();
void Push(Type tp);
void Pop();
Type Front();
};
template <class Type>
bool my_queue<Type>::IsEmpty() {
return count == 0;
}
template <class Type>
int my_queue<Type>::Size() {
return count;
}
template <class Type>
void my_queue<Type>::Push(Type tp) {
queueItem<Type>* pnode = new queueItem<Type>(tp);
pend->next = pnode;
pend = pnode;
count++;
}
template <class Type>
void my_queue<Type>::Pop() {
if (count == 0) {
return;
}
queueItem<Type>* pnode = phead->next;
phead->next = phead->next->next;
delete pnode;
count--;
}
template <class Type>
Type my_queue<Type>::Front() {
return phead->next->value;
}
/*
int main() {
my_queue<int> qu;
qu.Push(1);
if (!qu.IsEmpty()) {
cout << qu.Size() << endl;
}
qu.Pop();
cout << qu.Size() << endl;
while (1);
return 0;
}*/ | [
"noreply@github.com"
] | noreply@github.com |
4a86df86d111fc4a26c8c2228744c4a44d741758 | cd9c9f02657f31f632c87c0a836ff20237c64c27 | /src/tcp/socks5/Enums.hpp | 9c49eac04d9dea86a84ce40b630bde77532f038a | [
"BSD-3-Clause"
] | permissive | Jesse-V/OnioNS-common | 9bbe33889b5fc61d3bca4d33e842687355649169 | b47a0394bf487c41c85efd816b8221417badb148 | refs/heads/master | 2021-01-10T18:58:33.171479 | 2016-10-02T16:34:38 | 2016-10-02T16:34:38 | 38,468,483 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 868 | hpp |
#ifndef SOCKS5_ENUMS_HPP
#define SOCKS5_ENUMS_HPP
#include <cstdint>
namespace Socks5
{
enum class AddressType : uint8_t
{
IP_V4 = 0x01,
DOMAIN_NAME = 0x03,
IP_V6 = 0x04
};
enum class AuthMethod : uint8_t
{
NO_AUTHENTICATION = 0x00,
GSSAPI = 0x01,
USER_PASS = 0x02,
NO_METHODS = 0xff
};
enum class ReplyCode : uint8_t
{
SUCCEEDED = 0x00,
GENERAL_SOCKS_FAILURE = 0x01,
CONNECTION_NOT_ALLOWED_RULESET = 0x02,
NETWORK_UNREACHABLE = 0x03,
HOST_UNREACHABLE = 0x04,
CONNECTION_REFUSED = 0x05,
TTL_EXPIRED = 0x06,
COMMAND_NOT_SUPPORTED = 0x07,
ADDRESS_TYPE_NOT_SUPPORTED = 0x08,
};
enum class Command : uint8_t
{
CONNECT = 0x01,
BIND = 0x02,
UDP_ASSOCIATE = 0x03
};
enum class Error : uint8_t
{
NO_ERROR = 0,
INIT_SEND_ERROR = 1,
INIT_RECEIVE_ERROR = 2,
REQUEST_SEND_ERROR = 3,
REPLY_RECEIVE_ERROR = 4,
};
}
#endif
| [
"jvictors@jessevictors.com"
] | jvictors@jessevictors.com |
37325f05bc968a6bcc1178633eb6331a2ac80290 | 84a3adb95d4c3340c266fd9ec0d19000f362e11f | /Deadline 24/2016/B/main.cpp | 9cf8b0bda9532c6f79b25dec003e82feb5140e87 | [] | no_license | lavandalia/work | 50b4b3eb4a63a5a0d0ab8ab4670d14ecb3d71293 | a591adfd2fd2ff0fa8c65dc5829a15bc8cc60245 | refs/heads/master | 2020-05-01T02:25:31.229379 | 2017-12-17T08:39:32 | 2017-12-17T08:39:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,147 | cpp | #include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#include <set>
using namespace std;
class Graph {
public:
Graph(int size):
m_edges(size) {
}
void addEdge(int from, int to, int dist) {
m_edges[from].emplace_back(to, dist);
m_edges[to].emplace_back(from, dist);
}
vector<int64_t> distances(int source) {
vector<int64_t> D(size());
set< pair<int64_t, int> > S;
for (int i = 0; i < size(); ++i)
if (i != source)
S.emplace(D[i] = numeric_limits<int64_t>::max() / 2, i);
S.emplace(D[source] = 0, source);
for (int i = 0; i < size(); ++i) {
int node = S.begin()->second;
S.erase(S.begin());
for (auto &e : m_edges[node])
if (D[node] + e.second < D[e.first]) {
S.erase(make_pair(D[e.first], e.first));
D[e.first] = D[node] + e.second;
S.emplace(D[e.first], e.first);
}
}
return D;
}
int size() const {
return m_edges.size();
}
private:
vector< vector<pair<int, int>> > m_edges;
};
int main() {
ios::sync_with_stdio(false);
int N, M; cin >> N >> M;
Graph G(N);
for (int i = 0; i < M; ++i) {
int x, y, d; cin >> x >> y >> d;
--x; --y;
G.addEdge(x, y, d);
}
int T; cin >> T;
while (T--) {
int H, K; cin >> H >> K;
vector<int> nodes(K + 1);
nodes[0] = H - 1;
for (int i = 1; i <= K; ++i) {
cin >> nodes[i];
--nodes[i];
}
++K;
vector< vector<int64_t> > distances(K, vector<int64_t>(K));
for (int i = 0; i < K; ++i) {
auto D = G.distances(nodes[i]);
for (int j = 0; j < K; ++j)
distances[i][j] = D[nodes[j]];
}
vector< vector<int64_t> > dp(K, vector<int64_t>(K));
for (int i = 0; i < K; ++i)
for (int j = 0; j < K; ++j)
dp[i][j] = numeric_limits<int64_t>::max() / 2;
auto next = dp;
dp[0][0] = 0;
for (int i = 1; i < K; ++i) {
for (int j = 0; j <= i; ++j)
for (int k = j; k <= i; ++k)
next[j][k] = numeric_limits<int64_t>::max() / 2;
for (int j = 0; j < i; ++j)
for (int k = j; k < i; ++k) {
// move the first
next[k][i - 1] = min(next[k][i - 1], dp[j][k] + distances[j][i]);
// move the second
next[j][i - 1] = min(next[j][i - 1], dp[j][k] + distances[k][i]);
// move the third
next[j][k] = min(next[j][k], dp[j][k] + distances[i - 1][i]);
}
swap(dp, next);
}
int64_t answer = numeric_limits<int64_t>::max() / 2;
for (int i = 0; i < K; ++i)
for (int j = i; j < K; ++j)
answer = min(answer, dp[i][j] + distances[i][0] + distances[j][0] + distances[K - 1][0]);
cout << answer << "\n";
}
}
| [
"budau.adi@gmail.com"
] | budau.adi@gmail.com |
3ee9c18a5090ff5126bdb7ad9cf248dae6059a2b | 6a01c1d445804d22220f4039c037fe8d05da9909 | /Control/Control.cpp | 5e0c46de45e7d80ab53e4ace210c0e47d4430985 | [] | no_license | omrifin/SWGRAPHICS | b888c8a38248d9f3dd1a196738b7bb42061d2f6d | 58495399eca3051427fcaf2cbb6ac0c492165f9f | refs/heads/master | 2020-03-23T18:26:17.302935 | 2018-07-23T08:12:44 | 2018-07-23T08:12:44 | 141,908,612 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,668 | cpp | #include "Control.h"
#include <cassert>
Control* Control::onFocus;
void Control::setForeground(const Color color) { forColor = color; }
void Control::setBackground(const Color color) { backcolor = color; }
void Control::setBorder(const BorderType type){
if (drawer) { delete drawer; }
switch (type){
case BorderType::None: { drawer = new NoBorder(); break; }
case BorderType::Single: { drawer = new SingleBorder(); break; }
case BorderType::Double: { drawer = new DoubleBorder(); break; }
}
}
void Control::draw(Graphics& graphics, const int left, const int top, const size_t p){
graphics.setBackground(backcolor);
graphics.setForeground(forColor);
if (get_layer() != p) return;
try { if (!drawer) throw exception(); }
catch(exception &MsgBox) { drawer = new NoBorder(); }
drawer->draw(graphics, left + this->left, top + this->top, this->getWidth(), this->getHeight());
graphics.moveTo(left, top);
}
size_t Control::get_layer() const { return layer; }
void Control::set_layer(const size_t layer) { this->layer = layer; }
void Control::getAllControls(vector<Control*>* vector) {
if(enableFocus())
vector->push_back(this);
}
void Control::setFocus(Control& it) {
if (onFocus) swap(onFocus->get_background(), onFocus->get_forground());
swap(it.backcolor, it.forColor);
onFocus = ⁢
}
void Control::set_width(const int width) { this->width = width; }
void Control::set_height(const int height) { this->height = height; }
Control::~Control(){ if (drawer) delete drawer; }
Control::Control(const int width) : width(width), height(1), layer(0) { }
template <typename T>
void Control::swap(T& a, T& b) {
T temp = a;
a = b;
b = temp;
} | [
"omrifin1@hotmail.com"
] | omrifin1@hotmail.com |
3df5c8549488cd4cc77ebadbcbee3bc781a20fd6 | 04998fdc26c6b2ebabb5c0f1330a1095a5507a4f | /Algorithms and problems/Recursion/Print N-bit binary numbers having more 1’s than 0’s for any prefix.cpp | 24cc33cb528b7a7fb4f5f591b4203a9deb75be4b | [] | no_license | ashirbad29/ds-algo-Implementations-and-problems | 7a782dd7888122ed907a985c437fe3706fff3656 | 24427eda3d78ab3c69549562fabe072815bc0d34 | refs/heads/master | 2023-01-16T06:27:23.356625 | 2020-11-24T11:39:36 | 2020-11-24T11:39:36 | 289,301,147 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 621 | cpp | #include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
void generate(int input, int one, int zero, string output) {
if(input == 0) {
cout << output << " ";
return;
}
// we can print one no matter what
string op1 = output;
op1.push_back('1');
generate(input-1, one+1, zero, op1);
// Condition for zero j
if(one > zero) {
string op1 = output;
op1.push_back('0');
generate(input-1, one, zero+1, op1);
}
}
void solve(int n){
int one = 0;
int zero = 0;
string output = "";
generate(n, one, zero, output);
}
int main() {
int n = 3;
string output;
solve(n);
return 0;
} | [
"ashirbadbehera29@gmail.com"
] | ashirbadbehera29@gmail.com |
0ae9a5ceef154a0315197352eaafe26ab7cb2451 | 6bc978fc19c687fe00628e1f193d226de216bb72 | /sem3/OOPS/Roughwork/My programs/!st Sem/Lab 12_a/lab125.cpp | dc764cabe731948ea605c8f0b7ab3795ddc5a536 | [] | no_license | divsriv111/semester-programs | 2e3db0cd472676e934f158f54737b6745d6bd1ee | 9653bb52151092fb5461c79b6db9d0274553d631 | refs/heads/master | 2021-04-09T15:30:27.556371 | 2018-05-09T13:13:09 | 2018-05-09T13:13:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 379 | cpp | #include<stdio.h>
#include<conio.h>
#include<math.h>
int prime(int);
int main()
{
int a,b,c;
printf("Enter the number\n");
scanf("%d",&a);
c=prime(a);
if(c==1)
{
printf("Number is prime");
}
else
{
printf("Number is not prime");
}
getch();
return(0);
}
int prime(int x)
{
for(int i=2;i<=pow(x,(1/2));i++)
{
if(x%i==0)
{
return 0;
}
}
return 1;
}
| [
"greatdrs@gmail.com"
] | greatdrs@gmail.com |
b13fb935db526558a87c0ab0c0bcf8159af87cf0 | ed547de08b0a5709405fbddb41dcfa7f52458cf6 | /src/RESTAPICore/Router/RouteFragment.h | 6ae0959d4c551c13cc439f7ce1bdfbce020842dc | [
"MIT"
] | permissive | systelab/cpp-rest-api-core | d45d57a7e05b966b54b6e5c028d5b78deba1b914 | aa45c72a699171785b678f1c70dc9a9943948327 | refs/heads/master | 2022-03-10T17:37:42.363526 | 2022-02-08T15:27:50 | 2022-02-08T15:27:50 | 192,186,320 | 39 | 12 | MIT | 2022-02-08T12:38:56 | 2019-06-16T12:05:27 | C++ | UTF-8 | C++ | false | false | 439 | h | #pragma once
#include <string>
namespace systelab { namespace rest_api_core {
class RouteFragment
{
public:
RouteFragment(const std::string& item);
virtual ~RouteFragment();
bool isStringParameter() const;
bool isNumericParameter() const;
std::string getValue() const;
bool match(const std::string& uriFragment) const;
private:
bool m_isStringParameter;
bool m_isNumericParameter;
std::string m_value;
};
}}
| [
"36737101+joaquimvila@users.noreply.github.com"
] | 36737101+joaquimvila@users.noreply.github.com |
74aeceec1045db2943861960f87cf1e48803ba19 | b0dd7779c225971e71ae12c1093dc75ed9889921 | /boost/date_time/special_defs.hpp | 018ae2e58d300e6e875ad918c0e85d7faf66988d | [
"LicenseRef-scancode-warranty-disclaimer",
"BSL-1.0"
] | permissive | blackberry/Boost | 6e653cd91a7806855a162347a5aeebd2a8c055a2 | fc90c3fde129c62565c023f091eddc4a7ed9902b | refs/heads/1_48_0-gnu | 2021-01-15T14:31:33.706351 | 2013-06-25T16:02:41 | 2013-06-25T16:02:41 | 2,599,411 | 244 | 154 | BSL-1.0 | 2018-10-13T18:35:09 | 2011-10-18T14:25:18 | C++ | UTF-8 | C++ | false | false | 705 | hpp | #ifndef DATE_TIME_SPECIAL_DEFS_HPP__
#define DATE_TIME_SPECIAL_DEFS_HPP__
/* Copyright (c) 2002,2003 CrystalClear Software, Inc.
* Use, modification and distribution is subject to the
* Boost Software License, Version 1.0. (See accompanying
* file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
* Author: Jeff Garland
* $Date: 2008-02-27 12:00:24 -0800 (Wed, 27 Feb 2008) $
*/
namespace boost {
namespace date_time {
enum special_values {not_a_date_time,
neg_infin, pos_infin,
min_date_time, max_date_time,
not_special, NumSpecialValues};
} } //namespace date_time
#endif
| [
"tvaneerd@rim.com"
] | tvaneerd@rim.com |
f790262deebcc2e8b6b34d1f56fe8cdd741164c0 | 08fae5bd7f16809b84cf6463693732f2308ab4da | /ETS/Components/MM/EtsMmStockHedge/MmShOptColl.h | 47d5b50352e45a407c2197f7fefa33eb88dac1cb | [] | no_license | psallandre/IVRM | a7738c31534e1bbff32ded5cfc7330c52b378f19 | 5a674d10caba23b126e9bcea982dee30eee72ee1 | refs/heads/master | 2021-01-21T03:22:33.658311 | 2014-09-24T11:47:10 | 2014-09-24T11:47:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,097 | h | // MmShOptColl.h : Declaration of the CMmShOptColl
#pragma once
#include "resource.h" // main symbols
#include "EtsMmStockHedge.h"
#include "MmShOptAtom.h"
_COM_SMARTPTR_TYPEDEF(IMmShOptColl, IID_IMmShOptColl);
typedef IDispatchImpl<IMmShOptColl, &IID_IMmShOptColl, &LIBID_EtsMmStockHedgeLib> IMmShOptCollDispImpl;
typedef ICollectionOnSTLMapOfInterfacePtrImpl<IMmShOptCollDispImpl, LONG, IMmShOptAtom, LONG > IMmShOptCollImpl;
// CMmShOptColl
class ATL_NO_VTABLE CMmShOptColl :
public CComObjectRootEx<CComSingleThreadModel>,
public CComCoClass<CMmShOptColl, &CLSID_MmShOptColl>,
public IMmShOptCollImpl
{
public:
CMmShOptColl()
{
}
DECLARE_REGISTRY_RESOURCEID(IDR_MMSHOPTCOLL)
BEGIN_COM_MAP(CMmShOptColl)
COM_INTERFACE_ENTRY(IMmShOptColl)
COM_INTERFACE_ENTRY(IDispatch)
END_COM_MAP()
DECLARE_PROTECT_FINAL_CONSTRUCT()
HRESULT FinalConstruct()
{
return S_OK;
}
void FinalRelease()
{
IMmShOptCollImpl::Clear();
}
public:
STDMETHOD(Add)(LONG Key, IMmShOptAtom* Value, IMmShOptAtom** pRetVal);
};
OBJECT_ENTRY_AUTO(__uuidof(MmShOptColl), CMmShOptColl)
| [
"alex2172@gmail.com"
] | alex2172@gmail.com |
4cda2512688e9ece75d8382aad4b6c0c77bdaea6 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/rsync/gumtree/rsync_patch_hunk_530.cpp | 3716a521434d3de1bc57dd01dbfbaf0fc11b7df2 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 637 | cpp | if (!file->basename) out_of_memory("receive_file_entry 1");
file->flags = flags;
file->length = read_longint(f);
file->modtime = (flags & SAME_TIME) ? last_time : (time_t)read_int(f);
- file->mode = (flags & SAME_MODE) ? last_mode : (mode_t)read_int(f);
+ file->mode = (flags & SAME_MODE) ? last_mode : from_wire_mode(read_int(f));
if (preserve_uid)
file->uid = (flags & SAME_UID) ? last_uid : (uid_t)read_int(f);
if (preserve_gid)
file->gid = (flags & SAME_GID) ? last_gid : (gid_t)read_int(f);
if (preserve_devices && IS_DEVICE(file->mode))
file->rdev = (flags & SAME_RDEV) ? last_rdev : (dev_t)read_int(f);
| [
"993273596@qq.com"
] | 993273596@qq.com |
21952733fb0cd10a4ca01a556df70b53a26ec040 | 90047daeb462598a924d76ddf4288e832e86417c | /components/content_settings/core/test/content_settings_mock_provider.cc | e384282e7d8a4e71e55e080890c3b778e184b896 | [
"BSD-3-Clause"
] | permissive | massbrowser/android | 99b8c21fa4552a13c06bbedd0f9c88dd4a4ad080 | a9c4371682c9443d6e1d66005d4db61a24a9617c | refs/heads/master | 2022-11-04T21:15:50.656802 | 2017-06-08T12:31:39 | 2017-06-08T12:31:39 | 93,747,579 | 2 | 2 | BSD-3-Clause | 2022-10-31T10:34:25 | 2017-06-08T12:36:07 | null | UTF-8 | C++ | false | false | 1,373 | cc | // Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/content_settings/core/test/content_settings_mock_provider.h"
#include "components/content_settings/core/browser/content_settings_rule.h"
namespace content_settings {
MockProvider::MockProvider() : read_only_(false) {}
MockProvider::MockProvider(bool read_only) : read_only_(read_only) {}
MockProvider::~MockProvider() {}
std::unique_ptr<RuleIterator> MockProvider::GetRuleIterator(
ContentSettingsType content_type,
const ResourceIdentifier& resource_identifier,
bool incognito) const {
return value_map_.GetRuleIterator(content_type, resource_identifier, nullptr);
}
bool MockProvider::SetWebsiteSetting(
const ContentSettingsPattern& requesting_url_pattern,
const ContentSettingsPattern& embedding_url_pattern,
ContentSettingsType content_type,
const ResourceIdentifier& resource_identifier,
base::Value* value) {
if (read_only_)
return false;
value_map_.clear();
value_map_.SetValue(requesting_url_pattern, embedding_url_pattern,
content_type, resource_identifier, base::Time(), value);
return true;
}
void MockProvider::ShutdownOnUIThread() {
RemoveAllObservers();
}
} // namespace content_settings
| [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
6ea56801d10417a7c7fd3a14416bbdf427190358 | 5b1777a6f04d432819e9411b92ce6cc17ee36ccf | /Pong/IntPoint.cpp | c51d31eb740be2eca3347ddbe18d43c21939b149 | [] | no_license | Stringer18/Pong | eae8a0c43fa9018396d3acf593c7b304dfd422f2 | 8ba6f21b10159081152234319abf3fba2297c5a1 | refs/heads/master | 2022-12-06T19:09:57.367599 | 2020-08-08T20:41:15 | 2020-08-08T20:41:15 | 278,723,786 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 252 | cpp | #include "IntPoint.h"
IntPoint::IntPoint( const int inputX /*= 0*/, const int inputY /*= 0*/ )
{ x = inputX; y = inputY; }
IntPoint IntPoint::plusPoint ( const int plusX, const int plusY )
{ return IntPoint( x + plusX, y + plusY ); }
| [
"litovchenko1991str@gmail.com"
] | litovchenko1991str@gmail.com |
65ca4ed204d07e26dae0d147fbd6a2039bfd7613 | a9ad2bc73324cdf48010e0ebfdad08c4eeea5bca | /AK/Format.h | ea2bd6edf7f36ea7a56d5723b8378a8fa1b82faa | [
"BSD-2-Clause"
] | permissive | asliturk/serenity | 8fa0489d3327789da8488de39058360c056bb49a | fc75421d50b2e149c9aa7d59f81b41178b192b34 | refs/heads/master | 2021-07-19T05:46:51.465569 | 2021-01-01T01:19:45 | 2021-01-01T01:19:45 | 223,545,030 | 1 | 0 | BSD-2-Clause | 2019-11-23T06:50:43 | 2019-11-23T06:50:42 | null | UTF-8 | C++ | false | false | 12,640 | h | /*
* Copyright (c) 2020, the SerenityOS developers.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include <AK/Array.h>
#include <AK/GenericLexer.h>
#include <AK/Optional.h>
#include <AK/StringView.h>
#ifndef KERNEL
# include <stdio.h>
#endif
namespace AK {
class TypeErasedFormatParams;
class FormatParser;
class FormatBuilder;
template<typename T, typename = void>
struct Formatter {
using __no_formatter_defined = void;
};
constexpr size_t max_format_arguments = 256;
struct TypeErasedParameter {
enum class Type {
UInt8,
UInt16,
UInt32,
UInt64,
Int8,
Int16,
Int32,
Int64,
Custom
};
static Type get_type_from_size(size_t size, bool is_unsigned)
{
if (is_unsigned) {
if (size == 1)
return Type::UInt8;
if (size == 2)
return Type::UInt16;
if (size == 4)
return Type::UInt32;
if (size == 8)
return Type::UInt64;
} else {
if (size == 1)
return Type::Int8;
if (size == 2)
return Type::Int16;
if (size == 4)
return Type::Int32;
if (size == 8)
return Type::Int64;
}
ASSERT_NOT_REACHED();
}
template<typename T>
static Type get_type()
{
if (IsIntegral<T>::value)
return get_type_from_size(sizeof(T), IsUnsigned<T>::value);
return Type::Custom;
}
size_t to_size() const;
// FIXME: Getters and setters.
const void* value;
Type type;
void (*formatter)(TypeErasedFormatParams&, FormatBuilder&, FormatParser&, const void* value);
};
class FormatParser : public GenericLexer {
public:
struct FormatSpecifier {
StringView flags;
size_t index;
};
explicit FormatParser(StringView input);
StringView consume_literal();
bool consume_number(size_t& value);
bool consume_specifier(FormatSpecifier& specifier);
bool consume_replacement_field(size_t& index);
};
class FormatBuilder {
public:
enum class Align {
Default,
Left,
Center,
Right,
};
enum class SignMode {
OnlyIfNeeded,
Always,
Reserved,
Default = OnlyIfNeeded,
};
explicit FormatBuilder(StringBuilder& builder)
: m_builder(builder)
{
}
void put_padding(char fill, size_t amount);
void put_literal(StringView value);
void put_string(
StringView value,
Align align = Align::Left,
size_t min_width = 0,
size_t max_width = NumericLimits<size_t>::max(),
char fill = ' ');
void put_u64(
u64 value,
u8 base = 10,
bool prefix = false,
bool upper_case = false,
bool zero_pad = false,
Align align = Align::Right,
size_t min_width = 0,
char fill = ' ',
SignMode sign_mode = SignMode::OnlyIfNeeded,
bool is_negative = false);
void put_i64(
i64 value,
u8 base = 10,
bool prefix = false,
bool upper_case = false,
bool zero_pad = false,
Align align = Align::Right,
size_t min_width = 0,
char fill = ' ',
SignMode sign_mode = SignMode::OnlyIfNeeded);
#ifndef KERNEL
void put_f64(
double value,
u8 base = 10,
bool upper_case = false,
Align align = Align::Right,
size_t min_width = 0,
size_t precision = 6,
char fill = ' ',
SignMode sign_mode = SignMode::OnlyIfNeeded);
#endif
const StringBuilder& builder() const
{
return m_builder;
}
StringBuilder& builder() { return m_builder; }
private:
StringBuilder& m_builder;
};
class TypeErasedFormatParams {
public:
Span<const TypeErasedParameter> parameters() const { return m_parameters; }
void set_parameters(Span<const TypeErasedParameter> parameters) { m_parameters = parameters; }
size_t take_next_index() { return m_next_index++; }
private:
Span<const TypeErasedParameter> m_parameters;
size_t m_next_index { 0 };
};
template<typename T>
void __format_value(TypeErasedFormatParams& params, FormatBuilder& builder, FormatParser& parser, const void* value)
{
Formatter<T> formatter;
formatter.parse(params, parser);
formatter.format(builder, *static_cast<const T*>(value));
}
template<typename... Parameters>
class VariadicFormatParams : public TypeErasedFormatParams {
public:
static_assert(sizeof...(Parameters) <= max_format_arguments);
explicit VariadicFormatParams(const Parameters&... parameters)
: m_data({ TypeErasedParameter { ¶meters, TypeErasedParameter::get_type<Parameters>(), __format_value<Parameters> }... })
{
this->set_parameters(m_data);
}
private:
Array<TypeErasedParameter, sizeof...(Parameters)> m_data;
};
// We use the same format for most types for consistency. This is taken directly from
// std::format. One difference is that we are not counting the width or sign towards the
// total width when calculating zero padding for numbers.
// https://en.cppreference.com/w/cpp/utility/format/formatter#Standard_format_specification
struct StandardFormatter {
enum class Mode {
Default,
Binary,
BinaryUppercase,
Decimal,
Octal,
Hexadecimal,
HexadecimalUppercase,
Character,
String,
Pointer,
Float,
Hexfloat,
HexfloatUppercase,
};
FormatBuilder::Align m_align = FormatBuilder::Align::Default;
FormatBuilder::SignMode m_sign_mode = FormatBuilder::SignMode::OnlyIfNeeded;
Mode m_mode = Mode::Default;
bool m_alternative_form = false;
char m_fill = ' ';
bool m_zero_pad = false;
Optional<size_t> m_width;
Optional<size_t> m_precision;
void parse(TypeErasedFormatParams&, FormatParser&);
};
template<typename T>
struct Formatter<T, typename EnableIf<IsIntegral<T>::value>::Type> : StandardFormatter {
Formatter() { }
explicit Formatter(StandardFormatter formatter)
: StandardFormatter(formatter)
{
}
void format(FormatBuilder&, T value);
};
template<>
struct Formatter<StringView> : StandardFormatter {
Formatter() { }
explicit Formatter(StandardFormatter formatter)
: StandardFormatter(formatter)
{
}
void format(FormatBuilder&, StringView value);
};
template<>
struct Formatter<const char*> : Formatter<StringView> {
void format(FormatBuilder& builder, const char* value)
{
if (m_mode == Mode::Pointer) {
Formatter<FlatPtr> formatter { *this };
formatter.format(builder, reinterpret_cast<FlatPtr>(value));
} else {
Formatter<StringView>::format(builder, value);
}
}
};
template<>
struct Formatter<char*> : Formatter<const char*> {
};
template<size_t Size>
struct Formatter<char[Size]> : Formatter<const char*> {
};
template<>
struct Formatter<String> : Formatter<StringView> {
};
template<>
struct Formatter<FlyString> : Formatter<StringView> {
};
template<typename T>
struct Formatter<T*> : StandardFormatter {
void format(FormatBuilder& builder, T* value)
{
if (m_mode == Mode::Default)
m_mode = Mode::Pointer;
Formatter<FlatPtr> formatter { *this };
formatter.format(builder, reinterpret_cast<FlatPtr>(value));
}
};
template<>
struct Formatter<char> : StandardFormatter {
void format(FormatBuilder&, char value);
};
template<>
struct Formatter<bool> : StandardFormatter {
void format(FormatBuilder&, bool value);
};
#ifndef KERNEL
template<>
struct Formatter<float> : StandardFormatter {
void format(FormatBuilder&, float value);
};
template<>
struct Formatter<double> : StandardFormatter {
Formatter() { }
explicit Formatter(StandardFormatter formatter)
: StandardFormatter(formatter)
{
}
void format(FormatBuilder&, double value);
};
#endif
void vformat(StringBuilder& builder, StringView fmtstr, TypeErasedFormatParams);
void vformat(const LogStream& stream, StringView fmtstr, TypeErasedFormatParams);
#ifndef KERNEL
void vout(FILE*, StringView fmtstr, TypeErasedFormatParams, bool newline = false);
template<typename... Parameters>
void out(FILE* file, StringView fmtstr, const Parameters&... parameters) { vout(file, fmtstr, VariadicFormatParams { parameters... }); }
template<typename... Parameters>
void outln(FILE* file, StringView fmtstr, const Parameters&... parameters) { vout(file, fmtstr, VariadicFormatParams { parameters... }, true); }
template<typename... Parameters>
void outln(FILE* file, const char* fmtstr, const Parameters&... parameters) { vout(file, fmtstr, VariadicFormatParams { parameters... }, true); }
inline void outln(FILE* file) { fputc('\n', file); }
template<typename... Parameters>
void out(StringView fmtstr, const Parameters&... parameters) { out(stdout, fmtstr, parameters...); }
template<typename... Parameters>
void outln(StringView fmtstr, const Parameters&... parameters) { outln(stdout, fmtstr, parameters...); }
template<typename... Parameters>
void outln(const char* fmtstr, const Parameters&... parameters) { outln(stdout, fmtstr, parameters...); }
inline void outln() { outln(stdout); }
template<typename... Parameters>
void warn(StringView fmtstr, const Parameters&... parameters) { out(stderr, fmtstr, parameters...); }
template<typename... Parameters>
void warnln(StringView fmtstr, const Parameters&... parameters) { outln(stderr, fmtstr, parameters...); }
template<typename... Parameters>
void warnln(const char* fmtstr, const Parameters&... parameters) { outln(stderr, fmtstr, parameters...); }
inline void warnln() { outln(stderr); }
#endif
void vdbgln(StringView fmtstr, TypeErasedFormatParams);
template<typename... Parameters>
void dbgln(StringView fmtstr, const Parameters&... parameters) { vdbgln(fmtstr, VariadicFormatParams { parameters... }); }
template<typename... Parameters>
void dbgln(const char* fmtstr, const Parameters&... parameters) { dbgln(StringView { fmtstr }, parameters...); }
template<typename T, typename = void>
struct HasFormatter : TrueType {
};
template<typename T>
struct HasFormatter<T, typename Formatter<T>::__no_formatter_defined> : FalseType {
};
template<typename T>
class FormatIfSupported {
public:
explicit FormatIfSupported(const T& value)
: m_value(value)
{
}
const T& value() const { return m_value; }
private:
const T& m_value;
};
template<typename T, bool Supported = false>
struct __FormatIfSupported : Formatter<StringView> {
void format(FormatBuilder& builder, const FormatIfSupported<T>&)
{
Formatter<StringView>::format(builder, "?");
}
};
template<typename T>
struct __FormatIfSupported<T, true> : Formatter<T> {
void format(FormatBuilder& builder, const FormatIfSupported<T>& value)
{
Formatter<T>::format(builder, value.value());
}
};
template<typename T>
struct Formatter<FormatIfSupported<T>> : __FormatIfSupported<T, HasFormatter<T>::value> {
};
} // namespace AK
#ifndef KERNEL
using AK::out;
using AK::outln;
using AK::warn;
using AK::warnln;
#endif
using AK::dbgln;
using AK::FormatIfSupported;
| [
"kling@serenityos.org"
] | kling@serenityos.org |
e9c2ccd12871268f55628718fedd6be309f0d51e | 748b76984a6075f0a8ded835bdea509fe972db33 | /cpp/HomeWorks/homework2/Server/login.hh | b568c34d937c2254b7de7d1bcf1554ba99c45c3f | [] | no_license | joro2404/11_klas | 2710a27ba13476e5c1022fd65904f17929878dbb | b0bc6b6a5f17e07817d7bf09e2082ea52fc4debe | refs/heads/master | 2022-10-25T01:10:07.593453 | 2020-06-15T20:41:03 | 2020-06-15T20:41:03 | 224,643,765 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 187 | hh | #ifndef LOGIN_HH
#define LOGIN_HH
#include <string>
#include <vector>
#include "object.hh"
class login: public object {
public:
response* handleRequest(request* req);
};
#endif | [
"joro2404@abv.bg"
] | joro2404@abv.bg |
f0bc53c8d134bb480ba8cdff3828103524244106 | 93becb0e207e95d75dbb05c92c08c07402bcc492 | /codeforces/cr537/a.cpp | 96813d6c431d75c456ae4c89b542791ba07b9c0c | [] | no_license | veqcc/atcoder | 2c5f12e12704ca8eace9e2e1ec46a354f1ec71ed | cc3b30a818ba2f90c4d29c74b4d2231e8bca1903 | refs/heads/master | 2023-04-14T21:39:29.705256 | 2023-04-10T02:31:49 | 2023-04-10T02:31:49 | 136,691,016 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,065 | cpp | #include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <vector>
#include <queue>
#include <cmath>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
typedef unsigned int uint;
using namespace std;
int main() {
cin.sync_with_stdio(false);
cin.tie(0);
string s, t;
cin >> s >> t;
if (s.size() != t.size()) {
cout << "No\n";
return 0;
}
for (int i = 0; i < s.size(); i++) {
if (s[i] == 'a' || s[i] == 'e' || s[i] == 'i' || s[i] == 'o' || s[i] == 'u') {
if (t[i] == 'a' || t[i] == 'e' || t[i] == 'i' || t[i] == 'o' || t[i] == 'u') {
continue;
} else {
cout << "No\n";
return 0;
}
} else {
if (t[i] == 'a' || t[i] == 'e' || t[i] == 'i' || t[i] == 'o' || t[i] == 'u') {
cout << "No\n";
return 0;
} else {
continue;
}
}
}
cout << "Yes\n";
return 0;
} | [
"kambe3141@gmail.com"
] | kambe3141@gmail.com |
215bf9615de76b8947d034ad43eecf5fe0b0cc05 | b8e456ccaec34de84aaa5192fa30354b3c15de72 | /hightlight/g2o example/AlgoPlat_G2O.h | 122fd4d7d7a8a4eaf25f5caed74af3166257fa14 | [] | no_license | mgou123/code_snipe | 9a342b14da0716b4de04bebd7baad3c56e0f57cf | 952fad36de98c75a5d945a9189d48d330cc10a74 | refs/heads/master | 2021-10-09T11:39:07.319818 | 2018-12-27T08:00:04 | 2018-12-27T08:00:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 923 | h | #ifndef __AlgoPlat_G2O_H__
#define __AlgoPlat_G2O_H__
#include "AlgoPlat_Default.h"
namespace g2o{
class EdgeSE3ProjectXYZOnlyPose;
class EdgeSE3ProjectXYZ;
}
namespace chamo{
class AlgoPlat_G2O: public AlgoPlat_Default{
public:
//pose optimization, no outlier remove function, fix optimization iteration
void optimizeTOneF(int frameId);
//internal function used by optimizeTOneF
float PoseOptimize(std::vector<cv::Mat>& mpList, std::vector<cv::KeyPoint>& kpList, cv::Mat& PoseW, cv::Mat K, cv::Mat gpsPosi);
//BA, no outlier remove function, fix optimization iteration
float doBA(int startKF, int endKF, bool showErr = false);
float calProjError();
float calBAError(std::vector<g2o::EdgeSE3ProjectXYZOnlyPose*> &edgeList);
float calBAError(std::vector<g2o::EdgeSE3ProjectXYZ*> &edgeList);
};
}
#endif | [
"Zili.Wang@ygomi.com"
] | Zili.Wang@ygomi.com |
60b35316d315866d36cca96eb3b33c5f8b5b3987 | 2e0a386ce035b5ab448b9f55c0e85abd68ee271b | /test/minus_eq_qq_test.cpp | 099370ea63f0ee1e366a396f995d5acd7df8ba56 | [
"BSL-1.0"
] | permissive | boostorg/qvm | c8f52a7d4919fb9b2cecb184ea8ee6b33805c3fa | fa272cb0b07ce85b5d8d53fb3dfade389e9cc4df | refs/heads/develop | 2023-08-31T09:35:07.262248 | 2023-06-06T19:48:59 | 2023-06-06T19:48:59 | 37,782,744 | 80 | 42 | BSL-1.0 | 2023-01-21T06:17:37 | 2015-06-20T19:23:29 | C++ | UTF-8 | C++ | false | false | 1,000 | cpp | // Copyright 2008-2022 Emil Dotchevski and Reverge Studios, Inc.
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifdef BOOST_QVM_TEST_SINGLE_HEADER
# include BOOST_QVM_TEST_SINGLE_HEADER
#else
# include <boost/qvm/quat_operations.hpp>
#endif
#include "test_qvm_quaternion.hpp"
#include "gold.hpp"
namespace
{
void
test()
{
using namespace boost::qvm::sfinae;
test_qvm::quaternion<Q1> x(42,2);
{
test_qvm::quaternion<Q1> const y(42,1);
test_qvm::subtract_v(x.b,x.a,y.a);
x-=y;
BOOST_QVM_TEST_EQ(x.a,x.b);
}
{
test_qvm::quaternion<Q2> const y(42,1);
test_qvm::subtract_v(x.b,x.a,y.a);
x-=y;
BOOST_QVM_TEST_EQ(x.a,x.b);
}
}
}
int
main()
{
test();
return boost::report_errors();
}
| [
"emildotchevski@gmail.com"
] | emildotchevski@gmail.com |
0a15fa5c782380b08d77b919ae41e199cfeb5eb0 | cf4edc2a34c4627d45c47feeacf2acf079aa596f | /source/QAbstractExtensionManager.cpp | dcc059ca792c2855d0343499cd7731ae4dd1779a | [
"MIT"
] | permissive | diegopego/Qt4xHb | eeb7c3e33b570193469bfca47d7d1835c2efbc38 | 5f96614f794cc8392b4d97f7dcd80b2fbf46ab65 | refs/heads/master | 2021-01-09T05:55:50.167467 | 2017-02-01T22:44:30 | 2017-02-01T22:44:30 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 2,726 | cpp | /*
Qt4xHb - bibliotecas de ligação entre Harbour/xHarbour e Qt Framework 4
Copyright (C) 2012-2017 Marcos Antonio Gambeta <marcosgambeta@uol.com.br>
*/
#include <QAbstractExtensionManager>
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbapierr.h"
#include "hbvm.h"
#include "hbstack.h"
#ifndef __XHARBOUR__
#include "hbapicls.h"
#define ISNIL HB_ISNIL
#define ISLOG HB_ISLOG
#define ISNUM HB_ISNUM
#define ISCHAR HB_ISCHAR
#define ISPOINTER HB_ISPOINTER
#define ISOBJECT HB_ISOBJECT
#define ISARRAY HB_ISARRAY
#endif
#include "qt4xhb_clsid.h"
#include "qt4xhb_utils.h"
HB_FUNC( QABSTRACTEXTENSIONMANAGER_DELETE )
{
QAbstractExtensionManager * obj = (QAbstractExtensionManager *) hb_itemGetPtr( hb_objSendMsg( hb_stackSelfItem(), "POINTER", 0 ) );
if( obj )
{
delete obj;
obj = NULL;
PHB_ITEM self = hb_stackSelfItem();
PHB_ITEM ptr = hb_itemPutPtr( NULL, NULL );
hb_objSendMsg( self, "_pointer", 1, ptr );
hb_itemRelease( ptr );
}
hb_itemReturn( hb_stackSelfItem() );
}
/*
virtual QObject * extension ( QObject * object, const QString & iid ) const = 0
*/
HB_FUNC( QABSTRACTEXTENSIONMANAGER_EXTENSION )
{
QAbstractExtensionManager * obj = (QAbstractExtensionManager *) hb_itemGetPtr( hb_objSendMsg( hb_stackSelfItem(), "POINTER", 0 ) );
if( obj )
{
QObject * par1 = (QObject *) hb_itemGetPtr( hb_objSendMsg( hb_param(1, HB_IT_OBJECT ), "POINTER", 0 ) );
QString par2 = hb_parc(2);
QObject * ptr = obj->extension ( par1, par2 );
_qt4xhb_createReturnClass ( ptr, "QOBJECT" ); }
}
/*
virtual void registerExtensions ( QAbstractExtensionFactory * factory, const QString & iid ) = 0
*/
HB_FUNC( QABSTRACTEXTENSIONMANAGER_REGISTEREXTENSIONS )
{
QAbstractExtensionManager * obj = (QAbstractExtensionManager *) hb_itemGetPtr( hb_objSendMsg( hb_stackSelfItem(), "POINTER", 0 ) );
if( obj )
{
QAbstractExtensionFactory * par1 = (QAbstractExtensionFactory *) hb_itemGetPtr( hb_objSendMsg( hb_param(1, HB_IT_OBJECT ), "POINTER", 0 ) );
QString par2 = hb_parc(2);
obj->registerExtensions ( par1, par2 );
}
hb_itemReturn( hb_stackSelfItem() );
}
/*
virtual void unregisterExtensions ( QAbstractExtensionFactory * factory, const QString & iid ) = 0
*/
HB_FUNC( QABSTRACTEXTENSIONMANAGER_UNREGISTEREXTENSIONS )
{
QAbstractExtensionManager * obj = (QAbstractExtensionManager *) hb_itemGetPtr( hb_objSendMsg( hb_stackSelfItem(), "POINTER", 0 ) );
if( obj )
{
QAbstractExtensionFactory * par1 = (QAbstractExtensionFactory *) hb_itemGetPtr( hb_objSendMsg( hb_param(1, HB_IT_OBJECT ), "POINTER", 0 ) );
QString par2 = hb_parc(2);
obj->unregisterExtensions ( par1, par2 );
}
hb_itemReturn( hb_stackSelfItem() );
}
| [
"marcosgambeta@uol.com.br"
] | marcosgambeta@uol.com.br |
569e5c0dc8cd9d1063977dedce933ef8f3f95813 | 18d6de022fae6e7c2b1718c05b1293c612bc0705 | /dct_hls/solution1/.autopilot/db/dct.pragma.0.cpp.ap-line.CXX | b9a821b01cc891627f51e439f153952f6e584a26 | [] | no_license | bonjourdrs/Watermark-Huaweicloud | 71d51b22f9360fb8487806675930a8414433664b | 089f777b64464ae0baa8bc804ba18653f5aee073 | refs/heads/master | 2020-05-17T17:04:39.014171 | 2018-11-11T09:21:30 | 2018-11-11T09:21:30 | 183,839,053 | 1 | 0 | null | 2019-04-28T01:33:07 | 2019-04-28T01:33:06 | null | UTF-8 | C++ | false | false | 135,896 | cxx | #pragma line 1 "dct_hls/dct.cpp" ::: -10
#pragma line 1 "dct_hls/dct.cpp" 1 ::: -9
#pragma line 1 "<built-in>" 1 ::: -8
#pragma line 1 "<built-in>" 3 ::: -7
#pragma line 152 "<built-in>" 3 ::: -6
#pragma line 1 "<command line>" 1 ::: -5
#pragma line 1 "C:/Xilinx/Vivado/2017.4/common/technology/autopilot\\etc/autopilot_ssdm_op.h" 1 ::: 3
#pragma line 156 "C:/Xilinx/Vivado/2017.4/common/technology/autopilot\\etc/autopilot_ssdm_op.h" ::: 4
#pragma line 9 "<command line>" 2 ::: 134
#pragma line 1 "<built-in>" 2 ::: 135
#pragma line 1 "dct_hls/dct.cpp" 2 ::: 136
#pragma line 1 "dct_hls/dct.h" 1 ::: 137
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 1 3 ::: 141
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 142
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 143
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 1 3 ::: 145
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 146
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 147
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 1 3 ::: 149
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 3 ::: 150
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 3 ::: 151
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iosfwd" 1 3 ::: 153
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iosfwd" 3 ::: 154
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iosfwd" 3 ::: 155
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 1 3 ::: 157
#pragma line 275 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 3 ::: 158
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/os_defines.h" 1 3 ::: 159
#pragma line 276 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 2 3 ::: 160
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/cpu_defines.h" 1 3 ::: 163
#pragma line 279 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++config.h" 2 3 ::: 164
#pragma line 40 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iosfwd" 2 3 ::: 165
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stringfwd.h" 1 3 ::: 166
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stringfwd.h" 3 ::: 167
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stringfwd.h" 3 ::: 168
#pragma line 82 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stringfwd.h" 3 ::: 198
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iosfwd" 2 3 ::: 200
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 1 3 ::: 201
#pragma line 40 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 3 ::: 202
#pragma line 40 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 3 ::: 203
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 1 3 ::: 205
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 206
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 207
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 210
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 211
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 212
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 215
#pragma line 31 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 3 4 ::: 216
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 222
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 2 3 ::: 233
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 1 3 ::: 236
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 245
#pragma line 10 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 246
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/_mingw_mac.h" 1 3 ::: 247
#pragma line 10 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3 ::: 248
#pragma line 277 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 249
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 1 3 ::: 250
#pragma line 13 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 3 ::: 251
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 252
#pragma line 674 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 253
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/sdks/_mingw_directx.h" 1 3 ::: 254
#pragma line 674 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3 ::: 255
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include/sdks/_mingw_ddk.h" 1 3 ::: 257
#pragma line 675 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3 ::: 258
#pragma line 13 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 2 3 ::: 259
#pragma line 99 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\vadefs.h" 3 ::: 279
#pragma line 277 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 2 3 ::: 284
#pragma line 370 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 288
#pragma line 380 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 290
#pragma line 392 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 292
#pragma line 405 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 294
#pragma line 418 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 296
#pragma line 436 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 298
#pragma line 456 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 301
#pragma line 607 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 3 ::: 321
#pragma line 9 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 2 3 ::: 383
#pragma line 27 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 390
#pragma line 66 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 408
#pragma line 164 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 449
#pragma line 178 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 451
#pragma line 193 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 453
#pragma line 217 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 455
#pragma line 360 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 559
#pragma line 412 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 590
#pragma line 493 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 662
#pragma line 507 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 667
#pragma line 540 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 689
#pragma line 621 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 761
#pragma line 669 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 790
#pragma line 816 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 928
#pragma line 876 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 3 ::: 954
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\sec_api/wchar_s.h" 1 3 ::: 961
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 1 3 ::: 970
#pragma line 9 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\sec_api/wchar_s.h" 2 3 ::: 971
#pragma line 881 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wchar.h" 2 3 ::: 972
#pragma line 47 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 2 3 ::: 973
#pragma line 64 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 974
#pragma line 138 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 980
#pragma line 257 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 1092
#pragma line 42 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 2 3 ::: 1106
#pragma line 69 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 3 ::: 1107
#pragma line 89 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 3 ::: 1109
#pragma line 110 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 3 ::: 1119
#pragma line 132 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 3 ::: 1134
#pragma line 238 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/postypes.h" 3 ::: 1233
#pragma line 42 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iosfwd" 2 3 ::: 1235
#pragma line 73 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iosfwd" 3 ::: 1238
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 1325
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\exception" 1 3 ::: 1326
#pragma line 35 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\exception" 3 ::: 1327
#pragma line 35 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\exception" 3 ::: 1328
#pragma line 60 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\exception" 3 ::: 1338
#pragma line 117 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\exception" 3 ::: 1384
#pragma line 140 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\exception" 3 ::: 1391
#pragma line 40 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 1399
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 1 3 ::: 1400
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 3 ::: 1401
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 3 ::: 1402
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 1 3 ::: 1404
#pragma line 61 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 1405
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 1406
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 1407
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 1408
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 1411
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 1412
#pragma line 62 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 1413
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/functexcept.h" 1 3 ::: 1414
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/functexcept.h" 3 ::: 1415
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\exception_defines.h" 1 3 ::: 1416
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/functexcept.h" 2 3 ::: 1417
#pragma line 63 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 1479
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/cpp_type_traits.h" 1 3 ::: 1480
#pragma line 36 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/cpp_type_traits.h" 3 ::: 1481
#pragma line 36 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/cpp_type_traits.h" 3 ::: 1482
#pragma line 68 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/cpp_type_traits.h" 3 ::: 1483
#pragma line 193 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/cpp_type_traits.h" 3 ::: 1591
#pragma line 416 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/cpp_type_traits.h" 3 ::: 1802
#pragma line 64 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 1832
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/type_traits.h" 1 3 ::: 1833
#pragma line 32 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/type_traits.h" 3 ::: 1834
#pragma line 32 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/type_traits.h" 3 ::: 1835
#pragma line 65 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 2006
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/numeric_traits.h" 1 3 ::: 2007
#pragma line 32 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/numeric_traits.h" 3 ::: 2008
#pragma line 32 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/numeric_traits.h" 3 ::: 2009
#pragma line 51 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/numeric_traits.h" 3 ::: 2015
#pragma line 96 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/numeric_traits.h" 3 ::: 2040
#pragma line 66 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 2073
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 1 3 ::: 2074
#pragma line 60 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 3 ::: 2075
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/move.h" 1 3 ::: 2076
#pragma line 34 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/move.h" 3 ::: 2077
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 2078
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 2079
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 2080
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 2083
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 2084
#pragma line 35 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/move.h" 2 3 ::: 2085
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/concept_check.h" 1 3 ::: 2086
#pragma line 33 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/concept_check.h" 3 ::: 2087
#pragma line 33 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/concept_check.h" 3 ::: 2088
#pragma line 36 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/move.h" 2 3 ::: 2089
#pragma line 95 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/move.h" 3 ::: 2090
#pragma line 104 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/move.h" 3 ::: 2092
#pragma line 61 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 2 3 ::: 2116
#pragma line 113 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 3 ::: 2145
#pragma line 149 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 3 ::: 2150
#pragma line 211 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 3 ::: 2189
#pragma line 257 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_pair.h" 3 ::: 2194
#pragma line 67 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 2196
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_types.h" 1 3 ::: 2197
#pragma line 63 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_types.h" 3 ::: 2198
#pragma line 63 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_types.h" 3 ::: 2199
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 2202
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 2203
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 2204
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 2207
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 2208
#pragma line 66 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_types.h" 2 3 ::: 2209
#pragma line 84 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_types.h" 3 ::: 2212
#pragma line 111 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_types.h" 3 ::: 2228
#pragma line 135 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_types.h" 3 ::: 2244
#pragma line 68 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 2289
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_funcs.h" 1 3 ::: 2290
#pragma line 63 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_funcs.h" 3 ::: 2291
#pragma line 63 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_funcs.h" 3 ::: 2292
#pragma line 108 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_funcs.h" 3 ::: 2325
#pragma line 166 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator_base_funcs.h" 3 ::: 2371
#pragma line 69 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 2382
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 1 3 ::: 2383
#pragma line 68 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2384
#pragma line 94 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2386
#pragma line 281 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2563
#pragma line 393 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2663
#pragma line 420 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2678
#pragma line 443 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2685
#pragma line 469 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2700
#pragma line 484 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2705
#pragma line 510 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2719
#pragma line 533 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2726
#pragma line 559 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2741
#pragma line 578 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2746
#pragma line 621 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2765
#pragma line 647 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2773
#pragma line 673 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2788
#pragma line 694 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2802
#pragma line 792 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_iterator.h" 3 ::: 2891
#pragma line 70 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 2996
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\debug/debug.h" 1 3 ::: 2998
#pragma line 47 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\debug/debug.h" 3 ::: 2999
#pragma line 72 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 2 3 ::: 3012
#pragma line 115 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3045
#pragma line 134 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3054
#pragma line 156 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3064
#pragma line 184 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3081
#pragma line 207 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3093
#pragma line 230 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3105
#pragma line 251 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3115
#pragma line 339 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3188
#pragma line 377 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3206
#pragma line 462 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3274
#pragma line 514 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3289
#pragma line 542 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3302
#pragma line 572 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3316
#pragma line 631 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3357
#pragma line 689 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3374
#pragma line 733 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3406
#pragma line 791 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3449
#pragma line 952 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3599
#pragma line 1028 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3663
#pragma line 1060 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3680
#pragma line 1091 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3696
#pragma line 1125 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3717
#pragma line 1165 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3744
#pragma line 1202 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_algobase.h" 3 ::: 3765
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 2 3 ::: 3786
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 1 3 ::: 3788
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 3789
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 3 ::: 3790
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 3793
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 3794
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 3795
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 3798
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 3799
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwchar" 2 3 ::: 3800
#pragma line 43 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 2 3 ::: 3801
#pragma line 63 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 3 ::: 3811
#pragma line 88 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 3 ::: 3820
#pragma line 229 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/char_traits.h" 3 ::: 3948
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 4094
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/localefwd.h" 1 3 ::: 4095
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/localefwd.h" 3 ::: 4096
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/localefwd.h" 3 ::: 4097
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++locale.h" 1 3 ::: 4100
#pragma line 40 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++locale.h" 3 ::: 4101
#pragma line 40 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++locale.h" 3 ::: 4102
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\clocale" 1 3 ::: 4104
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\clocale" 3 ::: 4105
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\clocale" 3 ::: 4106
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\locale.h" 1 3 ::: 4109
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 4118
#pragma line 9 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\locale.h" 2 3 ::: 4119
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\locale.h" 3 ::: 4126
#pragma line 75 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\locale.h" 3 ::: 4147
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\clocale" 2 3 ::: 4168
#pragma line 42 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++locale.h" 2 3 ::: 4184
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 4185
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 4186
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 4187
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 4190
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 4191
#pragma line 43 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++locale.h" 2 3 ::: 4192
#pragma line 42 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/localefwd.h" 2 3 ::: 4239
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 1 3 ::: 4241
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 3 ::: 4242
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 3 ::: 4243
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 1 3 ::: 4246
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 4255
#pragma line 9 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 2 3 ::: 4256
#pragma line 72 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 3 ::: 4261
#pragma line 100 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 3 ::: 4272
#pragma line 193 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 3 ::: 4310
#pragma line 275 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\ctype.h" 3 ::: 4312
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 2 3 ::: 4314
#pragma line 63 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 3 ::: 4315
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/localefwd.h" 2 3 ::: 4333
#pragma line 54 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/localefwd.h" 3 ::: 4336
#pragma line 42 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 4470
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 1 3 ::: 4471
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 4472
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 4473
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/atomicity.h" 1 3 ::: 4475
#pragma line 34 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/atomicity.h" 3 ::: 4476
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr.h" 1 3 ::: 4477
#pragma line 30 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr.h" 3 ::: 4478
#pragma line 162 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr.h" 3 ::: 4480
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 1 3 ::: 4481
#pragma line 70 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 3 ::: 4482
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\errno.h" 1 3 ::: 4483
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 4492
#pragma line 9 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\errno.h" 2 3 ::: 4493
#pragma line 74 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\errno.h" 3 ::: 4507
#pragma line 71 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 2 3 ::: 4509
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 4511
#pragma line 73 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 2 3 ::: 4512
#pragma line 340 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 3 ::: 4513
#pragma line 374 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 3 ::: 4535
#pragma line 401 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 3 ::: 4538
#pragma line 767 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr-default.h" 3 ::: 4676
#pragma line 163 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/gthr.h" 2 3 ::: 4678
#pragma line 35 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/atomicity.h" 2 3 ::: 4687
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/atomic_word.h" 1 3 ::: 4688
#pragma line 32 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/atomic_word.h" 3 ::: 4689
#pragma line 36 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/atomicity.h" 2 3 ::: 4691
#pragma line 61 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/atomicity.h" 3 ::: 4707
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 2 3 ::: 4749
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 1 3 ::: 4751
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 4752
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 4753
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 1 3 ::: 4756
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 3 ::: 4757
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 3 ::: 4758
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/allocator.h" 1 3 ::: 4763
#pragma line 48 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/allocator.h" 3 ::: 4764
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++allocator.h" 1 3 ::: 4765
#pragma line 34 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++allocator.h" 3 ::: 4766
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/new_allocator.h" 1 3 ::: 4767
#pragma line 33 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/new_allocator.h" 3 ::: 4768
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\new" 1 3 ::: 4769
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\new" 3 ::: 4770
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\new" 3 ::: 4771
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 4773
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 4774
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 4775
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 4778
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 4779
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\new" 2 3 ::: 4780
#pragma line 92 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\new" 3 ::: 4820
#pragma line 34 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/new_allocator.h" 2 3 ::: 4841
#pragma line 50 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/new_allocator.h" 3 ::: 4849
#pragma line 114 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ext/new_allocator.h" 3 ::: 4906
#pragma line 35 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++allocator.h" 2 3 ::: 4922
#pragma line 49 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/allocator.h" 2 3 ::: 4923
#pragma line 59 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/allocator.h" 3 ::: 4926
#pragma line 85 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/allocator.h" 3 ::: 4945
#pragma line 204 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/allocator.h" 3 ::: 5039
#pragma line 43 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 2 3 ::: 5041
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream_insert.h" 1 3 ::: 5044
#pragma line 33 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream_insert.h" 3 ::: 5045
#pragma line 33 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream_insert.h" 3 ::: 5046
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" 1 3 ::: 5049
#pragma line 33 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" 3 ::: 5050
#pragma line 33 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" 3 ::: 5051
#pragma line 46 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" ::: 5067
#pragma line 51 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" ::: 5075
#pragma line 52 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" ::: 5078
#pragma line 53 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cxxabi-forced.h" ::: 5082
#pragma line 36 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream_insert.h" 2 3 ::: 5088
#pragma line 46 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 2 3 ::: 5178
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 1 3 ::: 5182
#pragma line 60 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 3 ::: 5183
#pragma line 99 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 3 ::: 5185
#pragma line 134 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 3 ::: 5207
#pragma line 198 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 3 ::: 5260
#pragma line 262 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 3 ::: 5313
#pragma line 345 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 3 ::: 5366
#pragma line 416 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 3 ::: 5413
#pragma line 523 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 3 ::: 5502
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\backward/binders.h" 1 3 ::: 5693
#pragma line 60 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\backward/binders.h" 3 ::: 5694
#pragma line 97 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\backward/binders.h" 3 ::: 5696
#pragma line 713 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/stl_function.h" 2 3 ::: 5768
#pragma line 50 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 2 3 ::: 5769
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 1 3 ::: 5772
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 5773
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 5774
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\initializer_list" 1 3 ::: 5778
#pragma line 33 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\initializer_list" 3 ::: 5779
#pragma line 33 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\initializer_list" 3 ::: 5780
#pragma line 43 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 2 3 ::: 5781
#pragma line 103 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 5784
#pragma line 140 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 5808
#pragma line 165 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 5820
#pragma line 468 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6114
#pragma line 516 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6130
#pragma line 549 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6156
#pragma line 589 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6163
#pragma line 695 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6233
#pragma line 724 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6252
#pragma line 737 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6255
#pragma line 757 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6259
#pragma line 778 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6263
#pragma line 807 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6281
#pragma line 824 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6288
#pragma line 845 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6299
#pragma line 864 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6307
#pragma line 920 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6347
#pragma line 935 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6350
#pragma line 967 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6374
#pragma line 989 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6377
#pragma line 1045 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6404
#pragma line 1061 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6410
#pragma line 1073 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6413
#pragma line 1089 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6420
#pragma line 1101 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6424
#pragma line 1129 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6429
#pragma line 1144 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6433
#pragma line 1175 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6438
#pragma line 1197 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6442
#pragma line 1220 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6449
#pragma line 1238 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6452
#pragma line 1261 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6459
#pragma line 1278 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6464
#pragma line 1302 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6474
#pragma line 1318 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6482
#pragma line 1338 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6493
#pragma line 1357 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6496
#pragma line 1379 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6500
#pragma line 1403 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6507
#pragma line 1422 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6511
#pragma line 1445 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6518
#pragma line 1463 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6523
#pragma line 1481 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6527
#pragma line 1502 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6535
#pragma line 1523 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6542
#pragma line 1545 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6550
#pragma line 1620 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6606
#pragma line 1701 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6676
#pragma line 1711 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6679
#pragma line 1721 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6682
#pragma line 1753 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6703
#pragma line 1766 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6706
#pragma line 1780 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6710
#pragma line 1797 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6717
#pragma line 1810 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6720
#pragma line 1825 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6724
#pragma line 1838 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6727
#pragma line 1855 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6734
#pragma line 1868 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6737
#pragma line 1883 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6741
#pragma line 1896 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6744
#pragma line 1915 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6751
#pragma line 1929 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6755
#pragma line 1944 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6759
#pragma line 1957 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6762
#pragma line 1976 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6769
#pragma line 1990 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6773
#pragma line 2005 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6777
#pragma line 2019 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6781
#pragma line 2036 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6788
#pragma line 2049 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6791
#pragma line 2065 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6795
#pragma line 2078 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6799
#pragma line 2095 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6806
#pragma line 2110 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6809
#pragma line 2128 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6814
#pragma line 2158 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6827
#pragma line 2182 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6830
#pragma line 2200 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6834
#pragma line 2223 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6837
#pragma line 2248 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6840
#pragma line 2260 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6845
#pragma line 2331 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6909
#pragma line 2377 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6948
#pragma line 2414 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 6978
#pragma line 2451 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 7008
#pragma line 2488 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 7038
#pragma line 2525 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 7068
#pragma line 2562 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 7098
#pragma line 2579 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 7104
#pragma line 2597 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 7113
#pragma line 2620 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 7123
#pragma line 2638 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.h" 3 ::: 7128
#pragma line 53 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 2 3 ::: 7148
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.tcc" 1 3 ::: 7151
#pragma line 42 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.tcc" 3 ::: 7152
#pragma line 42 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.tcc" 3 ::: 7153
#pragma line 239 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.tcc" 3 ::: 7342
#pragma line 576 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_string.tcc" 3 ::: 7656
#pragma line 56 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\string" 2 3 ::: 8245
#pragma line 42 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 2 3 ::: 8246
#pragma line 61 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8250
#pragma line 97 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8276
#pragma line 116 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8286
#pragma line 125 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8288
#pragma line 135 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8290
#pragma line 150 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8293
#pragma line 163 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8295
#pragma line 175 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8297
#pragma line 189 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8303
#pragma line 204 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8306
#pragma line 223 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8318
#pragma line 251 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8331
#pragma line 267 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8336
#pragma line 302 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8361
#pragma line 336 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8383
#pragma line 367 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8406
#pragma line 431 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8458
#pragma line 574 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8589
#pragma line 591 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8593
#pragma line 608 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8597
#pragma line 635 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8617
#pragma line 649 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8622
#pragma line 666 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8627
#pragma line 685 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8632
#pragma line 699 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8636
#pragma line 728 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8653
#pragma line 744 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8657
#pragma line 757 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 3 ::: 8660
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.tcc" 1 3 ::: 8719
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.tcc" 3 ::: 8720
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.tcc" 3 ::: 8721
#pragma line 815 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_classes.h" 2 3 ::: 8954
#pragma line 43 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 2 3 ::: 8955
#pragma line 53 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 8956
#pragma line 206 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9099
#pragma line 262 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9129
#pragma line 337 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9192
#pragma line 368 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9209
#pragma line 400 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9231
#pragma line 426 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9250
#pragma line 443 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9257
#pragma line 455 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9259
#pragma line 559 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9356
#pragma line 575 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9364
#pragma line 592 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9372
#pragma line 618 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9391
#pragma line 669 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9431
#pragma line 681 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9434
#pragma line 692 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9437
#pragma line 703 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9441
#pragma line 722 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9445
#pragma line 738 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9448
#pragma line 759 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9456
#pragma line 776 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ios_base.h" 3 ::: 9464
#pragma line 43 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 9660
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 1 3 ::: 9661
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9662
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9663
#pragma line 113 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9678
#pragma line 179 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9737
#pragma line 203 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9753
#pragma line 220 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9762
#pragma line 233 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9766
#pragma line 260 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9783
#pragma line 274 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9790
#pragma line 292 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9800
#pragma line 314 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9814
#pragma line 333 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9825
#pragma line 348 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9829
#pragma line 373 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9845
#pragma line 400 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9859
#pragma line 426 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9874
#pragma line 440 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9880
#pragma line 458 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9886
#pragma line 474 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9895
#pragma line 485 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9898
#pragma line 505 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9906
#pragma line 521 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9915
#pragma line 531 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9918
#pragma line 552 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9925
#pragma line 567 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9929
#pragma line 578 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9933
#pragma line 590 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9938
#pragma line 603 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9943
#pragma line 625 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9946
#pragma line 641 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9949
#pragma line 663 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9952
#pragma line 676 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9956
#pragma line 700 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9970
#pragma line 718 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9974
#pragma line 744 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9977
#pragma line 759 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 3 ::: 9985
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/streambuf.tcc" 1 3 ::: 10026
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/streambuf.tcc" 3 ::: 10027
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/streambuf.tcc" 3 ::: 10028
#pragma line 799 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\streambuf" 2 3 ::: 10163
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 10164
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 1 3 ::: 10165
#pragma line 35 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 10166
#pragma line 35 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 10167
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 1 3 ::: 10171
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10172
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10173
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwctype" 1 3 ::: 10175
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwctype" 3 ::: 10176
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwctype" 3 ::: 10177
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wctype.h" 1 3 ::: 10182
#pragma line 13 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wctype.h" 3 ::: 10183
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 10184
#pragma line 13 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wctype.h" 2 3 ::: 10185
#pragma line 166 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\wctype.h" 3 ::: 10192
#pragma line 46 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwctype" 2 3 ::: 10203
#pragma line 75 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cwctype" 3 ::: 10204
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 10233
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 1 3 ::: 10234
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 3 ::: 10235
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cctype" 3 ::: 10236
#pragma line 42 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 10237
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/ctype_base.h" 1 3 ::: 10238
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/ctype_base.h" 3 ::: 10239
#pragma line 43 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 10265
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/streambuf_iterator.h" 1 3 ::: 10272
#pragma line 35 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/streambuf_iterator.h" 3 ::: 10273
#pragma line 35 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/streambuf_iterator.h" 3 ::: 10274
#pragma line 48 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/streambuf_iterator.h" 3 ::: 10280
#pragma line 50 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 10630
#pragma line 63 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10633
#pragma line 141 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10698
#pragma line 159 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10706
#pragma line 176 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10710
#pragma line 192 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10714
#pragma line 208 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10718
#pragma line 222 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10722
#pragma line 237 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10726
#pragma line 251 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10730
#pragma line 266 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10734
#pragma line 283 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10738
#pragma line 302 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10742
#pragma line 321 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10746
#pragma line 343 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10750
#pragma line 368 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10762
#pragma line 387 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10765
#pragma line 406 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10769
#pragma line 425 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10773
#pragma line 443 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10777
#pragma line 460 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10780
#pragma line 476 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10783
#pragma line 493 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10786
#pragma line 512 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10789
#pragma line 533 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10792
#pragma line 555 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10796
#pragma line 579 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10799
#pragma line 602 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10804
#pragma line 671 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10864
#pragma line 708 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10891
#pragma line 721 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10894
#pragma line 734 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10898
#pragma line 749 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10901
#pragma line 763 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10904
#pragma line 777 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10907
#pragma line 792 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10910
#pragma line 809 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10914
#pragma line 825 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10918
#pragma line 842 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10922
#pragma line 862 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10926
#pragma line 889 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10935
#pragma line 920 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10948
#pragma line 953 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10959
#pragma line 1002 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10995
#pragma line 1019 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 10998
#pragma line 1035 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11001
#pragma line 1052 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11004
#pragma line 1072 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11007
#pragma line 1095 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11011
#pragma line 1121 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11018
#pragma line 1147 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11022
#pragma line 1172 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11035
#pragma line 1205 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11061
#pragma line 1216 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11064
#pragma line 1240 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11075
#pragma line 1259 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11078
#pragma line 1277 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11081
#pragma line 1295 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11084
#pragma line 1312 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11088
#pragma line 1329 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11091
#pragma line 1345 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11094
#pragma line 1362 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11097
#pragma line 1382 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11100
#pragma line 1404 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11103
#pragma line 1427 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11106
#pragma line 1453 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11109
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/ctype_inline.h" 1 3 ::: 11166
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/ctype_inline.h" 3 ::: 11167
#pragma line 1509 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 11204
#pragma line 1634 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11315
#pragma line 1671 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11343
#pragma line 1685 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11348
#pragma line 1699 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11353
#pragma line 1712 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11357
#pragma line 1743 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11361
#pragma line 1756 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11365
#pragma line 1769 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11369
#pragma line 1786 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11378
#pragma line 1798 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11382
#pragma line 1811 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11386
#pragma line 1824 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11390
#pragma line 1837 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11394
#pragma line 1907 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11449
#pragma line 1928 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11463
#pragma line 1954 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11466
#pragma line 1990 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11471
#pragma line 2049 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11502
#pragma line 2091 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11517
#pragma line 2162 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11573
#pragma line 2227 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11631
#pragma line 2245 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11636
#pragma line 2266 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11650
#pragma line 2284 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11653
#pragma line 2326 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11657
#pragma line 2389 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11676
#pragma line 2414 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11685
#pragma line 2462 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11719
#pragma line 2520 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 3 ::: 11769
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 1 3 ::: 11851
#pragma line 35 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 11852
#pragma line 35 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 11853
#pragma line 135 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 11945
#pragma line 729 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 12522
#pragma line 965 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 12748
#pragma line 1026 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 12789
#pragma line 1151 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 12906
#pragma line 1188 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.tcc" 3 ::: 12934
#pragma line 2601 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/locale_facets.h" 2 3 ::: 13105
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 2 3 ::: 13106
#pragma line 60 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13119
#pragma line 125 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13176
#pragma line 136 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13180
#pragma line 189 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13226
#pragma line 210 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13240
#pragma line 245 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13244
#pragma line 283 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13272
#pragma line 295 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13276
#pragma line 335 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13294
#pragma line 349 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13297
#pragma line 378 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13317
#pragma line 398 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13325
#pragma line 418 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13328
#pragma line 437 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 3 ::: 13332
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.tcc" 1 3 ::: 13367
#pragma line 34 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.tcc" 3 ::: 13368
#pragma line 34 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.tcc" 3 ::: 13369
#pragma line 144 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.tcc" 3 ::: 13467
#pragma line 471 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/basic_ios.h" 2 3 ::: 13509
#pragma line 45 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ios" 2 3 ::: 13510
#pragma line 40 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 2 3 ::: 13511
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 1 3 ::: 13512
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13513
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13514
#pragma line 53 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13520
#pragma line 80 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13539
#pragma line 106 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13555
#pragma line 163 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13584
#pragma line 248 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13648
#pragma line 281 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13651
#pragma line 309 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13663
#pragma line 322 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13666
#pragma line 333 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13669
#pragma line 344 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13672
#pragma line 356 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13675
#pragma line 375 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13687
#pragma line 394 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13696
#pragma line 404 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13699
#pragma line 425 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13710
#pragma line 446 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13714
#pragma line 488 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13741
#pragma line 538 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13781
#pragma line 582 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 3 ::: 13807
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream.tcc" 1 3 ::: 13812
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream.tcc" 3 ::: 13813
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/ostream.tcc" 3 ::: 13814
#pragma line 586 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\ostream" 2 3 ::: 14181
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 2 3 ::: 14182
#pragma line 53 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14185
#pragma line 89 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14214
#pragma line 118 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14232
#pragma line 165 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14250
#pragma line 237 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14302
#pragma line 247 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14305
#pragma line 279 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14309
#pragma line 293 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14312
#pragma line 320 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14315
#pragma line 331 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14318
#pragma line 354 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14322
#pragma line 364 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14325
#pragma line 393 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14329
#pragma line 404 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14332
#pragma line 428 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14336
#pragma line 445 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14345
#pragma line 463 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14348
#pragma line 482 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14351
#pragma line 498 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14354
#pragma line 513 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14357
#pragma line 531 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14360
#pragma line 545 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14363
#pragma line 560 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14366
#pragma line 576 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14369
#pragma line 631 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14415
#pragma line 667 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14429
#pragma line 680 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14432
#pragma line 697 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14436
#pragma line 739 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14450
#pragma line 767 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14469
#pragma line 828 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14509
#pragma line 850 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 3 ::: 14513
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/istream.tcc" 1 3 ::: 14518
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/istream.tcc" 3 ::: 14519
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/istream.tcc" 3 ::: 14520
#pragma line 512 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/istream.tcc" 3 ::: 14986
#pragma line 854 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\istream" 2 3 ::: 15545
#pragma line 40 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 2 3 ::: 15546
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/codecvt.h" 1 3 ::: 15548
#pragma line 40 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/codecvt.h" 3 ::: 15549
#pragma line 40 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/codecvt.h" 3 ::: 15550
#pragma line 65 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/codecvt.h" 3 ::: 15566
#pragma line 113 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/codecvt.h" 3 ::: 15577
#pragma line 152 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/codecvt.h" 3 ::: 15587
#pragma line 193 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/codecvt.h" 3 ::: 15592
#pragma line 234 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/codecvt.h" 3 ::: 15626
#pragma line 273 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/codecvt.h" 3 ::: 15656
#pragma line 42 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 2 3 ::: 15886
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 1 3 ::: 15887
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 3 ::: 15888
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 3 ::: 15889
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 15892
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 15893
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 15894
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 15897
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 15898
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 2 3 ::: 15899
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 1 3 ::: 15900
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 15909
#pragma line 9 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 2 3 ::: 15910
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw_print_push.h" 1 3 ::: 15913
#pragma line 11 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 2 3 ::: 15914
#pragma line 101 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3 ::: 15921
#pragma line 120 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3 ::: 15923
#pragma line 157 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3 ::: 15925
#pragma line 312 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3 ::: 16071
#pragma line 475 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 3 ::: 16079
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\sec_api/stdio_s.h" 1 3 ::: 16115
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 1 3 ::: 16124
#pragma line 9 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\sec_api/stdio_s.h" 2 3 ::: 16125
#pragma line 509 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 2 3 ::: 16126
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw_print_pop.h" 1 3 ::: 16129
#pragma line 511 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdio.h" 2 3 ::: 16130
#pragma line 45 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 2 3 ::: 16131
#pragma line 92 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 3 ::: 16132
#pragma line 149 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 3 ::: 16181
#pragma line 166 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 3 ::: 16183
#pragma line 43 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 2 3 ::: 16202
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/basic_file.h" 1 3 ::: 16203
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/basic_file.h" 3 ::: 16204
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/basic_file.h" 3 ::: 16205
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++io.h" 1 3 ::: 16208
#pragma line 36 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++io.h" 3 ::: 16209
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 1 3 ::: 16210
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 3 ::: 16211
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 3 ::: 16212
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 16215
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 16216
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 16217
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 16220
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 16221
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdio" 2 3 ::: 16222
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++io.h" 2 3 ::: 16223
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 16224
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 16225
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 16226
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 16229
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 16230
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/c++io.h" 2 3 ::: 16231
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2/x86_64-w64-mingw32\\bits/basic_file.h" 2 3 ::: 16242
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 2 3 ::: 16308
#pragma line 65 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16314
#pragma line 127 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16369
#pragma line 263 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16466
#pragma line 290 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16469
#pragma line 322 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16494
#pragma line 342 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16502
#pragma line 385 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16533
#pragma line 413 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16551
#pragma line 440 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16571
#pragma line 453 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16574
#pragma line 485 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16582
#pragma line 495 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16585
#pragma line 524 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16603
#pragma line 562 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16614
#pragma line 581 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16622
#pragma line 608 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16642
#pragma line 622 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16645
#pragma line 656 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16654
#pragma line 666 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16657
#pragma line 695 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16675
#pragma line 735 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16687
#pragma line 754 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16695
#pragma line 782 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16716
#pragma line 794 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16720
#pragma line 825 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16729
#pragma line 835 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16732
#pragma line 864 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16750
#pragma line 904 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 3 ::: 16762
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/fstream.tcc" 1 3 ::: 16775
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/fstream.tcc" 3 ::: 16776
#pragma line 39 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/fstream.tcc" 3 ::: 16777
#pragma line 672 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\bits/fstream.tcc" 3 ::: 17403
#pragma line 916 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\fstream" 2 3 ::: 17656
#pragma line 4 "dct_hls/dct.h" 2 ::: 17657
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iostream" 1 3 ::: 17659
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iostream" 3 ::: 17660
#pragma line 37 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iostream" 3 ::: 17661
#pragma line 58 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iostream" 3 ::: 17668
#pragma line 5 "dct_hls/dct.h" 2 ::: 17686
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iomanip" 1 3 ::: 17688
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iomanip" 3 ::: 17689
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iomanip" 3 ::: 17690
#pragma line 47 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iomanip" 3 ::: 17691
#pragma line 61 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iomanip" 3 ::: 17698
#pragma line 91 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iomanip" 3 ::: 17721
#pragma line 122 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iomanip" 3 ::: 17744
#pragma line 159 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iomanip" 3 ::: 17774
#pragma line 190 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iomanip" 3 ::: 17798
#pragma line 220 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iomanip" 3 ::: 17821
#pragma line 317 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\iomanip" 3 ::: 17841
#pragma line 6 "dct_hls/dct.h" 2 ::: 17872
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdlib" 1 3 ::: 17874
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdlib" 3 ::: 17875
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdlib" 3 ::: 17876
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 1 3 ::: 17879
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 17880
#pragma line 41 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 3 ::: 17881
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\stddef.h" 1 3 4 ::: 17884
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstddef" 2 3 ::: 17885
#pragma line 44 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdlib" 2 3 ::: 17886
#pragma line 67 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdlib" 3 ::: 17887
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 1 3 ::: 17888
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 17897
#pragma line 9 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 2 3 ::: 17898
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\limits.h" 1 3 4 ::: 17900
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\limits.h" 3 4 ::: 17901
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\limits.h" 1 3 4 ::: 17902
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 4 ::: 17908
#pragma line 6 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\limits.h" 2 3 4 ::: 17909
#pragma line 38 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/include\\limits.h" 2 3 4 ::: 17910
#pragma line 10 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 2 3 ::: 17911
#pragma line 36 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 17918
#pragma line 46 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 17920
#pragma line 132 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 17965
#pragma line 148 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 17974
#pragma line 172 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 17985
#pragma line 200 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18003
#pragma line 209 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18005
#pragma line 218 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18007
#pragma line 227 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18009
#pragma line 257 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18032
#pragma line 266 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18034
#pragma line 275 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18036
#pragma line 284 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18038
#pragma line 321 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18068
#pragma line 484 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18189
#pragma line 550 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18242
#pragma line 574 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18247
#pragma line 624 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 3 ::: 18283
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\sec_api/stdlib_s.h" 1 3 ::: 18290
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 1 3 ::: 18299
#pragma line 9 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\sec_api/stdlib_s.h" 2 3 ::: 18300
#pragma line 629 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 2 3 ::: 18301
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\malloc.h" 1 3 ::: 18303
#pragma line 1 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\_mingw.h" 1 3 ::: 18312
#pragma line 9 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\malloc.h" 2 3 ::: 18313
#pragma line 46 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\malloc.h" 3 ::: 18324
#pragma line 99 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\malloc.h" 3 ::: 18333
#pragma line 140 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\malloc.h" 3 ::: 18363
#pragma line 159 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\malloc.h" 3 ::: 18371
#pragma line 202 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\malloc.h" 3 ::: 18387
#pragma line 630 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin/../lib/clang/3.1/../../../x86_64-w64-mingw32/include\\stdlib.h" 2 3 ::: 18392
#pragma line 68 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdlib" 2 3 ::: 18393
#pragma line 99 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdlib" 3 ::: 18394
#pragma line 156 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdlib" 3 ::: 18440
#pragma line 189 "C:/Xilinx/Vivado/2017.4/win64/tools/clang/bin\\..\\lib\\clang\\3.1/../../../include/c++/4.5.2\\cstdlib" 3 ::: 18464
#pragma line 7 "dct_hls/dct.h" 2 ::: 18493
#pragma line 18 "dct_hls/dct.h" ::: 18497
#pragma line 2 "dct_hls/dct.cpp" 2 ::: 18499
#pragma line 40 "dct_hls/dct.cpp" ::: 18523
#pragma line 1 "dct_hls/qft_coeff_table.txt" 1 ::: 18554
#pragma line 70 "dct_hls/dct.cpp" 2 ::: 18555
#pragma line 70 "dct_hls/dct.cpp" ::: 18558
#pragma line 110 "dct_hls/dct.cpp" ::: 18601
#pragma line 122 "dct_hls/dct.cpp" ::: 18616
| [
"cypmvp@163.com"
] | cypmvp@163.com |
9611aab446307b97deadca76c00dc1ee50eed35f | 456b86eb88f177c7e893ff8f38a68fc732f86767 | /include/systems/CarrySystem.hpp | f3467dce318591f5f15b5c6eb8a6bed68cb57436 | [
"MIT"
] | permissive | SgtCoDFish/obelisk | 29af6b350f875f1e4ac12536c5bb28fe59861de5 | 8ff736a720f2604c7990477791cb5a983271f66a | refs/heads/master | 2020-03-12T05:46:01.020814 | 2018-04-24T00:49:20 | 2018-04-24T00:49:20 | 130,470,636 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 443 | hpp | #ifndef OBELISK_CARRYSYSTEM_HPP
#define OBELISK_CARRYSYSTEM_HPP
#include <Ashley/systems/IteratingSystem.hpp>
namespace APG {
class InputManager;
}
namespace obelisk {
class CarrySystem final : public ashley::IteratingSystem {
public:
explicit CarrySystem(APG::InputManager *inputManager, int64_t priority);
void processEntity(ashley::Entity *entity, float deltaTime) override;
private:
APG::InputManager *inputManager;
};
}
#endif
| [
"ashley_davis10419@hotmail.com"
] | ashley_davis10419@hotmail.com |
776e2c4528f8b3fcc637266e6b5705b8772a24cb | 77ee25aae73961b5abdb9d742dd29459b8816d41 | /cpp/platform/impl/windows/generated/winrt/impl/Windows.ApplicationModel.Appointments.DataProvider.0.h | 71cc4dd3fdb39ed5c5c330247ac51ade39fda54c | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0"
] | permissive | ciaraspissed/nearby-connections | eabaff88177289d3b15274fc4ed2e745fe022802 | 233c5f533771c4004bac87a49cbc9f0137d80bfb | refs/heads/master | 2023-08-12T14:43:09.092255 | 2021-09-16T20:18:26 | 2021-09-16T20:19:03 | 407,859,947 | 2 | 0 | Apache-2.0 | 2021-09-18T12:54:05 | 2021-09-18T12:54:04 | null | UTF-8 | C++ | false | false | 51,273 | h | // WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.210825.3
#pragma once
#ifndef WINRT_Windows_ApplicationModel_Appointments_DataProvider_0_H
#define WINRT_Windows_ApplicationModel_Appointments_DataProvider_0_H
WINRT_EXPORT namespace winrt::Windows::ApplicationModel::Appointments
{
struct Appointment;
struct AppointmentInvitee;
enum class AppointmentParticipantResponse : int32_t;
}
WINRT_EXPORT namespace winrt::Windows::Foundation
{
struct Deferral;
struct EventRegistrationToken;
struct IAsyncAction;
template <typename T> struct __declspec(empty_bases) IReference;
template <typename TSender, typename TResult> struct __declspec(empty_bases) TypedEventHandler;
}
WINRT_EXPORT namespace winrt::Windows::Foundation::Collections
{
template <typename T> struct __declspec(empty_bases) IVectorView;
}
WINRT_EXPORT namespace winrt::Windows::ApplicationModel::Appointments::DataProvider
{
struct IAppointmentCalendarCancelMeetingRequest;
struct IAppointmentCalendarCancelMeetingRequestEventArgs;
struct IAppointmentCalendarCreateOrUpdateAppointmentRequest;
struct IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs;
struct IAppointmentCalendarForwardMeetingRequest;
struct IAppointmentCalendarForwardMeetingRequestEventArgs;
struct IAppointmentCalendarProposeNewTimeForMeetingRequest;
struct IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs;
struct IAppointmentCalendarSyncManagerSyncRequest;
struct IAppointmentCalendarSyncManagerSyncRequestEventArgs;
struct IAppointmentCalendarUpdateMeetingResponseRequest;
struct IAppointmentCalendarUpdateMeetingResponseRequestEventArgs;
struct IAppointmentDataProviderConnection;
struct IAppointmentDataProviderTriggerDetails;
struct AppointmentCalendarCancelMeetingRequest;
struct AppointmentCalendarCancelMeetingRequestEventArgs;
struct AppointmentCalendarCreateOrUpdateAppointmentRequest;
struct AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs;
struct AppointmentCalendarForwardMeetingRequest;
struct AppointmentCalendarForwardMeetingRequestEventArgs;
struct AppointmentCalendarProposeNewTimeForMeetingRequest;
struct AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs;
struct AppointmentCalendarSyncManagerSyncRequest;
struct AppointmentCalendarSyncManagerSyncRequestEventArgs;
struct AppointmentCalendarUpdateMeetingResponseRequest;
struct AppointmentCalendarUpdateMeetingResponseRequestEventArgs;
struct AppointmentDataProviderConnection;
struct AppointmentDataProviderTriggerDetails;
}
namespace winrt::impl
{
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequest>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequestEventArgs>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequest>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequest>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequestEventArgs>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequest>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequest>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequestEventArgs>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequest>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequestEventArgs>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderTriggerDetails>{ using type = interface_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCancelMeetingRequest>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCancelMeetingRequestEventArgs>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCreateOrUpdateAppointmentRequest>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarForwardMeetingRequest>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarForwardMeetingRequestEventArgs>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarProposeNewTimeForMeetingRequest>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarSyncManagerSyncRequest>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarSyncManagerSyncRequestEventArgs>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarUpdateMeetingResponseRequest>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarUpdateMeetingResponseRequestEventArgs>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection>{ using type = class_category; };
template <> struct category<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderTriggerDetails>{ using type = class_category; };
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCancelMeetingRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarCancelMeetingRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCancelMeetingRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarCancelMeetingRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCreateOrUpdateAppointmentRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarCreateOrUpdateAppointmentRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarForwardMeetingRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarForwardMeetingRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarForwardMeetingRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarForwardMeetingRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarProposeNewTimeForMeetingRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarProposeNewTimeForMeetingRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarSyncManagerSyncRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarSyncManagerSyncRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarSyncManagerSyncRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarSyncManagerSyncRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarUpdateMeetingResponseRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarUpdateMeetingResponseRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarUpdateMeetingResponseRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentCalendarUpdateMeetingResponseRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentDataProviderConnection";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderTriggerDetails> = L"Windows.ApplicationModel.Appointments.DataProvider.AppointmentDataProviderTriggerDetails";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarCancelMeetingRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarCancelMeetingRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarCreateOrUpdateAppointmentRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarForwardMeetingRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarForwardMeetingRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarProposeNewTimeForMeetingRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarSyncManagerSyncRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarSyncManagerSyncRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequest> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarUpdateMeetingResponseRequest";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequestEventArgs> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentCalendarUpdateMeetingResponseRequestEventArgs";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentDataProviderConnection";
template <> inline constexpr auto& name_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderTriggerDetails> = L"Windows.ApplicationModel.Appointments.DataProvider.IAppointmentDataProviderTriggerDetails";
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequest>{ 0x49460F8D,0x6434,0x40D7,{ 0xAD,0x46,0x62,0x97,0x41,0x93,0x14,0xD1 } }; // 49460F8D-6434-40D7-AD46-6297419314D1
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequestEventArgs>{ 0x1A79BE16,0x7F30,0x4E35,{ 0xBE,0xEF,0x9D,0x2C,0x7B,0x6D,0xCA,0xE1 } }; // 1A79BE16-7F30-4E35-BEEF-9D2C7B6DCAE1
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequest>{ 0x2E62F2B2,0xCA96,0x48AC,{ 0x91,0x24,0x40,0x6B,0x19,0xFE,0xFA,0x70 } }; // 2E62F2B2-CA96-48AC-9124-406B19FEFA70
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs>{ 0xCF8DED28,0x002E,0x4BF7,{ 0x8E,0x9D,0x5E,0x20,0xD4,0x9A,0xA3,0xBA } }; // CF8DED28-002E-4BF7-8E9D-5E20D49AA3BA
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequest>{ 0x82E5EE56,0x26B6,0x4253,{ 0x8A,0x8F,0x6C,0xF5,0xF2,0xFF,0x78,0x84 } }; // 82E5EE56-26B6-4253-8A8F-6CF5F2FF7884
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequestEventArgs>{ 0x3109151A,0x23A2,0x42FD,{ 0x9C,0x82,0xC9,0xA6,0x0D,0x59,0xF8,0xA8 } }; // 3109151A-23A2-42FD-9C82-C9A60D59F8A8
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequest>{ 0xCE1C63F5,0xEDF6,0x43C3,{ 0x82,0xB7,0xBE,0x6B,0x36,0x8C,0x69,0x00 } }; // CE1C63F5-EDF6-43C3-82B7-BE6B368C6900
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs>{ 0xD2D777D8,0xFED1,0x4280,{ 0xA3,0xBA,0x2E,0x1F,0x47,0x60,0x9A,0xA2 } }; // D2D777D8-FED1-4280-A3BA-2E1F47609AA2
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequest>{ 0x12AB382B,0x7163,0x4A56,{ 0x9A,0x4E,0x72,0x23,0xA8,0x4A,0xDF,0x46 } }; // 12AB382B-7163-4A56-9A4E-7223A84ADF46
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequestEventArgs>{ 0xCA17C6F7,0x0284,0x4EDD,{ 0x87,0xBA,0x4D,0x8F,0x69,0xDC,0xF5,0xC0 } }; // CA17C6F7-0284-4EDD-87BA-4D8F69DCF5C0
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequest>{ 0xA36D608C,0xC29D,0x4B94,{ 0xB0,0x86,0x7E,0x9F,0xF7,0xBD,0x84,0xA0 } }; // A36D608C-C29D-4B94-B086-7E9FF7BD84A0
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequestEventArgs>{ 0x88759883,0x97BF,0x479D,{ 0xAE,0xD5,0x0B,0xE8,0xCE,0x56,0x7D,0x1E } }; // 88759883-97BF-479D-AED5-0BE8CE567D1E
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection>{ 0xF3DD9D83,0x3254,0x465F,{ 0xAB,0xDB,0x92,0x80,0x46,0x55,0x2C,0xF4 } }; // F3DD9D83-3254-465F-ABDB-928046552CF4
template <> inline constexpr guid guid_v<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderTriggerDetails>{ 0xB3283C01,0x7E12,0x4E5E,{ 0xB1,0xEF,0x74,0xFB,0x68,0xAC,0x6F,0x2A } }; // B3283C01-7E12-4E5E-B1EF-74FB68AC6F2A
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCancelMeetingRequest>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequest; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCancelMeetingRequestEventArgs>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequestEventArgs; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCreateOrUpdateAppointmentRequest>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequest; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarForwardMeetingRequest>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequest; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarForwardMeetingRequestEventArgs>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequestEventArgs; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarProposeNewTimeForMeetingRequest>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequest; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarSyncManagerSyncRequest>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequest; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarSyncManagerSyncRequestEventArgs>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequestEventArgs; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarUpdateMeetingResponseRequest>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequest; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarUpdateMeetingResponseRequestEventArgs>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequestEventArgs; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection; };
template <> struct default_interface<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderTriggerDetails>{ using type = winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderTriggerDetails; };
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequest>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_AppointmentCalendarLocalId(void**) noexcept = 0;
virtual int32_t __stdcall get_AppointmentLocalId(void**) noexcept = 0;
virtual int32_t __stdcall get_AppointmentOriginalStartTime(void**) noexcept = 0;
virtual int32_t __stdcall get_Subject(void**) noexcept = 0;
virtual int32_t __stdcall get_Comment(void**) noexcept = 0;
virtual int32_t __stdcall get_NotifyInvitees(bool*) noexcept = 0;
virtual int32_t __stdcall ReportCompletedAsync(void**) noexcept = 0;
virtual int32_t __stdcall ReportFailedAsync(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequestEventArgs>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_Request(void**) noexcept = 0;
virtual int32_t __stdcall GetDeferral(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequest>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_AppointmentCalendarLocalId(void**) noexcept = 0;
virtual int32_t __stdcall get_Appointment(void**) noexcept = 0;
virtual int32_t __stdcall get_NotifyInvitees(bool*) noexcept = 0;
virtual int32_t __stdcall get_ChangedProperties(void**) noexcept = 0;
virtual int32_t __stdcall ReportCompletedAsync(void*, void**) noexcept = 0;
virtual int32_t __stdcall ReportFailedAsync(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_Request(void**) noexcept = 0;
virtual int32_t __stdcall GetDeferral(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequest>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_AppointmentCalendarLocalId(void**) noexcept = 0;
virtual int32_t __stdcall get_AppointmentLocalId(void**) noexcept = 0;
virtual int32_t __stdcall get_AppointmentOriginalStartTime(void**) noexcept = 0;
virtual int32_t __stdcall get_Invitees(void**) noexcept = 0;
virtual int32_t __stdcall get_Subject(void**) noexcept = 0;
virtual int32_t __stdcall get_ForwardHeader(void**) noexcept = 0;
virtual int32_t __stdcall get_Comment(void**) noexcept = 0;
virtual int32_t __stdcall ReportCompletedAsync(void**) noexcept = 0;
virtual int32_t __stdcall ReportFailedAsync(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequestEventArgs>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_Request(void**) noexcept = 0;
virtual int32_t __stdcall GetDeferral(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequest>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_AppointmentCalendarLocalId(void**) noexcept = 0;
virtual int32_t __stdcall get_AppointmentLocalId(void**) noexcept = 0;
virtual int32_t __stdcall get_AppointmentOriginalStartTime(void**) noexcept = 0;
virtual int32_t __stdcall get_NewStartTime(int64_t*) noexcept = 0;
virtual int32_t __stdcall get_NewDuration(int64_t*) noexcept = 0;
virtual int32_t __stdcall get_Subject(void**) noexcept = 0;
virtual int32_t __stdcall get_Comment(void**) noexcept = 0;
virtual int32_t __stdcall ReportCompletedAsync(void**) noexcept = 0;
virtual int32_t __stdcall ReportFailedAsync(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_Request(void**) noexcept = 0;
virtual int32_t __stdcall GetDeferral(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequest>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_AppointmentCalendarLocalId(void**) noexcept = 0;
virtual int32_t __stdcall ReportCompletedAsync(void**) noexcept = 0;
virtual int32_t __stdcall ReportFailedAsync(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequestEventArgs>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_Request(void**) noexcept = 0;
virtual int32_t __stdcall GetDeferral(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequest>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_AppointmentCalendarLocalId(void**) noexcept = 0;
virtual int32_t __stdcall get_AppointmentLocalId(void**) noexcept = 0;
virtual int32_t __stdcall get_AppointmentOriginalStartTime(void**) noexcept = 0;
virtual int32_t __stdcall get_Response(int32_t*) noexcept = 0;
virtual int32_t __stdcall get_Subject(void**) noexcept = 0;
virtual int32_t __stdcall get_Comment(void**) noexcept = 0;
virtual int32_t __stdcall get_SendUpdate(bool*) noexcept = 0;
virtual int32_t __stdcall ReportCompletedAsync(void**) noexcept = 0;
virtual int32_t __stdcall ReportFailedAsync(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequestEventArgs>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_Request(void**) noexcept = 0;
virtual int32_t __stdcall GetDeferral(void**) noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall add_SyncRequested(void*, winrt::event_token*) noexcept = 0;
virtual int32_t __stdcall remove_SyncRequested(winrt::event_token) noexcept = 0;
virtual int32_t __stdcall add_CreateOrUpdateAppointmentRequested(void*, winrt::event_token*) noexcept = 0;
virtual int32_t __stdcall remove_CreateOrUpdateAppointmentRequested(winrt::event_token) noexcept = 0;
virtual int32_t __stdcall add_CancelMeetingRequested(void*, winrt::event_token*) noexcept = 0;
virtual int32_t __stdcall remove_CancelMeetingRequested(winrt::event_token) noexcept = 0;
virtual int32_t __stdcall add_ForwardMeetingRequested(void*, winrt::event_token*) noexcept = 0;
virtual int32_t __stdcall remove_ForwardMeetingRequested(winrt::event_token) noexcept = 0;
virtual int32_t __stdcall add_ProposeNewTimeForMeetingRequested(void*, winrt::event_token*) noexcept = 0;
virtual int32_t __stdcall remove_ProposeNewTimeForMeetingRequested(winrt::event_token) noexcept = 0;
virtual int32_t __stdcall add_UpdateMeetingResponseRequested(void*, winrt::event_token*) noexcept = 0;
virtual int32_t __stdcall remove_UpdateMeetingResponseRequested(winrt::event_token) noexcept = 0;
virtual int32_t __stdcall Start() noexcept = 0;
};
};
template <> struct abi<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderTriggerDetails>
{
struct __declspec(novtable) type : inspectable_abi
{
virtual int32_t __stdcall get_Connection(void**) noexcept = 0;
};
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarCancelMeetingRequest
{
[[nodiscard]] WINRT_IMPL_AUTO(hstring) AppointmentCalendarLocalId() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) AppointmentLocalId() const;
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::Foundation::IReference<winrt::Windows::Foundation::DateTime>) AppointmentOriginalStartTime() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) Subject() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) Comment() const;
[[nodiscard]] WINRT_IMPL_AUTO(bool) NotifyInvitees() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportCompletedAsync() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportFailedAsync() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequest>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarCancelMeetingRequest<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarCancelMeetingRequestEventArgs
{
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCancelMeetingRequest) Request() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::Deferral) GetDeferral() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCancelMeetingRequestEventArgs>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarCancelMeetingRequestEventArgs<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarCreateOrUpdateAppointmentRequest
{
[[nodiscard]] WINRT_IMPL_AUTO(hstring) AppointmentCalendarLocalId() const;
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::ApplicationModel::Appointments::Appointment) Appointment() const;
[[nodiscard]] WINRT_IMPL_AUTO(bool) NotifyInvitees() const;
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::Foundation::Collections::IVectorView<hstring>) ChangedProperties() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportCompletedAsync(winrt::Windows::ApplicationModel::Appointments::Appointment const& createdOrUpdatedAppointment) const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportFailedAsync() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequest>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarCreateOrUpdateAppointmentRequest<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs
{
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCreateOrUpdateAppointmentRequest) Request() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::Deferral) GetDeferral() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarForwardMeetingRequest
{
[[nodiscard]] WINRT_IMPL_AUTO(hstring) AppointmentCalendarLocalId() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) AppointmentLocalId() const;
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::Foundation::IReference<winrt::Windows::Foundation::DateTime>) AppointmentOriginalStartTime() const;
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::Foundation::Collections::IVectorView<winrt::Windows::ApplicationModel::Appointments::AppointmentInvitee>) Invitees() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) Subject() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) ForwardHeader() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) Comment() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportCompletedAsync() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportFailedAsync() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequest>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarForwardMeetingRequest<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarForwardMeetingRequestEventArgs
{
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarForwardMeetingRequest) Request() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::Deferral) GetDeferral() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarForwardMeetingRequestEventArgs>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarForwardMeetingRequestEventArgs<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarProposeNewTimeForMeetingRequest
{
[[nodiscard]] WINRT_IMPL_AUTO(hstring) AppointmentCalendarLocalId() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) AppointmentLocalId() const;
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::Foundation::IReference<winrt::Windows::Foundation::DateTime>) AppointmentOriginalStartTime() const;
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::Foundation::DateTime) NewStartTime() const;
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::Foundation::TimeSpan) NewDuration() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) Subject() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) Comment() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportCompletedAsync() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportFailedAsync() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequest>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarProposeNewTimeForMeetingRequest<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs
{
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarProposeNewTimeForMeetingRequest) Request() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::Deferral) GetDeferral() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarSyncManagerSyncRequest
{
[[nodiscard]] WINRT_IMPL_AUTO(hstring) AppointmentCalendarLocalId() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportCompletedAsync() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportFailedAsync() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequest>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarSyncManagerSyncRequest<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarSyncManagerSyncRequestEventArgs
{
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarSyncManagerSyncRequest) Request() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::Deferral) GetDeferral() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarSyncManagerSyncRequestEventArgs>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarSyncManagerSyncRequestEventArgs<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarUpdateMeetingResponseRequest
{
[[nodiscard]] WINRT_IMPL_AUTO(hstring) AppointmentCalendarLocalId() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) AppointmentLocalId() const;
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::Foundation::IReference<winrt::Windows::Foundation::DateTime>) AppointmentOriginalStartTime() const;
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::ApplicationModel::Appointments::AppointmentParticipantResponse) Response() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) Subject() const;
[[nodiscard]] WINRT_IMPL_AUTO(hstring) Comment() const;
[[nodiscard]] WINRT_IMPL_AUTO(bool) SendUpdate() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportCompletedAsync() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::IAsyncAction) ReportFailedAsync() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequest>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarUpdateMeetingResponseRequest<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarUpdateMeetingResponseRequestEventArgs
{
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarUpdateMeetingResponseRequest) Request() const;
WINRT_IMPL_AUTO(winrt::Windows::Foundation::Deferral) GetDeferral() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentCalendarUpdateMeetingResponseRequestEventArgs>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentCalendarUpdateMeetingResponseRequestEventArgs<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentDataProviderConnection
{
WINRT_IMPL_AUTO(winrt::event_token) SyncRequested(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarSyncManagerSyncRequestEventArgs> const& handler) const;
using SyncRequested_revoker = impl::event_revoker<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection, &impl::abi_t<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection>::remove_SyncRequested>;
[[nodiscard]] SyncRequested_revoker SyncRequested(auto_revoke_t, winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarSyncManagerSyncRequestEventArgs> const& handler) const;
WINRT_IMPL_AUTO(void) SyncRequested(winrt::event_token const& token) const noexcept;
WINRT_IMPL_AUTO(winrt::event_token) CreateOrUpdateAppointmentRequested(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs> const& handler) const;
using CreateOrUpdateAppointmentRequested_revoker = impl::event_revoker<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection, &impl::abi_t<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection>::remove_CreateOrUpdateAppointmentRequested>;
[[nodiscard]] CreateOrUpdateAppointmentRequested_revoker CreateOrUpdateAppointmentRequested(auto_revoke_t, winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs> const& handler) const;
WINRT_IMPL_AUTO(void) CreateOrUpdateAppointmentRequested(winrt::event_token const& token) const noexcept;
WINRT_IMPL_AUTO(winrt::event_token) CancelMeetingRequested(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCancelMeetingRequestEventArgs> const& handler) const;
using CancelMeetingRequested_revoker = impl::event_revoker<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection, &impl::abi_t<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection>::remove_CancelMeetingRequested>;
[[nodiscard]] CancelMeetingRequested_revoker CancelMeetingRequested(auto_revoke_t, winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarCancelMeetingRequestEventArgs> const& handler) const;
WINRT_IMPL_AUTO(void) CancelMeetingRequested(winrt::event_token const& token) const noexcept;
WINRT_IMPL_AUTO(winrt::event_token) ForwardMeetingRequested(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarForwardMeetingRequestEventArgs> const& handler) const;
using ForwardMeetingRequested_revoker = impl::event_revoker<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection, &impl::abi_t<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection>::remove_ForwardMeetingRequested>;
[[nodiscard]] ForwardMeetingRequested_revoker ForwardMeetingRequested(auto_revoke_t, winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarForwardMeetingRequestEventArgs> const& handler) const;
WINRT_IMPL_AUTO(void) ForwardMeetingRequested(winrt::event_token const& token) const noexcept;
WINRT_IMPL_AUTO(winrt::event_token) ProposeNewTimeForMeetingRequested(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs> const& handler) const;
using ProposeNewTimeForMeetingRequested_revoker = impl::event_revoker<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection, &impl::abi_t<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection>::remove_ProposeNewTimeForMeetingRequested>;
[[nodiscard]] ProposeNewTimeForMeetingRequested_revoker ProposeNewTimeForMeetingRequested(auto_revoke_t, winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs> const& handler) const;
WINRT_IMPL_AUTO(void) ProposeNewTimeForMeetingRequested(winrt::event_token const& token) const noexcept;
WINRT_IMPL_AUTO(winrt::event_token) UpdateMeetingResponseRequested(winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarUpdateMeetingResponseRequestEventArgs> const& handler) const;
using UpdateMeetingResponseRequested_revoker = impl::event_revoker<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection, &impl::abi_t<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection>::remove_UpdateMeetingResponseRequested>;
[[nodiscard]] UpdateMeetingResponseRequested_revoker UpdateMeetingResponseRequested(auto_revoke_t, winrt::Windows::Foundation::TypedEventHandler<winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection, winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentCalendarUpdateMeetingResponseRequestEventArgs> const& handler) const;
WINRT_IMPL_AUTO(void) UpdateMeetingResponseRequested(winrt::event_token const& token) const noexcept;
WINRT_IMPL_AUTO(void) Start() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderConnection>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentDataProviderConnection<D>;
};
template <typename D>
struct consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentDataProviderTriggerDetails
{
[[nodiscard]] WINRT_IMPL_AUTO(winrt::Windows::ApplicationModel::Appointments::DataProvider::AppointmentDataProviderConnection) Connection() const;
};
template <> struct consume<winrt::Windows::ApplicationModel::Appointments::DataProvider::IAppointmentDataProviderTriggerDetails>
{
template <typename D> using type = consume_Windows_ApplicationModel_Appointments_DataProvider_IAppointmentDataProviderTriggerDetails<D>;
};
}
#endif
| [
"copybara-worker@google.com"
] | copybara-worker@google.com |
ba789f0d38dd42601a0e31b752db225f6e8624eb | 92754bb891a128687f3fbc48a312aded752b6bcd | /Algorithms/C++/160-Intersection_of_Two_Linked_Lists.cpp | 8d5265f7426bfb83f33f5bc7b4864b9a21524099 | [] | no_license | daidai21/Leetcode | ddecaf0ffbc66604a464c3c9751f35f3abe5e7e5 | eb726b3411ed11e2bd00fee02dc41b77f35f2632 | refs/heads/master | 2023-03-24T21:13:31.128127 | 2023-03-08T16:11:43 | 2023-03-08T16:11:43 | 167,968,602 | 8 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 730 | cpp | // Runtime: 48 ms, faster than 81.21% of C++ online submissions for Intersection of Two Linked Lists.
// Memory Usage: 16.8 MB, less than 81.48% of C++ online submissions for Intersection of Two Linked Lists.
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
if (!headA || !headB)
return NULL;
ListNode* pa = headA, * pb = headB;
while (pa != pb) {
pa = pa ? pa->next : headB;
pb = pb ? pb->next : headA;
}
return pa;
}
};
| [
"728634974@qq.com"
] | 728634974@qq.com |
c258ff5debd73a913d95710d1e4eeaf9e8b93cb9 | f5d45b9c8c2c4ee6f444374f61d0608df6b6bba1 | /detectors/recoil/simple/KoaRecTimeJitterPar.h | e2774a8a615abe641b4f7886457794c84731fc65 | [] | no_license | KoalaGroup/KoalaSoft | 4c58ab9cd08948c216e2cc261e1459f562724521 | 05814dfa3746c8626f58b0474c82ce01a8682d2a | refs/heads/master | 2021-05-23T04:46:41.214318 | 2021-03-29T09:56:33 | 2021-03-29T09:56:33 | 81,461,953 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,612 | h | /********************************************************************************
* Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
* *
* This software is distributed under the terms of the *
* GNU Lesser General Public Licence (LGPL) version 3, *
* copied verbatim in the file "LICENSE" *
********************************************************************************/
#ifndef KOA_REC_TIMEJITTERPAR_H
#define KOA_REC_TIMEJITTERPAR_H
#include "FairParGenericSet.h" // for FairParGenericSet
#include "FairLogger.h"
#include "Rtypes.h" // for ClassDef
#include "TArrayD.h" // for TArrayD
class FairParamList;
class KoaRecTimeJitterPar : public FairParGenericSet
{
public:
KoaRecTimeJitterPar(const char* name="KoaRecTimeJitterPar",
const char* title="Time-jitter parameters for recoil detector",
const char* context="TestDefaultContext");
~KoaRecTimeJitterPar(void);
void clear(void);
void putParams(FairParamList*);
Bool_t getParams(FairParamList*);
Double_t GetSigma() {return fSigma;}
void printParams() {
LOG(info) << "Sigma: " << fSigma;
}
private:
Double_t fSigma; // Jitter sigma, in ns
KoaRecTimeJitterPar(const KoaRecTimeJitterPar&);
KoaRecTimeJitterPar& operator=(const KoaRecTimeJitterPar&);
ClassDef(KoaRecTimeJitterPar,1)
};
#endif
| [
"y.zhou@fz-juelich.de"
] | y.zhou@fz-juelich.de |
abd4faf2ed182a94b4ca7558ed603cd50da92b16 | 73221e5fa1241e161ce61973006c8036d2750b9d | /core/automotive/simulation/flowSimulator.cpp | 02876ecea7816772e6c78d8ebb7c051c4033ceef | [] | no_license | kv59piaoxue/ad-census-prototype | 054a6db5b880102c7fbab4fbc7e333c928055e8d | 1aadf09a0f3947785e1bd040edec45d2afcc3296 | refs/heads/master | 2021-04-14T00:44:02.957956 | 2016-08-12T09:55:05 | 2016-08-12T09:55:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,544 | cpp | /**
* \file flowSimulator.cpp
* \brief This is an implementation file to simulate flow caused by still standing objects and a moving
* vehicle.
*
* \date Feb 22, 2011
* \author alexander
*/
#include "flowSimulator.h"
#include "FCostFunction.h"
namespace corecvs {
FlowSimulator::FlowSimulator()
{
}
FlowSimulator::~FlowSimulator()
{
}
std::vector<Vector3dd> *FlowSimulator::generateMockScene()
{
static const int WALL_H = 20;
static const int WALL_L = 280;
static const int FLOOR_WIDTH = 20;
static const float WALL_DIST = 5000.0;
static const float BRICK_SIZE = 100.0;
std::vector<Vector3dd> *result = new std::vector<Vector3dd>();
/**
* Construct two walls of points
* Each column on the matrix in the matrix represent one point WALL_H * WALL_L
* */
for (int i = 0; i < WALL_L; i ++)
{
for (int j = 0; j < WALL_H; j ++)
{
/**
* OX -reverse of car forward movement
* OY -goes right from car
* OZ -orthogonal, goes up into the air
* */
double x = -(i - WALL_L / 3) * BRICK_SIZE;
double y0 = -WALL_DIST / 2.0;
double y1 = WALL_DIST / 2.0;
double z = j * BRICK_SIZE - (WALL_H / 3) * BRICK_SIZE;
result->push_back(Vector3dd(x,y0,z));
result->push_back(Vector3dd(x,y1,z));
}
}
for (int i = 0; i < WALL_L; i ++)
{
for (int j = 0; j < FLOOR_WIDTH; j ++)
{
double x = -(i - WALL_L / 3) * BRICK_SIZE;
double y = (WALL_DIST / (FLOOR_WIDTH - 1)) * j - (WALL_DIST / 2.0);
double z = -( 0.5) * BRICK_SIZE - (WALL_H / 3) * BRICK_SIZE;
result->push_back(Vector3dd(x,y,z));
}
}
return result;
}
std::vector<Vector3dd> *FlowSimulator::unitCube(unsigned gradations)
{
vector<Vector3dd> *pointsIn3d = new std::vector<Vector3dd>();
double step = 1.0 / (gradations - 1);
for (unsigned i = 0; i < gradations; i++)
{
for (unsigned j = 0; j < gradations; j++)
{
for (unsigned k = 0; k < gradations; k++)
{
Vector3dd cubePoint = Vector3dd(i, j, k) * step - Vector3dd(0.5);
pointsIn3d->push_back(cubePoint);
}
}
}
return pointsIn3d;
}
std::vector<Vector3dd> *FlowSimulator::applyTransform(std::vector<Vector3dd> * pointsA, const Matrix44 &A)
{
vector<Vector3dd> *result = new std::vector<Vector3dd>();
for (unsigned i = 0; i < pointsA->size(); i++)
{
result->push_back(A * pointsA->at(i));
}
return result;
}
std::vector<FloatFlowVector> *FlowSimulator::simulateFlow(
const CameraIntrinsicsLegacy &camIntrinsics,
const ShiftRotateTransformation &cameraExtrinsics,
const ShiftRotateTransformation &carMovement,
double maxZ,
double minLength )
{
Vector2dd imageSize = camIntrinsics.center * 2.0;
std::vector<FloatFlowVector> *result = new std::vector<FloatFlowVector>();
Matrix44 A = FCostFunction::GetMatrixForTransform(carMovement);
vector<Vector3dd> *pointsA = FlowSimulator::generateMockScene();
vector<Vector3dd> *pointsB = FlowSimulator::applyTransform(pointsA, A);
Matrix44 D = FCostFunction::getDMatrix(FCostFunction::FRONT_VIEW_CAMERA, camIntrinsics, cameraExtrinsics);
vector<Vector3dd> *imagePointsA = FlowSimulator::applyTransform(pointsA, D);
vector<Vector3dd> *imagePointsB = FlowSimulator::applyTransform(pointsB, D);
for (unsigned i = 0; i < pointsA->size(); i++)
{
Vector3dd projectiveA = imagePointsA->at(i);
Vector3dd projectiveB = imagePointsB->at(i);
if (projectiveA.z() <= 0 || projectiveB.z() <= 0)
continue;
if (projectiveA.z() > maxZ || projectiveB.z() > maxZ)
continue;
Vector2dd imagePointA = projectiveA.project();
Vector2dd imagePointB = projectiveB.project();
if (!imagePointA.isInRect(Vector2dd(0.0,0.0), imageSize - Vector2dd(1.0,1.0)))
continue;
if (!imagePointB.isInRect(Vector2dd(0.0,0.0), imageSize - Vector2dd(1.0,1.0)))
continue;
if ((imagePointB - imagePointA).sumAllElementsSq() < minLength * minLength)
continue;
FloatFlowVector flowVector(imagePointA, imagePointB);
result->push_back(flowVector);
}
delete pointsA;
delete pointsB;
delete imagePointsA;
delete imagePointsB;
return result;
}
} //namespace corecvs
| [
"contact.aldrog@gmail.com"
] | contact.aldrog@gmail.com |
6bb4093c37f08219afcf40a679a20f59da4e9954 | 9ef778babfe3454bd612ed4c71813384226e8317 | /CannonFilter/JuceLibraryCode/JuceHeader.h | 145ef0b2c1afb299fdca2c29f2a25cf662db89a5 | [] | no_license | cannonball6/SeniorProject-Digital-Filter-VST | 5c1822794c4b62b0a97c391be92fdb7797813a3c | ab884f427aaaad02bada8c44211da5dbe411e9c0 | refs/heads/master | 2020-04-18T03:12:14.249745 | 2016-10-04T16:26:15 | 2016-10-04T16:26:15 | 67,653,371 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,703 | h | /*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
This is the header file that your files should include in order to get all the
JUCE library headers. You should avoid including the JUCE headers directly in
your own source files, because that wouldn't pick up the correct configuration
options for your app.
*/
#ifndef __APPHEADERFILE_VVUQIT__
#define __APPHEADERFILE_VVUQIT__
#include "AppConfig.h"
#include <juce_audio_basics/juce_audio_basics.h>
#include <juce_audio_devices/juce_audio_devices.h>
#include <juce_audio_formats/juce_audio_formats.h>
#include <juce_audio_plugin_client/juce_audio_plugin_client.h>
#include <juce_audio_processors/juce_audio_processors.h>
#include <juce_core/juce_core.h>
#include <juce_cryptography/juce_cryptography.h>
#include <juce_data_structures/juce_data_structures.h>
#include <juce_events/juce_events.h>
#include <juce_graphics/juce_graphics.h>
#include <juce_gui_basics/juce_gui_basics.h>
#include <juce_gui_extra/juce_gui_extra.h>
#include <juce_opengl/juce_opengl.h>
#include <juce_video/juce_video.h>
#if ! DONT_SET_USING_JUCE_NAMESPACE
// If your code uses a lot of JUCE classes, then this will obviously save you
// a lot of typing, but can be disabled by setting DONT_SET_USING_JUCE_NAMESPACE.
using namespace juce;
#endif
#if ! JUCE_DONT_DECLARE_PROJECTINFO
namespace ProjectInfo
{
const char* const projectName = "CannonFilter";
const char* const versionString = "1.0.0";
const int versionNumber = 0x10000;
}
#endif
#endif // __APPHEADERFILE_VVUQIT__
| [
"lindley.cannon@gmail.com"
] | lindley.cannon@gmail.com |
8eea337b98392625bdbdf6902a0bf725ab23d11e | 1cc50be9624e8194b53065cb5f02f5cb03cc4bc0 | /libraries/utilities/include/mcrl2/utilities/toolset_version_const.h | 2b8dcc9bb66272c81843b2e8ac34066378af6f4b | [
"BSL-1.0"
] | permissive | wiegerw/mackerel | 34376279b1e01d3ca84a722e1286c0aeaca975d9 | 15260c92ab35930398d6dfb34d31351b05101ca9 | refs/heads/master | 2021-09-27T05:11:10.523915 | 2021-09-24T13:21:59 | 2021-09-24T13:21:59 | 128,734,028 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 259 | h | #ifndef MCRL2_UTILITIES_TOOLSET_VERSION_CONST_H
#define MCRL2_UTILITIES_TOOLSET_VERSION_CONST_H
#include <string>
namespace mcrl2 {
namespace utilities {
const std::string MCRL2_VERSION = "2018.0";
}
}
#endif // MCRL2_UTILITIES_TOOLSET_VERSION_CONST_H
| [
"j.w.wesselink@tue.nl"
] | j.w.wesselink@tue.nl |
de6cfe7ee9531400d74f5faf82d82f2e731eff2a | 7d882b2b36318e2d236b65c19b0a1c9d59041abc | /Sourcecode/mxtest/api/FreezingRoundTrip.cpp | 030fdee129d7d1a99f246a72debe3dee11638b16 | [
"MIT"
] | permissive | RobinKa/MusicXML-Class-Library | 40755ef8c9bdea4edc43cc0f77fd7ee0e214d406 | 5beedceb126617c5959bc0b5b98e9dd14153c00f | refs/heads/master | 2020-05-05T10:48:12.877423 | 2019-04-07T12:15:53 | 2019-04-07T12:15:53 | 179,961,506 | 1 | 0 | null | 2019-04-07T12:13:59 | 2019-04-07T12:13:59 | null | UTF-8 | C++ | false | false | 12,849 | cpp | // MusicXML Class Library
// Copyright (c) by Matthew James Briggs
// Distributed under the MIT License
#include "mxtest/control/CompileControl.h"
#ifdef MX_COMPILE_API_TESTS
#include "cpul/cpulTestHarness.h"
#include "mxtest/file/MxFileRepository.h"
#include "mx/api/DocumentManager.h"
#include "mx/core/Document.h"
#include "mx/core/elements/MusicDataChoice.h"
#include "mxtest/api/RoundTrip.h"
// TODO - replace with specific includes
#include "mx/core/Elements.h"
using namespace std;
using namespace mx::api;
using namespace mx::core;
using namespace mxtest;
namespace
{
constexpr const char* const fileName = "freezing.xml";
}
TEST( roundTripOutput, Freezing )
{
const auto scoreData = mxtest::MxFileRepository::loadFile( fileName );
const auto filePath = mxtest::MxFileRepository::getFullPath( fileName );
auto& docMgr = DocumentManager::getInstance();
const auto docId = docMgr.createFromFile( filePath );
docMgr.writeToFile( docId, "./freezing_before.xml" );
docMgr.destroyDocument( docId );
const auto apiDocId = docMgr.createFromScore( scoreData );
docMgr.writeToFile( apiDocId, "./freezing_after.xml" );
docMgr.destroyDocument( apiDocId );
}
T_END
TEST( roundTripViolaDynamicWrongTime, Freezing )
{
auto& mgr = DocumentManager::getInstance();
const auto filePath = mxtest::MxFileRepository::getFullPath( fileName );
const auto originalId = mgr.createFromFile( filePath );
const auto originalScoreData = mgr.getData( originalId );
const auto originalScore = mgr.getDocument( originalId )->getScorePartwise();
const auto savedId = mgr.createFromScore( mgr.getData( originalId ) );
const auto savedScoreData = mgr.getData( savedId );
const auto savedScore = mgr.getDocument( savedId )->getScorePartwise();
mgr.destroyDocument( originalId );
mgr.destroyDocument( savedId );
const int partIndex = 0;
const int measureIndex = 7;
const auto& originalPart = originalScore->getPartwisePartSet().at( partIndex );
const auto& originalMeasure = originalPart->getPartwiseMeasureSet().at( measureIndex );
const auto& originalMdcSet = originalMeasure->getMusicDataGroup()->getMusicDataChoiceSet();
auto originalMdcIter = originalMdcSet.cbegin();
const auto originalMdcEnd = originalMdcSet.cend();
while( ( originalMdcIter != originalMdcEnd ) && ( (*originalMdcIter)->getChoice() != MusicDataChoice::Choice::note ) )
{
++originalMdcIter;
}
CHECK( originalMdcIter != originalMdcEnd );
CHECK( MusicDataChoice::Choice::note == (*originalMdcIter)->getChoice() );
auto originalCurrentNote = (*originalMdcIter)->getNote();
CHECK_DOUBLES_EQUAL( 30.0, originalCurrentNote->getNoteChoice()->getNormalNoteGroup()->getDuration()->getValue().getValue(), 0.0001 );
CHECK( !originalCurrentNote->getNoteChoice()->getNormalNoteGroup()->getFullNoteGroup()->getHasChord() );
++originalMdcIter;
CHECK( originalMdcIter != originalMdcEnd );
CHECK( MusicDataChoice::Choice::note == (*originalMdcIter)->getChoice() );
originalCurrentNote = (*originalMdcIter)->getNote();
CHECK_DOUBLES_EQUAL( 30.0, originalCurrentNote->getNoteChoice()->getNormalNoteGroup()->getDuration()->getValue().getValue(), 0.0001 );
CHECK( originalCurrentNote->getNoteChoice()->getNormalNoteGroup()->getFullNoteGroup()->getHasChord() );
++originalMdcIter;
CHECK( originalMdcIter != originalMdcEnd );
CHECK( MusicDataChoice::Choice::direction == (*originalMdcIter)->getChoice() );
auto originalDirection = (*originalMdcIter)->getDirection();
CHECK( DirectionType::Choice::dynamics == originalDirection->getDirectionTypeSet().front()->getChoice() );
auto originalDynamics = originalDirection->getDirectionTypeSet().front()->getDynamicsSet().front();
auto originalDynamicsValue = originalDynamics->getValue();
CHECK( DynamicsEnum::pp == originalDynamicsValue.getValue() );
const auto& savedPart = savedScore->getPartwisePartSet().at( partIndex );
const auto& savedMeasure = savedPart->getPartwiseMeasureSet().at( measureIndex );
const auto& savedMdcSet = savedMeasure->getMusicDataGroup()->getMusicDataChoiceSet();
auto savedMdcIter = savedMdcSet.cbegin();
const auto savedMdcEnd = savedMdcSet.cend();
CHECK( savedMdcIter != savedMdcEnd );
CHECK( MusicDataChoice::Choice::note == (*savedMdcIter)->getChoice() );
auto savedCurrentNote = (*savedMdcIter)->getNote();
CHECK_DOUBLES_EQUAL( 30.0, savedCurrentNote->getNoteChoice()->getNormalNoteGroup()->getDuration()->getValue().getValue(), 0.0001 );
CHECK( !savedCurrentNote->getNoteChoice()->getNormalNoteGroup()->getFullNoteGroup()->getHasChord() );
++savedMdcIter;
CHECK( savedMdcIter != savedMdcEnd );
CHECK( MusicDataChoice::Choice::note == (*savedMdcIter)->getChoice() );
savedCurrentNote = (*savedMdcIter)->getNote();
CHECK_DOUBLES_EQUAL( 30.0, savedCurrentNote->getNoteChoice()->getNormalNoteGroup()->getDuration()->getValue().getValue(), 0.0001 );
CHECK( savedCurrentNote->getNoteChoice()->getNormalNoteGroup()->getFullNoteGroup()->getHasChord() );
++savedMdcIter;
CHECK( savedMdcIter != savedMdcEnd );
CHECK( MusicDataChoice::Choice::direction == (*savedMdcIter)->getChoice() );
auto savedDirection = (*savedMdcIter)->getDirection();
CHECK( DirectionType::Choice::dynamics == savedDirection->getDirectionTypeSet().front()->getChoice() );
auto savedDynamics = savedDirection->getDirectionTypeSet().front()->getDynamicsSet().front();
auto savedDynamicsValue = savedDynamics->getValue();
CHECK( DynamicsEnum::pp == savedDynamicsValue.getValue() );
}
T_END
TEST( missingMusicXMLVersion, Freezing )
{
auto& mgr = DocumentManager::getInstance();
const auto filePath = mxtest::MxFileRepository::getFullPath( fileName );
const auto originalId = mgr.createFromFile( filePath );
const auto originalScoreData = mgr.getData( originalId );
const auto originalScore = mgr.getDocument( originalId )->getScorePartwise();
const auto savedId = mgr.createFromScore( mgr.getData( originalId ) );
const auto savedScoreData = mgr.getData( savedId );
const auto savedScore = mgr.getDocument( savedId )->getScorePartwise();
mgr.destroyDocument( originalId );
mgr.destroyDocument( savedId );
CHECK( originalScore->getAttributes()->hasVersion == savedScore->getAttributes()->hasVersion );
}
TEST( HasDefaultsHasAppearance, Freezing )
{
auto& mgr = DocumentManager::getInstance();
const auto filePath = mxtest::MxFileRepository::getFullPath( fileName );
const auto originalId = mgr.createFromFile( filePath );
const auto originalScoreData = mgr.getData( originalId );
const auto originalScore = mgr.getDocument( originalId )->getScorePartwise();
const auto savedId = mgr.createFromScore( mgr.getData( originalId ) );
const auto savedScoreData = mgr.getData( savedId );
const auto savedScore = mgr.getDocument( savedId )->getScorePartwise();
mgr.destroyDocument( originalId );
mgr.destroyDocument( savedId );
const auto originalHasDefaults = originalScore->getScoreHeaderGroup()->getHasDefaults();
const auto savedHasDefaults = savedScore->getScoreHeaderGroup()->getHasDefaults();
CHECK( originalHasDefaults == savedHasDefaults );
const auto originalHasAppearance = originalScore->getScoreHeaderGroup()->getDefaults()->getHasAppearance();
const auto savedHasAppearance = savedScore->getScoreHeaderGroup()->getDefaults()->getHasAppearance();
CHECK( originalHasAppearance == savedHasAppearance );
}
TEST( appearanceLineWidths, Freezing )
{
auto& mgr = DocumentManager::getInstance();
const auto filePath = mxtest::MxFileRepository::getFullPath( fileName );
const auto originalId = mgr.createFromFile( filePath );
const auto originalScoreData = mgr.getData( originalId );
const auto originalScore = mgr.getDocument( originalId )->getScorePartwise();
const auto savedId = mgr.createFromScore( mgr.getData( originalId ) );
const auto savedScoreData = mgr.getData( savedId );
const auto savedScore = mgr.getDocument( savedId )->getScorePartwise();
mgr.destroyDocument( originalId );
mgr.destroyDocument( savedId );
const auto originalAppearance = originalScore->getScoreHeaderGroup()->getDefaults()->getAppearance();
const auto savedAppearance = savedScore->getScoreHeaderGroup()->getDefaults()->getAppearance();
const auto lineWidthSetSize = savedAppearance->getLineWidthSet().size();
CHECK( lineWidthSetSize > 0 );
CHECK_EQUAL( originalAppearance->getLineWidthSet().size(), savedAppearance->getLineWidthSet().size() );
for( int i = 0; i < lineWidthSetSize; ++i )
{
const auto savedElement = savedAppearance->getLineWidthSet().at( i );
const auto originalElement = originalAppearance->getLineWidthSet().at( i );
const auto savedLineWidth = savedElement->getValue().getValue();
const auto originalLineWidth = originalElement->getValue().getValue();
CHECK_DOUBLES_EQUAL( originalLineWidth, savedLineWidth, 0.00001 );
CHECK( originalElement->getAttributes()->hasType == savedElement->getAttributes()->hasType );
CHECK_EQUAL( originalElement->getAttributes()->type.getValueString(), savedElement->getAttributes()->type.getValueString() );
}
}
TEST( appearanceNoteSize, Freezing )
{
auto& mgr = DocumentManager::getInstance();
const auto filePath = mxtest::MxFileRepository::getFullPath( fileName );
const auto originalId = mgr.createFromFile( filePath );
const auto originalScoreData = mgr.getData( originalId );
const auto originalScore = mgr.getDocument( originalId )->getScorePartwise();
const auto savedId = mgr.createFromScore( mgr.getData( originalId ) );
const auto savedScoreData = mgr.getData( savedId );
const auto savedScore = mgr.getDocument( savedId )->getScorePartwise();
mgr.destroyDocument( originalId );
mgr.destroyDocument( savedId );
const auto originalAppearance = originalScore->getScoreHeaderGroup()->getDefaults()->getAppearance();
const auto savedAppearance = savedScore->getScoreHeaderGroup()->getDefaults()->getAppearance();
const auto noteSizeSetSize = savedAppearance->getNoteSizeSet().size();
CHECK( noteSizeSetSize > 0 );
CHECK_EQUAL( originalAppearance->getNoteSizeSet().size(), savedAppearance->getNoteSizeSet().size() );
for( int i = 0; i < noteSizeSetSize; ++i )
{
const auto savedElement = savedAppearance->getNoteSizeSet().at( i );
const auto originalElement = originalAppearance->getNoteSizeSet().at( i );
const auto savedNoteSize = savedElement->getValue().getValue();
const auto originalNoteSize = originalElement->getValue().getValue();
CHECK_DOUBLES_EQUAL( originalNoteSize, savedNoteSize, 0.00001 );
CHECK( originalElement->getAttributes()->hasType == savedElement->getAttributes()->hasType );
CHECK( originalElement->getAttributes()->type == savedElement->getAttributes()->type );
}
}
TEST( appearancDistance, Freezing )
{
auto& mgr = DocumentManager::getInstance();
const auto filePath = mxtest::MxFileRepository::getFullPath( fileName );
const auto originalId = mgr.createFromFile( filePath );
const auto originalScoreData = mgr.getData( originalId );
const auto originalScore = mgr.getDocument( originalId )->getScorePartwise();
const auto savedId = mgr.createFromScore( mgr.getData( originalId ) );
const auto savedScoreData = mgr.getData( savedId );
const auto savedScore = mgr.getDocument( savedId )->getScorePartwise();
mgr.destroyDocument( originalId );
mgr.destroyDocument( savedId );
const auto originalAppearance = originalScore->getScoreHeaderGroup()->getDefaults()->getAppearance();
const auto savedAppearance = savedScore->getScoreHeaderGroup()->getDefaults()->getAppearance();
const auto distanceSetSize = savedAppearance->getDistanceSet().size();
CHECK( distanceSetSize > 0 );
CHECK_EQUAL( originalAppearance->getDistanceSet().size(), savedAppearance->getDistanceSet().size() );
for( int i = 0; i < distanceSetSize; ++i )
{
const auto savedElement = savedAppearance->getDistanceSet().at( i );
const auto originalElement = originalAppearance->getDistanceSet().at( i );
const auto savedDistance = savedElement->getValue().getValue();
const auto originalDistance = originalElement->getValue().getValue();
CHECK_DOUBLES_EQUAL( originalDistance, savedDistance, 0.00001 );
CHECK( originalElement->getAttributes()->hasType == savedElement->getAttributes()->hasType );
CHECK( originalElement->getAttributes()->type.getValueString() == savedElement->getAttributes()->type.getValueString() );
}
}
#endif
| [
"matthew.james.briggs@gmail.com"
] | matthew.james.briggs@gmail.com |
b0e5b949757df655a7cd26b1ee8d82bf1d56e873 | 562643394fa1fbcf7cafcb27abe2dcf53f389639 | /Cmds/reservationAcquire.cpp | 8eef97017db3d86f606c9a5b7ae39bf6221db661 | [
"Apache-2.0"
] | permissive | jli860/tnvme | 198e03508ba73e6714aa73d37ac073c22fee87f2 | 208943be96c0fe073ed97a7098c0b00a2776ebf9 | refs/heads/master | 2020-03-20T22:14:44.825157 | 2018-06-18T21:47:53 | 2018-06-18T21:47:53 | 137,787,763 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,946 | cpp | /*
* Copyright (c) 2011, Intel Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "reservationAcquire.h"
SharedReservationAcquirePtr ReservationAcquire::NullReservationAcquirePtr;
const uint8_t ReservationAcquire::Opcode = 0x11;
ReservationAcquire::ReservationAcquire() : Cmd(Trackable::OBJ_RESERVATIONREGISTER)
{
Init(Opcode, DATADIR_TO_DEVICE, 64);
// No cmd should ever be created which violates these masking possibilities
send_64b_bitmask allowPrpMask = (send_64b_bitmask) (MASK_PRP1_PAGE);
SetPrpAllowed(allowPrpMask);
}
ReservationAcquire::~ReservationAcquire()
{
}
void
ReservationAcquire::SetRTYPE(uint8_t val)
{
LOG_NRM("Setting CPTPL = 0x%02X", val);
SetByte(val, 10, 1); // 2nd byte in DW10
}
uint8_t
ReservationAcquire::GetRTYPE() const
{
LOG_NRM("Getting CPTPL");
return GetByte(10, 1);
}
void
ReservationAcquire::SetIEKEY(bool val)
{
LOG_NRM("Setting IEKEY = %d", val ? 1 : 0);
SetBit(val, 10, 3);
}
bool
ReservationAcquire::GetIEKEY() const
{
LOG_NRM("Getting IEKEY");
return GetBit(10, 3);
}
void
ReservationAcquire::SetRACQA(uint8_t val)
{
LOG_NRM("Setting RACQA = %d", val);
SetBit(val & 0x1, 10, 0);
SetBit(val & 0x2, 10, 1);
SetBit(val & 0x4, 10, 2);
}
uint8_t
ReservationAcquire::GetRACQA() const
{
LOG_NRM("Getting RACQA");
return GetBit(10, 0) | (GetBit(10, 1) << 1) | (GetBit(10, 2) << 2);
}
| [
"andrew.d.knerr@intel.com"
] | andrew.d.knerr@intel.com |
0f14c4770060363d61fb194d9e4dd281147a5865 | e5fa05c04fe86c6889edb0d707fe922e691a3c34 | /Geom2d_Arc.h | fb1cb3ab51eb38914235efdd7b67066da3d918cb | [] | no_license | GuDuJian-J-Zhang/OCCTSketcher | d3e6180b9116ed0c072260360dc75ec16ddcdbfa | f0f2abc3e6eb592a69dff76cd6b47c9e76c98f68 | refs/heads/master | 2020-03-28T13:33:50.903909 | 2018-09-08T12:14:07 | 2018-09-08T12:14:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,717 | h | #ifndef Geom2d_Arc_H
#define Geom2d_Arc_H Geom2d_Arc_H
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_Macro_HeaderFile
#include <Standard_Macro.hxx>
#endif
#include <Standard_DefineHandle.hxx>
#include <gp_Pnt2d.hxx>
#include <gp_Ax2d.hxx>
#include <gp_Circ2d.hxx>
#include <Geom2d_Circle.hxx>
#include <ElCLib.hxx>
class Geom2d_Arc;
DEFINE_STANDARD_HANDLE(Geom2d_Arc, Geom2d_Circle)
class Geom2d_Arc : public Geom2d_Circle{
public:
/**
* \fn Geom2d_Arc(const gp_Circ2d& C)
* \brief Constructs a Geom2d_Arc
* \param C const gp_Circ2d&
*/
Geom2d_Arc(const gp_Circ2d& C);
/**
* \fn Geom2d_Arc(const gp_Ax2d& Ax2d,const Standard_Real R)
* \brief Constructs a Geom2d_Arc
* \param Ax2d const gp_Ax2d&
* \param R const Standard_Real
*/
Geom2d_Arc(const gp_Ax2d& Ax2d, const Standard_Real R);
/**
* \fn ~Geom2d_Arc()
* \brief destructor
*/
~Geom2d_Arc();
/**
* \fn SetParam(const gp_Pnt2d& start,const gp_Pnt2d& mid,const gp_Pnt2d& end)
* \brief set parameters
* \param start const gp_Pnt2d&
* \param mid const gp_Pnt2d&
* \param end const gp_Pnt2d&
*/
void SetParam(const gp_Pnt2d& start, const gp_Pnt2d& mid, const gp_Pnt2d& end);
/**
* \fn SetFirstParam(const Standard_Real u1)
* \brief set first parameter
* \return void
* \param u1 const Standard_Real
*/
void SetFirstParam(const Standard_Real u1);
/**
* \fn SetFirstParam(const gp_Pnt2d& p1)
* \brief set first parameter
* \return void
* \param p1 const gp_Pnt2d&
*/
void SetFirstParam(const gp_Pnt2d& p1);
/**
* \fn SetLastParam(const Standard_Real u2)
* \brief set last parameter
* \return void
* \param u2 const Standard_Real
*/
void SetLastParam(const Standard_Real u2);
/**
* \fn SetLastParam(const gp_Pnt2d& p2)
* \brief set last parameter
* \return void
* \param p2 const gp_Pnt2d&
*/
void SetLastParam(const gp_Pnt2d& p2);
/**
* \fn FirstParameter()
* \brief get first parameter
* \return Standard_Real const
*/
Standard_Real FirstParameter() const;
/**
* \fn LastParameter()
* \brief get last parameter
* \return Standard_Real const
*/
Standard_Real LastParameter() const;
/**
* \fn FirstPnt()
* \brief get first 2d point
* \return gp_Pnt2d const
*/
gp_Pnt2d FirstPnt() const;
/**
* \fn LastPnt()
* \brief get last 2d point
* \return gp_Pnt2d const
*/
gp_Pnt2d LastPnt() const;
/**
* \fn MiddlePnt()
* \brief get middle 2d point
* \return gp_Pnt2d const
*/
gp_Pnt2d MiddlePnt() const;
DEFINE_STANDARD_RTTIEXT(Geom2d_Arc, Geom2d_Circle)
private:
/**
* \fn CheckParam()
* \brief set correct parameters
* \return void
*/
void CheckParam();
//members
Standard_Real myFirstParam;
Standard_Real myLastParam;
};
#endif | [
"futurecoming1@gmail.com"
] | futurecoming1@gmail.com |
77ad908080e2e7119750e46f15bbd3b52f322f2f | 3a2e86171ea25b05b552df5e99ff6a9658e195bd | /main.cpp | 028a2d868429c798717d15b8e8d5332db2ecb150 | [] | no_license | yayalatoure/NeuroMisil | 57a30f270a1df579379a74ff0028c3a3a3c9eae2 | 413ccb52154812ea883a6e87c8d8977cd90a38b1 | refs/heads/master | 2020-03-12T02:41:21.629451 | 2018-06-19T15:25:19 | 2018-06-19T15:25:19 | 130,408,779 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,373 | cpp | #include "stepdetection.h"
#include <QApplication>
#include <iostream>
#include <fstream>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/video/tracking.hpp>
#include <opencv2/video/background_segm.hpp>
#include <opencv/cv.h>
#include <QRect>
#include <QDir>
using namespace std;
using namespace cv;
int main(int argc, char *argv[]){
cv::Mat img_cal, img_test, img_proc, img_show, labels, labels2;
// Images Reading
string path_cal = "/home/lalo/Dropbox/Proyecto IPD441/Data/Videos/1_CAMARA/CALIBRACION01/*.jpg";
string path_test = "/home/lalo/Dropbox/Proyecto IPD441/Data/Videos/1_CAMARA/TEST01/*.jpg";
// std::string path_test = "/home/lalo/Dropbox/Proyecto IPD441/Data/Videos/2_CAMARAS/FEED1/*.jpg";
// std::string path_cal = "/home/lalo/Dropbox/Proyecto IPD441/Data/Videos/2_CAMARAS/FEED1/*.jpg";
// Flag start detection
bool start = false;
// int count_test = 195+145, count_cal = 0, limit = 150-145;
int count_test = 195+145, count_cal = 0, limit = 150-145;
vector<String> filenames_cal, filenames_test;
glob(path_test, filenames_test);
glob(path_cal , filenames_cal);
//// Logging error Kalman (frames) ////
int digits = 5;
string fileName, substring;
fileName = "/home/lalo/Dropbox/Proyecto IPD441/NeuroMisil_Lalo/NeuroMisil/Logging/pasos_result.csv";
ofstream ofStream(fileName);
size_t pos = filenames_test[count_test].find(".jpg");
ofStream << "Frame" << "," << "CX_Paso" << "," << "CY_Paso" << "," << "W_Paso" << "." << "H_Paso" << "," << "Pie" << "\n";
char ch = 0;
int dT = 0;
bool found = false;
double errork1_R = 0, errork1_L=0, errork2_R = 0, errork2_L=0;
//// Kalmar Init ////
KalmanInit(*(&kf_R));
KalmanInit(*(&kf_L));
while(ch != 'q' && ch != 'Q'){
////////// Frame Acquisition /////////
if (count_cal < limit){
img_cal = imread(filenames_cal[count_cal], CV_LOAD_IMAGE_COLOR);
img_test = imread(filenames_test[count_test], CV_LOAD_IMAGE_COLOR);
substring = filenames_test[count_test].substr(pos-digits);
img_proc = img_cal;
}else{
img_test = imread(filenames_test[count_test], CV_LOAD_IMAGE_COLOR);
img_show = imread(filenames_test[count_test], CV_LOAD_IMAGE_COLOR);
substring = filenames_test[count_test].substr(pos-digits);
img_proc = img_test;
start = true;
cout << substring << '\n' << endl;
}
///// Algoritmo /////
if(img_proc.data) {
//////// 2D Feet Boxes ////////
FindBoxes(&img_out, img_proc, start, &found);
//////// Kalman Prediction ////////
if(found){
KalmanPredict(&img_out, *(&kf_R), &state_R, &predRect_R, ¢er_kalman_R, dT);
KalmanPredict(&img_out, *(&kf_L), &state_L, &predRect_L, ¢er_kalman_L, dT);
}
//// Kalman Reset & Step ///////
MeasureError(&img_out, ¢er_kalman_R, ¢er_measured_R, &errork2_R, Right);
KalmanResetStep(ofStream, substring, &img_out, &errork1_R, errork2_R, &Reset_R, Right);
MeasureError(&img_out, ¢er_kalman_L, ¢er_measured_L, &errork2_L, Left);
KalmanResetStep(ofStream, substring, &img_out, &errork1_L, errork2_L, &Reset_L, Left);
// KalmanResetAndStep(&img_out, ¢er_kalman_R, ¢er_measured_R, &predRect_R, &errork1_R, &Reset_R, Right);
// KalmanResetAndStep(&img_out, ¢er_kalman_L, ¢er_measured_L, &predRect_L, &errork1_L, &Reset_L, Left);
////////// Kalman Update //////////
KalmanUpdate(&img_out, *(&kf_R), ¬FoundCount, &state_R, &meas_R, &found, &Reset_R, Right);
KalmanUpdate(&img_out, *(&kf_L), ¬FoundCount, &state_L, &meas_L, &found, &Reset_L, Left);
}
/////// Visualize ///////
if (count_cal < limit)
if (img_test.data) cv::imshow("Algoritmo", img_test);
if(start && (img_out.img.data) && img_show.data){
imshow("Input", img_show);
imshow("Algoritmo", img_out.img);
}
count_cal++;
count_test++;
ch = char(cv::waitKey(0));
}
return 0;
} | [
"eduardo.latorre.c@gmail.com"
] | eduardo.latorre.c@gmail.com |
be9311168c74f7060a4758e5a2bc87a972aacd4c | f0c72e77df916351858bffc6f6ace65cc3c7ec8e | /Userland/utmpupdate.cpp | 4b475fd342c75c9fc61f50f7b3a528a1c0f50132 | [
"BSD-2-Clause"
] | permissive | JacksiroKe/serenity | 9d9ae9aa241cc2de6c66b126e7a7a51b72271b5f | 0bcdb422a4f3c0f999933827557555feb1b25ae4 | refs/heads/master | 2022-12-28T10:23:59.642534 | 2020-10-18T00:23:12 | 2020-10-18T00:23:12 | 294,908,903 | 1 | 0 | BSD-2-Clause | 2020-10-18T00:23:13 | 2020-09-12T09:08:32 | null | UTF-8 | C++ | false | false | 3,824 | cpp | /*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <AK/JsonObject.h>
#include <AK/JsonValue.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/DateTime.h>
#include <LibCore/File.h>
int main(int argc, char** argv)
{
if (pledge("stdio wpath cpath", nullptr) < 0) {
perror("pledge");
return 1;
}
if (unveil("/var/run/utmp", "rwc") < 0) {
perror("unveil");
return 1;
}
unveil(nullptr, nullptr);
pid_t pid = 0;
bool flag_create = false;
bool flag_delete = false;
const char* tty_name = nullptr;
const char* from = nullptr;
Core::ArgsParser args_parser;
args_parser.add_option(flag_create, "Create entry", "create", 'c');
args_parser.add_option(flag_delete, "Delete entry", "delete", 'd');
args_parser.add_option(pid, "PID", "PID", 'p', "PID");
args_parser.add_option(from, "From", "from", 'f', "From");
args_parser.add_positional_argument(tty_name, "TTY name", "tty");
args_parser.parse(argc, argv);
if (flag_create && flag_delete) {
warn() << "-c and -d are mutually exclusive";
return 1;
}
dbg() << "Updating utmp from UID=" << getuid() << " GID=" << getgid() << " EGID=" << getegid() << " PID=" << pid;
auto file_or_error = Core::File::open("/var/run/utmp", Core::IODevice::ReadWrite);
if (file_or_error.is_error()) {
dbg() << "Error: " << file_or_error.error();
return 1;
}
auto& file = *file_or_error.value();
auto file_contents = file.read_all();
auto previous_json = JsonValue::from_string(file_contents);
JsonObject json;
if (!previous_json.has_value() || !previous_json.value().is_object()) {
dbg() << "Error: Could not parse JSON";
} else {
json = previous_json.value().as_object();
}
if (flag_create) {
JsonObject entry;
entry.set("pid", pid);
entry.set("uid", getuid());
entry.set("from", from);
entry.set("login_at", time(nullptr));
json.set(tty_name, move(entry));
} else {
ASSERT(flag_delete);
dbg() << "Removing " << tty_name << " from utmp";
json.remove(tty_name);
}
if (!file.seek(0)) {
dbg() << "Seek failed";
return 1;
}
if (!file.truncate(0)) {
dbg() << "Truncation failed";
return 1;
}
if (!file.write(json.to_string())) {
dbg() << "Write failed";
return 1;
}
return 0;
}
| [
"kling@serenityos.org"
] | kling@serenityos.org |
71f2c374140455a765a84042fa9d5dce9d4dace8 | 7c3ebb8252a3fa2b99c12e81ec36901942e1ef05 | /Temp/il2cppOutput/il2cppOutput/GenericMethods6.cpp | dd08f3f584c61ec2a9f740d442cac9feaf9bf2ba | [] | no_license | krasushim/ar_foundation_aufioreactivefacettogle | df5c1120f8771665cf426da85f83dde7e4eb704c | 8c007746db59c5c7025a4f6f7f27e96511f1bb7f | refs/heads/master | 2022-07-31T07:11:30.254166 | 2020-05-16T02:28:31 | 2020-05-16T02:28:31 | 264,338,737 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,527,021 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R, typename T1, typename T2>
struct VirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
// System.Action`1<UnityEngine.XR.ARFoundation.ARFaceUpdatedEventArgs>
struct Action_1_tC5697491E95A2FC8A04FFA200D2BC28C4A845F1C;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Dictionary`2/Entry<System.Type,UnityEngine.ISubsystem>[]
struct EntryU5BU5D_t0220FF45E5BFB60B915FDBD07078D14BE4CB9A68;
// System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Type,System.Int32>,System.Collections.Generic.Stack`1<System.Object>>[]
struct EntryU5BU5D_t3A8017CC4EE67EFA09EA37759A1D3B104909DEAF;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,UnityEngine.ISubsystem>
struct KeyCollection_t0D15C0166A58F8A2CEE6D84105856B797F7DAC6B;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.ValueTuple`2<System.Type,System.Int32>,System.Collections.Generic.Stack`1<System.Object>>
struct KeyCollection_t2B403A51667B71437C537935FEC07380FB0E33FC;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,UnityEngine.ISubsystem>
struct ValueCollection_tCF4DC3453D4D30322E6F91556B0561160EA9612A;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Type,System.Int32>,System.Collections.Generic.Stack`1<System.Object>>
struct ValueCollection_t8A55512B72BC15D61766D269D351EF93F2E10C98;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.Stack`1<UnityEngine.Rendering.RTHandle>>
struct Dictionary_2_tEF4C65656E284A264F8D30CEB002FFE814FEE380;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA;
// System.Collections.Generic.Dictionary`2<System.Type,UnityEngine.ISubsystem>
struct Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86;
// System.Collections.Generic.Dictionary`2<System.Type,UnityEngine.Rendering.VolumeComponent>
struct Dictionary_2_tE7CD6395B3ED253EE52F48D5B0AB03232DDBD85D;
// System.Collections.Generic.Dictionary`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>
struct Dictionary_2_t3D0F521AB54A429DFB2CDCEC6D9F496FEC6C84D8;
// System.Collections.Generic.Dictionary`2<System.ValueTuple`2<System.Type,System.Int32>,System.Collections.Generic.Stack`1<System.Object>>
struct Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E;
// System.Collections.Generic.IEnumerable`1<System.Int32>
struct IEnumerable_1_t1AE8F03F101BA7578AF3A97EF1EBE8DB5FF31215;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_t2F75FCBEC68AFE08982DA43985F9D04056E2BE73;
// System.Collections.Generic.IEnumerable`1<System.UInt32>
struct IEnumerable_1_t7AAAA2CA521EC8E3F0262DD36D4768030BC0183D;
// System.Collections.Generic.IEnumerable`1<UnityEngine.Color>
struct IEnumerable_1_t61B9EE691F655565B55F711316B32A3EEF16E50A;
// System.Collections.Generic.IEnumerable`1<UnityEngine.Vector3>
struct IEnumerable_1_tCAA73A82B437741FD329C46E2FE82E7632CA29C7;
// System.Collections.Generic.IEqualityComparer`1<System.Type>
struct IEqualityComparer_1_t84A1E76CEF8A66F732C15925C1E1DBC7446DB3A4;
// System.Collections.Generic.IEqualityComparer`1<System.ValueTuple`2<System.Type,System.Int32>>
struct IEqualityComparer_1_t957E87C86C1AE81781566FA3B812141764DD6B99;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>
struct IList_1_tD431CA53D2DA04D533C85B6F283DF4535D06B9FC;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>
struct IList_1_t6CC82F01278D7AA7C3DC2939506F0C54E06AAADE;
// System.Collections.Generic.IList`1<UnityEngine.Transform>
struct IList_1_t2CE05980F8B9CC1149914C41DDAB66D7ABFC902A;
// System.Collections.Generic.IReadOnlyDictionary`2<System.Object,System.Object>
struct IReadOnlyDictionary_2_tF12AC6C54B252680968AC58C45E1522DA1C72D03;
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F;
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>[]
struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7;
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>[]
struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
// System.Collections.Generic.List`1<System.ValueTuple`2<System.Int32,UnityEngine.Rendering.RTHandle>>
struct List_1_tB843D4B607172851A36CA6C7A9E10D5D2637750F;
// System.Collections.Generic.List`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>>
struct List_1_tC865E14BB695393247CEFB631C575094B8701079;
// System.Collections.Generic.List`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Type,System.Int32>>>
struct List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417;
// System.Collections.Generic.List`1<TMPro.TMP_Dropdown/DropdownItem>
struct List_1_t4293B940BDA4E640A925F22A73787C87633A9A9D;
// System.Collections.Generic.List`1<UnityEngine.CanvasGroup>
struct List_1_t053DAB6E2110E276A0339D73497193F464BC1F82;
// System.Collections.Generic.List`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph/RenderPass>
struct List_1_t7BE901F61F1A406FC143D643C9923B05DE767845;
// System.Collections.Generic.List`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource>
struct List_1_tEBA98BE7FBE0C275FAEB779DDACD275830D43BB8;
// System.Collections.Generic.List`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource>
struct List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A;
// System.Collections.Generic.List`1<UnityEngine.MaterialPropertyBlock>
struct List_1_t9A67E44189F7059A93A2A8AFFAC019B210C1C6DB;
// System.Collections.Generic.List`1<UnityEngine.Rendering.VolumeComponent>
struct List_1_t6A4316C7C3458222B79D67660681E1D27F7B8645;
// System.Collections.Generic.List`1<UnityEngine.Transform>
struct List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE;
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>
struct List_1_t836CD930F5F0862929A362435417DA9BCD4186F8;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry>
struct List_1_t564CABFE377BD9215732520DE10D1FEB72E336AE;
// System.Collections.Generic.List`1<UnityEngine.XR.Management.XRLoader>
struct List_1_t358A375827DE759C632FEC77C83FEE87CCE55529;
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Rendering.VolumeParameter>
struct ReadOnlyCollection_1_tC1E7A449E4F4B3F50B5D1F3827267CAD5B647A25;
// System.Converter`2<System.Object,System.Object>
struct Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Boolean>
struct Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Byte>
struct Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Char>
struct Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.DateTime>
struct Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.DateTimeOffset>
struct Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Decimal>
struct Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Double>
struct Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Guid>
struct Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Int16>
struct Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Int32>
struct Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Int64>
struct Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.IntPtr>
struct Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Object>
struct Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.SByte>
struct Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.Single>
struct Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.TimeSpan>
struct Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.UInt16>
struct Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.UInt32>
struct Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.UInt64>
struct Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Byte,System.UIntPtr>
struct Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Boolean>
struct Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Byte>
struct Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Char>
struct Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.DateTime>
struct Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.DateTimeOffset>
struct Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Decimal>
struct Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Double>
struct Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Guid>
struct Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Int16>
struct Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Int32>
struct Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Int64>
struct Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.IntPtr>
struct Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Object>
struct Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.SByte>
struct Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.Single>
struct Transformer_1_t761E0F084572634E94674D7C1912B56771C73045;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.TimeSpan>
struct Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.UInt16>
struct Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.UInt32>
struct Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.UInt64>
struct Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int16,System.UIntPtr>
struct Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Boolean>
struct Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Byte>
struct Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Char>
struct Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.DateTime>
struct Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.DateTimeOffset>
struct Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Decimal>
struct Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Double>
struct Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Guid>
struct Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Int16>
struct Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Int32>
struct Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Int64>
struct Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.IntPtr>
struct Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Object>
struct Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.SByte>
struct Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.Single>
struct Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.TimeSpan>
struct Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.UInt16>
struct Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.UInt32>
struct Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.UInt64>
struct Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int32,System.UIntPtr>
struct Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Boolean>
struct Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Byte>
struct Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Char>
struct Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.DateTime>
struct Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.DateTimeOffset>
struct Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Decimal>
struct Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Double>
struct Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Guid>
struct Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Int16>
struct Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Int32>
struct Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Int64>
struct Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.IntPtr>
struct Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Object>
struct Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.SByte>
struct Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.Single>
struct Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.TimeSpan>
struct Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.UInt16>
struct Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.UInt32>
struct Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.UInt64>
struct Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Int64,System.UIntPtr>
struct Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.Object,System.Object>
struct Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Boolean>
struct Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Byte>
struct Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Char>
struct Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.DateTime>
struct Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.DateTimeOffset>
struct Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Decimal>
struct Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Double>
struct Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Guid>
struct Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Int16>
struct Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Int32>
struct Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Int64>
struct Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.IntPtr>
struct Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Object>
struct Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.SByte>
struct Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.Single>
struct Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.TimeSpan>
struct Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.UInt16>
struct Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.UInt32>
struct Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.UInt64>
struct Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.SByte,System.UIntPtr>
struct Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Boolean>
struct Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Byte>
struct Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Char>
struct Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.DateTime>
struct Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.DateTimeOffset>
struct Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Decimal>
struct Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Double>
struct Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Guid>
struct Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Int16>
struct Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Int32>
struct Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Int64>
struct Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.IntPtr>
struct Transformer_1_t873B2E4C2418F756278367655E1C64D654382460;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Object>
struct Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.SByte>
struct Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.Single>
struct Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.TimeSpan>
struct Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UInt16>
struct Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UInt32>
struct Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UInt64>
struct Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt16,System.UIntPtr>
struct Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Boolean>
struct Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Byte>
struct Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Char>
struct Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.DateTime>
struct Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.DateTimeOffset>
struct Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Decimal>
struct Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Double>
struct Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Guid>
struct Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Int16>
struct Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Int32>
struct Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Int64>
struct Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.IntPtr>
struct Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Object>
struct Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.SByte>
struct Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.Single>
struct Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.TimeSpan>
struct Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UInt16>
struct Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UInt32>
struct Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UInt64>
struct Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt32,System.UIntPtr>
struct Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Boolean>
struct Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Byte>
struct Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Char>
struct Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.DateTime>
struct Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.DateTimeOffset>
struct Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Decimal>
struct Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Double>
struct Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Guid>
struct Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Int16>
struct Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Int32>
struct Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Int64>
struct Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.IntPtr>
struct Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Object>
struct Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.SByte>
struct Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.Single>
struct Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.TimeSpan>
struct Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UInt16>
struct Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UInt32>
struct Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UInt64>
struct Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE;
// System.Diagnostics.Tracing.EnumHelper`1/Transformer`1<System.UInt64,System.UIntPtr>
struct Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913;
// System.Diagnostics.Tracing.EventProvider/SessionInfo[]
struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906;
// System.Diagnostics.Tracing.TraceLoggingEventTypes
struct TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25;
// System.Exception
struct Exception_t;
// System.Func`1<System.Object>
struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386;
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.Int32Enum[]
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.Lazy`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool/SharedObjectPool`1<System.Object>>
struct Lazy_1_t790CD5180B79652AB3F8CEE863BC7FB7AA3142AF;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979;
// System.Reflection.Assembly
struct Assembly_t;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF;
// System.Reflection.CustomAttributeData/LazyCAttrData
struct LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38;
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828;
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.String
struct String_t;
// System.Threading.CancellationCallbackInfo
struct CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36;
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01;
// System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
// System.UInt64[]
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4;
// System.ValueTuple`2<System.Int32,System.Object>[]
struct ValueTuple_2U5BU5D_tAC07AC38451469F15186378560098CF775CDC0F9;
// System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>[]
struct ValueTuple_2U5BU5D_t5511800D3E60CA16B64391D7229EE5438B48C305;
// System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Type,System.Int32>>[]
struct ValueTuple_2U5BU5D_t2028C42ABD8621EC52E4A5E983461EF701F2AF06;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// TMPro.SpriteAssetUtilities.TexturePacker/SpriteData[]
struct SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41;
// TMPro.TMP_Dropdown/DropdownEvent
struct DropdownEvent_t6F8FD8A7AAADDEA4E968F09D4F38BD29FE656E12;
// TMPro.TMP_Dropdown/OptionData
struct OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B;
// TMPro.TMP_Dropdown/OptionDataList
struct OptionDataList_tE1F84C460AD8BBC55BC0842D607BA7822C656157;
// TMPro.TMP_FontAsset
struct TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C;
// TMPro.TMP_SpriteAsset
struct TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487;
// TMPro.TMP_Text
struct TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7;
// TMPro.TMP_TextElement
struct TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344;
// TMPro.TweenRunner`1<TMPro.FloatTween>
struct TweenRunner_1_tBE43F858F8A7966470A9B180B8224D0B8E99A217;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>[]
struct NativeArray_1U5BU5D_t849C9A0D7F8881104AEB488E05B787DCE761B696;
// UnityEngine.BeforeRenderHelper/OrderBlock[]
struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101;
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34;
// UnityEngine.Color32[]
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983;
// UnityEngine.Color[]
struct ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399;
// UnityEngine.Component
struct Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621;
// UnityEngine.ComputeBuffer
struct ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5;
// UnityEngine.DisallowMultipleComponent[]
struct DisallowMultipleComponentU5BU5D_t59E317D853AAC982D5D18D4C1581422FC151F7E3;
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966;
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>
struct EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler>
struct EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler>
struct EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDeselectHandler>
struct EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler>
struct EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler>
struct EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler>
struct EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler>
struct EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler>
struct EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler>
struct EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler>
struct EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler>
struct EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler>
struct EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler>
struct EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler>
struct EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISelectHandler>
struct EventFunction_1_t7521247C87411935E8A2CA38683533083459473F;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler>
struct EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler>
struct EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173;
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65;
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4;
// UnityEngine.ExecuteInEditMode[]
struct ExecuteInEditModeU5BU5D_tAE8DA030BEBA505907556F161EB49FD565976C80;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderFunc`1<System.Object>
struct RenderFunc_1_t6963E4F494F441886F42D47BFB357196C662DDB7;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph
struct RenderGraph_t658E15F42351EE5E92398FC4EF9B25E75AC71042;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph/RenderPass
struct RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph/RenderPass[]
struct RenderPassU5BU5D_t8CDB1B9B512117344C96F8DE5B0BB4ABE8D79B23;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphDebugParams
struct RenderGraphDebugParams_t91BFF8C4DDFB7554599BA1A4441F0D82BB9F6908;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphLogger
struct RenderGraphLogger_t134928C4D6F50853ED77DA1DF486B6C3719A360C;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource[]
struct RenderGraphMutableResourceU5BU5D_tC5DD0DF1CAE7DE95421B26158C9F5E24169156CA;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool
struct RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry
struct RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource[]
struct RenderGraphResourceU5BU5D_tB3A76B05D0BFF43192C3081E627196BF620A45B0;
// UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex[]
struct ContourVertexU5BU5D_t6A7626ED7D5846583F834C822C28220AFE0E396D;
// UnityEngine.Experimental.Rendering.Universal.ShadowUtility/Edge[]
struct EdgeU5BU5D_t109E874E4BB26DA4C9ACBA09E19B95274DD805C1;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.ISubsystem
struct ISubsystem_t33DA72BE41C4C99E2A9201979C86ABECD4B7FF78;
// UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction
struct UpdateFunction_tD84FFC4AEE25C3DEBD3AB85700E096090FC7995E;
// UnityEngine.LowLevel.PlayerLoopSystem[]
struct PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77;
// UnityEngine.Material
struct Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598;
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.Object[]
struct ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9;
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod
struct CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3;
// UnityEngine.Playables.PlayableBinding[]
struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB;
// UnityEngine.Profiling.CustomSampler
struct CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8;
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165;
// UnityEngine.RectTransform
struct RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20;
// UnityEngine.Rendering.CommandBuffer
struct CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD;
// UnityEngine.Rendering.CullingAllocationInfo
struct CullingAllocationInfo_t6FB719F375B06A0C10B87DB287A8143452406A14;
// UnityEngine.Rendering.DebugUI/IContainer
struct IContainer_t42048A99F2B828B45F8D8D36C1F2A74D623CEA0C;
// UnityEngine.Rendering.DebugUI/Panel
struct Panel_t3A5AEA08819D0431C994F595FF8012656B54D904;
// UnityEngine.Rendering.DebugUI/Widget
struct Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1;
// UnityEngine.Rendering.DynamicArray`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry/RendererListResource>
struct DynamicArray_1_t99828E6CE3CAE9F50FE06FC51527BE6763483CFF;
// UnityEngine.Rendering.DynamicArray`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry/TextureResource>
struct DynamicArray_1_tF03ED6854CC538AE7AC37C22C920521E3AABD2A8;
// UnityEngine.Rendering.RTHandle
struct RTHandle_tEA0162F7F963913BAEDC1F970E261D0874F2996C;
// UnityEngine.Rendering.RTHandleSystem
struct RTHandleSystem_t767D689BA191A921429672BF8830F8AC24ADC36F;
// UnityEngine.Rendering.RenderTargetIdentifier[]
struct RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4;
// UnityEngine.Rendering.ScaleFunc
struct ScaleFunc_tB6A754FECE6AA10AABBA7DDAF2708585A53D79AE;
// UnityEngine.Rendering.ShaderTagId[]
struct ShaderTagIdU5BU5D_tFA48D4C6A2EF95AF0BF3EEB90B9719F0154CBEF0;
// UnityEngine.Rendering.UI.DebugUIHandlerWidget
struct DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B;
// UnityEngine.Rendering.Universal.ShaderData
struct ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8;
// UnityEngine.Rendering.VolumeComponent
struct VolumeComponent_t333392A1EED68E0227F1B4E974B1AD591BB13753;
// UnityEngine.Rendering.VolumeParameter
struct VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978;
// UnityEngine.Rendering.VolumeProfile
struct VolumeProfile_t337A44A671E93CF2687335B64D6AB1C60EEA34EC;
// UnityEngine.Rendering.VolumeStack
struct VolumeStack_tF9EF843E5DD7B2E39CD76B2C63C26675A66D8E38;
// UnityEngine.RequireComponent[]
struct RequireComponentU5BU5D_t4295259AA991FCAA75878E4731813266CFC5351D;
// UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734;
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198;
// UnityEngine.TextCore.GlyphRect[]
struct GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2;
// UnityEngine.Texture
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4;
// UnityEngine.Texture2D
struct Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C;
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA;
// UnityEngine.Transform[]
struct TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804;
// UnityEngine.UI.AnimationTriggers
struct AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>
struct TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF;
// UnityEngine.UI.Dropdown/DropdownEvent
struct DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306;
// UnityEngine.UI.Dropdown/OptionData
struct OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831;
// UnityEngine.UI.Dropdown/OptionDataList
struct OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D;
// UnityEngine.UI.Graphic
struct Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8;
// UnityEngine.UI.Image
struct Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E;
// UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC;
// UnityEngine.UI.Selectable
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A;
// UnityEngine.UI.Selectable[]
struct SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02;
// UnityEngine.UI.Text
struct Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030;
// UnityEngine.UICharInfo[]
struct UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482;
// UnityEngine.UILineInfo[]
struct UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC;
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A;
// UnityEngine.UnityException
struct UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28;
// UnityEngine.UnitySynchronizationContext/WorkRequest[]
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
// UnityEngine.Vector4[]
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66;
// UnityEngine.XR.ARFoundation.ARFace
struct ARFace_t6743D3C0C57B5B559B335F7EB6523211A4EA579F;
// UnityEngine.XR.ARFoundation.ARRaycastHit[]
struct ARRaycastHitU5BU5D_t2DDAC1FD38DF991C190FAEF8144A68AFBC541E94;
// UnityEngine.XR.ARFoundation.ARTextureInfo[]
struct ARTextureInfoU5BU5D_tE03D3DE5A9DF582C89ABC81434CB04B6ADDEBBFD;
// UnityEngine.XR.ARSubsystems.TrackableId[]
struct TrackableIdU5BU5D_t43525AC6688EDA53AF5753025C44F8DC1B33EF6E;
// UnityEngine.XR.ARSubsystems.XRReferenceImage[]
struct XRReferenceImageU5BU5D_t1EEAB0EDA5828C38140B4D8D48E11247C4789BCE;
// UnityEngine.XR.ARSubsystems.XRReferenceObject[]
struct XRReferenceObjectU5BU5D_t0AF9158E0468305ABEAA331C8925977310FBD498;
// UnityEngine.XR.Management.XRLoader
struct XRLoader_t2574091AF57F902BF504098AB113416E8D15186A;
// UnityEngine.XR.Management.XRLoaderHelper
struct XRLoaderHelper_tD0931FCDC2CEA47D2C4F81741FCC7EE65C8DB0C3;
// UnityEngine.XR.Management.XRManagerSettings
struct XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5;
// UnityEngine.XR.MeshInfo[]
struct MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2;
// UnityEngine.XR.XRNodeState[]
struct XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral0296709B9F526B8563C52D24A330AF24B85AB9AC;
IL2CPP_EXTERN_C String_t* _stringLiteral04444310B8C9D216A6BC1D1CC9542ECC75BC02DF;
IL2CPP_EXTERN_C String_t* _stringLiteral0DC89F85B619068818F6FFC8B793A74773A52F83;
IL2CPP_EXTERN_C String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25;
IL2CPP_EXTERN_C String_t* _stringLiteral2BE88CA4242C76E8253AC62474851065032D6833;
IL2CPP_EXTERN_C String_t* _stringLiteral2C3199988097E4BB3103E8C34B8DFE8796545D8F;
IL2CPP_EXTERN_C String_t* _stringLiteral3A59C4EE70A9BD28671F1D01D0D6D049795CEF38;
IL2CPP_EXTERN_C String_t* _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
IL2CPP_EXTERN_C String_t* _stringLiteral5332787A355F6C7E2C752D24323C8EB3E69C380D;
IL2CPP_EXTERN_C String_t* _stringLiteral56EB1C433748E5EF9B4DB1C73820724497D429D3;
IL2CPP_EXTERN_C String_t* _stringLiteral5D8C4EB43E44C7CAE91B24474164F33B3D962841;
IL2CPP_EXTERN_C String_t* _stringLiteral64358BBCCF8C380C05E774933982A64691BCEB28;
IL2CPP_EXTERN_C String_t* _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF;
IL2CPP_EXTERN_C String_t* _stringLiteral9E40BAB578BFD23D5BA188CEF4D4CE5EB5A78927;
IL2CPP_EXTERN_C String_t* _stringLiteralBF077A5DDDFA362E2EE48FEBBAD7CC35A4A6952D;
IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
IL2CPP_EXTERN_C String_t* _stringLiteralEF5C844EAB88BCACA779BD2F3AD67B573BBBBFCA;
IL2CPP_EXTERN_C String_t* _stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6;
IL2CPP_EXTERN_C const RuntimeMethod* Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_m1D5FC4484B82174100C66015637926CA0C342A19_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_m3E32CC458F90AA13998F9D53991798C88DB5BA9A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_m12BB38C9FE90C076B4AED29F2BB548E99A738BF7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m33630D6CDB958E870C4423D8B4B95B45B53E27B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mEB94F336D6DB8DC6CD7CD66E702CB85394B825A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m8A8482DAD756D06789C1145B2F3B3875513A6476_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789_mA31A04BBE67D42A31940E9FFB2226A22F8E07210_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisMeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_mBD6908263E1156DCE758B73289C14141E9DFCE99_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisMeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_m0F508E7D7FE310483F241CD20A52E1FD25F9DE45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m98C80522DA18E643E4667969AD96DAE7B8727DF7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisPointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2_m0A167ED560C12B7154C97E7DE8190AC0CE1CFEA8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mD86C0C67E39FD2A6DE4E993195C85EAC1ED5100E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m361A70C130A6F0137D4EC737F426DB4C4BE2DB55_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_m93BF3C963A672E09F8D4EE00BA464F1751C37979_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_mC0D70F73394E57017E6C440A68E84A3E2D1DB3AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m4BE02A176629CBDDC6AAE27051526963CEA5F348_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m3B144C216D207DC5DD90C433988C7BD1D6D746F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m4A58F74CF983A715A77F5506B54B831D4609C2C3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5CAED87CB0DBEE91B20FFA4AC49CE8295CC39888_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC022982B678F2CE77FE94F96EBFAFA37C557681E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m1315FF1DB9DF79D3E27EC2FEC0AB27D883DE4FF5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mC500BEBCAE65267ED127EE4EF03640ED52CB5A76_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m3E24CD3BB53AF97B90605B2999215E5F012806AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_m388598D8CC5B10B61A517B61D9BBB5BB8AA87520_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m2A2CAFC12F587CE2082194993978301CAA676B9F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m9131E95B9226A5EB82C4FC233B98033A894804E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF_mC9B4E58FD3C91A54913B67C0AD936853E8E4E0F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B_m8B49061CBAD105C1EFF833DB8F91E76C817EFE35_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_mAF805501AEC8A3FB10E3DE80F328BCFB22FC600C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_m28FC9D8EAAE0D98CB1E101A8F1B0BF6586B62210_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_m06B3D619CB64A9D50358166F134D5A45712E3829_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m6F07A8FF1ECC0108D0A2ED4780921A6DD518DC8E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_m2C53348B5E62D2E54C5BF495018DBE8B456DC71E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_mF628531CD2EB2C4422231135DC2A5318EF8EC661_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_mD37673404C0D1CBB8578C98A54734C077C74A541_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_m2405728A25300552EB9FB5697B72BEA592E5DBF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_mB97AE3FE8EC365A4E084AF4E4B9D83973D0BEC0C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_mA96D32B22FC86EAFDD1A3747C1A5E93226F7B8EE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_m6DFF9088BC663F5883B03776306CF81FE6FA2114_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_mE21EC3DAAFA56186F7CA00AB45695587C802642E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_mC340F8F3FA3A0592AD178F30FA4A331FACFB1905_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mBA598D1852E66122156731750BBF1D8EDFEBAC55_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m629BA5846BCC1FB720C82F465DBEDC7CC35C9923_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_m6EFB3FA6AB0C5795DF16619CC2D0BF92DCC4850D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisBoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3_m2E9F2FFF952B100BF48C27EE0DE7DC4178E1DEA5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE0AC51BD7B42B61EADFED85793540510F5513D8E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0318D47BE2AB57E53839293C15DD335B8B0583AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m7910AF4B30BD106F78DE0F14393EA2FA9165302D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m690637A6E30AAACC2D08D07F0107FFFE45B9AA25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m372F4A01E422405E0877577213525110F165CC72_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_m9C0BDF53905610F83940A5D6B6607B9E4029E024_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mC0BA868364A2EC9CBE08EEE61C17C9909356B644_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m1A4B88B46CEC94307CF29224873D7CE4027C40C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_m9012ED281AD6C52440C6513495F97E7AABAEC442_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m2FD87C18D9E6848633DF705BFFAFEB78D9396EA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mB284F11FF6EAAF07725EE9EEECAAD865E149E9CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAFF3D10D243FFDDEA2E5BE47A3D72269875C515D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA29C644E6B30AA8FF56106A39C9E7530CE6AD04D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mE027C77C0133B05655D10BE4BAB17CCBEA45C34E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m91B1B86B2435BE0A25761F475691E825DDAD39A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEdge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_mAF87C9D9EAB6DA06BF04FCEE12DC0DEA1CB48535_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m61ECA245B1071FDB6DB79FE4A5AE6362A5381DF5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8CC22EADB453439C66E587109B90CCA60E03233A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9_mD576A096B552DA8A3F0EE39A772FA6A7D2228CF1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_mD2552321463035DD3D2A7846ED93F09BCA217DF4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096_mC33F51BD2DA61D0126C7E45F795EAF634727CA33_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_mF73CE007CD578AA6FDE3A9A25012AF1694E66CC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m5E18D1F3D75951F12CB606D6CEB7A156A5C6C8BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mF6BF992ED2C31E71C6114E6BA2EE73A41708906D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4_m3C496D236A535BE961084C29280455CFF6E35C71_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8_mFBC7707AC24FA2789DEA96AECB42D64FBC52D1B7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_mCECCCAEA8DAEB22503C8AD324DB265B5B6186F75_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14_m979BB4C19B2EFB5F7925B468FC4A4E7FF00D9CBD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m25FEA9EB39C841593DBEA7B877EA0B89A64239F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA_mECD857771541823F1B586B83AA2E1802B28A0445_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mDB90DCD87707AA6497C517CEC27D8A84AD91B594_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m4DC869A1E743F333DE9CC0C76B3CFC709F91A53A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB_m6F1DA561287511E4762366059D2A6D32075C2EC6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m00CEFC0E6EB5C4E6286E76754603C701C01C8813_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m4277A55FF0F7CC43A28269EF99E761F3BA612EE3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mA7CBB7A3611EAF729E13A7C81382465897606032_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m47A9D1BA5A97752AF36397686537AB4612A836EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mBB81776EBAE07C3F1598652B60A70D03C8C1B423_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m9D0452CD1962BBA9DAE3FC2B0EC0429F65CF1103_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD10502BEA559D905BB0619CB8D721895595CC9A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m6D1AF0434CCDA15443D26F1C0CDFB41A2E0C6B40_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_mF68BF23D5873F3B436C6C116C3CED9D7E6DDAF9F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m7C206260F4126DFFB1A4F979B67C5F453C385197_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisGuid_t_m979DD807F084EEDE01F888F9957547DE23BCABBA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m02FDDCF30AEA5010D3F032AAD267FCB98051A142_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m646E9CD2F8B82E5F35FBDE2A0EFD98A0F195D680_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB47101014CAE26A07ACE2888ADF044342599F247_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC0D56DB29145576351D3144C0174C3DB3DFF9C84_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m69766EC28E50BA89284F2D32C8684A401A19B346_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisIntPtr_t_mDAAED5E34FC82EC1CE912628ED6EFA3FD73BF68D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m61D9DED5DD618D348B1BADD336B69E7902CC5424_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mDDF4AC156930E20611FCFB76DFC231AE7903FEE0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m27C4C8AE0E9CB818A2F22B3E4A2C34C493DC1198_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_m14D25FA2BBBB92C0E91E23A191D4E81AEAA8AA32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F_m135D3E823F271BEE888695C8555A7BB26FD17F21_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m07DCF9692981AEACAD04D98EA58EC5727A57F24E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m869CD39A2A3CBBF2661E51A2C3F817DDE806C357_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mBCE929EFD88213430B14BD2CF31A583723522143_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m57274F2DD11BBBF3668115EF583ADA6EB2A3D338_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA_m5CD11CB99F07C1817279B68D2C92C19ED407A1F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mCE796920ABC11A9902FC9F9D6160642A63D433FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87_m789E279EEC4FB2F236C10459B23EC59B083223BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71_m374FF9DE2C8ABF7808614B8E93BEF2D885E5E679_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04_m890B6422777D951E577EE4DED58F34D74897EBEA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mB7218FC07470AC18C202F363494421D6C1DF0714_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA_m29B51453C3DF727ECC09B8B25E258ECB3A7C03D5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mE0B59A98E9750943F6876AB185628B86663BA495_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m9F18D534073EB714A33DD07BC19837F08129B5F7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m3DD0A9EC3298FEFB9F15B20760BC2A77A0A271F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m4BF67E948E45ECF36FBD1F318CB1F443A173691F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mE46942032A5444788C9BD3E4B05C8A9BD2DCA803_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31_m77779740213BC9A0B3C156647AE93815457C3E8C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m2FF531D45181DBED1BC8896F386DC1D1D986807B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mD6A0D9843EAA93E58C03D148C4944DA9AA85608A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m1D999DAFF1704F47CCAF89A10D8E6035D21B6022_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisLight2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE_m70A2304B8F491F9DDED036B965B2B0C584D41737_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m3B53EB9E61040DA92DCE1D4373F9ECFC85FE5651_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisLightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF_mA0D8FC363ACD88F213AC65FC445F728500E9991A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mE5257779A8486E28FF4CE35150FACFDEF3E4C3A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789_m410E3868C80BF1BAEA82230B3F003E2BC30C4AAB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_mB6BC68ABAE55C3890D3CDC1CDC99BFE693198B58_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_mDD19CAC68186909695744BD2BEBED272E06F3DC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisMeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_m60EAD2E6F90F1B72119F118D8FB3CB219F8F7DF0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisMeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_mB4F9F9E8E2929F558C09E9334F169ADCD9C4B16F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisNativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1_m4BABE9536B14830FB4155B504E17A73A5490A9E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m8661006C340B2092AB2ECC60557630BCEB060F5C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m3A94BC2B4F31DBA1005FB94913C3130C69A2E39F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m83A26FF89E9009B96B3B82235BC9508BB8406D77_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mC3F7477A2E7A7BA9FB7152143DC40F7E4FFF96BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m3B2A6B15ACEDDD69DFC2A7B1F1549239040CC12D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m362D4C945930128AB5451EC5F1413FB6543D01C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_mADFAEA14DF51FA2CBF3AE91F680FC1DDA4766E36_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisPointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2_mE6031CBF8CA1332DCCB01C93B4DCB846EAF27FA1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_mF6C7302CB1A59CBFD489974DC20A09E78E689557_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m343C0DB5D50F0936952CCACC386228F2ACC5A796_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mDCDC36064BB0FF4DC76546ED1CA3DDB6C303F4FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m38A53DF1F99A89D6300E7B7B184AD963AA80D865_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524_m490D7D519F61DF5BEAD60AC0B79764CCEAF64A4D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF_mB770F94D611196CA91536630F4FC1CA2C636AC17_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1_mE5B9AF7E514DA29756E7770E8105B572C6B3B748_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_mE4480A896607D08555B4B2325B5358EA47A6D4E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2_mE7B2F57A4FC047E00F290BA42231970A508C6076_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m6880A2B25322CD928A2218BAC463B0F9D7450BD2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_m7FE585B00F087DB2A103141847954FEFD2027B3B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisRuntimeObject_m98D2A0CAA60FCDAD14B318032271D194A0FC463A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m288F7FA25642BAF460C919173FFBACFF200256FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m300EDE92997FDDF1F28D0F58BB0DCD2949366ADC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C_m5AE240890349F0F37953E828BCC39CF1841ADEA8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_m73CBE61F84489D532E520694647B07B0B5D77EC7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571_m2C9F9BCAE6EE983E41B35E374EB549B300724114_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7_m300F52B4AB3A9E47DFFEFBD4C5579C550A7711BF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m77CE54A431B9137F71AE4EB8DD6BD6896CAD51D5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m38844CFC22B83289886F6AD309D8861827A1A40F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_m78B8C6C9165FED6D3342F7372ACD13EF55AD9020_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSlot_tEECB296281FB9107F82A5761CB0999F4E653D61D_m84025D1166A5FFDB04954017927C86BC84408811_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203_m69C0DF8BE49FFBB45E626128967BAB021EEE7F1A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0741875D61EDA3FE72ABFCF3424516D56C41127_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m7D69069E0004BED34CC1CBFC3FD7952524A8579D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mDEF2CD3F3C0066505EDE06D45F620FC24948169F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_m002F133441D6DE8BB07920E2319CB499FC49C98B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m6F80687C3B1A28EE4C1473BBC2EB6516B2BABF64_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mBE9A4E8A6ED544B6CE8A2DB7F96336E5546F90EA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m38E01646A7A815E8F62DF7B5A4AC18829725EFA9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m02E4EE34FDA4E301B32A29F46C04D7ACE4DD9EBE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m7E417C91EB384418F5E7145D7AE62FDA3841ADCC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1CF557045E7E734993401587A6B95688A830C1C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60_mF987FD0269CD0AA98D9B9CFE40F773A0319ABD23_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m6F26E3B1889F792C114EA852B45C022258DDF5D4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m2036ED8B20851D9536B1AE4C27CD33E744526536_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_mAD2485A8B808B4F25AEA4F3D2758C2A569A5FE8F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_mD5009004C0071661793B33CB1AB75CF2336E2A77_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m9E313F8A2D13BED598479D435A4A24C96427C2AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mEF125F16F3141B6C8C95062D9EB62DB34E311BB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF50C75640622E1227765A491D563BD148B3C0D95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m92C7FC890AD3637D775B949E40AC58993090D84D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m92E8524E021B44BD9FBA8B7B532C1C1D1AE2591E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m67422E4BCD6185FCCC24C2E10B17354B5CA4881F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUIntPtr_t_m8E6F5EA76515799BF3B9D4CF0338A24FA7585247_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mEE2DE7114E1A12D049D8F3212C2C62B563B6D67D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6_m9872AA8CCDD16018FEF9FE89FE4940546B46865B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331_mD7130BBF36965BDDF29ACF4C685B683521908194_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F_mC83D9DC89C64BF3E214A493D3EED0777EB67F01D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m838F955DD9621FF5361500D081CC22FE49049581_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m526D0C17B58AAB83A25B74C2462E165995C9DE2A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mFB7A377E49F0D9217F0C8F3C4105B731581E20FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_m8E260EE4B6ED1EFCF0BEC679C2D1B49085B4890D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mE136BEFAFFA4D20AC5F03D08E9E761773B432A66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m8C4DA4C7ED5C1676764510E73EC8CA73232026F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_mDD1AA924028290B9FCBE2796D51A4C012BDD3008_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m1111F23F534AA015C1AF82D85B8ABA1BF3E7C2AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m1064783D741BBE4BFC25821A45C41E2116630C05_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF_m2C1270B705AF9896E7978976CF4992AA6459A06F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B_m4638D46950F764E50418FEB995EE29742C5B17C8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_m5C620A410975466E646FA2F390AFAE0F39F75BA8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_m8C5E586FAD0BC5D6B3A4209F6FAB3807603CB6CF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_mD8236EFAEC3C78FAF72A659E8CEEADCD12BF4444_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m63A0A4CC25A7F77EB320B3CD8F1AAFA45AF72781_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_m184A3AAE2B58BD178A9DCB7D86E275D609FD304F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_mDC79BB386EDCE3494B7191DA53CEFC72FCBDE09D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_m84C596008C9320FCDC3834D171AA87DA6F550EBB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_mFFD1B01CF87C826F2228FDD0D8C27C4A547B3196_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_m1B78EA31ACB22F78148B362DD1EFF5700E0122B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_m12DDF4F60DC9EE1E79D82525A989B51E5AADC9E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_mEAB0F6AB160AB4D9AC4AFE14862C3C3ACD7F07F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mFBBF1D38CCDA2D13FFA16BC0CE1E5987639162FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m5D116C3383F95724C01C628C0D0069F3D7F65621_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DebugUIHandlerWidget_CastWidget_TisRuntimeObject_m9F4B3A0C36146FE7F45468A27C8860A1CEFD16FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mB55E82A159A823B2EFD0951D81D9FFB2D1537AEC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m0145FEACBF5643445A468A312880F27CA4205396_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m5A246BE1478D5AAF776C27C639FA7A2CFC99FCF7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ElementAt_TisRuntimeObject_m2FA25011AB7D035EBA377E9C5FC051F91254B66F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ElementAt_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m697818150903A54E504EF08086D5B2C8CE100E8D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_FirstOrDefault_TisRuntimeObject_m080A5CE50E989D99A8785C4DEDA7EBB21EC1B5A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Last_TisRuntimeObject_m73CE8E049D24E75FE927A73A8611BC7D63F10F46_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE2CDF0B8B3C41F62C428BF69181B0D92E8250EDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m4C50B687629E8BC754A03B182301CA7FC7B56967_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisRuntimeObject_m0343A227B31BEB205D569F05AEAE761094FB1B34_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m3837BCAC4FBE264CE9D016D4C68BF973651E9A1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC2832BB83AC3F04B94E13C7D0A19FF4C39600473_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m4289829E8C0F3DA67A5B3E27721CF5D1C203CED2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m011F5FA3CC5FBB00875D2C3615DED27D6CE38D60_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mAAACAA53634A9E7D20D94B3333B23E6F6F5B2031_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m0B6FAC22324A918CFA9E37637257E82823029437_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mFB4F65ABD2DD0845C2448493238223FB4079A90C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m88FE4B6F43A2CD95BB9ECF8D801F206618FFFFB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeSliceUnsafeUtility_ConvertExistingDataToNativeSlice_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mDB8BD60EC7BFC7BD5673CF765B549FABE56B3736_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_m490CECEA5A2911DA732CD4D7612D04BD18E1DF12_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m07A8AE55BA78A57D5BDC0271ED6AA646D69AA785_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_m692E28BB74B2613597E407DDCCBA926306D8086A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Texture2D_GetRawTextureData_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE453927FC6491AC23A63CD1174E492BC63409B2E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2__ctor_m2608A054E27ECC5D65915B37E53803ADAA9A47BC_RuntimeMethod_var;
IL2CPP_EXTERN_C const uint32_t Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_m1D5FC4484B82174100C66015637926CA0C342A19_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_m3E32CC458F90AA13998F9D53991798C88DB5BA9A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_m12BB38C9FE90C076B4AED29F2BB548E99A738BF7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m33630D6CDB958E870C4423D8B4B95B45B53E27B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mEB94F336D6DB8DC6CD7CD66E702CB85394B825A0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m8A8482DAD756D06789C1145B2F3B3875513A6476_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789_mA31A04BBE67D42A31940E9FFB2226A22F8E07210_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisMeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_mBD6908263E1156DCE758B73289C14141E9DFCE99_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisMeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_m0F508E7D7FE310483F241CD20A52E1FD25F9DE45_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m98C80522DA18E643E4667969AD96DAE7B8727DF7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisPointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2_m0A167ED560C12B7154C97E7DE8190AC0CE1CFEA8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mD86C0C67E39FD2A6DE4E993195C85EAC1ED5100E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m361A70C130A6F0137D4EC737F426DB4C4BE2DB55_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_m93BF3C963A672E09F8D4EE00BA464F1751C37979_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_mC0D70F73394E57017E6C440A68E84A3E2D1DB3AF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m4BE02A176629CBDDC6AAE27051526963CEA5F348_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m3B144C216D207DC5DD90C433988C7BD1D6D746F2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m4A58F74CF983A715A77F5506B54B831D4609C2C3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5CAED87CB0DBEE91B20FFA4AC49CE8295CC39888_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC022982B678F2CE77FE94F96EBFAFA37C557681E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m1315FF1DB9DF79D3E27EC2FEC0AB27D883DE4FF5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mC500BEBCAE65267ED127EE4EF03640ED52CB5A76_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m3E24CD3BB53AF97B90605B2999215E5F012806AF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_m388598D8CC5B10B61A517B61D9BBB5BB8AA87520_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m2A2CAFC12F587CE2082194993978301CAA676B9F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m9131E95B9226A5EB82C4FC233B98033A894804E9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF_mC9B4E58FD3C91A54913B67C0AD936853E8E4E0F1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B_m8B49061CBAD105C1EFF833DB8F91E76C817EFE35_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_mAF805501AEC8A3FB10E3DE80F328BCFB22FC600C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_m28FC9D8EAAE0D98CB1E101A8F1B0BF6586B62210_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_m06B3D619CB64A9D50358166F134D5A45712E3829_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m6F07A8FF1ECC0108D0A2ED4780921A6DD518DC8E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_m2C53348B5E62D2E54C5BF495018DBE8B456DC71E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_mF628531CD2EB2C4422231135DC2A5318EF8EC661_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_mD37673404C0D1CBB8578C98A54734C077C74A541_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_m2405728A25300552EB9FB5697B72BEA592E5DBF9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_mB97AE3FE8EC365A4E084AF4E4B9D83973D0BEC0C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_mA96D32B22FC86EAFDD1A3747C1A5E93226F7B8EE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_m6DFF9088BC663F5883B03776306CF81FE6FA2114_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_mE21EC3DAAFA56186F7CA00AB45695587C802642E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_mC340F8F3FA3A0592AD178F30FA4A331FACFB1905_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mBA598D1852E66122156731750BBF1D8EDFEBAC55_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m629BA5846BCC1FB720C82F465DBEDC7CC35C9923_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_m6EFB3FA6AB0C5795DF16619CC2D0BF92DCC4850D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisBoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3_m2E9F2FFF952B100BF48C27EE0DE7DC4178E1DEA5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE0AC51BD7B42B61EADFED85793540510F5513D8E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0318D47BE2AB57E53839293C15DD335B8B0583AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m7910AF4B30BD106F78DE0F14393EA2FA9165302D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m690637A6E30AAACC2D08D07F0107FFFE45B9AA25_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m372F4A01E422405E0877577213525110F165CC72_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_m9C0BDF53905610F83940A5D6B6607B9E4029E024_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mC0BA868364A2EC9CBE08EEE61C17C9909356B644_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m1A4B88B46CEC94307CF29224873D7CE4027C40C0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_m9012ED281AD6C52440C6513495F97E7AABAEC442_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m2FD87C18D9E6848633DF705BFFAFEB78D9396EA4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mB284F11FF6EAAF07725EE9EEECAAD865E149E9CD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAFF3D10D243FFDDEA2E5BE47A3D72269875C515D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA29C644E6B30AA8FF56106A39C9E7530CE6AD04D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mE027C77C0133B05655D10BE4BAB17CCBEA45C34E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m91B1B86B2435BE0A25761F475691E825DDAD39A4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEdge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_mAF87C9D9EAB6DA06BF04FCEE12DC0DEA1CB48535_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m61ECA245B1071FDB6DB79FE4A5AE6362A5381DF5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8CC22EADB453439C66E587109B90CCA60E03233A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9_mD576A096B552DA8A3F0EE39A772FA6A7D2228CF1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_mD2552321463035DD3D2A7846ED93F09BCA217DF4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096_mC33F51BD2DA61D0126C7E45F795EAF634727CA33_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_mF73CE007CD578AA6FDE3A9A25012AF1694E66CC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m5E18D1F3D75951F12CB606D6CEB7A156A5C6C8BD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mF6BF992ED2C31E71C6114E6BA2EE73A41708906D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4_m3C496D236A535BE961084C29280455CFF6E35C71_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8_mFBC7707AC24FA2789DEA96AECB42D64FBC52D1B7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_mCECCCAEA8DAEB22503C8AD324DB265B5B6186F75_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14_m979BB4C19B2EFB5F7925B468FC4A4E7FF00D9CBD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m25FEA9EB39C841593DBEA7B877EA0B89A64239F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA_mECD857771541823F1B586B83AA2E1802B28A0445_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mDB90DCD87707AA6497C517CEC27D8A84AD91B594_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m4DC869A1E743F333DE9CC0C76B3CFC709F91A53A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB_m6F1DA561287511E4762366059D2A6D32075C2EC6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m00CEFC0E6EB5C4E6286E76754603C701C01C8813_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m4277A55FF0F7CC43A28269EF99E761F3BA612EE3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mA7CBB7A3611EAF729E13A7C81382465897606032_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m47A9D1BA5A97752AF36397686537AB4612A836EB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mBB81776EBAE07C3F1598652B60A70D03C8C1B423_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m9D0452CD1962BBA9DAE3FC2B0EC0429F65CF1103_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD10502BEA559D905BB0619CB8D721895595CC9A7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m6D1AF0434CCDA15443D26F1C0CDFB41A2E0C6B40_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_mF68BF23D5873F3B436C6C116C3CED9D7E6DDAF9F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m7C206260F4126DFFB1A4F979B67C5F453C385197_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisGuid_t_m979DD807F084EEDE01F888F9957547DE23BCABBA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m02FDDCF30AEA5010D3F032AAD267FCB98051A142_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m646E9CD2F8B82E5F35FBDE2A0EFD98A0F195D680_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB47101014CAE26A07ACE2888ADF044342599F247_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC0D56DB29145576351D3144C0174C3DB3DFF9C84_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m69766EC28E50BA89284F2D32C8684A401A19B346_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisIntPtr_t_mDAAED5E34FC82EC1CE912628ED6EFA3FD73BF68D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m61D9DED5DD618D348B1BADD336B69E7902CC5424_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mDDF4AC156930E20611FCFB76DFC231AE7903FEE0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m27C4C8AE0E9CB818A2F22B3E4A2C34C493DC1198_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_m14D25FA2BBBB92C0E91E23A191D4E81AEAA8AA32_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F_m135D3E823F271BEE888695C8555A7BB26FD17F21_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m07DCF9692981AEACAD04D98EA58EC5727A57F24E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m869CD39A2A3CBBF2661E51A2C3F817DDE806C357_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mBCE929EFD88213430B14BD2CF31A583723522143_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m57274F2DD11BBBF3668115EF583ADA6EB2A3D338_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA_m5CD11CB99F07C1817279B68D2C92C19ED407A1F9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mCE796920ABC11A9902FC9F9D6160642A63D433FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87_m789E279EEC4FB2F236C10459B23EC59B083223BD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71_m374FF9DE2C8ABF7808614B8E93BEF2D885E5E679_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04_m890B6422777D951E577EE4DED58F34D74897EBEA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mB7218FC07470AC18C202F363494421D6C1DF0714_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA_m29B51453C3DF727ECC09B8B25E258ECB3A7C03D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mE0B59A98E9750943F6876AB185628B86663BA495_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m9F18D534073EB714A33DD07BC19837F08129B5F7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m3DD0A9EC3298FEFB9F15B20760BC2A77A0A271F9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m4BF67E948E45ECF36FBD1F318CB1F443A173691F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mE46942032A5444788C9BD3E4B05C8A9BD2DCA803_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31_m77779740213BC9A0B3C156647AE93815457C3E8C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m2FF531D45181DBED1BC8896F386DC1D1D986807B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mD6A0D9843EAA93E58C03D148C4944DA9AA85608A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m1D999DAFF1704F47CCAF89A10D8E6035D21B6022_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisLight2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE_m70A2304B8F491F9DDED036B965B2B0C584D41737_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m3B53EB9E61040DA92DCE1D4373F9ECFC85FE5651_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisLightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF_mA0D8FC363ACD88F213AC65FC445F728500E9991A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mE5257779A8486E28FF4CE35150FACFDEF3E4C3A2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789_m410E3868C80BF1BAEA82230B3F003E2BC30C4AAB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_mB6BC68ABAE55C3890D3CDC1CDC99BFE693198B58_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_mDD19CAC68186909695744BD2BEBED272E06F3DC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisMeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_m60EAD2E6F90F1B72119F118D8FB3CB219F8F7DF0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisMeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_mB4F9F9E8E2929F558C09E9334F169ADCD9C4B16F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisNativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1_m4BABE9536B14830FB4155B504E17A73A5490A9E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m8661006C340B2092AB2ECC60557630BCEB060F5C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m3A94BC2B4F31DBA1005FB94913C3130C69A2E39F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m83A26FF89E9009B96B3B82235BC9508BB8406D77_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mC3F7477A2E7A7BA9FB7152143DC40F7E4FFF96BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m3B2A6B15ACEDDD69DFC2A7B1F1549239040CC12D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m362D4C945930128AB5451EC5F1413FB6543D01C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_mADFAEA14DF51FA2CBF3AE91F680FC1DDA4766E36_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisPointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2_mE6031CBF8CA1332DCCB01C93B4DCB846EAF27FA1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_mF6C7302CB1A59CBFD489974DC20A09E78E689557_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m343C0DB5D50F0936952CCACC386228F2ACC5A796_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mDCDC36064BB0FF4DC76546ED1CA3DDB6C303F4FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m38A53DF1F99A89D6300E7B7B184AD963AA80D865_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524_m490D7D519F61DF5BEAD60AC0B79764CCEAF64A4D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF_mB770F94D611196CA91536630F4FC1CA2C636AC17_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1_mE5B9AF7E514DA29756E7770E8105B572C6B3B748_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_mE4480A896607D08555B4B2325B5358EA47A6D4E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2_mE7B2F57A4FC047E00F290BA42231970A508C6076_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m6880A2B25322CD928A2218BAC463B0F9D7450BD2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_m7FE585B00F087DB2A103141847954FEFD2027B3B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisRuntimeObject_m98D2A0CAA60FCDAD14B318032271D194A0FC463A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m288F7FA25642BAF460C919173FFBACFF200256FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m300EDE92997FDDF1F28D0F58BB0DCD2949366ADC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C_m5AE240890349F0F37953E828BCC39CF1841ADEA8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_m73CBE61F84489D532E520694647B07B0B5D77EC7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571_m2C9F9BCAE6EE983E41B35E374EB549B300724114_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7_m300F52B4AB3A9E47DFFEFBD4C5579C550A7711BF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m77CE54A431B9137F71AE4EB8DD6BD6896CAD51D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m38844CFC22B83289886F6AD309D8861827A1A40F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_m78B8C6C9165FED6D3342F7372ACD13EF55AD9020_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSlot_tEECB296281FB9107F82A5761CB0999F4E653D61D_m84025D1166A5FFDB04954017927C86BC84408811_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203_m69C0DF8BE49FFBB45E626128967BAB021EEE7F1A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0741875D61EDA3FE72ABFCF3424516D56C41127_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m7D69069E0004BED34CC1CBFC3FD7952524A8579D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mDEF2CD3F3C0066505EDE06D45F620FC24948169F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_m002F133441D6DE8BB07920E2319CB499FC49C98B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m6F80687C3B1A28EE4C1473BBC2EB6516B2BABF64_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mBE9A4E8A6ED544B6CE8A2DB7F96336E5546F90EA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m38E01646A7A815E8F62DF7B5A4AC18829725EFA9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m02E4EE34FDA4E301B32A29F46C04D7ACE4DD9EBE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m7E417C91EB384418F5E7145D7AE62FDA3841ADCC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1CF557045E7E734993401587A6B95688A830C1C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60_mF987FD0269CD0AA98D9B9CFE40F773A0319ABD23_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m6F26E3B1889F792C114EA852B45C022258DDF5D4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m2036ED8B20851D9536B1AE4C27CD33E744526536_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_mAD2485A8B808B4F25AEA4F3D2758C2A569A5FE8F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_mD5009004C0071661793B33CB1AB75CF2336E2A77_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m9E313F8A2D13BED598479D435A4A24C96427C2AF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mEF125F16F3141B6C8C95062D9EB62DB34E311BB8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF50C75640622E1227765A491D563BD148B3C0D95_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m92C7FC890AD3637D775B949E40AC58993090D84D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m92E8524E021B44BD9FBA8B7B532C1C1D1AE2591E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m67422E4BCD6185FCCC24C2E10B17354B5CA4881F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUIntPtr_t_m8E6F5EA76515799BF3B9D4CF0338A24FA7585247_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mEE2DE7114E1A12D049D8F3212C2C62B563B6D67D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6_m9872AA8CCDD16018FEF9FE89FE4940546B46865B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331_mD7130BBF36965BDDF29ACF4C685B683521908194_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F_mC83D9DC89C64BF3E214A493D3EED0777EB67F01D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m838F955DD9621FF5361500D081CC22FE49049581_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m526D0C17B58AAB83A25B74C2462E165995C9DE2A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mFB7A377E49F0D9217F0C8F3C4105B731581E20FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_m8E260EE4B6ED1EFCF0BEC679C2D1B49085B4890D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mE136BEFAFFA4D20AC5F03D08E9E761773B432A66_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m8C4DA4C7ED5C1676764510E73EC8CA73232026F9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_mDD1AA924028290B9FCBE2796D51A4C012BDD3008_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m1111F23F534AA015C1AF82D85B8ABA1BF3E7C2AF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m1064783D741BBE4BFC25821A45C41E2116630C05_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF_m2C1270B705AF9896E7978976CF4992AA6459A06F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B_m4638D46950F764E50418FEB995EE29742C5B17C8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_m5C620A410975466E646FA2F390AFAE0F39F75BA8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_m8C5E586FAD0BC5D6B3A4209F6FAB3807603CB6CF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_mD8236EFAEC3C78FAF72A659E8CEEADCD12BF4444_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m63A0A4CC25A7F77EB320B3CD8F1AAFA45AF72781_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_m184A3AAE2B58BD178A9DCB7D86E275D609FD304F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_mDC79BB386EDCE3494B7191DA53CEFC72FCBDE09D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_m84C596008C9320FCDC3834D171AA87DA6F550EBB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_mFFD1B01CF87C826F2228FDD0D8C27C4A547B3196_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_m1B78EA31ACB22F78148B362DD1EFF5700E0122B0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_m12DDF4F60DC9EE1E79D82525A989B51E5AADC9E9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_mEAB0F6AB160AB4D9AC4AFE14862C3C3ACD7F07F9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mFBBF1D38CCDA2D13FFA16BC0CE1E5987639162FB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m7AEF0374A18EED15CB2B6318117FDC6364AC2F3B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m5D116C3383F95724C01C628C0D0069F3D7F65621_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Component_GetComponentInChildren_TisRuntimeObject_m06B65DD1CC6DFB48DB4DEE2CC185788D42837D30_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Component_GetComponentInChildren_TisRuntimeObject_m99FB85ED87B1E6C81048B22BEBBC8AB94CD028CD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Component_GetComponentInParent_TisRuntimeObject_m3D5E351D50C60522BD31D282D044F6527C382749_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Component_GetComponent_TisRuntimeObject_m129DEF8A66683189ED44B21496135824743EF617_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mA75245E8BF9FAB8A58686B2B26E4FC342453E774_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DebugUIHandlerWidget_CastWidget_TisRuntimeObject_m9F4B3A0C36146FE7F45468A27C8860A1CEFD16FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_GetOrAddComponent_TisRuntimeObject_mAEDB727D813C41FFCB6E8556119504E270F2E755_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_ElementAt_TisRuntimeObject_m2FA25011AB7D035EBA377E9C5FC051F91254B66F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_ElementAt_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m697818150903A54E504EF08086D5B2C8CE100E8D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_FirstOrDefault_TisRuntimeObject_m080A5CE50E989D99A8785C4DEDA7EBB21EC1B5A6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_Last_TisRuntimeObject_m73CE8E049D24E75FE927A73A8611BC7D63F10F46_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_ToArray_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE2CDF0B8B3C41F62C428BF69181B0D92E8250EDF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_ToArray_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m4C50B687629E8BC754A03B182301CA7FC7B56967_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_ToArray_TisRuntimeObject_m0343A227B31BEB205D569F05AEAE761094FB1B34_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_ToArray_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m3837BCAC4FBE264CE9D016D4C68BF973651E9A1C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_ToArray_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC2832BB83AC3F04B94E13C7D0A19FF4C39600473_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mB2DEEAF3F86ED5BECA570432FD5440948D5CB3B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_GetEventHandler_TisRuntimeObject_m4A0A387AEA9C47C3DB85EAB3FE49C0689C0FFFA8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_GetComponentInChildren_TisRuntimeObject_mA15208779D36FF60D56159BD6B74200FF125201E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_GetComponentsInChildren_TisRuntimeObject_m480234581F731A03837A715CDD95230957255B5B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_GetComponentsInParent_TisRuntimeObject_m80BC53BC6926863115F0039372F2CB123D4A44BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GameObject_GetComponents_TisRuntimeObject_m199B72A002ECBCA128D9490B3B1FBE35BA0E1181_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m4289829E8C0F3DA67A5B3E27721CF5D1C203CED2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ManagedReferenceImage_ResolveGCHandle_TisRuntimeObject_mE69FCDC0DC2CC3F8A89C25CD85559C6AE148E234_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t NativeSliceUnsafeUtility_ConvertExistingDataToNativeSlice_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mDB8BD60EC7BFC7BD5673CF765B549FABE56B3736_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Object_FindObjectOfType_TisRuntimeObject_mE3957366B74863C807E6E8A23D239A0CB079BB9C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Object_FindObjectsOfType_TisRuntimeObject_mE570B614F68E0A19BD5F65061CDA9BEE6EDBD159_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Object_Instantiate_TisRuntimeObject_m133EE84C9D759BD2861D99355649CDF50BB93AC1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Object_Instantiate_TisRuntimeObject_m765EEDB3D86CE4EADC667B84C18E793D14144E1D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RenderGraphObjectPool_GetTempArray_TisRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_m14E2E0F61B64B9019DB81D202FC1D17A12607910_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RenderGraphObjectPool_GetTempArray_TisRuntimeObject_mC471A75084D3F4A44B2BF44122C160CD10CF104F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RenderGraph_AddRenderPass_TisRuntimeObject_m8320D7103DB3A67B148A96D5E3C2748DB9256A59_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Resources_GetBuiltinResource_TisRuntimeObject_m832F2383487D59D5D8B18FA4C1C689A1032669BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Resources_Load_TisRuntimeObject_m312D167000593C478994C1F4C93930C5DAED66D3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ScriptableObject_CreateInstance_TisRuntimeObject_m7A8F75139352BA04C2EEC1D72D430FAC94C753DE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ShaderData_GetOrUpdateBuffer_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m47ABD988F1069D0101E4D475C03716FC2FC1353D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ShaderData_GetOrUpdateBuffer_TisLightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF_m770AEDAE9D77147FC5B189805A6984AA530448FB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ShaderData_GetOrUpdateBuffer_TisShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571_mC05E30362C21A637E76FFF4CB0C87D5E88F8F77A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TMP_Dropdown_GetOrAddComponent_TisRuntimeObject_m3ADA5D2CB7710C8B6FD9A8E85167E5B7F7E4D888_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Texture2D_GetRawTextureData_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE453927FC6491AC23A63CD1174E492BC63409B2E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t VolumeProfile_Add_TisRuntimeObject_m654A9CEC71DB0872FBF365088EE0061249B56E4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t VolumeStack_GetComponent_TisRuntimeObject_mC938E36188FBDDB1D9B702BF923C99029631E7CD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRLoaderHelper_GetLoadedSubsystem_TisRuntimeObject_m8D18B6F86DF3BF0F0C2102EFAE7DF661C3A09931_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRManagerSettings_get_activeLoader_m9371C31D367F55202EE948306D0C61A9D8725B67GenericMethods6_MetadataUsageId;
struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com;
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com;
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke;
struct PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_com;
struct PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_pinvoke;
struct ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 ;
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ;
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ;
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F;
struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7;
struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A;
struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262;
struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906;
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A;
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828;
struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05;
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4;
struct ValueTuple_2U5BU5D_tAC07AC38451469F15186378560098CF775CDC0F9;
struct ValueTuple_2U5BU5D_t5511800D3E60CA16B64391D7229EE5438B48C305;
struct SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41;
struct NativeArray_1U5BU5D_t849C9A0D7F8881104AEB488E05B787DCE761B696;
struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101;
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983;
struct ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399;
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65;
struct RenderGraphMutableResourceU5BU5D_tC5DD0DF1CAE7DE95421B26158C9F5E24169156CA;
struct RenderGraphResourceU5BU5D_tB3A76B05D0BFF43192C3081E627196BF620A45B0;
struct ContourVertexU5BU5D_t6A7626ED7D5846583F834C822C28220AFE0E396D;
struct EdgeU5BU5D_t109E874E4BB26DA4C9ACBA09E19B95274DD805C1;
struct ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9;
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165;
struct RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4;
struct ShaderTagIdU5BU5D_tFA48D4C6A2EF95AF0BF3EEB90B9719F0154CBEF0;
struct GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2;
struct UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482;
struct UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC;
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A;
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0;
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66;
struct ARRaycastHitU5BU5D_t2DDAC1FD38DF991C190FAEF8144A68AFBC541E94;
struct ARTextureInfoU5BU5D_tE03D3DE5A9DF582C89ABC81434CB04B6ADDEBBFD;
struct TrackableIdU5BU5D_t43525AC6688EDA53AF5753025C44F8DC1B33EF6E;
struct XRReferenceImageU5BU5D_t1EEAB0EDA5828C38140B4D8D48E11247C4789BCE;
struct XRReferenceObjectU5BU5D_t0AF9158E0468305ABEAA331C8925977310FBD498;
struct MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2;
struct XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.CollectionExtensions
struct CollectionExtensions_t1943508648E4A2A0FBCF65503E3BD7032F003E0A : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.Dictionary`2<System.Type,UnityEngine.ISubsystem>
struct Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t0220FF45E5BFB60B915FDBD07078D14BE4CB9A68* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t0D15C0166A58F8A2CEE6D84105856B797F7DAC6B * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tCF4DC3453D4D30322E6F91556B0561160EA9612A * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86, ___entries_1)); }
inline EntryU5BU5D_t0220FF45E5BFB60B915FDBD07078D14BE4CB9A68* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t0220FF45E5BFB60B915FDBD07078D14BE4CB9A68** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t0220FF45E5BFB60B915FDBD07078D14BE4CB9A68* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86, ___keys_7)); }
inline KeyCollection_t0D15C0166A58F8A2CEE6D84105856B797F7DAC6B * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t0D15C0166A58F8A2CEE6D84105856B797F7DAC6B ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t0D15C0166A58F8A2CEE6D84105856B797F7DAC6B * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86, ___values_8)); }
inline ValueCollection_tCF4DC3453D4D30322E6F91556B0561160EA9612A * get_values_8() const { return ___values_8; }
inline ValueCollection_tCF4DC3453D4D30322E6F91556B0561160EA9612A ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tCF4DC3453D4D30322E6F91556B0561160EA9612A * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.ValueTuple`2<System.Type,System.Int32>,System.Collections.Generic.Stack`1<System.Object>>
struct Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t3A8017CC4EE67EFA09EA37759A1D3B104909DEAF* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t2B403A51667B71437C537935FEC07380FB0E33FC * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t8A55512B72BC15D61766D269D351EF93F2E10C98 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E, ___entries_1)); }
inline EntryU5BU5D_t3A8017CC4EE67EFA09EA37759A1D3B104909DEAF* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t3A8017CC4EE67EFA09EA37759A1D3B104909DEAF** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t3A8017CC4EE67EFA09EA37759A1D3B104909DEAF* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E, ___keys_7)); }
inline KeyCollection_t2B403A51667B71437C537935FEC07380FB0E33FC * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t2B403A51667B71437C537935FEC07380FB0E33FC ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t2B403A51667B71437C537935FEC07380FB0E33FC * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E, ___values_8)); }
inline ValueCollection_t8A55512B72BC15D61766D269D351EF93F2E10C98 * get_values_8() const { return ___values_8; }
inline ValueCollection_t8A55512B72BC15D61766D269D351EF93F2E10C98 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t8A55512B72BC15D61766D269D351EF93F2E10C98 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Type,System.Int32>>>
struct List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ValueTuple_2U5BU5D_t2028C42ABD8621EC52E4A5E983461EF701F2AF06* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417, ____items_1)); }
inline ValueTuple_2U5BU5D_t2028C42ABD8621EC52E4A5E983461EF701F2AF06* get__items_1() const { return ____items_1; }
inline ValueTuple_2U5BU5D_t2028C42ABD8621EC52E4A5E983461EF701F2AF06** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ValueTuple_2U5BU5D_t2028C42ABD8621EC52E4A5E983461EF701F2AF06* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ValueTuple_2U5BU5D_t2028C42ABD8621EC52E4A5E983461EF701F2AF06* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417_StaticFields, ____emptyArray_5)); }
inline ValueTuple_2U5BU5D_t2028C42ABD8621EC52E4A5E983461EF701F2AF06* get__emptyArray_5() const { return ____emptyArray_5; }
inline ValueTuple_2U5BU5D_t2028C42ABD8621EC52E4A5E983461EF701F2AF06** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ValueTuple_2U5BU5D_t2028C42ABD8621EC52E4A5E983461EF701F2AF06* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass>
struct List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
RenderPassU5BU5D_t8CDB1B9B512117344C96F8DE5B0BB4ABE8D79B23* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t7BE901F61F1A406FC143D643C9923B05DE767845, ____items_1)); }
inline RenderPassU5BU5D_t8CDB1B9B512117344C96F8DE5B0BB4ABE8D79B23* get__items_1() const { return ____items_1; }
inline RenderPassU5BU5D_t8CDB1B9B512117344C96F8DE5B0BB4ABE8D79B23** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(RenderPassU5BU5D_t8CDB1B9B512117344C96F8DE5B0BB4ABE8D79B23* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t7BE901F61F1A406FC143D643C9923B05DE767845, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t7BE901F61F1A406FC143D643C9923B05DE767845, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t7BE901F61F1A406FC143D643C9923B05DE767845, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t7BE901F61F1A406FC143D643C9923B05DE767845_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
RenderPassU5BU5D_t8CDB1B9B512117344C96F8DE5B0BB4ABE8D79B23* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t7BE901F61F1A406FC143D643C9923B05DE767845_StaticFields, ____emptyArray_5)); }
inline RenderPassU5BU5D_t8CDB1B9B512117344C96F8DE5B0BB4ABE8D79B23* get__emptyArray_5() const { return ____emptyArray_5; }
inline RenderPassU5BU5D_t8CDB1B9B512117344C96F8DE5B0BB4ABE8D79B23** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(RenderPassU5BU5D_t8CDB1B9B512117344C96F8DE5B0BB4ABE8D79B23* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Transform>
struct List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____items_1)); }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* get__items_1() const { return ____items_1; }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE_StaticFields, ____emptyArray_5)); }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* get__emptyArray_5() const { return ____emptyArray_5; }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1, ____array_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Boolean>
struct Caster_1_t1C42C521F7CF8631FF6985A641436B54CEE018E8 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t1C42C521F7CF8631FF6985A641436B54CEE018E8_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t1C42C521F7CF8631FF6985A641436B54CEE018E8_StaticFields, ___Instance_0)); }
inline Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Byte>
struct Caster_1_tE0B5719D5D953F42A65E75E7D46BD8D7DD83D018 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE0B5719D5D953F42A65E75E7D46BD8D7DD83D018_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE0B5719D5D953F42A65E75E7D46BD8D7DD83D018_StaticFields, ___Instance_0)); }
inline Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Char>
struct Caster_1_tAFB70D9BBAD381451752BAEF28C81B52B2869977 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAFB70D9BBAD381451752BAEF28C81B52B2869977_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAFB70D9BBAD381451752BAEF28C81B52B2869977_StaticFields, ___Instance_0)); }
inline Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_t09B5032BA61F81ADC8AEF23DEF9F301CE607AF7C : public RuntimeObject
{
public:
public:
};
struct Caster_1_t09B5032BA61F81ADC8AEF23DEF9F301CE607AF7C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t09B5032BA61F81ADC8AEF23DEF9F301CE607AF7C_StaticFields, ___Instance_0)); }
inline Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.DateTime>
struct Caster_1_tB37D2514A59669003F7F156FB271151F0D11E5FB : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB37D2514A59669003F7F156FB271151F0D11E5FB_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB37D2514A59669003F7F156FB271151F0D11E5FB_StaticFields, ___Instance_0)); }
inline Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.DateTimeOffset>
struct Caster_1_tAD8FA143928683B1E0B6BEB460980A8543022E9B : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAD8FA143928683B1E0B6BEB460980A8543022E9B_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAD8FA143928683B1E0B6BEB460980A8543022E9B_StaticFields, ___Instance_0)); }
inline Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Decimal>
struct Caster_1_t58883F2D0ACC52F20C8978FC28C9C9D9CCFC69C2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t58883F2D0ACC52F20C8978FC28C9C9D9CCFC69C2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t58883F2D0ACC52F20C8978FC28C9C9D9CCFC69C2_StaticFields, ___Instance_0)); }
inline Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_tAFED591EF13E015162D8B2F6F629837E43482837 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAFED591EF13E015162D8B2F6F629837E43482837_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAFED591EF13E015162D8B2F6F629837E43482837_StaticFields, ___Instance_0)); }
inline Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Double>
struct Caster_1_tF3B99FF3BBCDEA3D042AAF9F41A16C7AD4A29ED2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF3B99FF3BBCDEA3D042AAF9F41A16C7AD4A29ED2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF3B99FF3BBCDEA3D042AAF9F41A16C7AD4A29ED2_StaticFields, ___Instance_0)); }
inline Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Guid>
struct Caster_1_tD296AE417E6EE7ADB8DAF202B8BC3203CBE89300 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tD296AE417E6EE7ADB8DAF202B8BC3203CBE89300_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tD296AE417E6EE7ADB8DAF202B8BC3203CBE89300_StaticFields, ___Instance_0)); }
inline Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Int16>
struct Caster_1_t699B4565B14DC3E4AAE69424E8CCCB8C5F5C84BF : public RuntimeObject
{
public:
public:
};
struct Caster_1_t699B4565B14DC3E4AAE69424E8CCCB8C5F5C84BF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t699B4565B14DC3E4AAE69424E8CCCB8C5F5C84BF_StaticFields, ___Instance_0)); }
inline Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Int32>
struct Caster_1_t847B65F78580B4C35C46212B37066290881E839D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t847B65F78580B4C35C46212B37066290881E839D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t847B65F78580B4C35C46212B37066290881E839D_StaticFields, ___Instance_0)); }
inline Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Int64>
struct Caster_1_tEE77AB8F884BD2579C99A38CFB1AAFEE0DCF07FA : public RuntimeObject
{
public:
public:
};
struct Caster_1_tEE77AB8F884BD2579C99A38CFB1AAFEE0DCF07FA_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tEE77AB8F884BD2579C99A38CFB1AAFEE0DCF07FA_StaticFields, ___Instance_0)); }
inline Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.IntPtr>
struct Caster_1_t02312CA733627756FCC99C1ED8322D3A6C51FB60 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t02312CA733627756FCC99C1ED8322D3A6C51FB60_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t02312CA733627756FCC99C1ED8322D3A6C51FB60_StaticFields, ___Instance_0)); }
inline Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Object>
struct Caster_1_t79B0C615C852AD755B10B324A903BD8ECE30C1D2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t79B0C615C852AD755B10B324A903BD8ECE30C1D2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t79B0C615C852AD755B10B324A903BD8ECE30C1D2_StaticFields, ___Instance_0)); }
inline Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.SByte>
struct Caster_1_t27F1F99B9A4CEB186ECF7805145934EA77CB1257 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t27F1F99B9A4CEB186ECF7805145934EA77CB1257_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t27F1F99B9A4CEB186ECF7805145934EA77CB1257_StaticFields, ___Instance_0)); }
inline Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.Single>
struct Caster_1_t5908B8116E70EA9E946E9F5128B622E9063630CC : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5908B8116E70EA9E946E9F5128B622E9063630CC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5908B8116E70EA9E946E9F5128B622E9063630CC_StaticFields, ___Instance_0)); }
inline Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.TimeSpan>
struct Caster_1_t0B12755AB11A35CCF3F2B11D0A02101A3A325F45 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0B12755AB11A35CCF3F2B11D0A02101A3A325F45_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0B12755AB11A35CCF3F2B11D0A02101A3A325F45_StaticFields, ___Instance_0)); }
inline Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.UInt16>
struct Caster_1_t408C47A521D832C453740F1E3F374FCCB5E32E8A : public RuntimeObject
{
public:
public:
};
struct Caster_1_t408C47A521D832C453740F1E3F374FCCB5E32E8A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t408C47A521D832C453740F1E3F374FCCB5E32E8A_StaticFields, ___Instance_0)); }
inline Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.UInt32>
struct Caster_1_t674C9A8AF3118A1ACC250CBE1B160B5287944451 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t674C9A8AF3118A1ACC250CBE1B160B5287944451_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t674C9A8AF3118A1ACC250CBE1B160B5287944451_StaticFields, ___Instance_0)); }
inline Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.UInt64>
struct Caster_1_t80311815F1B7E9467CB0674AEC735F4E06AF50CA : public RuntimeObject
{
public:
public:
};
struct Caster_1_t80311815F1B7E9467CB0674AEC735F4E06AF50CA_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t80311815F1B7E9467CB0674AEC735F4E06AF50CA_StaticFields, ___Instance_0)); }
inline Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Byte,System.UIntPtr>
struct Caster_1_t57C825D368DB63A6299B8DF204CDB497F51F538D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t57C825D368DB63A6299B8DF204CDB497F51F538D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t57C825D368DB63A6299B8DF204CDB497F51F538D_StaticFields, ___Instance_0)); }
inline Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Boolean>
struct Caster_1_tCAA6ACA318706EA3CFC28187859C80CD568A8943 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCAA6ACA318706EA3CFC28187859C80CD568A8943_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCAA6ACA318706EA3CFC28187859C80CD568A8943_StaticFields, ___Instance_0)); }
inline Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Byte>
struct Caster_1_tCFD75E9DB3970A86144B6EFA3E793B6C12B52B33 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCFD75E9DB3970A86144B6EFA3E793B6C12B52B33_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCFD75E9DB3970A86144B6EFA3E793B6C12B52B33_StaticFields, ___Instance_0)); }
inline Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Char>
struct Caster_1_tDE1C83FE3C48AB3782D0BCBC7ACD4EA1700DBF59 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tDE1C83FE3C48AB3782D0BCBC7ACD4EA1700DBF59_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tDE1C83FE3C48AB3782D0BCBC7ACD4EA1700DBF59_StaticFields, ___Instance_0)); }
inline Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_t6B1DD3EE8B308447896C88A6A69138BC65A5FA40 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t6B1DD3EE8B308447896C88A6A69138BC65A5FA40_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t6B1DD3EE8B308447896C88A6A69138BC65A5FA40_StaticFields, ___Instance_0)); }
inline Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.DateTime>
struct Caster_1_t502C258C3B6A03A1FD5B2E3254072F77EE89A675 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t502C258C3B6A03A1FD5B2E3254072F77EE89A675_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t502C258C3B6A03A1FD5B2E3254072F77EE89A675_StaticFields, ___Instance_0)); }
inline Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.DateTimeOffset>
struct Caster_1_t11F20427B499F3CD52E11D6A1AB7C931DCF96DB8 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t11F20427B499F3CD52E11D6A1AB7C931DCF96DB8_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t11F20427B499F3CD52E11D6A1AB7C931DCF96DB8_StaticFields, ___Instance_0)); }
inline Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Decimal>
struct Caster_1_tB676512E7A350DB4ED01AA9C00F5621E3A8C7F0F : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB676512E7A350DB4ED01AA9C00F5621E3A8C7F0F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB676512E7A350DB4ED01AA9C00F5621E3A8C7F0F_StaticFields, ___Instance_0)); }
inline Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t8218635FFE52C666262AEEAEE207339F47173DFF : public RuntimeObject
{
public:
public:
};
struct Caster_1_t8218635FFE52C666262AEEAEE207339F47173DFF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t8218635FFE52C666262AEEAEE207339F47173DFF_StaticFields, ___Instance_0)); }
inline Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Double>
struct Caster_1_t03D8E1F7D51ED3D2AE2677EDF3B6A0F0A4416AB5 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t03D8E1F7D51ED3D2AE2677EDF3B6A0F0A4416AB5_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t03D8E1F7D51ED3D2AE2677EDF3B6A0F0A4416AB5_StaticFields, ___Instance_0)); }
inline Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Guid>
struct Caster_1_t5932849F6E79E1885331632BE0371A5087A6DD8C : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5932849F6E79E1885331632BE0371A5087A6DD8C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5932849F6E79E1885331632BE0371A5087A6DD8C_StaticFields, ___Instance_0)); }
inline Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Int16>
struct Caster_1_t1F87BBD03AF9272751C51F5D605EFEF43AB46FE1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t1F87BBD03AF9272751C51F5D605EFEF43AB46FE1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t1F87BBD03AF9272751C51F5D605EFEF43AB46FE1_StaticFields, ___Instance_0)); }
inline Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Int32>
struct Caster_1_tB23D3BA31E450FB0952F33E1D2DB4DBFCD754BE1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB23D3BA31E450FB0952F33E1D2DB4DBFCD754BE1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB23D3BA31E450FB0952F33E1D2DB4DBFCD754BE1_StaticFields, ___Instance_0)); }
inline Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Int64>
struct Caster_1_tCA7F280780B937135FD0247CC90F5BCAD8963441 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCA7F280780B937135FD0247CC90F5BCAD8963441_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCA7F280780B937135FD0247CC90F5BCAD8963441_StaticFields, ___Instance_0)); }
inline Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.IntPtr>
struct Caster_1_t33C636F2356154C6CDFA5421A2797B1F58F30BCC : public RuntimeObject
{
public:
public:
};
struct Caster_1_t33C636F2356154C6CDFA5421A2797B1F58F30BCC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t33C636F2356154C6CDFA5421A2797B1F58F30BCC_StaticFields, ___Instance_0)); }
inline Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Object>
struct Caster_1_tF7A61263020C72F89182A7A8527DE53779F6D045 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF7A61263020C72F89182A7A8527DE53779F6D045_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF7A61263020C72F89182A7A8527DE53779F6D045_StaticFields, ___Instance_0)); }
inline Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.SByte>
struct Caster_1_tE4ED47E76B44B007CC692D239C61ED53AE3DEC20 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE4ED47E76B44B007CC692D239C61ED53AE3DEC20_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE4ED47E76B44B007CC692D239C61ED53AE3DEC20_StaticFields, ___Instance_0)); }
inline Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.Single>
struct Caster_1_tFFE1731A5A18D2FC62FB4FD0E140F893FEFCBFBC : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFFE1731A5A18D2FC62FB4FD0E140F893FEFCBFBC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFFE1731A5A18D2FC62FB4FD0E140F893FEFCBFBC_StaticFields, ___Instance_0)); }
inline Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.TimeSpan>
struct Caster_1_tE7B6AE02946C8C7D035775855D3F8667EECF49F0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE7B6AE02946C8C7D035775855D3F8667EECF49F0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE7B6AE02946C8C7D035775855D3F8667EECF49F0_StaticFields, ___Instance_0)); }
inline Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.UInt16>
struct Caster_1_tAB8276A53DE8D0B71D0C922FBDC1EA643B4B0801 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAB8276A53DE8D0B71D0C922FBDC1EA643B4B0801_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAB8276A53DE8D0B71D0C922FBDC1EA643B4B0801_StaticFields, ___Instance_0)); }
inline Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.UInt32>
struct Caster_1_t46C35E368FA9C3535F632F4A43107C8C0DECDF2D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t46C35E368FA9C3535F632F4A43107C8C0DECDF2D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t46C35E368FA9C3535F632F4A43107C8C0DECDF2D_StaticFields, ___Instance_0)); }
inline Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.UInt64>
struct Caster_1_t0DD4ACB69C178BCC9281945CB5322037FF50ACD4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0DD4ACB69C178BCC9281945CB5322037FF50ACD4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0DD4ACB69C178BCC9281945CB5322037FF50ACD4_StaticFields, ___Instance_0)); }
inline Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int16,System.UIntPtr>
struct Caster_1_tAB93366D39B91199FA6BB514B138640EEA06D826 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAB93366D39B91199FA6BB514B138640EEA06D826_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAB93366D39B91199FA6BB514B138640EEA06D826_StaticFields, ___Instance_0)); }
inline Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Boolean>
struct Caster_1_t48A24901856804183E97D899F37E2B095C3D3AD0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t48A24901856804183E97D899F37E2B095C3D3AD0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t48A24901856804183E97D899F37E2B095C3D3AD0_StaticFields, ___Instance_0)); }
inline Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Byte>
struct Caster_1_tB8F12CF62FE2B524624E09DCE78970BE6555258F : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB8F12CF62FE2B524624E09DCE78970BE6555258F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB8F12CF62FE2B524624E09DCE78970BE6555258F_StaticFields, ___Instance_0)); }
inline Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Char>
struct Caster_1_tD430240C674256CDF3116A5E5C05D32D14ADE25B : public RuntimeObject
{
public:
public:
};
struct Caster_1_tD430240C674256CDF3116A5E5C05D32D14ADE25B_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tD430240C674256CDF3116A5E5C05D32D14ADE25B_StaticFields, ___Instance_0)); }
inline Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_tA4C9DBDB9984A7DBDBE1E328A1E6D32056B598D5 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tA4C9DBDB9984A7DBDBE1E328A1E6D32056B598D5_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tA4C9DBDB9984A7DBDBE1E328A1E6D32056B598D5_StaticFields, ___Instance_0)); }
inline Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.DateTime>
struct Caster_1_t910ED4892D830D9260544CCD5A5BA17D0EAAC5A7 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t910ED4892D830D9260544CCD5A5BA17D0EAAC5A7_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t910ED4892D830D9260544CCD5A5BA17D0EAAC5A7_StaticFields, ___Instance_0)); }
inline Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.DateTimeOffset>
struct Caster_1_t3B656E50540D77F8D98EC3723A33AD022BA02142 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3B656E50540D77F8D98EC3723A33AD022BA02142_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3B656E50540D77F8D98EC3723A33AD022BA02142_StaticFields, ___Instance_0)); }
inline Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Decimal>
struct Caster_1_t37CFBE48D145A145182032241D4C96C7A9651872 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t37CFBE48D145A145182032241D4C96C7A9651872_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t37CFBE48D145A145182032241D4C96C7A9651872_StaticFields, ___Instance_0)); }
inline Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t6C69308FA9D7112A4603D39468BDA09974918F69 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t6C69308FA9D7112A4603D39468BDA09974918F69_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t6C69308FA9D7112A4603D39468BDA09974918F69_StaticFields, ___Instance_0)); }
inline Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Double>
struct Caster_1_t667DCCFE8DA1234CBF65A5978B6D27BE63CD598A : public RuntimeObject
{
public:
public:
};
struct Caster_1_t667DCCFE8DA1234CBF65A5978B6D27BE63CD598A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t667DCCFE8DA1234CBF65A5978B6D27BE63CD598A_StaticFields, ___Instance_0)); }
inline Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Guid>
struct Caster_1_tB84AF4B31F4DAF0AB144E99A83CE997FB4C72D58 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB84AF4B31F4DAF0AB144E99A83CE997FB4C72D58_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB84AF4B31F4DAF0AB144E99A83CE997FB4C72D58_StaticFields, ___Instance_0)); }
inline Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Int16>
struct Caster_1_t10436C94D617CD0D6ABB2F7D073CFA27B74C1E30 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t10436C94D617CD0D6ABB2F7D073CFA27B74C1E30_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t10436C94D617CD0D6ABB2F7D073CFA27B74C1E30_StaticFields, ___Instance_0)); }
inline Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Int32>
struct Caster_1_t14BB827E485FED333B17154453079AE34F1F49AD : public RuntimeObject
{
public:
public:
};
struct Caster_1_t14BB827E485FED333B17154453079AE34F1F49AD_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t14BB827E485FED333B17154453079AE34F1F49AD_StaticFields, ___Instance_0)); }
inline Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Int64>
struct Caster_1_t7A312140662B26A86CC59C245C7C848163A49AB4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7A312140662B26A86CC59C245C7C848163A49AB4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7A312140662B26A86CC59C245C7C848163A49AB4_StaticFields, ___Instance_0)); }
inline Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.IntPtr>
struct Caster_1_t9C36147697AE67003B8A0EF11EEF2516066D90C4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9C36147697AE67003B8A0EF11EEF2516066D90C4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9C36147697AE67003B8A0EF11EEF2516066D90C4_StaticFields, ___Instance_0)); }
inline Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Object>
struct Caster_1_t31EFD992543429652A6ED1652D545CCD372DB7C5 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t31EFD992543429652A6ED1652D545CCD372DB7C5_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t31EFD992543429652A6ED1652D545CCD372DB7C5_StaticFields, ___Instance_0)); }
inline Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.SByte>
struct Caster_1_t9347D88993875351431679E4107168C7CD28B825 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9347D88993875351431679E4107168C7CD28B825_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9347D88993875351431679E4107168C7CD28B825_StaticFields, ___Instance_0)); }
inline Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.Single>
struct Caster_1_t3EA25BC7E67BA9A7DA94FB04B9939AA009AE1F2D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3EA25BC7E67BA9A7DA94FB04B9939AA009AE1F2D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3EA25BC7E67BA9A7DA94FB04B9939AA009AE1F2D_StaticFields, ___Instance_0)); }
inline Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.TimeSpan>
struct Caster_1_tFDA8B5B6F494CA32867BEDA1744607B9DE4AC7FD : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFDA8B5B6F494CA32867BEDA1744607B9DE4AC7FD_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFDA8B5B6F494CA32867BEDA1744607B9DE4AC7FD_StaticFields, ___Instance_0)); }
inline Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.UInt16>
struct Caster_1_t5A5C0360CA0AE23E50B74262E52C01F758755C97 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5A5C0360CA0AE23E50B74262E52C01F758755C97_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5A5C0360CA0AE23E50B74262E52C01F758755C97_StaticFields, ___Instance_0)); }
inline Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.UInt32>
struct Caster_1_t3A7D9F3C5EC2EF5D573D0A6E3F67BA58C73B050A : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3A7D9F3C5EC2EF5D573D0A6E3F67BA58C73B050A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3A7D9F3C5EC2EF5D573D0A6E3F67BA58C73B050A_StaticFields, ___Instance_0)); }
inline Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.UInt64>
struct Caster_1_t5606234865DF0152C73166D640BD2651AAC8D43E : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5606234865DF0152C73166D640BD2651AAC8D43E_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5606234865DF0152C73166D640BD2651AAC8D43E_StaticFields, ___Instance_0)); }
inline Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int32,System.UIntPtr>
struct Caster_1_t0233A96550545D6F17A5141586520D492131F3AF : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0233A96550545D6F17A5141586520D492131F3AF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0233A96550545D6F17A5141586520D492131F3AF_StaticFields, ___Instance_0)); }
inline Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Boolean>
struct Caster_1_t78D880B4DED6A81AFFB3DA6D32BA8A0E295F3788 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t78D880B4DED6A81AFFB3DA6D32BA8A0E295F3788_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t78D880B4DED6A81AFFB3DA6D32BA8A0E295F3788_StaticFields, ___Instance_0)); }
inline Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Byte>
struct Caster_1_tF1E9F5ACC455E168230D60D0AE5E848A5DBE2930 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF1E9F5ACC455E168230D60D0AE5E848A5DBE2930_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF1E9F5ACC455E168230D60D0AE5E848A5DBE2930_StaticFields, ___Instance_0)); }
inline Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Char>
struct Caster_1_t95AC156F3D75823ABA3B6749B8E5DAAF8EB6AB25 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t95AC156F3D75823ABA3B6749B8E5DAAF8EB6AB25_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t95AC156F3D75823ABA3B6749B8E5DAAF8EB6AB25_StaticFields, ___Instance_0)); }
inline Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_t8B6EA4487FE31C415BCD954287C70DF849E09E08 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t8B6EA4487FE31C415BCD954287C70DF849E09E08_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t8B6EA4487FE31C415BCD954287C70DF849E09E08_StaticFields, ___Instance_0)); }
inline Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.DateTime>
struct Caster_1_t2314A24A7931390C6867F5AB59BCE7DF7875EDB6 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t2314A24A7931390C6867F5AB59BCE7DF7875EDB6_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t2314A24A7931390C6867F5AB59BCE7DF7875EDB6_StaticFields, ___Instance_0)); }
inline Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.DateTimeOffset>
struct Caster_1_t39143C74EFB8AD6200EFEE9E31A9EBDC9718F1E5 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t39143C74EFB8AD6200EFEE9E31A9EBDC9718F1E5_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t39143C74EFB8AD6200EFEE9E31A9EBDC9718F1E5_StaticFields, ___Instance_0)); }
inline Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Decimal>
struct Caster_1_t4B1D64CB72ED6461809D48568ECB009A92F781FE : public RuntimeObject
{
public:
public:
};
struct Caster_1_t4B1D64CB72ED6461809D48568ECB009A92F781FE_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t4B1D64CB72ED6461809D48568ECB009A92F781FE_StaticFields, ___Instance_0)); }
inline Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t279DFE68F30E6659059D94B02BD5361A9BBE40D4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t279DFE68F30E6659059D94B02BD5361A9BBE40D4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t279DFE68F30E6659059D94B02BD5361A9BBE40D4_StaticFields, ___Instance_0)); }
inline Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Double>
struct Caster_1_tFFC10B3F233B81FE8D4EA64668FE2EA15A433C6D : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFFC10B3F233B81FE8D4EA64668FE2EA15A433C6D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFFC10B3F233B81FE8D4EA64668FE2EA15A433C6D_StaticFields, ___Instance_0)); }
inline Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Guid>
struct Caster_1_t7F15074A7BC9B5DA634F74067B2CAA3E4D8C7379 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7F15074A7BC9B5DA634F74067B2CAA3E4D8C7379_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7F15074A7BC9B5DA634F74067B2CAA3E4D8C7379_StaticFields, ___Instance_0)); }
inline Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Int16>
struct Caster_1_tE25B230380E2CE54B9276690CD814DE511450833 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE25B230380E2CE54B9276690CD814DE511450833_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE25B230380E2CE54B9276690CD814DE511450833_StaticFields, ___Instance_0)); }
inline Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Int32>
struct Caster_1_t3B87E9C89959ABEE4F6F1172FFA2D99D20FEAF4D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3B87E9C89959ABEE4F6F1172FFA2D99D20FEAF4D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3B87E9C89959ABEE4F6F1172FFA2D99D20FEAF4D_StaticFields, ___Instance_0)); }
inline Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Int64>
struct Caster_1_t7D3ABA04133A298DFD0422ADFEBDEF3656AF0031 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7D3ABA04133A298DFD0422ADFEBDEF3656AF0031_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7D3ABA04133A298DFD0422ADFEBDEF3656AF0031_StaticFields, ___Instance_0)); }
inline Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.IntPtr>
struct Caster_1_t9E4D034C656C467484BBD42F5B9FF5B91F790BED : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9E4D034C656C467484BBD42F5B9FF5B91F790BED_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9E4D034C656C467484BBD42F5B9FF5B91F790BED_StaticFields, ___Instance_0)); }
inline Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Object>
struct Caster_1_t7F4B7F98CCD80CC0E1B52334B484C566B3772846 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7F4B7F98CCD80CC0E1B52334B484C566B3772846_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7F4B7F98CCD80CC0E1B52334B484C566B3772846_StaticFields, ___Instance_0)); }
inline Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.SByte>
struct Caster_1_tD1867CCD99C0E4D6779357AA6EAE58CA54AE0AF4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tD1867CCD99C0E4D6779357AA6EAE58CA54AE0AF4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tD1867CCD99C0E4D6779357AA6EAE58CA54AE0AF4_StaticFields, ___Instance_0)); }
inline Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.Single>
struct Caster_1_tCADDC259BB0BC859D77522BE7660068F2B40F0FC : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCADDC259BB0BC859D77522BE7660068F2B40F0FC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCADDC259BB0BC859D77522BE7660068F2B40F0FC_StaticFields, ___Instance_0)); }
inline Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.TimeSpan>
struct Caster_1_tB392A04593C4239456BD2F10286A27F0AE928679 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB392A04593C4239456BD2F10286A27F0AE928679_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB392A04593C4239456BD2F10286A27F0AE928679_StaticFields, ___Instance_0)); }
inline Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.UInt16>
struct Caster_1_t9F5AB8620B99DD3C4BBDD28E6F5A78003016D254 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9F5AB8620B99DD3C4BBDD28E6F5A78003016D254_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9F5AB8620B99DD3C4BBDD28E6F5A78003016D254_StaticFields, ___Instance_0)); }
inline Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.UInt32>
struct Caster_1_t5F92169CA22878B796AF5109203D193F987A4A39 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5F92169CA22878B796AF5109203D193F987A4A39_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5F92169CA22878B796AF5109203D193F987A4A39_StaticFields, ___Instance_0)); }
inline Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.UInt64>
struct Caster_1_tF96225B214D9B7EE71FE55E75A65EBD3AFEFAB6C : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF96225B214D9B7EE71FE55E75A65EBD3AFEFAB6C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF96225B214D9B7EE71FE55E75A65EBD3AFEFAB6C_StaticFields, ___Instance_0)); }
inline Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Int64,System.UIntPtr>
struct Caster_1_t02CDD619AF43E06FEDAB4F242EB5DAB284E98B19 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t02CDD619AF43E06FEDAB4F242EB5DAB284E98B19_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t02CDD619AF43E06FEDAB4F242EB5DAB284E98B19_StaticFields, ___Instance_0)); }
inline Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.Object,System.Object>
struct Caster_1_t195DBA8A516B142DCC1ACA2DA98380583B5F1D8E : public RuntimeObject
{
public:
public:
};
struct Caster_1_t195DBA8A516B142DCC1ACA2DA98380583B5F1D8E_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t195DBA8A516B142DCC1ACA2DA98380583B5F1D8E_StaticFields, ___Instance_0)); }
inline Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Boolean>
struct Caster_1_t9548AD2802014C51CE95C2D167F4C5AFF00F7AB0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9548AD2802014C51CE95C2D167F4C5AFF00F7AB0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9548AD2802014C51CE95C2D167F4C5AFF00F7AB0_StaticFields, ___Instance_0)); }
inline Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Byte>
struct Caster_1_t6D09AA62870A76ABA6E5E4D301AFCCF93F194424 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t6D09AA62870A76ABA6E5E4D301AFCCF93F194424_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t6D09AA62870A76ABA6E5E4D301AFCCF93F194424_StaticFields, ___Instance_0)); }
inline Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Char>
struct Caster_1_t7BED5C159FA7237F00FC5BF1362A67DD3DEE749A : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7BED5C159FA7237F00FC5BF1362A67DD3DEE749A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7BED5C159FA7237F00FC5BF1362A67DD3DEE749A_StaticFields, ___Instance_0)); }
inline Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_tFE5F9417466A4CB788D519C7878ECCB397E668A1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFE5F9417466A4CB788D519C7878ECCB397E668A1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFE5F9417466A4CB788D519C7878ECCB397E668A1_StaticFields, ___Instance_0)); }
inline Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.DateTime>
struct Caster_1_tB027436891672D8E446545806D30A74D601A125F : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB027436891672D8E446545806D30A74D601A125F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB027436891672D8E446545806D30A74D601A125F_StaticFields, ___Instance_0)); }
inline Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.DateTimeOffset>
struct Caster_1_tC50D5F2635E0A7DCD57C363B1CA71CFEA00F93EF : public RuntimeObject
{
public:
public:
};
struct Caster_1_tC50D5F2635E0A7DCD57C363B1CA71CFEA00F93EF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tC50D5F2635E0A7DCD57C363B1CA71CFEA00F93EF_StaticFields, ___Instance_0)); }
inline Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Decimal>
struct Caster_1_tE749C798EEF25AA04DF0E56627917C360336EBA4 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE749C798EEF25AA04DF0E56627917C360336EBA4_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE749C798EEF25AA04DF0E56627917C360336EBA4_StaticFields, ___Instance_0)); }
inline Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t70BCB30FF0C2DF9E545F34DEF21271408068477F : public RuntimeObject
{
public:
public:
};
struct Caster_1_t70BCB30FF0C2DF9E545F34DEF21271408068477F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t70BCB30FF0C2DF9E545F34DEF21271408068477F_StaticFields, ___Instance_0)); }
inline Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Double>
struct Caster_1_tC218F4859CF65473DA915EE5333EFDCFEE72392E : public RuntimeObject
{
public:
public:
};
struct Caster_1_tC218F4859CF65473DA915EE5333EFDCFEE72392E_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tC218F4859CF65473DA915EE5333EFDCFEE72392E_StaticFields, ___Instance_0)); }
inline Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Guid>
struct Caster_1_t8409BE0ECE6FE2A29D79E7044752D251CB863421 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t8409BE0ECE6FE2A29D79E7044752D251CB863421_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t8409BE0ECE6FE2A29D79E7044752D251CB863421_StaticFields, ___Instance_0)); }
inline Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Int16>
struct Caster_1_t62F9F0EA0D2CF70BE880EC5B4DB6C4E3BD191FF1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t62F9F0EA0D2CF70BE880EC5B4DB6C4E3BD191FF1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t62F9F0EA0D2CF70BE880EC5B4DB6C4E3BD191FF1_StaticFields, ___Instance_0)); }
inline Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Int32>
struct Caster_1_t12F7AE622EDC8B8147BB5162376EAEBD2A1A716D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t12F7AE622EDC8B8147BB5162376EAEBD2A1A716D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t12F7AE622EDC8B8147BB5162376EAEBD2A1A716D_StaticFields, ___Instance_0)); }
inline Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Int64>
struct Caster_1_t9136EB8D74B86E14C4D0B7DE2699BB30FF62ADE0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9136EB8D74B86E14C4D0B7DE2699BB30FF62ADE0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9136EB8D74B86E14C4D0B7DE2699BB30FF62ADE0_StaticFields, ___Instance_0)); }
inline Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.IntPtr>
struct Caster_1_t3AEE07159271C04282D4520F761455EA4BF25B90 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3AEE07159271C04282D4520F761455EA4BF25B90_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3AEE07159271C04282D4520F761455EA4BF25B90_StaticFields, ___Instance_0)); }
inline Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Object>
struct Caster_1_tDE4AB1F4E3BD9C2B0BF368F239F02CD0D92D7D3B : public RuntimeObject
{
public:
public:
};
struct Caster_1_tDE4AB1F4E3BD9C2B0BF368F239F02CD0D92D7D3B_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tDE4AB1F4E3BD9C2B0BF368F239F02CD0D92D7D3B_StaticFields, ___Instance_0)); }
inline Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.SByte>
struct Caster_1_tCC08F4371265D272EC5F5C61F06234FB4C49F905 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCC08F4371265D272EC5F5C61F06234FB4C49F905_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCC08F4371265D272EC5F5C61F06234FB4C49F905_StaticFields, ___Instance_0)); }
inline Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.Single>
struct Caster_1_tB1E0520D57EA2A38EB25F38157F7FAE2077D0519 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB1E0520D57EA2A38EB25F38157F7FAE2077D0519_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB1E0520D57EA2A38EB25F38157F7FAE2077D0519_StaticFields, ___Instance_0)); }
inline Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.TimeSpan>
struct Caster_1_t063FFE54B6E834FCAADA9B98B6556AFEC0411632 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t063FFE54B6E834FCAADA9B98B6556AFEC0411632_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t063FFE54B6E834FCAADA9B98B6556AFEC0411632_StaticFields, ___Instance_0)); }
inline Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.UInt16>
struct Caster_1_tA4C712C2F66B1CCA6198D56E9156B3ED627F7E7F : public RuntimeObject
{
public:
public:
};
struct Caster_1_tA4C712C2F66B1CCA6198D56E9156B3ED627F7E7F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tA4C712C2F66B1CCA6198D56E9156B3ED627F7E7F_StaticFields, ___Instance_0)); }
inline Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.UInt32>
struct Caster_1_t4E01ADD98CF6A52B499B239DD79900153A6E8CB9 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t4E01ADD98CF6A52B499B239DD79900153A6E8CB9_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t4E01ADD98CF6A52B499B239DD79900153A6E8CB9_StaticFields, ___Instance_0)); }
inline Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.UInt64>
struct Caster_1_tA76F3CD44521225217CEE9D5E70655913B3652F6 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tA76F3CD44521225217CEE9D5E70655913B3652F6_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tA76F3CD44521225217CEE9D5E70655913B3652F6_StaticFields, ___Instance_0)); }
inline Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.SByte,System.UIntPtr>
struct Caster_1_t27A7F78CA974CB9EB88650C0F7D4CCB345E0D6F0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t27A7F78CA974CB9EB88650C0F7D4CCB345E0D6F0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t27A7F78CA974CB9EB88650C0F7D4CCB345E0D6F0_StaticFields, ___Instance_0)); }
inline Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Boolean>
struct Caster_1_t2AC7FD1B9C92018FCD42D2FBB7DE1C15E7C6141D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t2AC7FD1B9C92018FCD42D2FBB7DE1C15E7C6141D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t2AC7FD1B9C92018FCD42D2FBB7DE1C15E7C6141D_StaticFields, ___Instance_0)); }
inline Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Byte>
struct Caster_1_tA9F99D3DE3C2B79878574DA79394D40484CF909C : public RuntimeObject
{
public:
public:
};
struct Caster_1_tA9F99D3DE3C2B79878574DA79394D40484CF909C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tA9F99D3DE3C2B79878574DA79394D40484CF909C_StaticFields, ___Instance_0)); }
inline Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Char>
struct Caster_1_t439110BADC840296B0301DC221E3742B2C8E8934 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t439110BADC840296B0301DC221E3742B2C8E8934_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t439110BADC840296B0301DC221E3742B2C8E8934_StaticFields, ___Instance_0)); }
inline Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_t9CF680A45E2713569B0D6E5DCD3ACE8E5CE11A5F : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9CF680A45E2713569B0D6E5DCD3ACE8E5CE11A5F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9CF680A45E2713569B0D6E5DCD3ACE8E5CE11A5F_StaticFields, ___Instance_0)); }
inline Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.DateTime>
struct Caster_1_t45EEB8AA14910B5FE2FEA34EC88A9154085E86BC : public RuntimeObject
{
public:
public:
};
struct Caster_1_t45EEB8AA14910B5FE2FEA34EC88A9154085E86BC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t45EEB8AA14910B5FE2FEA34EC88A9154085E86BC_StaticFields, ___Instance_0)); }
inline Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.DateTimeOffset>
struct Caster_1_t0AD7C98192FA0900645BFF7111DF2264C1F11843 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0AD7C98192FA0900645BFF7111DF2264C1F11843_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0AD7C98192FA0900645BFF7111DF2264C1F11843_StaticFields, ___Instance_0)); }
inline Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Decimal>
struct Caster_1_tB30E4B83744A2AB4B34E2140F09FF2DBAD9067A2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB30E4B83744A2AB4B34E2140F09FF2DBAD9067A2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB30E4B83744A2AB4B34E2140F09FF2DBAD9067A2_StaticFields, ___Instance_0)); }
inline Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t9F48A0F7F413295607FDDD8C95EAA2A8FB1BA77F : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9F48A0F7F413295607FDDD8C95EAA2A8FB1BA77F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9F48A0F7F413295607FDDD8C95EAA2A8FB1BA77F_StaticFields, ___Instance_0)); }
inline Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Double>
struct Caster_1_tFA61F79F888D97CEE77D5548328774BE7E4EB84A : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFA61F79F888D97CEE77D5548328774BE7E4EB84A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFA61F79F888D97CEE77D5548328774BE7E4EB84A_StaticFields, ___Instance_0)); }
inline Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Guid>
struct Caster_1_t62DA063BB7BB019FFBE6B9ED3A08D069E330FE87 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t62DA063BB7BB019FFBE6B9ED3A08D069E330FE87_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t62DA063BB7BB019FFBE6B9ED3A08D069E330FE87_StaticFields, ___Instance_0)); }
inline Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Int16>
struct Caster_1_tF5CE3C0B8FDD93C834FC13D907003475F7844594 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF5CE3C0B8FDD93C834FC13D907003475F7844594_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF5CE3C0B8FDD93C834FC13D907003475F7844594_StaticFields, ___Instance_0)); }
inline Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Int32>
struct Caster_1_t8F8BD84B7E2CC9232254A7A82FBEA7C1C7227E24 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t8F8BD84B7E2CC9232254A7A82FBEA7C1C7227E24_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t8F8BD84B7E2CC9232254A7A82FBEA7C1C7227E24_StaticFields, ___Instance_0)); }
inline Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Int64>
struct Caster_1_t7796DD6DA3A2E903A8337A4426EA117003E4FF07 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7796DD6DA3A2E903A8337A4426EA117003E4FF07_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7796DD6DA3A2E903A8337A4426EA117003E4FF07_StaticFields, ___Instance_0)); }
inline Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.IntPtr>
struct Caster_1_tF06869CDE05BEA07C45D10B5C27C152492D8F494 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF06869CDE05BEA07C45D10B5C27C152492D8F494_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF06869CDE05BEA07C45D10B5C27C152492D8F494_StaticFields, ___Instance_0)); }
inline Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Object>
struct Caster_1_t0E97020316A62558167F5F018A989125D28729AD : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0E97020316A62558167F5F018A989125D28729AD_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0E97020316A62558167F5F018A989125D28729AD_StaticFields, ___Instance_0)); }
inline Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.SByte>
struct Caster_1_t7194A004154AABF5CF224780C51648A67A6757A2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7194A004154AABF5CF224780C51648A67A6757A2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7194A004154AABF5CF224780C51648A67A6757A2_StaticFields, ___Instance_0)); }
inline Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.Single>
struct Caster_1_t073650CFFC30F591C4E5B47753CBDF6EAEC9AA0D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t073650CFFC30F591C4E5B47753CBDF6EAEC9AA0D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t073650CFFC30F591C4E5B47753CBDF6EAEC9AA0D_StaticFields, ___Instance_0)); }
inline Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.TimeSpan>
struct Caster_1_tC9893BC43C67D8FE44500C545C7D0B22FBDFA338 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tC9893BC43C67D8FE44500C545C7D0B22FBDFA338_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tC9893BC43C67D8FE44500C545C7D0B22FBDFA338_StaticFields, ___Instance_0)); }
inline Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.UInt16>
struct Caster_1_t97E30322734EE96D22D5EDDDA8A32D7F28BF9E0D : public RuntimeObject
{
public:
public:
};
struct Caster_1_t97E30322734EE96D22D5EDDDA8A32D7F28BF9E0D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t97E30322734EE96D22D5EDDDA8A32D7F28BF9E0D_StaticFields, ___Instance_0)); }
inline Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.UInt32>
struct Caster_1_tEAB5EDC98E125207E56614BEDA0E194CDB6A81D2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tEAB5EDC98E125207E56614BEDA0E194CDB6A81D2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tEAB5EDC98E125207E56614BEDA0E194CDB6A81D2_StaticFields, ___Instance_0)); }
inline Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.UInt64>
struct Caster_1_tE1468C16E0D935665BAFEAE58EC1DC80FEA18FD0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE1468C16E0D935665BAFEAE58EC1DC80FEA18FD0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE1468C16E0D935665BAFEAE58EC1DC80FEA18FD0_StaticFields, ___Instance_0)); }
inline Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt16,System.UIntPtr>
struct Caster_1_t9DA7DEC0029E18FF11AF097849FFE2FD2B961C60 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t9DA7DEC0029E18FF11AF097849FFE2FD2B961C60_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t9DA7DEC0029E18FF11AF097849FFE2FD2B961C60_StaticFields, ___Instance_0)); }
inline Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Boolean>
struct Caster_1_t1B6BC63943ECA453AF4038A2F429DC89D1C88504 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t1B6BC63943ECA453AF4038A2F429DC89D1C88504_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t1B6BC63943ECA453AF4038A2F429DC89D1C88504_StaticFields, ___Instance_0)); }
inline Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Byte>
struct Caster_1_t1E5C78F2324B0966F93815A21CF15C56A6D1D763 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t1E5C78F2324B0966F93815A21CF15C56A6D1D763_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t1E5C78F2324B0966F93815A21CF15C56A6D1D763_StaticFields, ___Instance_0)); }
inline Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Char>
struct Caster_1_tEED0D769437F89233D231DC79626AC0A6337593C : public RuntimeObject
{
public:
public:
};
struct Caster_1_tEED0D769437F89233D231DC79626AC0A6337593C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tEED0D769437F89233D231DC79626AC0A6337593C_StaticFields, ___Instance_0)); }
inline Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_t722135795C75F590A8BC1E4CE7DB7DDFFA14314A : public RuntimeObject
{
public:
public:
};
struct Caster_1_t722135795C75F590A8BC1E4CE7DB7DDFFA14314A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t722135795C75F590A8BC1E4CE7DB7DDFFA14314A_StaticFields, ___Instance_0)); }
inline Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.DateTime>
struct Caster_1_t3F3455CCFC9311D353A7D8C4A42200408CA558BC : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3F3455CCFC9311D353A7D8C4A42200408CA558BC_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3F3455CCFC9311D353A7D8C4A42200408CA558BC_StaticFields, ___Instance_0)); }
inline Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.DateTimeOffset>
struct Caster_1_t2EE1EC204134DA58566A851DFA40A0B880948A86 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t2EE1EC204134DA58566A851DFA40A0B880948A86_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t2EE1EC204134DA58566A851DFA40A0B880948A86_StaticFields, ___Instance_0)); }
inline Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Decimal>
struct Caster_1_t0BBCE2A7CB1298EE3E1F92A4EE98EE1FEA34EC7F : public RuntimeObject
{
public:
public:
};
struct Caster_1_t0BBCE2A7CB1298EE3E1F92A4EE98EE1FEA34EC7F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t0BBCE2A7CB1298EE3E1F92A4EE98EE1FEA34EC7F_StaticFields, ___Instance_0)); }
inline Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_tEB26AB756A5FFD5D46CEFADFD4354B569FE79E35 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tEB26AB756A5FFD5D46CEFADFD4354B569FE79E35_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tEB26AB756A5FFD5D46CEFADFD4354B569FE79E35_StaticFields, ___Instance_0)); }
inline Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Double>
struct Caster_1_t4EF5B9F285768775D3C068FAF5475BD3A7560098 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t4EF5B9F285768775D3C068FAF5475BD3A7560098_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t4EF5B9F285768775D3C068FAF5475BD3A7560098_StaticFields, ___Instance_0)); }
inline Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Guid>
struct Caster_1_t82D455B6810AAD5E0FB1B33CBEAE2D7F6B1215C1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t82D455B6810AAD5E0FB1B33CBEAE2D7F6B1215C1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t82D455B6810AAD5E0FB1B33CBEAE2D7F6B1215C1_StaticFields, ___Instance_0)); }
inline Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Int16>
struct Caster_1_tFBB6815F7209EA2669845E4F5390708755B6A996 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFBB6815F7209EA2669845E4F5390708755B6A996_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFBB6815F7209EA2669845E4F5390708755B6A996_StaticFields, ___Instance_0)); }
inline Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Int32>
struct Caster_1_t79F9BB0534172847D8A8840D22FEA3ACBF6E2E30 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t79F9BB0534172847D8A8840D22FEA3ACBF6E2E30_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t79F9BB0534172847D8A8840D22FEA3ACBF6E2E30_StaticFields, ___Instance_0)); }
inline Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Int64>
struct Caster_1_t2E73FCE9B801A6C9D2357B69DB15EE7FF8CCDBD8 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t2E73FCE9B801A6C9D2357B69DB15EE7FF8CCDBD8_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t2E73FCE9B801A6C9D2357B69DB15EE7FF8CCDBD8_StaticFields, ___Instance_0)); }
inline Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.IntPtr>
struct Caster_1_t7428F42D13DDC0C1A066BD1EE9BC521E66BA5BC1 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t7428F42D13DDC0C1A066BD1EE9BC521E66BA5BC1_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t7428F42D13DDC0C1A066BD1EE9BC521E66BA5BC1_StaticFields, ___Instance_0)); }
inline Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Object>
struct Caster_1_tB69CF02AAB845E9B3DDB7E61DDA09AE13B6C05C2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tB69CF02AAB845E9B3DDB7E61DDA09AE13B6C05C2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tB69CF02AAB845E9B3DDB7E61DDA09AE13B6C05C2_StaticFields, ___Instance_0)); }
inline Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.SByte>
struct Caster_1_t5B781D2583194FDAD58A1DEB85D1364FB241544E : public RuntimeObject
{
public:
public:
};
struct Caster_1_t5B781D2583194FDAD58A1DEB85D1364FB241544E_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t5B781D2583194FDAD58A1DEB85D1364FB241544E_StaticFields, ___Instance_0)); }
inline Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.Single>
struct Caster_1_tFB47F8B972002AEAC72800811486FA13E467A8BF : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFB47F8B972002AEAC72800811486FA13E467A8BF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFB47F8B972002AEAC72800811486FA13E467A8BF_StaticFields, ___Instance_0)); }
inline Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.TimeSpan>
struct Caster_1_tC8767D376B189ACD381153C9C173514211A0FE0F : public RuntimeObject
{
public:
public:
};
struct Caster_1_tC8767D376B189ACD381153C9C173514211A0FE0F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tC8767D376B189ACD381153C9C173514211A0FE0F_StaticFields, ___Instance_0)); }
inline Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.UInt16>
struct Caster_1_t42992A2C9D038623500C211031C77C7208D43273 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t42992A2C9D038623500C211031C77C7208D43273_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t42992A2C9D038623500C211031C77C7208D43273_StaticFields, ___Instance_0)); }
inline Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.UInt32>
struct Caster_1_t87A4B6548293C1368DDFCB40BA06CF49106148F9 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t87A4B6548293C1368DDFCB40BA06CF49106148F9_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t87A4B6548293C1368DDFCB40BA06CF49106148F9_StaticFields, ___Instance_0)); }
inline Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.UInt64>
struct Caster_1_tFD458BDD72B070794987225E3DB7C380E3CC37D2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tFD458BDD72B070794987225E3DB7C380E3CC37D2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tFD458BDD72B070794987225E3DB7C380E3CC37D2_StaticFields, ___Instance_0)); }
inline Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt32,System.UIntPtr>
struct Caster_1_t941B28C129B116297C114C4519CDE8190AB5C2D9 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t941B28C129B116297C114C4519CDE8190AB5C2D9_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t941B28C129B116297C114C4519CDE8190AB5C2D9_StaticFields, ___Instance_0)); }
inline Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Boolean>
struct Caster_1_tD2A776BD441B8E1E656DBDBEA29CE09F6370B01D : public RuntimeObject
{
public:
public:
};
struct Caster_1_tD2A776BD441B8E1E656DBDBEA29CE09F6370B01D_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tD2A776BD441B8E1E656DBDBEA29CE09F6370B01D_StaticFields, ___Instance_0)); }
inline Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Byte>
struct Caster_1_t482CB7C00B7672BE86AB37B58803EDDA5253C159 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t482CB7C00B7672BE86AB37B58803EDDA5253C159_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t482CB7C00B7672BE86AB37B58803EDDA5253C159_StaticFields, ___Instance_0)); }
inline Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Char>
struct Caster_1_tC3C7676E4988AB84AD5D483DF6D6D51F652B8EAA : public RuntimeObject
{
public:
public:
};
struct Caster_1_tC3C7676E4988AB84AD5D483DF6D6D51F652B8EAA_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tC3C7676E4988AB84AD5D483DF6D6D51F652B8EAA_StaticFields, ___Instance_0)); }
inline Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Caster_1_tAEB42C1C02AED929BC1BEC04D98C0DF0C1BEFFC8 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tAEB42C1C02AED929BC1BEC04D98C0DF0C1BEFFC8_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tAEB42C1C02AED929BC1BEC04D98C0DF0C1BEFFC8_StaticFields, ___Instance_0)); }
inline Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.DateTime>
struct Caster_1_tCDE1BC83F41D1B9514A301F4F689ECD00B852E4B : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCDE1BC83F41D1B9514A301F4F689ECD00B852E4B_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCDE1BC83F41D1B9514A301F4F689ECD00B852E4B_StaticFields, ___Instance_0)); }
inline Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.DateTimeOffset>
struct Caster_1_t648D614B6DE9FA1B879A571830C1B8BC23894BC0 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t648D614B6DE9FA1B879A571830C1B8BC23894BC0_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t648D614B6DE9FA1B879A571830C1B8BC23894BC0_StaticFields, ___Instance_0)); }
inline Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Decimal>
struct Caster_1_t4F5F7A38C557F7B9436C5C1F5FF63A6B645F482C : public RuntimeObject
{
public:
public:
};
struct Caster_1_t4F5F7A38C557F7B9436C5C1F5FF63A6B645F482C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t4F5F7A38C557F7B9436C5C1F5FF63A6B645F482C_StaticFields, ___Instance_0)); }
inline Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>
struct Caster_1_t816F760E4CB91E8ED4749C51E1906DAA5FBFCBDD : public RuntimeObject
{
public:
public:
};
struct Caster_1_t816F760E4CB91E8ED4749C51E1906DAA5FBFCBDD_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t816F760E4CB91E8ED4749C51E1906DAA5FBFCBDD_StaticFields, ___Instance_0)); }
inline Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Double>
struct Caster_1_tCA85C27159D944B0FA3E9E3AF4E43F1301C0856A : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCA85C27159D944B0FA3E9E3AF4E43F1301C0856A_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCA85C27159D944B0FA3E9E3AF4E43F1301C0856A_StaticFields, ___Instance_0)); }
inline Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Guid>
struct Caster_1_t32E967508060A04E0F6F4A5A9E516B2751446098 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t32E967508060A04E0F6F4A5A9E516B2751446098_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t32E967508060A04E0F6F4A5A9E516B2751446098_StaticFields, ___Instance_0)); }
inline Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Int16>
struct Caster_1_tF3538AE7B545B5E66C20C4C751A1EAEE76E82FEF : public RuntimeObject
{
public:
public:
};
struct Caster_1_tF3538AE7B545B5E66C20C4C751A1EAEE76E82FEF_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tF3538AE7B545B5E66C20C4C751A1EAEE76E82FEF_StaticFields, ___Instance_0)); }
inline Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Int32>
struct Caster_1_t053E7CA3C6B09080F453D7B9ADCED0B07B7355B2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t053E7CA3C6B09080F453D7B9ADCED0B07B7355B2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t053E7CA3C6B09080F453D7B9ADCED0B07B7355B2_StaticFields, ___Instance_0)); }
inline Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Int64>
struct Caster_1_t3DD97367B1E8C9F032197273CF90E5919C74B518 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3DD97367B1E8C9F032197273CF90E5919C74B518_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3DD97367B1E8C9F032197273CF90E5919C74B518_StaticFields, ___Instance_0)); }
inline Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.IntPtr>
struct Caster_1_t3E5340F9C3D63DE7B3280B37BCD14B25362CC87E : public RuntimeObject
{
public:
public:
};
struct Caster_1_t3E5340F9C3D63DE7B3280B37BCD14B25362CC87E_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t3E5340F9C3D63DE7B3280B37BCD14B25362CC87E_StaticFields, ___Instance_0)); }
inline Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Object>
struct Caster_1_t1C8C6FEDED1BBCC86BF7F183BAAA65A65E37F6B9 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t1C8C6FEDED1BBCC86BF7F183BAAA65A65E37F6B9_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t1C8C6FEDED1BBCC86BF7F183BAAA65A65E37F6B9_StaticFields, ___Instance_0)); }
inline Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.SByte>
struct Caster_1_t261B67D54DDBEE2E45C594357E6132EBCFC20C43 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t261B67D54DDBEE2E45C594357E6132EBCFC20C43_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t261B67D54DDBEE2E45C594357E6132EBCFC20C43_StaticFields, ___Instance_0)); }
inline Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.Single>
struct Caster_1_t758D846F58655E22B936DD8A2DB64283EA3805A2 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t758D846F58655E22B936DD8A2DB64283EA3805A2_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t758D846F58655E22B936DD8A2DB64283EA3805A2_StaticFields, ___Instance_0)); }
inline Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.TimeSpan>
struct Caster_1_t01551B272EDA007DB4640BBDA9745FCD8150E90F : public RuntimeObject
{
public:
public:
};
struct Caster_1_t01551B272EDA007DB4640BBDA9745FCD8150E90F_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t01551B272EDA007DB4640BBDA9745FCD8150E90F_StaticFields, ___Instance_0)); }
inline Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.UInt16>
struct Caster_1_t927662BF5FDD93421514AD6DFF5810834FC65437 : public RuntimeObject
{
public:
public:
};
struct Caster_1_t927662BF5FDD93421514AD6DFF5810834FC65437_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t927662BF5FDD93421514AD6DFF5810834FC65437_StaticFields, ___Instance_0)); }
inline Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.UInt32>
struct Caster_1_t4FBD60419DE1522A1D8D6D26E18CCE6C5CBE862C : public RuntimeObject
{
public:
public:
};
struct Caster_1_t4FBD60419DE1522A1D8D6D26E18CCE6C5CBE862C_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_t4FBD60419DE1522A1D8D6D26E18CCE6C5CBE862C_StaticFields, ___Instance_0)); }
inline Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.UInt64>
struct Caster_1_tCD382BFE18B540FD55BB3D1DE0739E2718F2B9F7 : public RuntimeObject
{
public:
public:
};
struct Caster_1_tCD382BFE18B540FD55BB3D1DE0739E2718F2B9F7_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tCD382BFE18B540FD55BB3D1DE0739E2718F2B9F7_StaticFields, ___Instance_0)); }
inline Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1_Caster`1<System.UInt64,System.UIntPtr>
struct Caster_1_tE9665C2AD78EA0AECF9AA50DC59E256EA789B56B : public RuntimeObject
{
public:
public:
};
struct Caster_1_tE9665C2AD78EA0AECF9AA50DC59E256EA789B56B_StaticFields
{
public:
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<UnderlyingType,ValueType> System.Diagnostics.Tracing.EnumHelper`1_Caster`1::Instance
Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(Caster_1_tE9665C2AD78EA0AECF9AA50DC59E256EA789B56B_StaticFields, ___Instance_0)); }
inline Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 * get_Instance_0() const { return ___Instance_0; }
inline Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.Byte>
struct EnumHelper_1_tCD9C6B46C79CF3B8A9228DF132E8EB369F254C82 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_tCD9C6B46C79CF3B8A9228DF132E8EB369F254C82_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_tCD9C6B46C79CF3B8A9228DF132E8EB369F254C82_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.Int16>
struct EnumHelper_1_t70C30A1B36497D83A015022E6BB524A187CFAFC7 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t70C30A1B36497D83A015022E6BB524A187CFAFC7_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t70C30A1B36497D83A015022E6BB524A187CFAFC7_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.Int32>
struct EnumHelper_1_t26411DBF6873AF1883D85665AA592CC54B8015EB : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t26411DBF6873AF1883D85665AA592CC54B8015EB_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t26411DBF6873AF1883D85665AA592CC54B8015EB_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.Int64>
struct EnumHelper_1_t7766047F041B50F63B0724CEB9FC3DF493563942 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t7766047F041B50F63B0724CEB9FC3DF493563942_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t7766047F041B50F63B0724CEB9FC3DF493563942_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.Object>
struct EnumHelper_1_t13741AF87195F19C45AE0A8104DE3A894D9E78AD : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t13741AF87195F19C45AE0A8104DE3A894D9E78AD_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t13741AF87195F19C45AE0A8104DE3A894D9E78AD_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.SByte>
struct EnumHelper_1_tB725A0B0F692F58B04B5C2851987ED5557FFF3E2 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_tB725A0B0F692F58B04B5C2851987ED5557FFF3E2_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_tB725A0B0F692F58B04B5C2851987ED5557FFF3E2_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>
struct EnumHelper_1_t6CA08F864466AB0FE3C91BD7A9E544E9EDE03759 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t6CA08F864466AB0FE3C91BD7A9E544E9EDE03759_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t6CA08F864466AB0FE3C91BD7A9E544E9EDE03759_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>
struct EnumHelper_1_tB3516ACE0911526FDCCECA27C61B425D83C7F471 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_tB3516ACE0911526FDCCECA27C61B425D83C7F471_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_tB3516ACE0911526FDCCECA27C61B425D83C7F471_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>
struct EnumHelper_1_t1606E7976B4575AE013F57502CAB2A7F55672EB5 : public RuntimeObject
{
public:
public:
};
struct EnumHelper_1_t1606E7976B4575AE013F57502CAB2A7F55672EB5_StaticFields
{
public:
// System.Reflection.MethodInfo System.Diagnostics.Tracing.EnumHelper`1::IdentityInfo
MethodInfo_t * ___IdentityInfo_0;
public:
inline static int32_t get_offset_of_IdentityInfo_0() { return static_cast<int32_t>(offsetof(EnumHelper_1_t1606E7976B4575AE013F57502CAB2A7F55672EB5_StaticFields, ___IdentityInfo_0)); }
inline MethodInfo_t * get_IdentityInfo_0() const { return ___IdentityInfo_0; }
inline MethodInfo_t ** get_address_of_IdentityInfo_0() { return &___IdentityInfo_0; }
inline void set_IdentityInfo_0(MethodInfo_t * value)
{
___IdentityInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IdentityInfo_0), (void*)value);
}
};
// System.EmptyArray`1<System.Char>
struct EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields, ___Value_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_Value_0() const { return ___Value_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>
struct EmptyArray_1_t2F6E359A64FCAE440B259B477121A341730D73D3 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t2F6E359A64FCAE440B259B477121A341730D73D3_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t2F6E359A64FCAE440B259B477121A341730D73D3_StaticFields, ___Value_0)); }
inline KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* get_Value_0() const { return ___Value_0; }
inline KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>
struct EmptyArray_1_tA835F9169F98551C5189EB04F9D45B0E331E6B98 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tA835F9169F98551C5189EB04F9D45B0E331E6B98_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tA835F9169F98551C5189EB04F9D45B0E331E6B98_StaticFields, ___Value_0)); }
inline KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* get_Value_0() const { return ___Value_0; }
inline KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EmptyArray_1_t11B3969D38E2BF74B97BD01F02D6E2583FAA1D8F : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t11B3969D38E2BF74B97BD01F02D6E2583FAA1D8F_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t11B3969D38E2BF74B97BD01F02D6E2583FAA1D8F_StaticFields, ___Value_0)); }
inline KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* get_Value_0() const { return ___Value_0; }
inline KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields, ___Value_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_Value_0() const { return ___Value_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<UnityEngine.XR.ARSubsystems.TrackableId>
struct EmptyArray_1_tFAC80D47380CF944C985C3DA42C121DB6B215319 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tFAC80D47380CF944C985C3DA42C121DB6B215319_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
TrackableIdU5BU5D_t43525AC6688EDA53AF5753025C44F8DC1B33EF6E* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tFAC80D47380CF944C985C3DA42C121DB6B215319_StaticFields, ___Value_0)); }
inline TrackableIdU5BU5D_t43525AC6688EDA53AF5753025C44F8DC1B33EF6E* get_Value_0() const { return ___Value_0; }
inline TrackableIdU5BU5D_t43525AC6688EDA53AF5753025C44F8DC1B33EF6E** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(TrackableIdU5BU5D_t43525AC6688EDA53AF5753025C44F8DC1B33EF6E* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Linq.Enumerable
struct Enumerable_tECC271C86C6E8F72E4E27C7C8FD5DB7B63D5D737 : public RuntimeObject
{
public:
public:
};
// System.Reflection.CustomAttributeData
struct CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88 : public RuntimeObject
{
public:
// System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::ctorInfo
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___ctorInfo_0;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument> System.Reflection.CustomAttributeData::ctorArgs
RuntimeObject* ___ctorArgs_1;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument> System.Reflection.CustomAttributeData::namedArgs
RuntimeObject* ___namedArgs_2;
// System.Reflection.CustomAttributeData_LazyCAttrData System.Reflection.CustomAttributeData::lazyData
LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * ___lazyData_3;
public:
inline static int32_t get_offset_of_ctorInfo_0() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___ctorInfo_0)); }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * get_ctorInfo_0() const { return ___ctorInfo_0; }
inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF ** get_address_of_ctorInfo_0() { return &___ctorInfo_0; }
inline void set_ctorInfo_0(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * value)
{
___ctorInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ctorInfo_0), (void*)value);
}
inline static int32_t get_offset_of_ctorArgs_1() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___ctorArgs_1)); }
inline RuntimeObject* get_ctorArgs_1() const { return ___ctorArgs_1; }
inline RuntimeObject** get_address_of_ctorArgs_1() { return &___ctorArgs_1; }
inline void set_ctorArgs_1(RuntimeObject* value)
{
___ctorArgs_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ctorArgs_1), (void*)value);
}
inline static int32_t get_offset_of_namedArgs_2() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___namedArgs_2)); }
inline RuntimeObject* get_namedArgs_2() const { return ___namedArgs_2; }
inline RuntimeObject** get_address_of_namedArgs_2() { return &___namedArgs_2; }
inline void set_namedArgs_2(RuntimeObject* value)
{
___namedArgs_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namedArgs_2), (void*)value);
}
inline static int32_t get_offset_of_lazyData_3() { return static_cast<int32_t>(offsetof(CustomAttributeData_t2CD9D78F97B6517D5DEE35DEE97159B02C078F88, ___lazyData_3)); }
inline LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * get_lazyData_3() const { return ___lazyData_3; }
inline LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 ** get_address_of_lazyData_3() { return &___lazyData_3; }
inline void set_lazyData_3(LazyCAttrData_t4C5DC81EA7740306D01218D48006034D024FBA38 * value)
{
___lazyData_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lazyData_3), (void*)value);
}
};
// System.Reflection.CustomAttributeExtensions
struct CustomAttributeExtensions_t46E823943384E2B9D2E7A6A492117E1A2331F5D3 : public RuntimeObject
{
public:
public:
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.Runtime.CompilerServices.JitHelpers
struct JitHelpers_t6BCD6CAFCA9C54EDD15CC80B7D7416E8711E8AAB : public RuntimeObject
{
public:
public:
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.Threading.Interlocked
struct Interlocked_tFC2D55B9E6E624D5151A9DC89A50567677F7F433 : public RuntimeObject
{
public:
public:
};
// System.Threading.LazyInitializer
struct LazyInitializer_tFC4C124B28D8DA023D36F3298FC7EA95653CB8A7 : public RuntimeObject
{
public:
public:
};
// System.Threading.Volatile
struct Volatile_tE96815F4BB2ADA7D8E4005AD52AC020C22856632 : public RuntimeObject
{
public:
public:
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility
struct NativeArrayUnsafeUtility_t2B01CE90013CE5874AC6E98925C55FA6C1F5F4BA : public RuntimeObject
{
public:
public:
};
// Unity.Collections.LowLevel.Unsafe.NativeSliceUnsafeUtility
struct NativeSliceUnsafeUtility_tB3605A4284F573BC35D116BDDA1914E2CDC5A062 : public RuntimeObject
{
public:
public:
};
// Unity.Collections.LowLevel.Unsafe.UnsafeUtility
struct UnsafeUtility_t78D5F2C60E6994F1B44020D1B4368BB8DD559AA8 : public RuntimeObject
{
public:
public:
};
// Unity.Collections.NativeSliceExtensions
struct NativeSliceExtensions_tD1D9582E4D51457C6738BB68CB4E5A2234EAA775 : public RuntimeObject
{
public:
public:
};
// Unity.Jobs.IJobExtensions
struct IJobExtensions_t0D416BD0BAAE2577683C1379CC62F29964F4D752 : public RuntimeObject
{
public:
public:
};
// Unity.Jobs.IJobParallelForExtensions
struct IJobParallelForExtensions_tE5A9098E3E7E5F5617857743A369E9BFF53A5479 : public RuntimeObject
{
public:
public:
};
// UnityEngine.AttributeHelperEngine
struct AttributeHelperEngine_t22E0A0A6E68E2DFAFB28B91CC8AFCE4630723601 : public RuntimeObject
{
public:
public:
};
struct AttributeHelperEngine_t22E0A0A6E68E2DFAFB28B91CC8AFCE4630723601_StaticFields
{
public:
// UnityEngine.DisallowMultipleComponent[] UnityEngine.AttributeHelperEngine::_disallowMultipleComponentArray
DisallowMultipleComponentU5BU5D_t59E317D853AAC982D5D18D4C1581422FC151F7E3* ____disallowMultipleComponentArray_0;
// UnityEngine.ExecuteInEditMode[] UnityEngine.AttributeHelperEngine::_executeInEditModeArray
ExecuteInEditModeU5BU5D_tAE8DA030BEBA505907556F161EB49FD565976C80* ____executeInEditModeArray_1;
// UnityEngine.RequireComponent[] UnityEngine.AttributeHelperEngine::_requireComponentArray
RequireComponentU5BU5D_t4295259AA991FCAA75878E4731813266CFC5351D* ____requireComponentArray_2;
public:
inline static int32_t get_offset_of__disallowMultipleComponentArray_0() { return static_cast<int32_t>(offsetof(AttributeHelperEngine_t22E0A0A6E68E2DFAFB28B91CC8AFCE4630723601_StaticFields, ____disallowMultipleComponentArray_0)); }
inline DisallowMultipleComponentU5BU5D_t59E317D853AAC982D5D18D4C1581422FC151F7E3* get__disallowMultipleComponentArray_0() const { return ____disallowMultipleComponentArray_0; }
inline DisallowMultipleComponentU5BU5D_t59E317D853AAC982D5D18D4C1581422FC151F7E3** get_address_of__disallowMultipleComponentArray_0() { return &____disallowMultipleComponentArray_0; }
inline void set__disallowMultipleComponentArray_0(DisallowMultipleComponentU5BU5D_t59E317D853AAC982D5D18D4C1581422FC151F7E3* value)
{
____disallowMultipleComponentArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____disallowMultipleComponentArray_0), (void*)value);
}
inline static int32_t get_offset_of__executeInEditModeArray_1() { return static_cast<int32_t>(offsetof(AttributeHelperEngine_t22E0A0A6E68E2DFAFB28B91CC8AFCE4630723601_StaticFields, ____executeInEditModeArray_1)); }
inline ExecuteInEditModeU5BU5D_tAE8DA030BEBA505907556F161EB49FD565976C80* get__executeInEditModeArray_1() const { return ____executeInEditModeArray_1; }
inline ExecuteInEditModeU5BU5D_tAE8DA030BEBA505907556F161EB49FD565976C80** get_address_of__executeInEditModeArray_1() { return &____executeInEditModeArray_1; }
inline void set__executeInEditModeArray_1(ExecuteInEditModeU5BU5D_tAE8DA030BEBA505907556F161EB49FD565976C80* value)
{
____executeInEditModeArray_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____executeInEditModeArray_1), (void*)value);
}
inline static int32_t get_offset_of__requireComponentArray_2() { return static_cast<int32_t>(offsetof(AttributeHelperEngine_t22E0A0A6E68E2DFAFB28B91CC8AFCE4630723601_StaticFields, ____requireComponentArray_2)); }
inline RequireComponentU5BU5D_t4295259AA991FCAA75878E4731813266CFC5351D* get__requireComponentArray_2() const { return ____requireComponentArray_2; }
inline RequireComponentU5BU5D_t4295259AA991FCAA75878E4731813266CFC5351D** get_address_of__requireComponentArray_2() { return &____requireComponentArray_2; }
inline void set__requireComponentArray_2(RequireComponentU5BU5D_t4295259AA991FCAA75878E4731813266CFC5351D* value)
{
____requireComponentArray_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____requireComponentArray_2), (void*)value);
}
};
// UnityEngine.EventSystems.AbstractEventData
struct AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.EventSystems.AbstractEventData::m_Used
bool ___m_Used_0;
public:
inline static int32_t get_offset_of_m_Used_0() { return static_cast<int32_t>(offsetof(AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6, ___m_Used_0)); }
inline bool get_m_Used_0() const { return ___m_Used_0; }
inline bool* get_address_of_m_Used_0() { return &___m_Used_0; }
inline void set_m_Used_0(bool value)
{
___m_Used_0 = value;
}
};
// UnityEngine.EventSystems.ExecuteEvents
struct ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985 : public RuntimeObject
{
public:
public:
};
struct ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields
{
public:
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerEnterHandler
EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * ___s_PointerEnterHandler_0;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerExitHandler
EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * ___s_PointerExitHandler_1;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerDownHandler
EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * ___s_PointerDownHandler_2;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerUpHandler
EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * ___s_PointerUpHandler_3;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerClickHandler
EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * ___s_PointerClickHandler_4;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_InitializePotentialDragHandler
EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * ___s_InitializePotentialDragHandler_5;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_BeginDragHandler
EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * ___s_BeginDragHandler_6;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_DragHandler
EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * ___s_DragHandler_7;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IEndDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_EndDragHandler
EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * ___s_EndDragHandler_8;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDropHandler> UnityEngine.EventSystems.ExecuteEvents::s_DropHandler
EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * ___s_DropHandler_9;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IScrollHandler> UnityEngine.EventSystems.ExecuteEvents::s_ScrollHandler
EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * ___s_ScrollHandler_10;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler> UnityEngine.EventSystems.ExecuteEvents::s_UpdateSelectedHandler
EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * ___s_UpdateSelectedHandler_11;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ISelectHandler> UnityEngine.EventSystems.ExecuteEvents::s_SelectHandler
EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * ___s_SelectHandler_12;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDeselectHandler> UnityEngine.EventSystems.ExecuteEvents::s_DeselectHandler
EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * ___s_DeselectHandler_13;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IMoveHandler> UnityEngine.EventSystems.ExecuteEvents::s_MoveHandler
EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * ___s_MoveHandler_14;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ISubmitHandler> UnityEngine.EventSystems.ExecuteEvents::s_SubmitHandler
EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * ___s_SubmitHandler_15;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ICancelHandler> UnityEngine.EventSystems.ExecuteEvents::s_CancelHandler
EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * ___s_CancelHandler_16;
// UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>> UnityEngine.EventSystems.ExecuteEvents::s_HandlerListPool
ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC * ___s_HandlerListPool_17;
// System.Collections.Generic.List`1<UnityEngine.Transform> UnityEngine.EventSystems.ExecuteEvents::s_InternalTransformList
List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * ___s_InternalTransformList_18;
public:
inline static int32_t get_offset_of_s_PointerEnterHandler_0() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerEnterHandler_0)); }
inline EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * get_s_PointerEnterHandler_0() const { return ___s_PointerEnterHandler_0; }
inline EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 ** get_address_of_s_PointerEnterHandler_0() { return &___s_PointerEnterHandler_0; }
inline void set_s_PointerEnterHandler_0(EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * value)
{
___s_PointerEnterHandler_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerEnterHandler_0), (void*)value);
}
inline static int32_t get_offset_of_s_PointerExitHandler_1() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerExitHandler_1)); }
inline EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * get_s_PointerExitHandler_1() const { return ___s_PointerExitHandler_1; }
inline EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA ** get_address_of_s_PointerExitHandler_1() { return &___s_PointerExitHandler_1; }
inline void set_s_PointerExitHandler_1(EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * value)
{
___s_PointerExitHandler_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerExitHandler_1), (void*)value);
}
inline static int32_t get_offset_of_s_PointerDownHandler_2() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerDownHandler_2)); }
inline EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * get_s_PointerDownHandler_2() const { return ___s_PointerDownHandler_2; }
inline EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E ** get_address_of_s_PointerDownHandler_2() { return &___s_PointerDownHandler_2; }
inline void set_s_PointerDownHandler_2(EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * value)
{
___s_PointerDownHandler_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerDownHandler_2), (void*)value);
}
inline static int32_t get_offset_of_s_PointerUpHandler_3() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerUpHandler_3)); }
inline EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * get_s_PointerUpHandler_3() const { return ___s_PointerUpHandler_3; }
inline EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 ** get_address_of_s_PointerUpHandler_3() { return &___s_PointerUpHandler_3; }
inline void set_s_PointerUpHandler_3(EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * value)
{
___s_PointerUpHandler_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerUpHandler_3), (void*)value);
}
inline static int32_t get_offset_of_s_PointerClickHandler_4() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerClickHandler_4)); }
inline EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * get_s_PointerClickHandler_4() const { return ___s_PointerClickHandler_4; }
inline EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E ** get_address_of_s_PointerClickHandler_4() { return &___s_PointerClickHandler_4; }
inline void set_s_PointerClickHandler_4(EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * value)
{
___s_PointerClickHandler_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerClickHandler_4), (void*)value);
}
inline static int32_t get_offset_of_s_InitializePotentialDragHandler_5() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_InitializePotentialDragHandler_5)); }
inline EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * get_s_InitializePotentialDragHandler_5() const { return ___s_InitializePotentialDragHandler_5; }
inline EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 ** get_address_of_s_InitializePotentialDragHandler_5() { return &___s_InitializePotentialDragHandler_5; }
inline void set_s_InitializePotentialDragHandler_5(EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * value)
{
___s_InitializePotentialDragHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InitializePotentialDragHandler_5), (void*)value);
}
inline static int32_t get_offset_of_s_BeginDragHandler_6() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_BeginDragHandler_6)); }
inline EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * get_s_BeginDragHandler_6() const { return ___s_BeginDragHandler_6; }
inline EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 ** get_address_of_s_BeginDragHandler_6() { return &___s_BeginDragHandler_6; }
inline void set_s_BeginDragHandler_6(EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * value)
{
___s_BeginDragHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_BeginDragHandler_6), (void*)value);
}
inline static int32_t get_offset_of_s_DragHandler_7() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_DragHandler_7)); }
inline EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * get_s_DragHandler_7() const { return ___s_DragHandler_7; }
inline EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 ** get_address_of_s_DragHandler_7() { return &___s_DragHandler_7; }
inline void set_s_DragHandler_7(EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * value)
{
___s_DragHandler_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DragHandler_7), (void*)value);
}
inline static int32_t get_offset_of_s_EndDragHandler_8() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_EndDragHandler_8)); }
inline EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * get_s_EndDragHandler_8() const { return ___s_EndDragHandler_8; }
inline EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 ** get_address_of_s_EndDragHandler_8() { return &___s_EndDragHandler_8; }
inline void set_s_EndDragHandler_8(EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * value)
{
___s_EndDragHandler_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EndDragHandler_8), (void*)value);
}
inline static int32_t get_offset_of_s_DropHandler_9() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_DropHandler_9)); }
inline EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * get_s_DropHandler_9() const { return ___s_DropHandler_9; }
inline EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 ** get_address_of_s_DropHandler_9() { return &___s_DropHandler_9; }
inline void set_s_DropHandler_9(EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * value)
{
___s_DropHandler_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DropHandler_9), (void*)value);
}
inline static int32_t get_offset_of_s_ScrollHandler_10() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_ScrollHandler_10)); }
inline EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * get_s_ScrollHandler_10() const { return ___s_ScrollHandler_10; }
inline EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A ** get_address_of_s_ScrollHandler_10() { return &___s_ScrollHandler_10; }
inline void set_s_ScrollHandler_10(EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * value)
{
___s_ScrollHandler_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ScrollHandler_10), (void*)value);
}
inline static int32_t get_offset_of_s_UpdateSelectedHandler_11() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_UpdateSelectedHandler_11)); }
inline EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * get_s_UpdateSelectedHandler_11() const { return ___s_UpdateSelectedHandler_11; }
inline EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 ** get_address_of_s_UpdateSelectedHandler_11() { return &___s_UpdateSelectedHandler_11; }
inline void set_s_UpdateSelectedHandler_11(EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * value)
{
___s_UpdateSelectedHandler_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_UpdateSelectedHandler_11), (void*)value);
}
inline static int32_t get_offset_of_s_SelectHandler_12() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_SelectHandler_12)); }
inline EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * get_s_SelectHandler_12() const { return ___s_SelectHandler_12; }
inline EventFunction_1_t7521247C87411935E8A2CA38683533083459473F ** get_address_of_s_SelectHandler_12() { return &___s_SelectHandler_12; }
inline void set_s_SelectHandler_12(EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * value)
{
___s_SelectHandler_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SelectHandler_12), (void*)value);
}
inline static int32_t get_offset_of_s_DeselectHandler_13() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_DeselectHandler_13)); }
inline EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * get_s_DeselectHandler_13() const { return ___s_DeselectHandler_13; }
inline EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 ** get_address_of_s_DeselectHandler_13() { return &___s_DeselectHandler_13; }
inline void set_s_DeselectHandler_13(EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * value)
{
___s_DeselectHandler_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DeselectHandler_13), (void*)value);
}
inline static int32_t get_offset_of_s_MoveHandler_14() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_MoveHandler_14)); }
inline EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * get_s_MoveHandler_14() const { return ___s_MoveHandler_14; }
inline EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB ** get_address_of_s_MoveHandler_14() { return &___s_MoveHandler_14; }
inline void set_s_MoveHandler_14(EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * value)
{
___s_MoveHandler_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_MoveHandler_14), (void*)value);
}
inline static int32_t get_offset_of_s_SubmitHandler_15() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_SubmitHandler_15)); }
inline EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * get_s_SubmitHandler_15() const { return ___s_SubmitHandler_15; }
inline EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B ** get_address_of_s_SubmitHandler_15() { return &___s_SubmitHandler_15; }
inline void set_s_SubmitHandler_15(EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * value)
{
___s_SubmitHandler_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SubmitHandler_15), (void*)value);
}
inline static int32_t get_offset_of_s_CancelHandler_16() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_CancelHandler_16)); }
inline EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * get_s_CancelHandler_16() const { return ___s_CancelHandler_16; }
inline EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 ** get_address_of_s_CancelHandler_16() { return &___s_CancelHandler_16; }
inline void set_s_CancelHandler_16(EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * value)
{
___s_CancelHandler_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_CancelHandler_16), (void*)value);
}
inline static int32_t get_offset_of_s_HandlerListPool_17() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_HandlerListPool_17)); }
inline ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC * get_s_HandlerListPool_17() const { return ___s_HandlerListPool_17; }
inline ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC ** get_address_of_s_HandlerListPool_17() { return &___s_HandlerListPool_17; }
inline void set_s_HandlerListPool_17(ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC * value)
{
___s_HandlerListPool_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_HandlerListPool_17), (void*)value);
}
inline static int32_t get_offset_of_s_InternalTransformList_18() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_InternalTransformList_18)); }
inline List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * get_s_InternalTransformList_18() const { return ___s_InternalTransformList_18; }
inline List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE ** get_address_of_s_InternalTransformList_18() { return &___s_InternalTransformList_18; }
inline void set_s_InternalTransformList_18(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * value)
{
___s_InternalTransformList_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalTransformList_18), (void*)value);
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph
struct RenderGraph_t658E15F42351EE5E92398FC4EF9B25E75AC71042 : public RuntimeObject
{
public:
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph::m_Resources
RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * ___m_Resources_1;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph::m_RenderGraphPool
RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * ___m_RenderGraphPool_2;
// System.Collections.Generic.List`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph::m_RenderPasses
List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 * ___m_RenderPasses_3;
// System.Collections.Generic.List`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph::m_RendererLists
List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A * ___m_RendererLists_4;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphDebugParams UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph::m_DebugParameters
RenderGraphDebugParams_t91BFF8C4DDFB7554599BA1A4441F0D82BB9F6908 * ___m_DebugParameters_5;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphLogger UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph::m_Logger
RenderGraphLogger_t134928C4D6F50853ED77DA1DF486B6C3719A360C * ___m_Logger_6;
public:
inline static int32_t get_offset_of_m_Resources_1() { return static_cast<int32_t>(offsetof(RenderGraph_t658E15F42351EE5E92398FC4EF9B25E75AC71042, ___m_Resources_1)); }
inline RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * get_m_Resources_1() const { return ___m_Resources_1; }
inline RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 ** get_address_of_m_Resources_1() { return &___m_Resources_1; }
inline void set_m_Resources_1(RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * value)
{
___m_Resources_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Resources_1), (void*)value);
}
inline static int32_t get_offset_of_m_RenderGraphPool_2() { return static_cast<int32_t>(offsetof(RenderGraph_t658E15F42351EE5E92398FC4EF9B25E75AC71042, ___m_RenderGraphPool_2)); }
inline RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * get_m_RenderGraphPool_2() const { return ___m_RenderGraphPool_2; }
inline RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 ** get_address_of_m_RenderGraphPool_2() { return &___m_RenderGraphPool_2; }
inline void set_m_RenderGraphPool_2(RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * value)
{
___m_RenderGraphPool_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RenderGraphPool_2), (void*)value);
}
inline static int32_t get_offset_of_m_RenderPasses_3() { return static_cast<int32_t>(offsetof(RenderGraph_t658E15F42351EE5E92398FC4EF9B25E75AC71042, ___m_RenderPasses_3)); }
inline List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 * get_m_RenderPasses_3() const { return ___m_RenderPasses_3; }
inline List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 ** get_address_of_m_RenderPasses_3() { return &___m_RenderPasses_3; }
inline void set_m_RenderPasses_3(List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 * value)
{
___m_RenderPasses_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RenderPasses_3), (void*)value);
}
inline static int32_t get_offset_of_m_RendererLists_4() { return static_cast<int32_t>(offsetof(RenderGraph_t658E15F42351EE5E92398FC4EF9B25E75AC71042, ___m_RendererLists_4)); }
inline List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A * get_m_RendererLists_4() const { return ___m_RendererLists_4; }
inline List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A ** get_address_of_m_RendererLists_4() { return &___m_RendererLists_4; }
inline void set_m_RendererLists_4(List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A * value)
{
___m_RendererLists_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RendererLists_4), (void*)value);
}
inline static int32_t get_offset_of_m_DebugParameters_5() { return static_cast<int32_t>(offsetof(RenderGraph_t658E15F42351EE5E92398FC4EF9B25E75AC71042, ___m_DebugParameters_5)); }
inline RenderGraphDebugParams_t91BFF8C4DDFB7554599BA1A4441F0D82BB9F6908 * get_m_DebugParameters_5() const { return ___m_DebugParameters_5; }
inline RenderGraphDebugParams_t91BFF8C4DDFB7554599BA1A4441F0D82BB9F6908 ** get_address_of_m_DebugParameters_5() { return &___m_DebugParameters_5; }
inline void set_m_DebugParameters_5(RenderGraphDebugParams_t91BFF8C4DDFB7554599BA1A4441F0D82BB9F6908 * value)
{
___m_DebugParameters_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DebugParameters_5), (void*)value);
}
inline static int32_t get_offset_of_m_Logger_6() { return static_cast<int32_t>(offsetof(RenderGraph_t658E15F42351EE5E92398FC4EF9B25E75AC71042, ___m_Logger_6)); }
inline RenderGraphLogger_t134928C4D6F50853ED77DA1DF486B6C3719A360C * get_m_Logger_6() const { return ___m_Logger_6; }
inline RenderGraphLogger_t134928C4D6F50853ED77DA1DF486B6C3719A360C ** get_address_of_m_Logger_6() { return &___m_Logger_6; }
inline void set_m_Logger_6(RenderGraphLogger_t134928C4D6F50853ED77DA1DF486B6C3719A360C * value)
{
___m_Logger_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Logger_6), (void*)value);
}
};
struct RenderGraph_t658E15F42351EE5E92398FC4EF9B25E75AC71042_StaticFields
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph::kMaxMRTCount
int32_t ___kMaxMRTCount_0;
public:
inline static int32_t get_offset_of_kMaxMRTCount_0() { return static_cast<int32_t>(offsetof(RenderGraph_t658E15F42351EE5E92398FC4EF9B25E75AC71042_StaticFields, ___kMaxMRTCount_0)); }
inline int32_t get_kMaxMRTCount_0() const { return ___kMaxMRTCount_0; }
inline int32_t* get_address_of_kMaxMRTCount_0() { return &___kMaxMRTCount_0; }
inline void set_kMaxMRTCount_0(int32_t value)
{
___kMaxMRTCount_0 = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool
struct RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<System.ValueTuple`2<System.Type,System.Int32>,System.Collections.Generic.Stack`1<System.Object>> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool::m_ArrayPool
Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E * ___m_ArrayPool_0;
// System.Collections.Generic.List`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Type,System.Int32>>> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool::m_AllocatedArrays
List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 * ___m_AllocatedArrays_1;
// System.Collections.Generic.List`1<UnityEngine.MaterialPropertyBlock> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool::m_AllocatedMaterialPropertyBlocks
List_1_t9A67E44189F7059A93A2A8AFFAC019B210C1C6DB * ___m_AllocatedMaterialPropertyBlocks_2;
public:
inline static int32_t get_offset_of_m_ArrayPool_0() { return static_cast<int32_t>(offsetof(RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735, ___m_ArrayPool_0)); }
inline Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E * get_m_ArrayPool_0() const { return ___m_ArrayPool_0; }
inline Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E ** get_address_of_m_ArrayPool_0() { return &___m_ArrayPool_0; }
inline void set_m_ArrayPool_0(Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E * value)
{
___m_ArrayPool_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ArrayPool_0), (void*)value);
}
inline static int32_t get_offset_of_m_AllocatedArrays_1() { return static_cast<int32_t>(offsetof(RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735, ___m_AllocatedArrays_1)); }
inline List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 * get_m_AllocatedArrays_1() const { return ___m_AllocatedArrays_1; }
inline List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 ** get_address_of_m_AllocatedArrays_1() { return &___m_AllocatedArrays_1; }
inline void set_m_AllocatedArrays_1(List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 * value)
{
___m_AllocatedArrays_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AllocatedArrays_1), (void*)value);
}
inline static int32_t get_offset_of_m_AllocatedMaterialPropertyBlocks_2() { return static_cast<int32_t>(offsetof(RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735, ___m_AllocatedMaterialPropertyBlocks_2)); }
inline List_1_t9A67E44189F7059A93A2A8AFFAC019B210C1C6DB * get_m_AllocatedMaterialPropertyBlocks_2() const { return ___m_AllocatedMaterialPropertyBlocks_2; }
inline List_1_t9A67E44189F7059A93A2A8AFFAC019B210C1C6DB ** get_address_of_m_AllocatedMaterialPropertyBlocks_2() { return &___m_AllocatedMaterialPropertyBlocks_2; }
inline void set_m_AllocatedMaterialPropertyBlocks_2(List_1_t9A67E44189F7059A93A2A8AFFAC019B210C1C6DB * value)
{
___m_AllocatedMaterialPropertyBlocks_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AllocatedMaterialPropertyBlocks_2), (void*)value);
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool_SharedObjectPool`1<System.Object>
struct SharedObjectPool_1_tF05B8FEBE31C6C7D078AB1AB533B5A030476E586 : public RuntimeObject
{
public:
// System.Collections.Generic.Stack`1<T> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool_SharedObjectPool`1::m_Pool
Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * ___m_Pool_0;
public:
inline static int32_t get_offset_of_m_Pool_0() { return static_cast<int32_t>(offsetof(SharedObjectPool_1_tF05B8FEBE31C6C7D078AB1AB533B5A030476E586, ___m_Pool_0)); }
inline Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * get_m_Pool_0() const { return ___m_Pool_0; }
inline Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 ** get_address_of_m_Pool_0() { return &___m_Pool_0; }
inline void set_m_Pool_0(Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * value)
{
___m_Pool_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Pool_0), (void*)value);
}
};
struct SharedObjectPool_1_tF05B8FEBE31C6C7D078AB1AB533B5A030476E586_StaticFields
{
public:
// System.Lazy`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool_SharedObjectPool`1<T>> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool_SharedObjectPool`1::s_Instance
Lazy_1_t790CD5180B79652AB3F8CEE863BC7FB7AA3142AF * ___s_Instance_1;
public:
inline static int32_t get_offset_of_s_Instance_1() { return static_cast<int32_t>(offsetof(SharedObjectPool_1_tF05B8FEBE31C6C7D078AB1AB533B5A030476E586_StaticFields, ___s_Instance_1)); }
inline Lazy_1_t790CD5180B79652AB3F8CEE863BC7FB7AA3142AF * get_s_Instance_1() const { return ___s_Instance_1; }
inline Lazy_1_t790CD5180B79652AB3F8CEE863BC7FB7AA3142AF ** get_address_of_s_Instance_1() { return &___s_Instance_1; }
inline void set_s_Instance_1(Lazy_1_t790CD5180B79652AB3F8CEE863BC7FB7AA3142AF * value)
{
___s_Instance_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_1), (void*)value);
}
};
// UnityEngine.Rendering.Universal.ShaderData
struct ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8 : public RuntimeObject
{
public:
// UnityEngine.ComputeBuffer UnityEngine.Rendering.Universal.ShaderData::m_LightDataBuffer
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * ___m_LightDataBuffer_1;
// UnityEngine.ComputeBuffer UnityEngine.Rendering.Universal.ShaderData::m_LightIndicesBuffer
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * ___m_LightIndicesBuffer_2;
// UnityEngine.ComputeBuffer UnityEngine.Rendering.Universal.ShaderData::m_ShadowDataBuffer
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * ___m_ShadowDataBuffer_3;
// UnityEngine.ComputeBuffer UnityEngine.Rendering.Universal.ShaderData::m_ShadowIndicesBuffer
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * ___m_ShadowIndicesBuffer_4;
public:
inline static int32_t get_offset_of_m_LightDataBuffer_1() { return static_cast<int32_t>(offsetof(ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8, ___m_LightDataBuffer_1)); }
inline ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * get_m_LightDataBuffer_1() const { return ___m_LightDataBuffer_1; }
inline ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** get_address_of_m_LightDataBuffer_1() { return &___m_LightDataBuffer_1; }
inline void set_m_LightDataBuffer_1(ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * value)
{
___m_LightDataBuffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LightDataBuffer_1), (void*)value);
}
inline static int32_t get_offset_of_m_LightIndicesBuffer_2() { return static_cast<int32_t>(offsetof(ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8, ___m_LightIndicesBuffer_2)); }
inline ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * get_m_LightIndicesBuffer_2() const { return ___m_LightIndicesBuffer_2; }
inline ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** get_address_of_m_LightIndicesBuffer_2() { return &___m_LightIndicesBuffer_2; }
inline void set_m_LightIndicesBuffer_2(ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * value)
{
___m_LightIndicesBuffer_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LightIndicesBuffer_2), (void*)value);
}
inline static int32_t get_offset_of_m_ShadowDataBuffer_3() { return static_cast<int32_t>(offsetof(ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8, ___m_ShadowDataBuffer_3)); }
inline ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * get_m_ShadowDataBuffer_3() const { return ___m_ShadowDataBuffer_3; }
inline ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** get_address_of_m_ShadowDataBuffer_3() { return &___m_ShadowDataBuffer_3; }
inline void set_m_ShadowDataBuffer_3(ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * value)
{
___m_ShadowDataBuffer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ShadowDataBuffer_3), (void*)value);
}
inline static int32_t get_offset_of_m_ShadowIndicesBuffer_4() { return static_cast<int32_t>(offsetof(ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8, ___m_ShadowIndicesBuffer_4)); }
inline ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * get_m_ShadowIndicesBuffer_4() const { return ___m_ShadowIndicesBuffer_4; }
inline ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** get_address_of_m_ShadowIndicesBuffer_4() { return &___m_ShadowIndicesBuffer_4; }
inline void set_m_ShadowIndicesBuffer_4(ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * value)
{
___m_ShadowIndicesBuffer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ShadowIndicesBuffer_4), (void*)value);
}
};
struct ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8_StaticFields
{
public:
// UnityEngine.Rendering.Universal.ShaderData UnityEngine.Rendering.Universal.ShaderData::m_Instance
ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8 * ___m_Instance_0;
public:
inline static int32_t get_offset_of_m_Instance_0() { return static_cast<int32_t>(offsetof(ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8_StaticFields, ___m_Instance_0)); }
inline ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8 * get_m_Instance_0() const { return ___m_Instance_0; }
inline ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8 ** get_address_of_m_Instance_0() { return &___m_Instance_0; }
inline void set_m_Instance_0(ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8 * value)
{
___m_Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Instance_0), (void*)value);
}
};
// UnityEngine.Rendering.VolumeParameter
struct VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.Rendering.VolumeParameter::m_OverrideState
bool ___m_OverrideState_1;
public:
inline static int32_t get_offset_of_m_OverrideState_1() { return static_cast<int32_t>(offsetof(VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978, ___m_OverrideState_1)); }
inline bool get_m_OverrideState_1() const { return ___m_OverrideState_1; }
inline bool* get_address_of_m_OverrideState_1() { return &___m_OverrideState_1; }
inline void set_m_OverrideState_1(bool value)
{
___m_OverrideState_1 = value;
}
};
// UnityEngine.Rendering.VolumeStack
struct VolumeStack_tF9EF843E5DD7B2E39CD76B2C63C26675A66D8E38 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<System.Type,UnityEngine.Rendering.VolumeComponent> UnityEngine.Rendering.VolumeStack::components
Dictionary_2_tE7CD6395B3ED253EE52F48D5B0AB03232DDBD85D * ___components_0;
public:
inline static int32_t get_offset_of_components_0() { return static_cast<int32_t>(offsetof(VolumeStack_tF9EF843E5DD7B2E39CD76B2C63C26675A66D8E38, ___components_0)); }
inline Dictionary_2_tE7CD6395B3ED253EE52F48D5B0AB03232DDBD85D * get_components_0() const { return ___components_0; }
inline Dictionary_2_tE7CD6395B3ED253EE52F48D5B0AB03232DDBD85D ** get_address_of_components_0() { return &___components_0; }
inline void set_components_0(Dictionary_2_tE7CD6395B3ED253EE52F48D5B0AB03232DDBD85D * value)
{
___components_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___components_0), (void*)value);
}
};
// UnityEngine.Resources
struct Resources_t516CB639AA1F373695D285E3F9274C65A70D3935 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.NativeCopyUtility
struct NativeCopyUtility_t829515E8900A8C56970A8DCA18252FF587DA40D1 : public RuntimeObject
{
public:
public:
};
// Mono.Globalization.Unicode.CodePointIndexer_TableRange
struct TableRange_t485CF0807771CC05023466CFCB0AE25C46648100
{
public:
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Start
int32_t ___Start_0;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::End
int32_t ___End_1;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Count
int32_t ___Count_2;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexStart
int32_t ___IndexStart_3;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexEnd
int32_t ___IndexEnd_4;
public:
inline static int32_t get_offset_of_Start_0() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___Start_0)); }
inline int32_t get_Start_0() const { return ___Start_0; }
inline int32_t* get_address_of_Start_0() { return &___Start_0; }
inline void set_Start_0(int32_t value)
{
___Start_0 = value;
}
inline static int32_t get_offset_of_End_1() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___End_1)); }
inline int32_t get_End_1() const { return ___End_1; }
inline int32_t* get_address_of_End_1() { return &___End_1; }
inline void set_End_1(int32_t value)
{
___End_1 = value;
}
inline static int32_t get_offset_of_Count_2() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___Count_2)); }
inline int32_t get_Count_2() const { return ___Count_2; }
inline int32_t* get_address_of_Count_2() { return &___Count_2; }
inline void set_Count_2(int32_t value)
{
___Count_2 = value;
}
inline static int32_t get_offset_of_IndexStart_3() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexStart_3)); }
inline int32_t get_IndexStart_3() const { return ___IndexStart_3; }
inline int32_t* get_address_of_IndexStart_3() { return &___IndexStart_3; }
inline void set_IndexStart_3(int32_t value)
{
___IndexStart_3 = value;
}
inline static int32_t get_offset_of_IndexEnd_4() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexEnd_4)); }
inline int32_t get_IndexEnd_4() const { return ___IndexEnd_4; }
inline int32_t* get_address_of_IndexEnd_4() { return &___IndexEnd_4; }
inline void set_IndexEnd_4(int32_t value)
{
___IndexEnd_4 = value;
}
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>
struct Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
bool ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___value_3)); }
inline bool get_value_3() const { return ___value_3; }
inline bool* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(bool value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Char>
struct Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
Il2CppChar ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___value_3)); }
inline Il2CppChar get_value_3() const { return ___value_3; }
inline Il2CppChar* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(Il2CppChar value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32>
struct Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>
struct Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
int64_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___value_3)); }
inline int64_t get_value_3() const { return ___value_3; }
inline int64_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int64_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>
struct Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>
struct Entry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int64_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB, ___key_2)); }
inline int64_t get_key_2() const { return ___key_2; }
inline int64_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int64_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>
struct Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>
struct Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>
struct Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
uint32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___key_2)); }
inline uint32_t get_key_2() const { return ___key_2; }
inline uint32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>
struct Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
uint32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A, ___key_2)); }
inline uint32_t get_key_2() const { return ___key_2; }
inline uint32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>
struct Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
uint64_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___key_2)); }
inline uint64_t get_key_2() const { return ___key_2; }
inline uint64_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint64_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.HashSet`1_Slot<System.Object>
struct Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279
{
public:
// System.Int32 System.Collections.Generic.HashSet`1_Slot::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.HashSet`1_Slot::next
int32_t ___next_1;
// T System.Collections.Generic.HashSet`1_Slot::value
RuntimeObject * ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___value_2)); }
inline RuntimeObject * get_value_2() const { return ___value_2; }
inline RuntimeObject ** get_address_of_value_2() { return &___value_2; }
inline void set_value_2(RuntimeObject * value)
{
___value_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_2), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>
struct KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
bool ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82, ___value_1)); }
inline bool get_value_1() const { return ___value_1; }
inline bool* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(bool value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>
struct KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Il2CppChar ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F, ___value_1)); }
inline Il2CppChar get_value_1() const { return ___value_1; }
inline Il2CppChar* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Il2CppChar value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>
struct KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>
struct KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int64_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5, ___value_1)); }
inline int64_t get_value_1() const { return ___value_1; }
inline int64_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int64_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>
struct KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>
struct KeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int64_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA, ___key_0)); }
inline int64_t get_key_0() const { return ___key_0; }
inline int64_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int64_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>
struct KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>
struct KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C, ___key_0)); }
inline uint32_t get_key_0() const { return ___key_0; }
inline uint32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>
struct KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67, ___key_0)); }
inline uint32_t get_key_0() const { return ___key_0; }
inline uint32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>
struct KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint64_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4, ___key_0)); }
inline uint64_t get_key_0() const { return ___key_0; }
inline uint64_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint64_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Hashtable_bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083
{
public:
// System.Object System.Collections.Hashtable_bucket::key
RuntimeObject * ___key_0;
// System.Object System.Collections.Hashtable_bucket::val
RuntimeObject * ___val_1;
// System.Int32 System.Collections.Hashtable_bucket::hash_coll
int32_t ___hash_coll_2;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_val_1() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___val_1)); }
inline RuntimeObject * get_val_1() const { return ___val_1; }
inline RuntimeObject ** get_address_of_val_1() { return &___val_1; }
inline void set_val_1(RuntimeObject * value)
{
___val_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___val_1), (void*)value);
}
inline static int32_t get_offset_of_hash_coll_2() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___hash_coll_2)); }
inline int32_t get_hash_coll_2() const { return ___hash_coll_2; }
inline int32_t* get_address_of_hash_coll_2() { return &___hash_coll_2; }
inline void set_hash_coll_2(int32_t value)
{
___hash_coll_2 = value;
}
};
// Native definition for P/Invoke marshalling of System.Collections.Hashtable/bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___val_1;
int32_t ___hash_coll_2;
};
// Native definition for COM marshalling of System.Collections.Hashtable/bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___val_1;
int32_t ___hash_coll_2;
};
// System.DateTime
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132
{
public:
// System.UInt64 System.DateTime::dateData
uint64_t ___dateData_44;
public:
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); }
inline uint64_t get_dateData_44() const { return ___dateData_44; }
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
inline void set_dateData_44(uint64_t value)
{
___dateData_44 = value;
}
};
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MaxValue_32 = value;
}
};
// System.Decimal
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8
{
public:
// System.Int32 System.Decimal::flags
int32_t ___flags_14;
// System.Int32 System.Decimal::hi
int32_t ___hi_15;
// System.Int32 System.Decimal::lo
int32_t ___lo_16;
// System.Int32 System.Decimal::mid
int32_t ___mid_17;
public:
inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); }
inline int32_t get_flags_14() const { return ___flags_14; }
inline int32_t* get_address_of_flags_14() { return &___flags_14; }
inline void set_flags_14(int32_t value)
{
___flags_14 = value;
}
inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); }
inline int32_t get_hi_15() const { return ___hi_15; }
inline int32_t* get_address_of_hi_15() { return &___hi_15; }
inline void set_hi_15(int32_t value)
{
___hi_15 = value;
}
inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); }
inline int32_t get_lo_16() const { return ___lo_16; }
inline int32_t* get_address_of_lo_16() { return &___lo_16; }
inline void set_lo_16(int32_t value)
{
___lo_16 = value;
}
inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); }
inline int32_t get_mid_17() const { return ___mid_17; }
inline int32_t* get_address_of_mid_17() { return &___mid_17; }
inline void set_mid_17(int32_t value)
{
___mid_17 = value;
}
};
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___Powers10_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value);
}
inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearPositiveZero_13 = value;
}
};
// System.Diagnostics.Tracing.EmptyStruct
struct EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082
{
public:
union
{
struct
{
};
uint8_t EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082__padding[1];
};
public:
};
// System.Diagnostics.Tracing.EventDescriptor
struct EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 System.Diagnostics.Tracing.EventDescriptor::m_traceloggingId
int32_t ___m_traceloggingId_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_traceloggingId_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_id
uint16_t ___m_id_1;
};
#pragma pack(pop, tp)
struct
{
uint16_t ___m_id_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_version_2_OffsetPadding[2];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_version
uint8_t ___m_version_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_version_2_OffsetPadding_forAlignmentOnly[2];
uint8_t ___m_version_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_channel_3_OffsetPadding[3];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_channel
uint8_t ___m_channel_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_channel_3_OffsetPadding_forAlignmentOnly[3];
uint8_t ___m_channel_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_level_4_OffsetPadding[4];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_level
uint8_t ___m_level_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_level_4_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_level_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_opcode_5_OffsetPadding[5];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_opcode
uint8_t ___m_opcode_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_opcode_5_OffsetPadding_forAlignmentOnly[5];
uint8_t ___m_opcode_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_task_6_OffsetPadding[6];
// System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_task
uint16_t ___m_task_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_task_6_OffsetPadding_forAlignmentOnly[6];
uint16_t ___m_task_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_keywords_7_OffsetPadding[8];
// System.Int64 System.Diagnostics.Tracing.EventDescriptor::m_keywords
int64_t ___m_keywords_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_keywords_7_OffsetPadding_forAlignmentOnly[8];
int64_t ___m_keywords_7_forAlignmentOnly;
};
};
};
uint8_t EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E__padding[16];
};
public:
inline static int32_t get_offset_of_m_traceloggingId_0() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_traceloggingId_0)); }
inline int32_t get_m_traceloggingId_0() const { return ___m_traceloggingId_0; }
inline int32_t* get_address_of_m_traceloggingId_0() { return &___m_traceloggingId_0; }
inline void set_m_traceloggingId_0(int32_t value)
{
___m_traceloggingId_0 = value;
}
inline static int32_t get_offset_of_m_id_1() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_id_1)); }
inline uint16_t get_m_id_1() const { return ___m_id_1; }
inline uint16_t* get_address_of_m_id_1() { return &___m_id_1; }
inline void set_m_id_1(uint16_t value)
{
___m_id_1 = value;
}
inline static int32_t get_offset_of_m_version_2() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_version_2)); }
inline uint8_t get_m_version_2() const { return ___m_version_2; }
inline uint8_t* get_address_of_m_version_2() { return &___m_version_2; }
inline void set_m_version_2(uint8_t value)
{
___m_version_2 = value;
}
inline static int32_t get_offset_of_m_channel_3() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_channel_3)); }
inline uint8_t get_m_channel_3() const { return ___m_channel_3; }
inline uint8_t* get_address_of_m_channel_3() { return &___m_channel_3; }
inline void set_m_channel_3(uint8_t value)
{
___m_channel_3 = value;
}
inline static int32_t get_offset_of_m_level_4() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_level_4)); }
inline uint8_t get_m_level_4() const { return ___m_level_4; }
inline uint8_t* get_address_of_m_level_4() { return &___m_level_4; }
inline void set_m_level_4(uint8_t value)
{
___m_level_4 = value;
}
inline static int32_t get_offset_of_m_opcode_5() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_opcode_5)); }
inline uint8_t get_m_opcode_5() const { return ___m_opcode_5; }
inline uint8_t* get_address_of_m_opcode_5() { return &___m_opcode_5; }
inline void set_m_opcode_5(uint8_t value)
{
___m_opcode_5 = value;
}
inline static int32_t get_offset_of_m_task_6() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_task_6)); }
inline uint16_t get_m_task_6() const { return ___m_task_6; }
inline uint16_t* get_address_of_m_task_6() { return &___m_task_6; }
inline void set_m_task_6(uint16_t value)
{
___m_task_6 = value;
}
inline static int32_t get_offset_of_m_keywords_7() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_keywords_7)); }
inline int64_t get_m_keywords_7() const { return ___m_keywords_7; }
inline int64_t* get_address_of_m_keywords_7() { return &___m_keywords_7; }
inline void set_m_keywords_7(int64_t value)
{
___m_keywords_7 = value;
}
};
// System.Diagnostics.Tracing.EventProvider_SessionInfo
struct SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A
{
public:
// System.Int32 System.Diagnostics.Tracing.EventProvider_SessionInfo::sessionIdBit
int32_t ___sessionIdBit_0;
// System.Int32 System.Diagnostics.Tracing.EventProvider_SessionInfo::etwSessionId
int32_t ___etwSessionId_1;
public:
inline static int32_t get_offset_of_sessionIdBit_0() { return static_cast<int32_t>(offsetof(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A, ___sessionIdBit_0)); }
inline int32_t get_sessionIdBit_0() const { return ___sessionIdBit_0; }
inline int32_t* get_address_of_sessionIdBit_0() { return &___sessionIdBit_0; }
inline void set_sessionIdBit_0(int32_t value)
{
___sessionIdBit_0 = value;
}
inline static int32_t get_offset_of_etwSessionId_1() { return static_cast<int32_t>(offsetof(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A, ___etwSessionId_1)); }
inline int32_t get_etwSessionId_1() const { return ___etwSessionId_1; }
inline int32_t* get_address_of_etwSessionId_1() { return &___etwSessionId_1; }
inline void set_etwSessionId_1(int32_t value)
{
___etwSessionId_1 = value;
}
};
// System.Double
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409
{
public:
// System.Double System.Double::m_value
double ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); }
inline double get_m_value_0() const { return ___m_value_0; }
inline double* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(double value)
{
___m_value_0 = value;
}
};
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields
{
public:
// System.Double System.Double::NegativeZero
double ___NegativeZero_7;
public:
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); }
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
inline void set_NegativeZero_7(double value)
{
___NegativeZero_7 = value;
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4
{
public:
// System.UInt16 System.Globalization.InternalCodePageDataItem::codePage
uint16_t ___codePage_0;
// System.UInt16 System.Globalization.InternalCodePageDataItem::uiFamilyCodePage
uint16_t ___uiFamilyCodePage_1;
// System.UInt32 System.Globalization.InternalCodePageDataItem::flags
uint32_t ___flags_2;
// System.String System.Globalization.InternalCodePageDataItem::Names
String_t* ___Names_3;
public:
inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___codePage_0)); }
inline uint16_t get_codePage_0() const { return ___codePage_0; }
inline uint16_t* get_address_of_codePage_0() { return &___codePage_0; }
inline void set_codePage_0(uint16_t value)
{
___codePage_0 = value;
}
inline static int32_t get_offset_of_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___uiFamilyCodePage_1)); }
inline uint16_t get_uiFamilyCodePage_1() const { return ___uiFamilyCodePage_1; }
inline uint16_t* get_address_of_uiFamilyCodePage_1() { return &___uiFamilyCodePage_1; }
inline void set_uiFamilyCodePage_1(uint16_t value)
{
___uiFamilyCodePage_1 = value;
}
inline static int32_t get_offset_of_flags_2() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___flags_2)); }
inline uint32_t get_flags_2() const { return ___flags_2; }
inline uint32_t* get_address_of_flags_2() { return &___flags_2; }
inline void set_flags_2(uint32_t value)
{
___flags_2 = value;
}
inline static int32_t get_offset_of_Names_3() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___Names_3)); }
inline String_t* get_Names_3() const { return ___Names_3; }
inline String_t** get_address_of_Names_3() { return &___Names_3; }
inline void set_Names_3(String_t* value)
{
___Names_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Names_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_pinvoke
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
char* ___Names_3;
};
// Native definition for COM marshalling of System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_com
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
Il2CppChar* ___Names_3;
};
// System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211
{
public:
// System.String System.Globalization.InternalEncodingDataItem::webName
String_t* ___webName_0;
// System.UInt16 System.Globalization.InternalEncodingDataItem::codePage
uint16_t ___codePage_1;
public:
inline static int32_t get_offset_of_webName_0() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___webName_0)); }
inline String_t* get_webName_0() const { return ___webName_0; }
inline String_t** get_address_of_webName_0() { return &___webName_0; }
inline void set_webName_0(String_t* value)
{
___webName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___webName_0), (void*)value);
}
inline static int32_t get_offset_of_codePage_1() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___codePage_1)); }
inline uint16_t get_codePage_1() const { return ___codePage_1; }
inline uint16_t* get_address_of_codePage_1() { return &___codePage_1; }
inline void set_codePage_1(uint16_t value)
{
___codePage_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_pinvoke
{
char* ___webName_0;
uint16_t ___codePage_1;
};
// Native definition for COM marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_com
{
Il2CppChar* ___webName_0;
uint16_t ___codePage_1;
};
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____fastRng_14;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__fastRng_14() const { return ____fastRng_14; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__fastRng_14() { return &____fastRng_14; }
inline void set__fastRng_14(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____fastRng_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value);
}
};
// System.Int16
struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D
{
public:
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); }
inline int16_t get_m_value_0() const { return ___m_value_0; }
inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int16_t value)
{
___m_value_0 = value;
}
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.Linq.Buffer`1<System.Int32>
struct Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2
{
public:
// TElement[] System.Linq.Buffer`1::items
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___items_0;
// System.Int32 System.Linq.Buffer`1::count
int32_t ___count_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2, ___items_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_items_0() const { return ___items_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
};
// System.Linq.Buffer`1<System.Object>
struct Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C
{
public:
// TElement[] System.Linq.Buffer`1::items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items_0;
// System.Int32 System.Linq.Buffer`1::count
int32_t ___count_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C, ___items_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_items_0() const { return ___items_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
};
// System.Linq.Buffer`1<System.UInt32>
struct Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247
{
public:
// TElement[] System.Linq.Buffer`1::items
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___items_0;
// System.Int32 System.Linq.Buffer`1::count
int32_t ___count_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247, ___items_0)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_items_0() const { return ___items_0; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
};
// System.Linq.Buffer`1<UnityEngine.Color>
struct Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604
{
public:
// TElement[] System.Linq.Buffer`1::items
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* ___items_0;
// System.Int32 System.Linq.Buffer`1::count
int32_t ___count_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604, ___items_0)); }
inline ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* get_items_0() const { return ___items_0; }
inline ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
};
// System.Linq.Buffer`1<UnityEngine.Vector3>
struct Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169
{
public:
// TElement[] System.Linq.Buffer`1::items
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___items_0;
// System.Int32 System.Linq.Buffer`1::count
int32_t ___count_1;
public:
inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169, ___items_0)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_items_0() const { return ___items_0; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_items_0() { return &___items_0; }
inline void set_items_0(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
};
// System.Linq.Set`1_Slot<System.Object>
struct Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55
{
public:
// System.Int32 System.Linq.Set`1_Slot::hashCode
int32_t ___hashCode_0;
// TElement System.Linq.Set`1_Slot::value
RuntimeObject * ___value_1;
// System.Int32 System.Linq.Set`1_Slot::next
int32_t ___next_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
inline static int32_t get_offset_of_next_2() { return static_cast<int32_t>(offsetof(Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55, ___next_2)); }
inline int32_t get_next_2() const { return ___next_2; }
inline int32_t* get_address_of_next_2() { return &___next_2; }
inline void set_next_2(int32_t value)
{
___next_2 = value;
}
};
// System.ParameterizedStrings_FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800
{
public:
// System.Int32 System.ParameterizedStrings_FormatParam::_int32
int32_t ____int32_0;
// System.String System.ParameterizedStrings_FormatParam::_string
String_t* ____string_1;
public:
inline static int32_t get_offset_of__int32_0() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____int32_0)); }
inline int32_t get__int32_0() const { return ____int32_0; }
inline int32_t* get_address_of__int32_0() { return &____int32_0; }
inline void set__int32_0(int32_t value)
{
____int32_0 = value;
}
inline static int32_t get_offset_of__string_1() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____string_1)); }
inline String_t* get__string_1() const { return ____string_1; }
inline String_t** get_address_of__string_1() { return &____string_1; }
inline void set__string_1(String_t* value)
{
____string_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____string_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_pinvoke
{
int32_t ____int32_0;
char* ____string_1;
};
// Native definition for COM marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_com
{
int32_t ____int32_0;
Il2CppChar* ____string_1;
};
// System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8
{
public:
// System.Type System.Reflection.CustomAttributeTypedArgument::argumentType
Type_t * ___argumentType_0;
// System.Object System.Reflection.CustomAttributeTypedArgument::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___argumentType_0)); }
inline Type_t * get_argumentType_0() const { return ___argumentType_0; }
inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; }
inline void set_argumentType_0(Type_t * value)
{
___argumentType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___argumentType_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0;
public:
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; }
inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
____byRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com
{
int32_t* ____byRef_0;
};
// System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C
{
public:
// System.Object System.Resources.ResourceLocator::_value
RuntimeObject * ____value_0;
// System.Int32 System.Resources.ResourceLocator::_dataPos
int32_t ____dataPos_1;
public:
inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____value_0)); }
inline RuntimeObject * get__value_0() const { return ____value_0; }
inline RuntimeObject ** get_address_of__value_0() { return &____value_0; }
inline void set__value_0(RuntimeObject * value)
{
____value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value);
}
inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____dataPos_1)); }
inline int32_t get__dataPos_1() const { return ____dataPos_1; }
inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; }
inline void set__dataPos_1(int32_t value)
{
____dataPos_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_pinvoke
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// Native definition for COM marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_com
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA
{
public:
// System.Object System.Runtime.CompilerServices.Ephemeron::key
RuntimeObject * ___key_0;
// System.Object System.Runtime.CompilerServices.Ephemeron::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = value;
}
};
// System.SByte
struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF
{
public:
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); }
inline int8_t get_m_value_0() const { return ___m_value_0; }
inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int8_t value)
{
___m_value_0 = value;
}
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B
{
public:
// System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMin
Il2CppChar ____chMin_0;
// System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMax
Il2CppChar ____chMax_1;
// System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_lcOp
int32_t ____lcOp_2;
// System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_data
int32_t ____data_3;
public:
inline static int32_t get_offset_of__chMin_0() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMin_0)); }
inline Il2CppChar get__chMin_0() const { return ____chMin_0; }
inline Il2CppChar* get_address_of__chMin_0() { return &____chMin_0; }
inline void set__chMin_0(Il2CppChar value)
{
____chMin_0 = value;
}
inline static int32_t get_offset_of__chMax_1() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMax_1)); }
inline Il2CppChar get__chMax_1() const { return ____chMax_1; }
inline Il2CppChar* get_address_of__chMax_1() { return &____chMax_1; }
inline void set__chMax_1(Il2CppChar value)
{
____chMax_1 = value;
}
inline static int32_t get_offset_of__lcOp_2() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____lcOp_2)); }
inline int32_t get__lcOp_2() const { return ____lcOp_2; }
inline int32_t* get_address_of__lcOp_2() { return &____lcOp_2; }
inline void set__lcOp_2(int32_t value)
{
____lcOp_2 = value;
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____data_3)); }
inline int32_t get__data_3() const { return ____data_3; }
inline int32_t* get_address_of__data_3() { return &____data_3; }
inline void set__data_3(int32_t value)
{
____data_3 = value;
}
};
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_pinvoke
{
uint8_t ____chMin_0;
uint8_t ____chMax_1;
int32_t ____lcOp_2;
int32_t ____data_3;
};
// Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_com
{
uint8_t ____chMin_0;
uint8_t ____chMax_1;
int32_t ____lcOp_2;
int32_t ____data_3;
};
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source
SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * ___m_source_0;
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index
int32_t ___m_index_1;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_source_0)); }
inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * get_m_source_0() const { return ___m_source_0; }
inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value);
}
inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_index_1)); }
inline int32_t get_m_index_1() const { return ___m_index_1; }
inline int32_t* get_address_of_m_index_1() { return &___m_index_1; }
inline void set_m_index_1(int32_t value)
{
___m_index_1 = value;
}
};
// System.UInt16
struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E
{
public:
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); }
inline uint16_t get_m_value_0() const { return ___m_value_0; }
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint16_t value)
{
___m_value_0 = value;
}
};
// System.UInt32
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
// System.UIntPtr
struct UIntPtr_t
{
public:
// System.Void* System.UIntPtr::_pointer
void* ____pointer_1;
public:
inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); }
inline void* get__pointer_1() const { return ____pointer_1; }
inline void** get_address_of__pointer_1() { return &____pointer_1; }
inline void set__pointer_1(void* value)
{
____pointer_1 = value;
}
};
struct UIntPtr_t_StaticFields
{
public:
// System.UIntPtr System.UIntPtr::Zero
uintptr_t ___Zero_0;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); }
inline uintptr_t get_Zero_0() const { return ___Zero_0; }
inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(uintptr_t value)
{
___Zero_0 = value;
}
};
// System.ValueTuple`2<System.Int32,System.Object>
struct ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6
{
public:
// T1 System.ValueTuple`2::Item1
int32_t ___Item1_0;
// T2 System.ValueTuple`2::Item2
RuntimeObject * ___Item2_1;
public:
inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6, ___Item1_0)); }
inline int32_t get_Item1_0() const { return ___Item1_0; }
inline int32_t* get_address_of_Item1_0() { return &___Item1_0; }
inline void set_Item1_0(int32_t value)
{
___Item1_0 = value;
}
inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6, ___Item2_1)); }
inline RuntimeObject * get_Item2_1() const { return ___Item2_1; }
inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; }
inline void set_Item2_1(RuntimeObject * value)
{
___Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value);
}
};
// System.ValueTuple`2<System.Object,System.Int32>
struct ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F
{
public:
// T1 System.ValueTuple`2::Item1
RuntimeObject * ___Item1_0;
// T2 System.ValueTuple`2::Item2
int32_t ___Item2_1;
public:
inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F, ___Item1_0)); }
inline RuntimeObject * get_Item1_0() const { return ___Item1_0; }
inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; }
inline void set_Item1_0(RuntimeObject * value)
{
___Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value);
}
inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F, ___Item2_1)); }
inline int32_t get_Item2_1() const { return ___Item2_1; }
inline int32_t* get_address_of_Item2_1() { return &___Item2_1; }
inline void set_Item2_1(int32_t value)
{
___Item2_1 = value;
}
};
// System.ValueTuple`2<System.Type,System.Int32>
struct ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88
{
public:
// T1 System.ValueTuple`2::Item1
Type_t * ___Item1_0;
// T2 System.ValueTuple`2::Item2
int32_t ___Item2_1;
public:
inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88, ___Item1_0)); }
inline Type_t * get_Item1_0() const { return ___Item1_0; }
inline Type_t ** get_address_of_Item1_0() { return &___Item1_0; }
inline void set_Item1_0(Type_t * value)
{
___Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value);
}
inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88, ___Item2_1)); }
inline int32_t get_Item2_1() const { return ___Item2_1; }
inline int32_t* get_address_of_Item2_1() { return &___Item2_1; }
inline void set_Item2_1(int32_t value)
{
___Item2_1 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// TMPro.MaterialReference
struct MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F
{
public:
// System.Int32 TMPro.MaterialReference::index
int32_t ___index_0;
// TMPro.TMP_FontAsset TMPro.MaterialReference::fontAsset
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_1;
// TMPro.TMP_SpriteAsset TMPro.MaterialReference::spriteAsset
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_2;
// UnityEngine.Material TMPro.MaterialReference::material
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_3;
// System.Boolean TMPro.MaterialReference::isDefaultMaterial
bool ___isDefaultMaterial_4;
// System.Boolean TMPro.MaterialReference::isFallbackMaterial
bool ___isFallbackMaterial_5;
// UnityEngine.Material TMPro.MaterialReference::fallbackMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___fallbackMaterial_6;
// System.Single TMPro.MaterialReference::padding
float ___padding_7;
// System.Int32 TMPro.MaterialReference::referenceCount
int32_t ___referenceCount_8;
public:
inline static int32_t get_offset_of_index_0() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___index_0)); }
inline int32_t get_index_0() const { return ___index_0; }
inline int32_t* get_address_of_index_0() { return &___index_0; }
inline void set_index_0(int32_t value)
{
___index_0 = value;
}
inline static int32_t get_offset_of_fontAsset_1() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___fontAsset_1)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_fontAsset_1() const { return ___fontAsset_1; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_fontAsset_1() { return &___fontAsset_1; }
inline void set_fontAsset_1(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___fontAsset_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fontAsset_1), (void*)value);
}
inline static int32_t get_offset_of_spriteAsset_2() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___spriteAsset_2)); }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * get_spriteAsset_2() const { return ___spriteAsset_2; }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 ** get_address_of_spriteAsset_2() { return &___spriteAsset_2; }
inline void set_spriteAsset_2(TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * value)
{
___spriteAsset_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___spriteAsset_2), (void*)value);
}
inline static int32_t get_offset_of_material_3() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___material_3)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_material_3() const { return ___material_3; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_material_3() { return &___material_3; }
inline void set_material_3(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___material_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___material_3), (void*)value);
}
inline static int32_t get_offset_of_isDefaultMaterial_4() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___isDefaultMaterial_4)); }
inline bool get_isDefaultMaterial_4() const { return ___isDefaultMaterial_4; }
inline bool* get_address_of_isDefaultMaterial_4() { return &___isDefaultMaterial_4; }
inline void set_isDefaultMaterial_4(bool value)
{
___isDefaultMaterial_4 = value;
}
inline static int32_t get_offset_of_isFallbackMaterial_5() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___isFallbackMaterial_5)); }
inline bool get_isFallbackMaterial_5() const { return ___isFallbackMaterial_5; }
inline bool* get_address_of_isFallbackMaterial_5() { return &___isFallbackMaterial_5; }
inline void set_isFallbackMaterial_5(bool value)
{
___isFallbackMaterial_5 = value;
}
inline static int32_t get_offset_of_fallbackMaterial_6() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___fallbackMaterial_6)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_fallbackMaterial_6() const { return ___fallbackMaterial_6; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_fallbackMaterial_6() { return &___fallbackMaterial_6; }
inline void set_fallbackMaterial_6(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___fallbackMaterial_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fallbackMaterial_6), (void*)value);
}
inline static int32_t get_offset_of_padding_7() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___padding_7)); }
inline float get_padding_7() const { return ___padding_7; }
inline float* get_address_of_padding_7() { return &___padding_7; }
inline void set_padding_7(float value)
{
___padding_7 = value;
}
inline static int32_t get_offset_of_referenceCount_8() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___referenceCount_8)); }
inline int32_t get_referenceCount_8() const { return ___referenceCount_8; }
inline int32_t* get_address_of_referenceCount_8() { return &___referenceCount_8; }
inline void set_referenceCount_8(int32_t value)
{
___referenceCount_8 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.MaterialReference
struct MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_marshaled_pinvoke
{
int32_t ___index_0;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_1;
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_2;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_3;
int32_t ___isDefaultMaterial_4;
int32_t ___isFallbackMaterial_5;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___fallbackMaterial_6;
float ___padding_7;
int32_t ___referenceCount_8;
};
// Native definition for COM marshalling of TMPro.MaterialReference
struct MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_marshaled_com
{
int32_t ___index_0;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_1;
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_2;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_3;
int32_t ___isDefaultMaterial_4;
int32_t ___isFallbackMaterial_5;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___fallbackMaterial_6;
float ___padding_7;
int32_t ___referenceCount_8;
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame
struct SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04
{
public:
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::x
float ___x_0;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::y
float ___y_1;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::w
float ___w_2;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::h
float ___h_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
inline static int32_t get_offset_of_w_2() { return static_cast<int32_t>(offsetof(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___w_2)); }
inline float get_w_2() const { return ___w_2; }
inline float* get_address_of_w_2() { return &___w_2; }
inline void set_w_2(float value)
{
___w_2 = value;
}
inline static int32_t get_offset_of_h_3() { return static_cast<int32_t>(offsetof(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___h_3)); }
inline float get_h_3() const { return ___h_3; }
inline float* get_address_of_h_3() { return &___h_3; }
inline void set_h_3(float value)
{
___h_3 = value;
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize
struct SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E
{
public:
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize::w
float ___w_0;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize::h
float ___h_1;
public:
inline static int32_t get_offset_of_w_0() { return static_cast<int32_t>(offsetof(SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E, ___w_0)); }
inline float get_w_0() const { return ___w_0; }
inline float* get_address_of_w_0() { return &___w_0; }
inline void set_w_0(float value)
{
___w_0 = value;
}
inline static int32_t get_offset_of_h_1() { return static_cast<int32_t>(offsetof(SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E, ___h_1)); }
inline float get_h_1() const { return ___h_1; }
inline float* get_address_of_h_1() { return &___h_1; }
inline void set_h_1(float value)
{
___h_1 = value;
}
};
// TMPro.TMP_FontWeightPair
struct TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3
{
public:
// TMPro.TMP_FontAsset TMPro.TMP_FontWeightPair::regularTypeface
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___regularTypeface_0;
// TMPro.TMP_FontAsset TMPro.TMP_FontWeightPair::italicTypeface
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___italicTypeface_1;
public:
inline static int32_t get_offset_of_regularTypeface_0() { return static_cast<int32_t>(offsetof(TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3, ___regularTypeface_0)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_regularTypeface_0() const { return ___regularTypeface_0; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_regularTypeface_0() { return &___regularTypeface_0; }
inline void set_regularTypeface_0(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___regularTypeface_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___regularTypeface_0), (void*)value);
}
inline static int32_t get_offset_of_italicTypeface_1() { return static_cast<int32_t>(offsetof(TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3, ___italicTypeface_1)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_italicTypeface_1() const { return ___italicTypeface_1; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_italicTypeface_1() { return &___italicTypeface_1; }
inline void set_italicTypeface_1(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___italicTypeface_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___italicTypeface_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of TMPro.TMP_FontWeightPair
struct TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_marshaled_pinvoke
{
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___regularTypeface_0;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___italicTypeface_1;
};
// Native definition for COM marshalling of TMPro.TMP_FontWeightPair
struct TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_marshaled_com
{
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___regularTypeface_0;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___italicTypeface_1;
};
// TMPro.TMP_LinkInfo
struct TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468
{
public:
// TMPro.TMP_Text TMPro.TMP_LinkInfo::textComponent
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
// System.Int32 TMPro.TMP_LinkInfo::hashCode
int32_t ___hashCode_1;
// System.Int32 TMPro.TMP_LinkInfo::linkIdFirstCharacterIndex
int32_t ___linkIdFirstCharacterIndex_2;
// System.Int32 TMPro.TMP_LinkInfo::linkIdLength
int32_t ___linkIdLength_3;
// System.Int32 TMPro.TMP_LinkInfo::linkTextfirstCharacterIndex
int32_t ___linkTextfirstCharacterIndex_4;
// System.Int32 TMPro.TMP_LinkInfo::linkTextLength
int32_t ___linkTextLength_5;
// System.Char[] TMPro.TMP_LinkInfo::linkID
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___linkID_6;
public:
inline static int32_t get_offset_of_textComponent_0() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___textComponent_0)); }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * get_textComponent_0() const { return ___textComponent_0; }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 ** get_address_of_textComponent_0() { return &___textComponent_0; }
inline void set_textComponent_0(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * value)
{
___textComponent_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textComponent_0), (void*)value);
}
inline static int32_t get_offset_of_hashCode_1() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___hashCode_1)); }
inline int32_t get_hashCode_1() const { return ___hashCode_1; }
inline int32_t* get_address_of_hashCode_1() { return &___hashCode_1; }
inline void set_hashCode_1(int32_t value)
{
___hashCode_1 = value;
}
inline static int32_t get_offset_of_linkIdFirstCharacterIndex_2() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___linkIdFirstCharacterIndex_2)); }
inline int32_t get_linkIdFirstCharacterIndex_2() const { return ___linkIdFirstCharacterIndex_2; }
inline int32_t* get_address_of_linkIdFirstCharacterIndex_2() { return &___linkIdFirstCharacterIndex_2; }
inline void set_linkIdFirstCharacterIndex_2(int32_t value)
{
___linkIdFirstCharacterIndex_2 = value;
}
inline static int32_t get_offset_of_linkIdLength_3() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___linkIdLength_3)); }
inline int32_t get_linkIdLength_3() const { return ___linkIdLength_3; }
inline int32_t* get_address_of_linkIdLength_3() { return &___linkIdLength_3; }
inline void set_linkIdLength_3(int32_t value)
{
___linkIdLength_3 = value;
}
inline static int32_t get_offset_of_linkTextfirstCharacterIndex_4() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___linkTextfirstCharacterIndex_4)); }
inline int32_t get_linkTextfirstCharacterIndex_4() const { return ___linkTextfirstCharacterIndex_4; }
inline int32_t* get_address_of_linkTextfirstCharacterIndex_4() { return &___linkTextfirstCharacterIndex_4; }
inline void set_linkTextfirstCharacterIndex_4(int32_t value)
{
___linkTextfirstCharacterIndex_4 = value;
}
inline static int32_t get_offset_of_linkTextLength_5() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___linkTextLength_5)); }
inline int32_t get_linkTextLength_5() const { return ___linkTextLength_5; }
inline int32_t* get_address_of_linkTextLength_5() { return &___linkTextLength_5; }
inline void set_linkTextLength_5(int32_t value)
{
___linkTextLength_5 = value;
}
inline static int32_t get_offset_of_linkID_6() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___linkID_6)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_linkID_6() const { return ___linkID_6; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_linkID_6() { return &___linkID_6; }
inline void set_linkID_6(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___linkID_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___linkID_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of TMPro.TMP_LinkInfo
struct TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_marshaled_pinvoke
{
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
int32_t ___hashCode_1;
int32_t ___linkIdFirstCharacterIndex_2;
int32_t ___linkIdLength_3;
int32_t ___linkTextfirstCharacterIndex_4;
int32_t ___linkTextLength_5;
uint8_t* ___linkID_6;
};
// Native definition for COM marshalling of TMPro.TMP_LinkInfo
struct TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_marshaled_com
{
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
int32_t ___hashCode_1;
int32_t ___linkIdFirstCharacterIndex_2;
int32_t ___linkIdLength_3;
int32_t ___linkTextfirstCharacterIndex_4;
int32_t ___linkTextLength_5;
uint8_t* ___linkID_6;
};
// TMPro.TMP_PageInfo
struct TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24
{
public:
// System.Int32 TMPro.TMP_PageInfo::firstCharacterIndex
int32_t ___firstCharacterIndex_0;
// System.Int32 TMPro.TMP_PageInfo::lastCharacterIndex
int32_t ___lastCharacterIndex_1;
// System.Single TMPro.TMP_PageInfo::ascender
float ___ascender_2;
// System.Single TMPro.TMP_PageInfo::baseLine
float ___baseLine_3;
// System.Single TMPro.TMP_PageInfo::descender
float ___descender_4;
public:
inline static int32_t get_offset_of_firstCharacterIndex_0() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24, ___firstCharacterIndex_0)); }
inline int32_t get_firstCharacterIndex_0() const { return ___firstCharacterIndex_0; }
inline int32_t* get_address_of_firstCharacterIndex_0() { return &___firstCharacterIndex_0; }
inline void set_firstCharacterIndex_0(int32_t value)
{
___firstCharacterIndex_0 = value;
}
inline static int32_t get_offset_of_lastCharacterIndex_1() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24, ___lastCharacterIndex_1)); }
inline int32_t get_lastCharacterIndex_1() const { return ___lastCharacterIndex_1; }
inline int32_t* get_address_of_lastCharacterIndex_1() { return &___lastCharacterIndex_1; }
inline void set_lastCharacterIndex_1(int32_t value)
{
___lastCharacterIndex_1 = value;
}
inline static int32_t get_offset_of_ascender_2() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24, ___ascender_2)); }
inline float get_ascender_2() const { return ___ascender_2; }
inline float* get_address_of_ascender_2() { return &___ascender_2; }
inline void set_ascender_2(float value)
{
___ascender_2 = value;
}
inline static int32_t get_offset_of_baseLine_3() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24, ___baseLine_3)); }
inline float get_baseLine_3() const { return ___baseLine_3; }
inline float* get_address_of_baseLine_3() { return &___baseLine_3; }
inline void set_baseLine_3(float value)
{
___baseLine_3 = value;
}
inline static int32_t get_offset_of_descender_4() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24, ___descender_4)); }
inline float get_descender_4() const { return ___descender_4; }
inline float* get_address_of_descender_4() { return &___descender_4; }
inline void set_descender_4(float value)
{
___descender_4 = value;
}
};
// TMPro.TMP_Text_UnicodeChar
struct UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A
{
public:
// System.Int32 TMPro.TMP_Text_UnicodeChar::unicode
int32_t ___unicode_0;
// System.Int32 TMPro.TMP_Text_UnicodeChar::stringIndex
int32_t ___stringIndex_1;
// System.Int32 TMPro.TMP_Text_UnicodeChar::length
int32_t ___length_2;
public:
inline static int32_t get_offset_of_unicode_0() { return static_cast<int32_t>(offsetof(UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A, ___unicode_0)); }
inline int32_t get_unicode_0() const { return ___unicode_0; }
inline int32_t* get_address_of_unicode_0() { return &___unicode_0; }
inline void set_unicode_0(int32_t value)
{
___unicode_0 = value;
}
inline static int32_t get_offset_of_stringIndex_1() { return static_cast<int32_t>(offsetof(UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A, ___stringIndex_1)); }
inline int32_t get_stringIndex_1() const { return ___stringIndex_1; }
inline int32_t* get_address_of_stringIndex_1() { return &___stringIndex_1; }
inline void set_stringIndex_1(int32_t value)
{
___stringIndex_1 = value;
}
inline static int32_t get_offset_of_length_2() { return static_cast<int32_t>(offsetof(UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A, ___length_2)); }
inline int32_t get_length_2() const { return ___length_2; }
inline int32_t* get_address_of_length_2() { return &___length_2; }
inline void set_length_2(int32_t value)
{
___length_2 = value;
}
};
// TMPro.TMP_WordInfo
struct TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90
{
public:
// TMPro.TMP_Text TMPro.TMP_WordInfo::textComponent
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
// System.Int32 TMPro.TMP_WordInfo::firstCharacterIndex
int32_t ___firstCharacterIndex_1;
// System.Int32 TMPro.TMP_WordInfo::lastCharacterIndex
int32_t ___lastCharacterIndex_2;
// System.Int32 TMPro.TMP_WordInfo::characterCount
int32_t ___characterCount_3;
public:
inline static int32_t get_offset_of_textComponent_0() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90, ___textComponent_0)); }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * get_textComponent_0() const { return ___textComponent_0; }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 ** get_address_of_textComponent_0() { return &___textComponent_0; }
inline void set_textComponent_0(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * value)
{
___textComponent_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textComponent_0), (void*)value);
}
inline static int32_t get_offset_of_firstCharacterIndex_1() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90, ___firstCharacterIndex_1)); }
inline int32_t get_firstCharacterIndex_1() const { return ___firstCharacterIndex_1; }
inline int32_t* get_address_of_firstCharacterIndex_1() { return &___firstCharacterIndex_1; }
inline void set_firstCharacterIndex_1(int32_t value)
{
___firstCharacterIndex_1 = value;
}
inline static int32_t get_offset_of_lastCharacterIndex_2() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90, ___lastCharacterIndex_2)); }
inline int32_t get_lastCharacterIndex_2() const { return ___lastCharacterIndex_2; }
inline int32_t* get_address_of_lastCharacterIndex_2() { return &___lastCharacterIndex_2; }
inline void set_lastCharacterIndex_2(int32_t value)
{
___lastCharacterIndex_2 = value;
}
inline static int32_t get_offset_of_characterCount_3() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90, ___characterCount_3)); }
inline int32_t get_characterCount_3() const { return ___characterCount_3; }
inline int32_t* get_address_of_characterCount_3() { return &___characterCount_3; }
inline void set_characterCount_3(int32_t value)
{
___characterCount_3 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.TMP_WordInfo
struct TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_marshaled_pinvoke
{
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
int32_t ___firstCharacterIndex_1;
int32_t ___lastCharacterIndex_2;
int32_t ___characterCount_3;
};
// Native definition for COM marshalling of TMPro.TMP_WordInfo
struct TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_marshaled_com
{
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
int32_t ___firstCharacterIndex_1;
int32_t ___lastCharacterIndex_2;
int32_t ___characterCount_3;
};
// Unity.Collections.NativeSlice`1<System.Byte>
struct NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E
{
public:
// System.Byte* Unity.Collections.NativeSlice`1::m_Buffer
uint8_t* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeSlice`1::m_Stride
int32_t ___m_Stride_1;
// System.Int32 Unity.Collections.NativeSlice`1::m_Length
int32_t ___m_Length_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E, ___m_Buffer_0)); }
inline uint8_t* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline uint8_t** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(uint8_t* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Stride_1() { return static_cast<int32_t>(offsetof(NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E, ___m_Stride_1)); }
inline int32_t get_m_Stride_1() const { return ___m_Stride_1; }
inline int32_t* get_address_of_m_Stride_1() { return &___m_Stride_1; }
inline void set_m_Stride_1(int32_t value)
{
___m_Stride_1 = value;
}
inline static int32_t get_offset_of_m_Length_2() { return static_cast<int32_t>(offsetof(NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E, ___m_Length_2)); }
inline int32_t get_m_Length_2() const { return ___m_Length_2; }
inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; }
inline void set_m_Length_2(int32_t value)
{
___m_Length_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeSlice`1
#ifndef NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_pinvoke_define
#define NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_pinvoke_define
struct NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_pinvoke
{
uint8_t* ___m_Buffer_0;
int32_t ___m_Stride_1;
int32_t ___m_Length_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeSlice`1
#ifndef NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_com_define
#define NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_com_define
struct NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_com
{
uint8_t* ___m_Buffer_0;
int32_t ___m_Stride_1;
int32_t ___m_Length_2;
};
#endif
// Unity.Collections.NativeSlice`1<System.UInt32>
struct NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A
{
public:
// System.Byte* Unity.Collections.NativeSlice`1::m_Buffer
uint8_t* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeSlice`1::m_Stride
int32_t ___m_Stride_1;
// System.Int32 Unity.Collections.NativeSlice`1::m_Length
int32_t ___m_Length_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A, ___m_Buffer_0)); }
inline uint8_t* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline uint8_t** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(uint8_t* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Stride_1() { return static_cast<int32_t>(offsetof(NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A, ___m_Stride_1)); }
inline int32_t get_m_Stride_1() const { return ___m_Stride_1; }
inline int32_t* get_address_of_m_Stride_1() { return &___m_Stride_1; }
inline void set_m_Stride_1(int32_t value)
{
___m_Stride_1 = value;
}
inline static int32_t get_offset_of_m_Length_2() { return static_cast<int32_t>(offsetof(NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A, ___m_Length_2)); }
inline int32_t get_m_Length_2() const { return ___m_Length_2; }
inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; }
inline void set_m_Length_2(int32_t value)
{
___m_Length_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeSlice`1
#ifndef NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_pinvoke_define
#define NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_pinvoke_define
struct NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_pinvoke
{
uint8_t* ___m_Buffer_0;
int32_t ___m_Stride_1;
int32_t ___m_Length_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeSlice`1
#ifndef NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_com_define
#define NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_com_define
struct NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_com
{
uint8_t* ___m_Buffer_0;
int32_t ___m_Stride_1;
int32_t ___m_Length_2;
};
#endif
// Unity.Collections.NativeSlice`1<UnityEngine.Vector3>
struct NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41
{
public:
// System.Byte* Unity.Collections.NativeSlice`1::m_Buffer
uint8_t* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeSlice`1::m_Stride
int32_t ___m_Stride_1;
// System.Int32 Unity.Collections.NativeSlice`1::m_Length
int32_t ___m_Length_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41, ___m_Buffer_0)); }
inline uint8_t* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline uint8_t** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(uint8_t* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Stride_1() { return static_cast<int32_t>(offsetof(NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41, ___m_Stride_1)); }
inline int32_t get_m_Stride_1() const { return ___m_Stride_1; }
inline int32_t* get_address_of_m_Stride_1() { return &___m_Stride_1; }
inline void set_m_Stride_1(int32_t value)
{
___m_Stride_1 = value;
}
inline static int32_t get_offset_of_m_Length_2() { return static_cast<int32_t>(offsetof(NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41, ___m_Length_2)); }
inline int32_t get_m_Length_2() const { return ___m_Length_2; }
inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; }
inline void set_m_Length_2(int32_t value)
{
___m_Length_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeSlice`1
#ifndef NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_pinvoke_define
#define NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_pinvoke_define
struct NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_pinvoke
{
uint8_t* ___m_Buffer_0;
int32_t ___m_Stride_1;
int32_t ___m_Length_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeSlice`1
#ifndef NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_com_define
#define NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_com_define
struct NativeSlice_1_tF64FC9231236E57AAA2B2145E332DB3492093A59_marshaled_com
{
uint8_t* ___m_Buffer_0;
int32_t ___m_Stride_1;
int32_t ___m_Length_2;
};
#endif
// UnityEngine.BeforeRenderHelper_OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727
{
public:
// System.Int32 UnityEngine.BeforeRenderHelper_OrderBlock::order
int32_t ___order_0;
// UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper_OrderBlock::callback
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___callback_1;
public:
inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___order_0)); }
inline int32_t get_order_0() const { return ___order_0; }
inline int32_t* get_address_of_order_0() { return &___order_0; }
inline void set_order_0(int32_t value)
{
___order_0 = value;
}
inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___callback_1)); }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_callback_1() const { return ___callback_1; }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_pinvoke
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_com
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// UnityEngine.Color
struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// UnityEngine.Color32
struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.Color32::rgba
int32_t ___rgba_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___rgba_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Byte UnityEngine.Color32::r
uint8_t ___r_1;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___r_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___g_2_OffsetPadding[1];
// System.Byte UnityEngine.Color32::g
uint8_t ___g_2;
};
#pragma pack(pop, tp)
struct
{
char ___g_2_OffsetPadding_forAlignmentOnly[1];
uint8_t ___g_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___b_3_OffsetPadding[2];
// System.Byte UnityEngine.Color32::b
uint8_t ___b_3;
};
#pragma pack(pop, tp)
struct
{
char ___b_3_OffsetPadding_forAlignmentOnly[2];
uint8_t ___b_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___a_4_OffsetPadding[3];
// System.Byte UnityEngine.Color32::a
uint8_t ___a_4;
};
#pragma pack(pop, tp)
struct
{
char ___a_4_OffsetPadding_forAlignmentOnly[3];
uint8_t ___a_4_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___rgba_0)); }
inline int32_t get_rgba_0() const { return ___rgba_0; }
inline int32_t* get_address_of_rgba_0() { return &___rgba_0; }
inline void set_rgba_0(int32_t value)
{
___rgba_0 = value;
}
inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___r_1)); }
inline uint8_t get_r_1() const { return ___r_1; }
inline uint8_t* get_address_of_r_1() { return &___r_1; }
inline void set_r_1(uint8_t value)
{
___r_1 = value;
}
inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___g_2)); }
inline uint8_t get_g_2() const { return ___g_2; }
inline uint8_t* get_address_of_g_2() { return &___g_2; }
inline void set_g_2(uint8_t value)
{
___g_2 = value;
}
inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___b_3)); }
inline uint8_t get_b_3() const { return ___b_3; }
inline uint8_t* get_address_of_b_3() { return &___b_3; }
inline void set_b_3(uint8_t value)
{
___b_3 = value;
}
inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___a_4)); }
inline uint8_t get_a_4() const { return ___a_4; }
inline uint8_t* get_address_of_a_4() { return &___a_4; }
inline void set_a_4(uint8_t value)
{
___a_4 = value;
}
};
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 : public AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6
{
public:
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseEventData::m_EventSystem
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___m_EventSystem_1;
public:
inline static int32_t get_offset_of_m_EventSystem_1() { return static_cast<int32_t>(offsetof(BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5, ___m_EventSystem_1)); }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * get_m_EventSystem_1() const { return ___m_EventSystem_1; }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 ** get_address_of_m_EventSystem_1() { return &___m_EventSystem_1; }
inline void set_m_EventSystem_1(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * value)
{
___m_EventSystem_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventSystem_1), (void*)value);
}
};
// UnityEngine.Experimental.GlobalIllumination.LinearColor
struct LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD
{
public:
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_red
float ___m_red_0;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_green
float ___m_green_1;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_blue
float ___m_blue_2;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_intensity
float ___m_intensity_3;
public:
inline static int32_t get_offset_of_m_red_0() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_red_0)); }
inline float get_m_red_0() const { return ___m_red_0; }
inline float* get_address_of_m_red_0() { return &___m_red_0; }
inline void set_m_red_0(float value)
{
___m_red_0 = value;
}
inline static int32_t get_offset_of_m_green_1() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_green_1)); }
inline float get_m_green_1() const { return ___m_green_1; }
inline float* get_address_of_m_green_1() { return &___m_green_1; }
inline void set_m_green_1(float value)
{
___m_green_1 = value;
}
inline static int32_t get_offset_of_m_blue_2() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_blue_2)); }
inline float get_m_blue_2() const { return ___m_blue_2; }
inline float* get_address_of_m_blue_2() { return &___m_blue_2; }
inline void set_m_blue_2(float value)
{
___m_blue_2 = value;
}
inline static int32_t get_offset_of_m_intensity_3() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_intensity_3)); }
inline float get_m_intensity_3() const { return ___m_intensity_3; }
inline float* get_address_of_m_intensity_3() { return &___m_intensity_3; }
inline void set_m_intensity_3(float value)
{
___m_intensity_3 = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphBuilder
struct RenderGraphBuilder_t9026010D496B7D7D33BBFD0350D5014FAC7EF312
{
public:
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphBuilder::m_RenderPass
RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 * ___m_RenderPass_0;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphBuilder::m_Resources
RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * ___m_Resources_1;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphBuilder::m_Disposed
bool ___m_Disposed_2;
public:
inline static int32_t get_offset_of_m_RenderPass_0() { return static_cast<int32_t>(offsetof(RenderGraphBuilder_t9026010D496B7D7D33BBFD0350D5014FAC7EF312, ___m_RenderPass_0)); }
inline RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 * get_m_RenderPass_0() const { return ___m_RenderPass_0; }
inline RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 ** get_address_of_m_RenderPass_0() { return &___m_RenderPass_0; }
inline void set_m_RenderPass_0(RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 * value)
{
___m_RenderPass_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RenderPass_0), (void*)value);
}
inline static int32_t get_offset_of_m_Resources_1() { return static_cast<int32_t>(offsetof(RenderGraphBuilder_t9026010D496B7D7D33BBFD0350D5014FAC7EF312, ___m_Resources_1)); }
inline RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * get_m_Resources_1() const { return ___m_Resources_1; }
inline RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 ** get_address_of_m_Resources_1() { return &___m_Resources_1; }
inline void set_m_Resources_1(RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * value)
{
___m_Resources_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Resources_1), (void*)value);
}
inline static int32_t get_offset_of_m_Disposed_2() { return static_cast<int32_t>(offsetof(RenderGraphBuilder_t9026010D496B7D7D33BBFD0350D5014FAC7EF312, ___m_Disposed_2)); }
inline bool get_m_Disposed_2() const { return ___m_Disposed_2; }
inline bool* get_address_of_m_Disposed_2() { return &___m_Disposed_2; }
inline void set_m_Disposed_2(bool value)
{
___m_Disposed_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphBuilder
struct RenderGraphBuilder_t9026010D496B7D7D33BBFD0350D5014FAC7EF312_marshaled_pinvoke
{
RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 * ___m_RenderPass_0;
RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * ___m_Resources_1;
int32_t ___m_Disposed_2;
};
// Native definition for COM marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphBuilder
struct RenderGraphBuilder_t9026010D496B7D7D33BBFD0350D5014FAC7EF312_marshaled_com
{
RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 * ___m_RenderPass_0;
RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * ___m_Resources_1;
int32_t ___m_Disposed_2;
};
// UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3
struct Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D
{
public:
// System.Single UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3::X
float ___X_1;
// System.Single UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3::Y
float ___Y_2;
// System.Single UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3::Z
float ___Z_3;
public:
inline static int32_t get_offset_of_X_1() { return static_cast<int32_t>(offsetof(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D, ___X_1)); }
inline float get_X_1() const { return ___X_1; }
inline float* get_address_of_X_1() { return &___X_1; }
inline void set_X_1(float value)
{
___X_1 = value;
}
inline static int32_t get_offset_of_Y_2() { return static_cast<int32_t>(offsetof(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D, ___Y_2)); }
inline float get_Y_2() const { return ___Y_2; }
inline float* get_address_of_Y_2() { return &___Y_2; }
inline void set_Y_2(float value)
{
___Y_2 = value;
}
inline static int32_t get_offset_of_Z_3() { return static_cast<int32_t>(offsetof(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D, ___Z_3)); }
inline float get_Z_3() const { return ___Z_3; }
inline float* get_address_of_Z_3() { return &___Z_3; }
inline void set_Z_3(float value)
{
___Z_3 = value;
}
};
struct Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D_StaticFields
{
public:
// UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3 UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3::Zero
Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D ___Zero_0;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D_StaticFields, ___Zero_0)); }
inline Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D get_Zero_0() const { return ___Zero_0; }
inline Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D value)
{
___Zero_0 = value;
}
};
// UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle_BlendFactors
struct BlendFactors_t48FB87D047E971732AA50BA99EB48CCFDAEA467C
{
public:
// System.Single UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle_BlendFactors::multiplicative
float ___multiplicative_0;
// System.Single UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle_BlendFactors::additive
float ___additive_1;
public:
inline static int32_t get_offset_of_multiplicative_0() { return static_cast<int32_t>(offsetof(BlendFactors_t48FB87D047E971732AA50BA99EB48CCFDAEA467C, ___multiplicative_0)); }
inline float get_multiplicative_0() const { return ___multiplicative_0; }
inline float* get_address_of_multiplicative_0() { return &___multiplicative_0; }
inline void set_multiplicative_0(float value)
{
___multiplicative_0 = value;
}
inline static int32_t get_offset_of_additive_1() { return static_cast<int32_t>(offsetof(BlendFactors_t48FB87D047E971732AA50BA99EB48CCFDAEA467C, ___additive_1)); }
inline float get_additive_1() const { return ___additive_1; }
inline float* get_address_of_additive_1() { return &___additive_1; }
inline void set_additive_1(float value)
{
___additive_1 = value;
}
};
// UnityEngine.Hash128
struct Hash128_tBB1E9B1041BFF6ED6E76F2066E2815ED04742151
{
public:
// System.UInt32 UnityEngine.Hash128::m_u32_0
uint32_t ___m_u32_0_0;
// System.UInt32 UnityEngine.Hash128::m_u32_1
uint32_t ___m_u32_1_1;
// System.UInt32 UnityEngine.Hash128::m_u32_2
uint32_t ___m_u32_2_2;
// System.UInt32 UnityEngine.Hash128::m_u32_3
uint32_t ___m_u32_3_3;
public:
inline static int32_t get_offset_of_m_u32_0_0() { return static_cast<int32_t>(offsetof(Hash128_tBB1E9B1041BFF6ED6E76F2066E2815ED04742151, ___m_u32_0_0)); }
inline uint32_t get_m_u32_0_0() const { return ___m_u32_0_0; }
inline uint32_t* get_address_of_m_u32_0_0() { return &___m_u32_0_0; }
inline void set_m_u32_0_0(uint32_t value)
{
___m_u32_0_0 = value;
}
inline static int32_t get_offset_of_m_u32_1_1() { return static_cast<int32_t>(offsetof(Hash128_tBB1E9B1041BFF6ED6E76F2066E2815ED04742151, ___m_u32_1_1)); }
inline uint32_t get_m_u32_1_1() const { return ___m_u32_1_1; }
inline uint32_t* get_address_of_m_u32_1_1() { return &___m_u32_1_1; }
inline void set_m_u32_1_1(uint32_t value)
{
___m_u32_1_1 = value;
}
inline static int32_t get_offset_of_m_u32_2_2() { return static_cast<int32_t>(offsetof(Hash128_tBB1E9B1041BFF6ED6E76F2066E2815ED04742151, ___m_u32_2_2)); }
inline uint32_t get_m_u32_2_2() const { return ___m_u32_2_2; }
inline uint32_t* get_address_of_m_u32_2_2() { return &___m_u32_2_2; }
inline void set_m_u32_2_2(uint32_t value)
{
___m_u32_2_2 = value;
}
inline static int32_t get_offset_of_m_u32_3_3() { return static_cast<int32_t>(offsetof(Hash128_tBB1E9B1041BFF6ED6E76F2066E2815ED04742151, ___m_u32_3_3)); }
inline uint32_t get_m_u32_3_3() const { return ___m_u32_3_3; }
inline uint32_t* get_address_of_m_u32_3_3() { return &___m_u32_3_3; }
inline void set_m_u32_3_3(uint32_t value)
{
___m_u32_3_3 = value;
}
};
// UnityEngine.Keyframe
struct Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74
{
public:
// System.Single UnityEngine.Keyframe::m_Time
float ___m_Time_0;
// System.Single UnityEngine.Keyframe::m_Value
float ___m_Value_1;
// System.Single UnityEngine.Keyframe::m_InTangent
float ___m_InTangent_2;
// System.Single UnityEngine.Keyframe::m_OutTangent
float ___m_OutTangent_3;
// System.Int32 UnityEngine.Keyframe::m_WeightedMode
int32_t ___m_WeightedMode_4;
// System.Single UnityEngine.Keyframe::m_InWeight
float ___m_InWeight_5;
// System.Single UnityEngine.Keyframe::m_OutWeight
float ___m_OutWeight_6;
public:
inline static int32_t get_offset_of_m_Time_0() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Time_0)); }
inline float get_m_Time_0() const { return ___m_Time_0; }
inline float* get_address_of_m_Time_0() { return &___m_Time_0; }
inline void set_m_Time_0(float value)
{
___m_Time_0 = value;
}
inline static int32_t get_offset_of_m_Value_1() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Value_1)); }
inline float get_m_Value_1() const { return ___m_Value_1; }
inline float* get_address_of_m_Value_1() { return &___m_Value_1; }
inline void set_m_Value_1(float value)
{
___m_Value_1 = value;
}
inline static int32_t get_offset_of_m_InTangent_2() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InTangent_2)); }
inline float get_m_InTangent_2() const { return ___m_InTangent_2; }
inline float* get_address_of_m_InTangent_2() { return &___m_InTangent_2; }
inline void set_m_InTangent_2(float value)
{
___m_InTangent_2 = value;
}
inline static int32_t get_offset_of_m_OutTangent_3() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutTangent_3)); }
inline float get_m_OutTangent_3() const { return ___m_OutTangent_3; }
inline float* get_address_of_m_OutTangent_3() { return &___m_OutTangent_3; }
inline void set_m_OutTangent_3(float value)
{
___m_OutTangent_3 = value;
}
inline static int32_t get_offset_of_m_WeightedMode_4() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_WeightedMode_4)); }
inline int32_t get_m_WeightedMode_4() const { return ___m_WeightedMode_4; }
inline int32_t* get_address_of_m_WeightedMode_4() { return &___m_WeightedMode_4; }
inline void set_m_WeightedMode_4(int32_t value)
{
___m_WeightedMode_4 = value;
}
inline static int32_t get_offset_of_m_InWeight_5() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InWeight_5)); }
inline float get_m_InWeight_5() const { return ___m_InWeight_5; }
inline float* get_address_of_m_InWeight_5() { return &___m_InWeight_5; }
inline void set_m_InWeight_5(float value)
{
___m_InWeight_5 = value;
}
inline static int32_t get_offset_of_m_OutWeight_6() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutWeight_6)); }
inline float get_m_OutWeight_6() const { return ___m_OutWeight_6; }
inline float* get_address_of_m_OutWeight_6() { return &___m_OutWeight_6; }
inline void set_m_OutWeight_6(float value)
{
___m_OutWeight_6 = value;
}
};
// UnityEngine.LayerMask
struct LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0
{
public:
// System.Int32 UnityEngine.LayerMask::m_Mask
int32_t ___m_Mask_0;
public:
inline static int32_t get_offset_of_m_Mask_0() { return static_cast<int32_t>(offsetof(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0, ___m_Mask_0)); }
inline int32_t get_m_Mask_0() const { return ___m_Mask_0; }
inline int32_t* get_address_of_m_Mask_0() { return &___m_Mask_0; }
inline void set_m_Mask_0(int32_t value)
{
___m_Mask_0 = value;
}
};
// UnityEngine.Matrix4x4
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA
{
public:
// System.Single UnityEngine.Matrix4x4::m00
float ___m00_0;
// System.Single UnityEngine.Matrix4x4::m10
float ___m10_1;
// System.Single UnityEngine.Matrix4x4::m20
float ___m20_2;
// System.Single UnityEngine.Matrix4x4::m30
float ___m30_3;
// System.Single UnityEngine.Matrix4x4::m01
float ___m01_4;
// System.Single UnityEngine.Matrix4x4::m11
float ___m11_5;
// System.Single UnityEngine.Matrix4x4::m21
float ___m21_6;
// System.Single UnityEngine.Matrix4x4::m31
float ___m31_7;
// System.Single UnityEngine.Matrix4x4::m02
float ___m02_8;
// System.Single UnityEngine.Matrix4x4::m12
float ___m12_9;
// System.Single UnityEngine.Matrix4x4::m22
float ___m22_10;
// System.Single UnityEngine.Matrix4x4::m32
float ___m32_11;
// System.Single UnityEngine.Matrix4x4::m03
float ___m03_12;
// System.Single UnityEngine.Matrix4x4::m13
float ___m13_13;
// System.Single UnityEngine.Matrix4x4::m23
float ___m23_14;
// System.Single UnityEngine.Matrix4x4::m33
float ___m33_15;
public:
inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m00_0)); }
inline float get_m00_0() const { return ___m00_0; }
inline float* get_address_of_m00_0() { return &___m00_0; }
inline void set_m00_0(float value)
{
___m00_0 = value;
}
inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m10_1)); }
inline float get_m10_1() const { return ___m10_1; }
inline float* get_address_of_m10_1() { return &___m10_1; }
inline void set_m10_1(float value)
{
___m10_1 = value;
}
inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m20_2)); }
inline float get_m20_2() const { return ___m20_2; }
inline float* get_address_of_m20_2() { return &___m20_2; }
inline void set_m20_2(float value)
{
___m20_2 = value;
}
inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m30_3)); }
inline float get_m30_3() const { return ___m30_3; }
inline float* get_address_of_m30_3() { return &___m30_3; }
inline void set_m30_3(float value)
{
___m30_3 = value;
}
inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m01_4)); }
inline float get_m01_4() const { return ___m01_4; }
inline float* get_address_of_m01_4() { return &___m01_4; }
inline void set_m01_4(float value)
{
___m01_4 = value;
}
inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m11_5)); }
inline float get_m11_5() const { return ___m11_5; }
inline float* get_address_of_m11_5() { return &___m11_5; }
inline void set_m11_5(float value)
{
___m11_5 = value;
}
inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m21_6)); }
inline float get_m21_6() const { return ___m21_6; }
inline float* get_address_of_m21_6() { return &___m21_6; }
inline void set_m21_6(float value)
{
___m21_6 = value;
}
inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m31_7)); }
inline float get_m31_7() const { return ___m31_7; }
inline float* get_address_of_m31_7() { return &___m31_7; }
inline void set_m31_7(float value)
{
___m31_7 = value;
}
inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m02_8)); }
inline float get_m02_8() const { return ___m02_8; }
inline float* get_address_of_m02_8() { return &___m02_8; }
inline void set_m02_8(float value)
{
___m02_8 = value;
}
inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m12_9)); }
inline float get_m12_9() const { return ___m12_9; }
inline float* get_address_of_m12_9() { return &___m12_9; }
inline void set_m12_9(float value)
{
___m12_9 = value;
}
inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m22_10)); }
inline float get_m22_10() const { return ___m22_10; }
inline float* get_address_of_m22_10() { return &___m22_10; }
inline void set_m22_10(float value)
{
___m22_10 = value;
}
inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m32_11)); }
inline float get_m32_11() const { return ___m32_11; }
inline float* get_address_of_m32_11() { return &___m32_11; }
inline void set_m32_11(float value)
{
___m32_11 = value;
}
inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m03_12)); }
inline float get_m03_12() const { return ___m03_12; }
inline float* get_address_of_m03_12() { return &___m03_12; }
inline void set_m03_12(float value)
{
___m03_12 = value;
}
inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m13_13)); }
inline float get_m13_13() const { return ___m13_13; }
inline float* get_address_of_m13_13() { return &___m13_13; }
inline void set_m13_13(float value)
{
___m13_13 = value;
}
inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m23_14)); }
inline float get_m23_14() const { return ___m23_14; }
inline float* get_address_of_m23_14() { return &___m23_14; }
inline void set_m23_14(float value)
{
___m23_14 = value;
}
inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m33_15)); }
inline float get_m33_15() const { return ___m33_15; }
inline float* get_address_of_m33_15() { return &___m33_15; }
inline void set_m33_15(float value)
{
___m33_15 = value;
}
};
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___zeroMatrix_16;
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___identityMatrix_17;
public:
inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___zeroMatrix_16)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_zeroMatrix_16() const { return ___zeroMatrix_16; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; }
inline void set_zeroMatrix_16(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___zeroMatrix_16 = value;
}
inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___identityMatrix_17)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_identityMatrix_17() const { return ___identityMatrix_17; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_identityMatrix_17() { return &___identityMatrix_17; }
inline void set_identityMatrix_17(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___identityMatrix_17 = value;
}
};
// UnityEngine.Quaternion
struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357
{
public:
// System.Single UnityEngine.Quaternion::x
float ___x_0;
// System.Single UnityEngine.Quaternion::y
float ___y_1;
// System.Single UnityEngine.Quaternion::z
float ___z_2;
// System.Single UnityEngine.Quaternion::w
float ___w_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___z_2)); }
inline float get_z_2() const { return ___z_2; }
inline float* get_address_of_z_2() { return &___z_2; }
inline void set_z_2(float value)
{
___z_2 = value;
}
inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___w_3)); }
inline float get_w_3() const { return ___w_3; }
inline float* get_address_of_w_3() { return &___w_3; }
inline void set_w_3(float value)
{
___w_3 = value;
}
};
struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields
{
public:
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___identityQuaternion_4;
public:
inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields, ___identityQuaternion_4)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_identityQuaternion_4() const { return ___identityQuaternion_4; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; }
inline void set_identityQuaternion_4(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___identityQuaternion_4 = value;
}
};
// UnityEngine.Rect
struct Rect_t35B976DE901B5423C11705E156938EA27AB402CE
{
public:
// System.Single UnityEngine.Rect::m_XMin
float ___m_XMin_0;
// System.Single UnityEngine.Rect::m_YMin
float ___m_YMin_1;
// System.Single UnityEngine.Rect::m_Width
float ___m_Width_2;
// System.Single UnityEngine.Rect::m_Height
float ___m_Height_3;
public:
inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_XMin_0)); }
inline float get_m_XMin_0() const { return ___m_XMin_0; }
inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; }
inline void set_m_XMin_0(float value)
{
___m_XMin_0 = value;
}
inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_YMin_1)); }
inline float get_m_YMin_1() const { return ___m_YMin_1; }
inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; }
inline void set_m_YMin_1(float value)
{
___m_YMin_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Width_2)); }
inline float get_m_Width_2() const { return ___m_Width_2; }
inline float* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(float value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Height_3)); }
inline float get_m_Height_3() const { return ___m_Height_3; }
inline float* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(float value)
{
___m_Height_3 = value;
}
};
// UnityEngine.Rendering.BatchVisibility
struct BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062
{
public:
// System.Int32 UnityEngine.Rendering.BatchVisibility::offset
int32_t ___offset_0;
// System.Int32 UnityEngine.Rendering.BatchVisibility::instancesCount
int32_t ___instancesCount_1;
// System.Int32 UnityEngine.Rendering.BatchVisibility::visibleCount
int32_t ___visibleCount_2;
public:
inline static int32_t get_offset_of_offset_0() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___offset_0)); }
inline int32_t get_offset_0() const { return ___offset_0; }
inline int32_t* get_address_of_offset_0() { return &___offset_0; }
inline void set_offset_0(int32_t value)
{
___offset_0 = value;
}
inline static int32_t get_offset_of_instancesCount_1() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___instancesCount_1)); }
inline int32_t get_instancesCount_1() const { return ___instancesCount_1; }
inline int32_t* get_address_of_instancesCount_1() { return &___instancesCount_1; }
inline void set_instancesCount_1(int32_t value)
{
___instancesCount_1 = value;
}
inline static int32_t get_offset_of_visibleCount_2() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___visibleCount_2)); }
inline int32_t get_visibleCount_2() const { return ___visibleCount_2; }
inline int32_t* get_address_of_visibleCount_2() { return &___visibleCount_2; }
inline void set_visibleCount_2(int32_t value)
{
___visibleCount_2 = value;
}
};
// UnityEngine.Rendering.DepthState
struct DepthState_t8C699747E66773A90F87252A8E978924050C7F12
{
public:
// System.Byte UnityEngine.Rendering.DepthState::m_WriteEnabled
uint8_t ___m_WriteEnabled_0;
// System.SByte UnityEngine.Rendering.DepthState::m_CompareFunction
int8_t ___m_CompareFunction_1;
public:
inline static int32_t get_offset_of_m_WriteEnabled_0() { return static_cast<int32_t>(offsetof(DepthState_t8C699747E66773A90F87252A8E978924050C7F12, ___m_WriteEnabled_0)); }
inline uint8_t get_m_WriteEnabled_0() const { return ___m_WriteEnabled_0; }
inline uint8_t* get_address_of_m_WriteEnabled_0() { return &___m_WriteEnabled_0; }
inline void set_m_WriteEnabled_0(uint8_t value)
{
___m_WriteEnabled_0 = value;
}
inline static int32_t get_offset_of_m_CompareFunction_1() { return static_cast<int32_t>(offsetof(DepthState_t8C699747E66773A90F87252A8E978924050C7F12, ___m_CompareFunction_1)); }
inline int8_t get_m_CompareFunction_1() const { return ___m_CompareFunction_1; }
inline int8_t* get_address_of_m_CompareFunction_1() { return &___m_CompareFunction_1; }
inline void set_m_CompareFunction_1(int8_t value)
{
___m_CompareFunction_1 = value;
}
};
// UnityEngine.Rendering.DrawingSettings_<shaderPassNames>e__FixedBuffer
struct U3CshaderPassNamesU3Ee__FixedBuffer_t90D82EBB68FD984CB8C6D6523258A9C7DC1C0319
{
public:
union
{
struct
{
// System.Int32 UnityEngine.Rendering.DrawingSettings_<shaderPassNames>e__FixedBuffer::FixedElementField
int32_t ___FixedElementField_0;
};
uint8_t U3CshaderPassNamesU3Ee__FixedBuffer_t90D82EBB68FD984CB8C6D6523258A9C7DC1C0319__padding[64];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CshaderPassNamesU3Ee__FixedBuffer_t90D82EBB68FD984CB8C6D6523258A9C7DC1C0319, ___FixedElementField_0)); }
inline int32_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline int32_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(int32_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.Rendering.RenderQueueRange
struct RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A
{
public:
// System.Int32 UnityEngine.Rendering.RenderQueueRange::m_LowerBound
int32_t ___m_LowerBound_0;
// System.Int32 UnityEngine.Rendering.RenderQueueRange::m_UpperBound
int32_t ___m_UpperBound_1;
public:
inline static int32_t get_offset_of_m_LowerBound_0() { return static_cast<int32_t>(offsetof(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A, ___m_LowerBound_0)); }
inline int32_t get_m_LowerBound_0() const { return ___m_LowerBound_0; }
inline int32_t* get_address_of_m_LowerBound_0() { return &___m_LowerBound_0; }
inline void set_m_LowerBound_0(int32_t value)
{
___m_LowerBound_0 = value;
}
inline static int32_t get_offset_of_m_UpperBound_1() { return static_cast<int32_t>(offsetof(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A, ___m_UpperBound_1)); }
inline int32_t get_m_UpperBound_1() const { return ___m_UpperBound_1; }
inline int32_t* get_address_of_m_UpperBound_1() { return &___m_UpperBound_1; }
inline void set_m_UpperBound_1(int32_t value)
{
___m_UpperBound_1 = value;
}
};
struct RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A_StaticFields
{
public:
// System.Int32 UnityEngine.Rendering.RenderQueueRange::minimumBound
int32_t ___minimumBound_3;
// System.Int32 UnityEngine.Rendering.RenderQueueRange::maximumBound
int32_t ___maximumBound_5;
public:
inline static int32_t get_offset_of_minimumBound_3() { return static_cast<int32_t>(offsetof(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A_StaticFields, ___minimumBound_3)); }
inline int32_t get_minimumBound_3() const { return ___minimumBound_3; }
inline int32_t* get_address_of_minimumBound_3() { return &___minimumBound_3; }
inline void set_minimumBound_3(int32_t value)
{
___minimumBound_3 = value;
}
inline static int32_t get_offset_of_maximumBound_5() { return static_cast<int32_t>(offsetof(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A_StaticFields, ___maximumBound_5)); }
inline int32_t get_maximumBound_5() const { return ___maximumBound_5; }
inline int32_t* get_address_of_maximumBound_5() { return &___maximumBound_5; }
inline void set_maximumBound_5(int32_t value)
{
___maximumBound_5 = value;
}
};
// UnityEngine.Rendering.RenderTargetBlendState
struct RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE
{
public:
// System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_WriteMask
uint8_t ___m_WriteMask_0;
// System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_SourceColorBlendMode
uint8_t ___m_SourceColorBlendMode_1;
// System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_DestinationColorBlendMode
uint8_t ___m_DestinationColorBlendMode_2;
// System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_SourceAlphaBlendMode
uint8_t ___m_SourceAlphaBlendMode_3;
// System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_DestinationAlphaBlendMode
uint8_t ___m_DestinationAlphaBlendMode_4;
// System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_ColorBlendOperation
uint8_t ___m_ColorBlendOperation_5;
// System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_AlphaBlendOperation
uint8_t ___m_AlphaBlendOperation_6;
// System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_Padding
uint8_t ___m_Padding_7;
public:
inline static int32_t get_offset_of_m_WriteMask_0() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_WriteMask_0)); }
inline uint8_t get_m_WriteMask_0() const { return ___m_WriteMask_0; }
inline uint8_t* get_address_of_m_WriteMask_0() { return &___m_WriteMask_0; }
inline void set_m_WriteMask_0(uint8_t value)
{
___m_WriteMask_0 = value;
}
inline static int32_t get_offset_of_m_SourceColorBlendMode_1() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_SourceColorBlendMode_1)); }
inline uint8_t get_m_SourceColorBlendMode_1() const { return ___m_SourceColorBlendMode_1; }
inline uint8_t* get_address_of_m_SourceColorBlendMode_1() { return &___m_SourceColorBlendMode_1; }
inline void set_m_SourceColorBlendMode_1(uint8_t value)
{
___m_SourceColorBlendMode_1 = value;
}
inline static int32_t get_offset_of_m_DestinationColorBlendMode_2() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_DestinationColorBlendMode_2)); }
inline uint8_t get_m_DestinationColorBlendMode_2() const { return ___m_DestinationColorBlendMode_2; }
inline uint8_t* get_address_of_m_DestinationColorBlendMode_2() { return &___m_DestinationColorBlendMode_2; }
inline void set_m_DestinationColorBlendMode_2(uint8_t value)
{
___m_DestinationColorBlendMode_2 = value;
}
inline static int32_t get_offset_of_m_SourceAlphaBlendMode_3() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_SourceAlphaBlendMode_3)); }
inline uint8_t get_m_SourceAlphaBlendMode_3() const { return ___m_SourceAlphaBlendMode_3; }
inline uint8_t* get_address_of_m_SourceAlphaBlendMode_3() { return &___m_SourceAlphaBlendMode_3; }
inline void set_m_SourceAlphaBlendMode_3(uint8_t value)
{
___m_SourceAlphaBlendMode_3 = value;
}
inline static int32_t get_offset_of_m_DestinationAlphaBlendMode_4() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_DestinationAlphaBlendMode_4)); }
inline uint8_t get_m_DestinationAlphaBlendMode_4() const { return ___m_DestinationAlphaBlendMode_4; }
inline uint8_t* get_address_of_m_DestinationAlphaBlendMode_4() { return &___m_DestinationAlphaBlendMode_4; }
inline void set_m_DestinationAlphaBlendMode_4(uint8_t value)
{
___m_DestinationAlphaBlendMode_4 = value;
}
inline static int32_t get_offset_of_m_ColorBlendOperation_5() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_ColorBlendOperation_5)); }
inline uint8_t get_m_ColorBlendOperation_5() const { return ___m_ColorBlendOperation_5; }
inline uint8_t* get_address_of_m_ColorBlendOperation_5() { return &___m_ColorBlendOperation_5; }
inline void set_m_ColorBlendOperation_5(uint8_t value)
{
___m_ColorBlendOperation_5 = value;
}
inline static int32_t get_offset_of_m_AlphaBlendOperation_6() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_AlphaBlendOperation_6)); }
inline uint8_t get_m_AlphaBlendOperation_6() const { return ___m_AlphaBlendOperation_6; }
inline uint8_t* get_address_of_m_AlphaBlendOperation_6() { return &___m_AlphaBlendOperation_6; }
inline void set_m_AlphaBlendOperation_6(uint8_t value)
{
___m_AlphaBlendOperation_6 = value;
}
inline static int32_t get_offset_of_m_Padding_7() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_Padding_7)); }
inline uint8_t get_m_Padding_7() const { return ___m_Padding_7; }
inline uint8_t* get_address_of_m_Padding_7() { return &___m_Padding_7; }
inline void set_m_Padding_7(uint8_t value)
{
___m_Padding_7 = value;
}
};
// UnityEngine.Rendering.ShaderKeyword
struct ShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C
{
public:
// System.Int32 UnityEngine.Rendering.ShaderKeyword::m_KeywordIndex
int32_t ___m_KeywordIndex_0;
public:
inline static int32_t get_offset_of_m_KeywordIndex_0() { return static_cast<int32_t>(offsetof(ShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C, ___m_KeywordIndex_0)); }
inline int32_t get_m_KeywordIndex_0() const { return ___m_KeywordIndex_0; }
inline int32_t* get_address_of_m_KeywordIndex_0() { return &___m_KeywordIndex_0; }
inline void set_m_KeywordIndex_0(int32_t value)
{
___m_KeywordIndex_0 = value;
}
};
// UnityEngine.Rendering.ShaderTagId
struct ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940
{
public:
// System.Int32 UnityEngine.Rendering.ShaderTagId::m_Id
int32_t ___m_Id_1;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940, ___m_Id_1)); }
inline int32_t get_m_Id_1() const { return ___m_Id_1; }
inline int32_t* get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(int32_t value)
{
___m_Id_1 = value;
}
};
struct ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_StaticFields
{
public:
// UnityEngine.Rendering.ShaderTagId UnityEngine.Rendering.ShaderTagId::none
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 ___none_0;
public:
inline static int32_t get_offset_of_none_0() { return static_cast<int32_t>(offsetof(ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_StaticFields, ___none_0)); }
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 get_none_0() const { return ___none_0; }
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 * get_address_of_none_0() { return &___none_0; }
inline void set_none_0(ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 value)
{
___none_0 = value;
}
};
// UnityEngine.Rendering.SortingLayerRange
struct SortingLayerRange_t2FD40EF4E4BAFF8597654DA7FC3F6E8AEE1FDC2E
{
public:
// System.Int16 UnityEngine.Rendering.SortingLayerRange::m_LowerBound
int16_t ___m_LowerBound_0;
// System.Int16 UnityEngine.Rendering.SortingLayerRange::m_UpperBound
int16_t ___m_UpperBound_1;
public:
inline static int32_t get_offset_of_m_LowerBound_0() { return static_cast<int32_t>(offsetof(SortingLayerRange_t2FD40EF4E4BAFF8597654DA7FC3F6E8AEE1FDC2E, ___m_LowerBound_0)); }
inline int16_t get_m_LowerBound_0() const { return ___m_LowerBound_0; }
inline int16_t* get_address_of_m_LowerBound_0() { return &___m_LowerBound_0; }
inline void set_m_LowerBound_0(int16_t value)
{
___m_LowerBound_0 = value;
}
inline static int32_t get_offset_of_m_UpperBound_1() { return static_cast<int32_t>(offsetof(SortingLayerRange_t2FD40EF4E4BAFF8597654DA7FC3F6E8AEE1FDC2E, ___m_UpperBound_1)); }
inline int16_t get_m_UpperBound_1() const { return ___m_UpperBound_1; }
inline int16_t* get_address_of_m_UpperBound_1() { return &___m_UpperBound_1; }
inline void set_m_UpperBound_1(int16_t value)
{
___m_UpperBound_1 = value;
}
};
// UnityEngine.Rendering.StencilState
struct StencilState_t46E35B038A8E436BD616755432326977CB3E5E78
{
public:
// System.Byte UnityEngine.Rendering.StencilState::m_Enabled
uint8_t ___m_Enabled_0;
// System.Byte UnityEngine.Rendering.StencilState::m_ReadMask
uint8_t ___m_ReadMask_1;
// System.Byte UnityEngine.Rendering.StencilState::m_WriteMask
uint8_t ___m_WriteMask_2;
// System.Byte UnityEngine.Rendering.StencilState::m_Padding
uint8_t ___m_Padding_3;
// System.Byte UnityEngine.Rendering.StencilState::m_CompareFunctionFront
uint8_t ___m_CompareFunctionFront_4;
// System.Byte UnityEngine.Rendering.StencilState::m_PassOperationFront
uint8_t ___m_PassOperationFront_5;
// System.Byte UnityEngine.Rendering.StencilState::m_FailOperationFront
uint8_t ___m_FailOperationFront_6;
// System.Byte UnityEngine.Rendering.StencilState::m_ZFailOperationFront
uint8_t ___m_ZFailOperationFront_7;
// System.Byte UnityEngine.Rendering.StencilState::m_CompareFunctionBack
uint8_t ___m_CompareFunctionBack_8;
// System.Byte UnityEngine.Rendering.StencilState::m_PassOperationBack
uint8_t ___m_PassOperationBack_9;
// System.Byte UnityEngine.Rendering.StencilState::m_FailOperationBack
uint8_t ___m_FailOperationBack_10;
// System.Byte UnityEngine.Rendering.StencilState::m_ZFailOperationBack
uint8_t ___m_ZFailOperationBack_11;
public:
inline static int32_t get_offset_of_m_Enabled_0() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_Enabled_0)); }
inline uint8_t get_m_Enabled_0() const { return ___m_Enabled_0; }
inline uint8_t* get_address_of_m_Enabled_0() { return &___m_Enabled_0; }
inline void set_m_Enabled_0(uint8_t value)
{
___m_Enabled_0 = value;
}
inline static int32_t get_offset_of_m_ReadMask_1() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_ReadMask_1)); }
inline uint8_t get_m_ReadMask_1() const { return ___m_ReadMask_1; }
inline uint8_t* get_address_of_m_ReadMask_1() { return &___m_ReadMask_1; }
inline void set_m_ReadMask_1(uint8_t value)
{
___m_ReadMask_1 = value;
}
inline static int32_t get_offset_of_m_WriteMask_2() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_WriteMask_2)); }
inline uint8_t get_m_WriteMask_2() const { return ___m_WriteMask_2; }
inline uint8_t* get_address_of_m_WriteMask_2() { return &___m_WriteMask_2; }
inline void set_m_WriteMask_2(uint8_t value)
{
___m_WriteMask_2 = value;
}
inline static int32_t get_offset_of_m_Padding_3() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_Padding_3)); }
inline uint8_t get_m_Padding_3() const { return ___m_Padding_3; }
inline uint8_t* get_address_of_m_Padding_3() { return &___m_Padding_3; }
inline void set_m_Padding_3(uint8_t value)
{
___m_Padding_3 = value;
}
inline static int32_t get_offset_of_m_CompareFunctionFront_4() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_CompareFunctionFront_4)); }
inline uint8_t get_m_CompareFunctionFront_4() const { return ___m_CompareFunctionFront_4; }
inline uint8_t* get_address_of_m_CompareFunctionFront_4() { return &___m_CompareFunctionFront_4; }
inline void set_m_CompareFunctionFront_4(uint8_t value)
{
___m_CompareFunctionFront_4 = value;
}
inline static int32_t get_offset_of_m_PassOperationFront_5() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_PassOperationFront_5)); }
inline uint8_t get_m_PassOperationFront_5() const { return ___m_PassOperationFront_5; }
inline uint8_t* get_address_of_m_PassOperationFront_5() { return &___m_PassOperationFront_5; }
inline void set_m_PassOperationFront_5(uint8_t value)
{
___m_PassOperationFront_5 = value;
}
inline static int32_t get_offset_of_m_FailOperationFront_6() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_FailOperationFront_6)); }
inline uint8_t get_m_FailOperationFront_6() const { return ___m_FailOperationFront_6; }
inline uint8_t* get_address_of_m_FailOperationFront_6() { return &___m_FailOperationFront_6; }
inline void set_m_FailOperationFront_6(uint8_t value)
{
___m_FailOperationFront_6 = value;
}
inline static int32_t get_offset_of_m_ZFailOperationFront_7() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_ZFailOperationFront_7)); }
inline uint8_t get_m_ZFailOperationFront_7() const { return ___m_ZFailOperationFront_7; }
inline uint8_t* get_address_of_m_ZFailOperationFront_7() { return &___m_ZFailOperationFront_7; }
inline void set_m_ZFailOperationFront_7(uint8_t value)
{
___m_ZFailOperationFront_7 = value;
}
inline static int32_t get_offset_of_m_CompareFunctionBack_8() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_CompareFunctionBack_8)); }
inline uint8_t get_m_CompareFunctionBack_8() const { return ___m_CompareFunctionBack_8; }
inline uint8_t* get_address_of_m_CompareFunctionBack_8() { return &___m_CompareFunctionBack_8; }
inline void set_m_CompareFunctionBack_8(uint8_t value)
{
___m_CompareFunctionBack_8 = value;
}
inline static int32_t get_offset_of_m_PassOperationBack_9() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_PassOperationBack_9)); }
inline uint8_t get_m_PassOperationBack_9() const { return ___m_PassOperationBack_9; }
inline uint8_t* get_address_of_m_PassOperationBack_9() { return &___m_PassOperationBack_9; }
inline void set_m_PassOperationBack_9(uint8_t value)
{
___m_PassOperationBack_9 = value;
}
inline static int32_t get_offset_of_m_FailOperationBack_10() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_FailOperationBack_10)); }
inline uint8_t get_m_FailOperationBack_10() const { return ___m_FailOperationBack_10; }
inline uint8_t* get_address_of_m_FailOperationBack_10() { return &___m_FailOperationBack_10; }
inline void set_m_FailOperationBack_10(uint8_t value)
{
___m_FailOperationBack_10 = value;
}
inline static int32_t get_offset_of_m_ZFailOperationBack_11() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_ZFailOperationBack_11)); }
inline uint8_t get_m_ZFailOperationBack_11() const { return ___m_ZFailOperationBack_11; }
inline uint8_t* get_address_of_m_ZFailOperationBack_11() { return &___m_ZFailOperationBack_11; }
inline void set_m_ZFailOperationBack_11(uint8_t value)
{
___m_ZFailOperationBack_11 = value;
}
};
// UnityEngine.Rendering.Universal.RenderTargetHandle
struct RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1
{
public:
// System.Int32 UnityEngine.Rendering.Universal.RenderTargetHandle::<id>k__BackingField
int32_t ___U3CidU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1, ___U3CidU3Ek__BackingField_0)); }
inline int32_t get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(int32_t value)
{
___U3CidU3Ek__BackingField_0 = value;
}
};
struct RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1_StaticFields
{
public:
// UnityEngine.Rendering.Universal.RenderTargetHandle UnityEngine.Rendering.Universal.RenderTargetHandle::CameraTarget
RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 ___CameraTarget_1;
public:
inline static int32_t get_offset_of_CameraTarget_1() { return static_cast<int32_t>(offsetof(RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1_StaticFields, ___CameraTarget_1)); }
inline RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 get_CameraTarget_1() const { return ___CameraTarget_1; }
inline RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 * get_address_of_CameraTarget_1() { return &___CameraTarget_1; }
inline void set_CameraTarget_1(RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 value)
{
___CameraTarget_1 = value;
}
};
// UnityEngine.Rendering.VolumeParameter`1<System.Boolean>
struct VolumeParameter_1_tD727F51C448AAC91D25F1609ADD17F597E8D3377 : public VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978
{
public:
// T UnityEngine.Rendering.VolumeParameter`1::m_Value
bool ___m_Value_2;
public:
inline static int32_t get_offset_of_m_Value_2() { return static_cast<int32_t>(offsetof(VolumeParameter_1_tD727F51C448AAC91D25F1609ADD17F597E8D3377, ___m_Value_2)); }
inline bool get_m_Value_2() const { return ___m_Value_2; }
inline bool* get_address_of_m_Value_2() { return &___m_Value_2; }
inline void set_m_Value_2(bool value)
{
___m_Value_2 = value;
}
};
// UnityEngine.Rendering.VolumeParameter`1<System.Int32>
struct VolumeParameter_1_t9036B485C45493700212A8CE33D588DD86F52033 : public VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978
{
public:
// T UnityEngine.Rendering.VolumeParameter`1::m_Value
int32_t ___m_Value_2;
public:
inline static int32_t get_offset_of_m_Value_2() { return static_cast<int32_t>(offsetof(VolumeParameter_1_t9036B485C45493700212A8CE33D588DD86F52033, ___m_Value_2)); }
inline int32_t get_m_Value_2() const { return ___m_Value_2; }
inline int32_t* get_address_of_m_Value_2() { return &___m_Value_2; }
inline void set_m_Value_2(int32_t value)
{
___m_Value_2 = value;
}
};
// UnityEngine.Rendering.VolumeParameter`1<System.Object>
struct VolumeParameter_1_t0C531F16D9114D9347679EC817FCA2F931139E10 : public VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978
{
public:
// T UnityEngine.Rendering.VolumeParameter`1::m_Value
RuntimeObject * ___m_Value_2;
public:
inline static int32_t get_offset_of_m_Value_2() { return static_cast<int32_t>(offsetof(VolumeParameter_1_t0C531F16D9114D9347679EC817FCA2F931139E10, ___m_Value_2)); }
inline RuntimeObject * get_m_Value_2() const { return ___m_Value_2; }
inline RuntimeObject ** get_address_of_m_Value_2() { return &___m_Value_2; }
inline void set_m_Value_2(RuntimeObject * value)
{
___m_Value_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Value_2), (void*)value);
}
};
// UnityEngine.Rendering.VolumeParameter`1<System.Single>
struct VolumeParameter_1_t17378A4CEB679A71C613697D8C8E13535D1E26E2 : public VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978
{
public:
// T UnityEngine.Rendering.VolumeParameter`1::m_Value
float ___m_Value_2;
public:
inline static int32_t get_offset_of_m_Value_2() { return static_cast<int32_t>(offsetof(VolumeParameter_1_t17378A4CEB679A71C613697D8C8E13535D1E26E2, ___m_Value_2)); }
inline float get_m_Value_2() const { return ___m_Value_2; }
inline float* get_address_of_m_Value_2() { return &___m_Value_2; }
inline void set_m_Value_2(float value)
{
___m_Value_2 = value;
}
};
// UnityEngine.SendMouseEvents_HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746
{
public:
// UnityEngine.GameObject UnityEngine.SendMouseEvents_HitInfo::target
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
// UnityEngine.Camera UnityEngine.SendMouseEvents_HitInfo::camera
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
public:
inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746, ___target_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_target_0() const { return ___target_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_target_0() { return &___target_0; }
inline void set_target_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_0), (void*)value);
}
inline static int32_t get_offset_of_camera_1() { return static_cast<int32_t>(offsetof(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746, ___camera_1)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_camera_1() const { return ___camera_1; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_camera_1() { return &___camera_1; }
inline void set_camera_1(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___camera_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___camera_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
};
// Native definition for COM marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
};
// UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Identifier
String_t* ___m_Identifier_0;
// System.Double UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_PercentCompleted
double ___m_PercentCompleted_1;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Completed
int32_t ___m_Completed_2;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Hidden
int32_t ___m_Hidden_3;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_LastReportedDate
int32_t ___m_LastReportedDate_4;
public:
inline static int32_t get_offset_of_m_Identifier_0() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Identifier_0)); }
inline String_t* get_m_Identifier_0() const { return ___m_Identifier_0; }
inline String_t** get_address_of_m_Identifier_0() { return &___m_Identifier_0; }
inline void set_m_Identifier_0(String_t* value)
{
___m_Identifier_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Identifier_0), (void*)value);
}
inline static int32_t get_offset_of_m_PercentCompleted_1() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_PercentCompleted_1)); }
inline double get_m_PercentCompleted_1() const { return ___m_PercentCompleted_1; }
inline double* get_address_of_m_PercentCompleted_1() { return &___m_PercentCompleted_1; }
inline void set_m_PercentCompleted_1(double value)
{
___m_PercentCompleted_1 = value;
}
inline static int32_t get_offset_of_m_Completed_2() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Completed_2)); }
inline int32_t get_m_Completed_2() const { return ___m_Completed_2; }
inline int32_t* get_address_of_m_Completed_2() { return &___m_Completed_2; }
inline void set_m_Completed_2(int32_t value)
{
___m_Completed_2 = value;
}
inline static int32_t get_offset_of_m_Hidden_3() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Hidden_3)); }
inline int32_t get_m_Hidden_3() const { return ___m_Hidden_3; }
inline int32_t* get_address_of_m_Hidden_3() { return &___m_Hidden_3; }
inline void set_m_Hidden_3(int32_t value)
{
___m_Hidden_3 = value;
}
inline static int32_t get_offset_of_m_LastReportedDate_4() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_LastReportedDate_4)); }
inline int32_t get_m_LastReportedDate_4() const { return ___m_LastReportedDate_4; }
inline int32_t* get_address_of_m_LastReportedDate_4() { return &___m_LastReportedDate_4; }
inline void set_m_LastReportedDate_4(int32_t value)
{
___m_LastReportedDate_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_marshaled_pinvoke
{
char* ___m_Identifier_0;
double ___m_PercentCompleted_1;
int32_t ___m_Completed_2;
int32_t ___m_Hidden_3;
int32_t ___m_LastReportedDate_4;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_marshaled_com
{
Il2CppChar* ___m_Identifier_0;
double ___m_PercentCompleted_1;
int32_t ___m_Completed_2;
int32_t ___m_Hidden_3;
int32_t ___m_LastReportedDate_4;
};
// UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Category
String_t* ___m_Category_0;
// System.UInt32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueLow
uint32_t ___m_ValueLow_1;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueHigh
int32_t ___m_ValueHigh_2;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Date
int32_t ___m_Date_3;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_FormattedValue
String_t* ___m_FormattedValue_4;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_PlayerID
String_t* ___m_PlayerID_5;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Rank
int32_t ___m_Rank_6;
public:
inline static int32_t get_offset_of_m_Category_0() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Category_0)); }
inline String_t* get_m_Category_0() const { return ___m_Category_0; }
inline String_t** get_address_of_m_Category_0() { return &___m_Category_0; }
inline void set_m_Category_0(String_t* value)
{
___m_Category_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Category_0), (void*)value);
}
inline static int32_t get_offset_of_m_ValueLow_1() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_ValueLow_1)); }
inline uint32_t get_m_ValueLow_1() const { return ___m_ValueLow_1; }
inline uint32_t* get_address_of_m_ValueLow_1() { return &___m_ValueLow_1; }
inline void set_m_ValueLow_1(uint32_t value)
{
___m_ValueLow_1 = value;
}
inline static int32_t get_offset_of_m_ValueHigh_2() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_ValueHigh_2)); }
inline int32_t get_m_ValueHigh_2() const { return ___m_ValueHigh_2; }
inline int32_t* get_address_of_m_ValueHigh_2() { return &___m_ValueHigh_2; }
inline void set_m_ValueHigh_2(int32_t value)
{
___m_ValueHigh_2 = value;
}
inline static int32_t get_offset_of_m_Date_3() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Date_3)); }
inline int32_t get_m_Date_3() const { return ___m_Date_3; }
inline int32_t* get_address_of_m_Date_3() { return &___m_Date_3; }
inline void set_m_Date_3(int32_t value)
{
___m_Date_3 = value;
}
inline static int32_t get_offset_of_m_FormattedValue_4() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_FormattedValue_4)); }
inline String_t* get_m_FormattedValue_4() const { return ___m_FormattedValue_4; }
inline String_t** get_address_of_m_FormattedValue_4() { return &___m_FormattedValue_4; }
inline void set_m_FormattedValue_4(String_t* value)
{
___m_FormattedValue_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FormattedValue_4), (void*)value);
}
inline static int32_t get_offset_of_m_PlayerID_5() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_PlayerID_5)); }
inline String_t* get_m_PlayerID_5() const { return ___m_PlayerID_5; }
inline String_t** get_address_of_m_PlayerID_5() { return &___m_PlayerID_5; }
inline void set_m_PlayerID_5(String_t* value)
{
___m_PlayerID_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PlayerID_5), (void*)value);
}
inline static int32_t get_offset_of_m_Rank_6() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Rank_6)); }
inline int32_t get_m_Rank_6() const { return ___m_Rank_6; }
inline int32_t* get_address_of_m_Rank_6() { return &___m_Rank_6; }
inline void set_m_Rank_6(int32_t value)
{
___m_Rank_6 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_marshaled_pinvoke
{
char* ___m_Category_0;
uint32_t ___m_ValueLow_1;
int32_t ___m_ValueHigh_2;
int32_t ___m_Date_3;
char* ___m_FormattedValue_4;
char* ___m_PlayerID_5;
int32_t ___m_Rank_6;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_marshaled_com
{
Il2CppChar* ___m_Category_0;
uint32_t ___m_ValueLow_1;
int32_t ___m_ValueHigh_2;
int32_t ___m_Date_3;
Il2CppChar* ___m_FormattedValue_4;
Il2CppChar* ___m_PlayerID_5;
int32_t ___m_Rank_6;
};
// UnityEngine.SortingLayer
struct SortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203
{
public:
// System.Int32 UnityEngine.SortingLayer::m_Id
int32_t ___m_Id_0;
public:
inline static int32_t get_offset_of_m_Id_0() { return static_cast<int32_t>(offsetof(SortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203, ___m_Id_0)); }
inline int32_t get_m_Id_0() const { return ___m_Id_0; }
inline int32_t* get_address_of_m_Id_0() { return &___m_Id_0; }
inline void set_m_Id_0(int32_t value)
{
___m_Id_0 = value;
}
};
// UnityEngine.TextCore.GlyphMetrics
struct GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB
{
public:
// System.Single UnityEngine.TextCore.GlyphMetrics::m_Width
float ___m_Width_0;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_Height
float ___m_Height_1;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalBearingX
float ___m_HorizontalBearingX_2;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalBearingY
float ___m_HorizontalBearingY_3;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalAdvance
float ___m_HorizontalAdvance_4;
public:
inline static int32_t get_offset_of_m_Width_0() { return static_cast<int32_t>(offsetof(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB, ___m_Width_0)); }
inline float get_m_Width_0() const { return ___m_Width_0; }
inline float* get_address_of_m_Width_0() { return &___m_Width_0; }
inline void set_m_Width_0(float value)
{
___m_Width_0 = value;
}
inline static int32_t get_offset_of_m_Height_1() { return static_cast<int32_t>(offsetof(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB, ___m_Height_1)); }
inline float get_m_Height_1() const { return ___m_Height_1; }
inline float* get_address_of_m_Height_1() { return &___m_Height_1; }
inline void set_m_Height_1(float value)
{
___m_Height_1 = value;
}
inline static int32_t get_offset_of_m_HorizontalBearingX_2() { return static_cast<int32_t>(offsetof(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB, ___m_HorizontalBearingX_2)); }
inline float get_m_HorizontalBearingX_2() const { return ___m_HorizontalBearingX_2; }
inline float* get_address_of_m_HorizontalBearingX_2() { return &___m_HorizontalBearingX_2; }
inline void set_m_HorizontalBearingX_2(float value)
{
___m_HorizontalBearingX_2 = value;
}
inline static int32_t get_offset_of_m_HorizontalBearingY_3() { return static_cast<int32_t>(offsetof(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB, ___m_HorizontalBearingY_3)); }
inline float get_m_HorizontalBearingY_3() const { return ___m_HorizontalBearingY_3; }
inline float* get_address_of_m_HorizontalBearingY_3() { return &___m_HorizontalBearingY_3; }
inline void set_m_HorizontalBearingY_3(float value)
{
___m_HorizontalBearingY_3 = value;
}
inline static int32_t get_offset_of_m_HorizontalAdvance_4() { return static_cast<int32_t>(offsetof(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB, ___m_HorizontalAdvance_4)); }
inline float get_m_HorizontalAdvance_4() const { return ___m_HorizontalAdvance_4; }
inline float* get_address_of_m_HorizontalAdvance_4() { return &___m_HorizontalAdvance_4; }
inline void set_m_HorizontalAdvance_4(float value)
{
___m_HorizontalAdvance_4 = value;
}
};
// UnityEngine.TextCore.GlyphRect
struct GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C
{
public:
// System.Int32 UnityEngine.TextCore.GlyphRect::m_X
int32_t ___m_X_0;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Y
int32_t ___m_Y_1;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Width
int32_t ___m_Width_2;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Height
int32_t ___m_Height_3;
public:
inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_X_0)); }
inline int32_t get_m_X_0() const { return ___m_X_0; }
inline int32_t* get_address_of_m_X_0() { return &___m_X_0; }
inline void set_m_X_0(int32_t value)
{
___m_X_0 = value;
}
inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_Y_1)); }
inline int32_t get_m_Y_1() const { return ___m_Y_1; }
inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; }
inline void set_m_Y_1(int32_t value)
{
___m_Y_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_Width_2)); }
inline int32_t get_m_Width_2() const { return ___m_Width_2; }
inline int32_t* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(int32_t value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_Height_3)); }
inline int32_t get_m_Height_3() const { return ___m_Height_3; }
inline int32_t* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(int32_t value)
{
___m_Height_3 = value;
}
};
struct GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_StaticFields
{
public:
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.GlyphRect::s_ZeroGlyphRect
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___s_ZeroGlyphRect_4;
public:
inline static int32_t get_offset_of_s_ZeroGlyphRect_4() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_StaticFields, ___s_ZeroGlyphRect_4)); }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C get_s_ZeroGlyphRect_4() const { return ___s_ZeroGlyphRect_4; }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * get_address_of_s_ZeroGlyphRect_4() { return &___s_ZeroGlyphRect_4; }
inline void set_s_ZeroGlyphRect_4(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
___s_ZeroGlyphRect_4 = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphValueRecord
struct GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D
{
public:
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XPlacement
float ___m_XPlacement_0;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YPlacement
float ___m_YPlacement_1;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XAdvance
float ___m_XAdvance_2;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YAdvance
float ___m_YAdvance_3;
public:
inline static int32_t get_offset_of_m_XPlacement_0() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D, ___m_XPlacement_0)); }
inline float get_m_XPlacement_0() const { return ___m_XPlacement_0; }
inline float* get_address_of_m_XPlacement_0() { return &___m_XPlacement_0; }
inline void set_m_XPlacement_0(float value)
{
___m_XPlacement_0 = value;
}
inline static int32_t get_offset_of_m_YPlacement_1() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D, ___m_YPlacement_1)); }
inline float get_m_YPlacement_1() const { return ___m_YPlacement_1; }
inline float* get_address_of_m_YPlacement_1() { return &___m_YPlacement_1; }
inline void set_m_YPlacement_1(float value)
{
___m_YPlacement_1 = value;
}
inline static int32_t get_offset_of_m_XAdvance_2() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D, ___m_XAdvance_2)); }
inline float get_m_XAdvance_2() const { return ___m_XAdvance_2; }
inline float* get_address_of_m_XAdvance_2() { return &___m_XAdvance_2; }
inline void set_m_XAdvance_2(float value)
{
___m_XAdvance_2 = value;
}
inline static int32_t get_offset_of_m_YAdvance_3() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D, ___m_YAdvance_3)); }
inline float get_m_YAdvance_3() const { return ___m_YAdvance_3; }
inline float* get_address_of_m_YAdvance_3() { return &___m_YAdvance_3; }
inline void set_m_YAdvance_3(float value)
{
___m_YAdvance_3 = value;
}
};
// UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A
{
public:
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
public:
inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_HighlightedSprite_0)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; }
inline void set_m_HighlightedSprite_0(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_HighlightedSprite_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value);
}
inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_PressedSprite_1)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; }
inline void set_m_PressedSprite_1(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_PressedSprite_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_SelectedSprite_2)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; }
inline void set_m_SelectedSprite_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_SelectedSprite_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value);
}
inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_DisabledSprite_3)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; }
inline void set_m_DisabledSprite_3(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_DisabledSprite_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_pinvoke
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// Native definition for COM marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_com
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// UnityEngine.UILineInfo
struct UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6
{
public:
// System.Int32 UnityEngine.UILineInfo::startCharIdx
int32_t ___startCharIdx_0;
// System.Int32 UnityEngine.UILineInfo::height
int32_t ___height_1;
// System.Single UnityEngine.UILineInfo::topY
float ___topY_2;
// System.Single UnityEngine.UILineInfo::leading
float ___leading_3;
public:
inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___startCharIdx_0)); }
inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; }
inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; }
inline void set_startCharIdx_0(int32_t value)
{
___startCharIdx_0 = value;
}
inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___height_1)); }
inline int32_t get_height_1() const { return ___height_1; }
inline int32_t* get_address_of_height_1() { return &___height_1; }
inline void set_height_1(int32_t value)
{
___height_1 = value;
}
inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___topY_2)); }
inline float get_topY_2() const { return ___topY_2; }
inline float* get_address_of_topY_2() { return &___topY_2; }
inline void set_topY_2(float value)
{
___topY_2 = value;
}
inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___leading_3)); }
inline float get_leading_3() const { return ___leading_3; }
inline float* get_address_of_leading_3() { return &___leading_3; }
inline void set_leading_3(float value)
{
___leading_3 = value;
}
};
// UnityEngine.UnitySynchronizationContext_WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94
{
public:
// System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateCallback
SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * ___m_DelagateCallback_0;
// System.Object UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateState
RuntimeObject * ___m_DelagateState_1;
// System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext_WorkRequest::m_WaitHandle
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
public:
inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateCallback_0)); }
inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; }
inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; }
inline void set_m_DelagateCallback_0(SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * value)
{
___m_DelagateCallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateCallback_0), (void*)value);
}
inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateState_1)); }
inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; }
inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; }
inline void set_m_DelagateState_1(RuntimeObject * value)
{
___m_DelagateState_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateState_1), (void*)value);
}
inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_WaitHandle_2)); }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; }
inline void set_m_WaitHandle_2(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value)
{
___m_WaitHandle_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WaitHandle_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_pinvoke
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
};
// Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_com
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
};
// UnityEngine.Vector2
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___zeroVector_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___oneVector_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___upVector_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_upVector_4() const { return ___upVector_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___downVector_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_downVector_5() const { return ___downVector_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___leftVector_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___rightVector_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector2Int
struct Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905
{
public:
// System.Int32 UnityEngine.Vector2Int::m_X
int32_t ___m_X_0;
// System.Int32 UnityEngine.Vector2Int::m_Y
int32_t ___m_Y_1;
public:
inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905, ___m_X_0)); }
inline int32_t get_m_X_0() const { return ___m_X_0; }
inline int32_t* get_address_of_m_X_0() { return &___m_X_0; }
inline void set_m_X_0(int32_t value)
{
___m_X_0 = value;
}
inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905, ___m_Y_1)); }
inline int32_t get_m_Y_1() const { return ___m_Y_1; }
inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; }
inline void set_m_Y_1(int32_t value)
{
___m_Y_1 = value;
}
};
struct Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields
{
public:
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Zero
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_Zero_2;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_One
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_One_3;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Up
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_Up_4;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Down
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_Down_5;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Left
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_Left_6;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Right
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_Right_7;
public:
inline static int32_t get_offset_of_s_Zero_2() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_Zero_2)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_Zero_2() const { return ___s_Zero_2; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_Zero_2() { return &___s_Zero_2; }
inline void set_s_Zero_2(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_Zero_2 = value;
}
inline static int32_t get_offset_of_s_One_3() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_One_3)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_One_3() const { return ___s_One_3; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_One_3() { return &___s_One_3; }
inline void set_s_One_3(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_One_3 = value;
}
inline static int32_t get_offset_of_s_Up_4() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_Up_4)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_Up_4() const { return ___s_Up_4; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_Up_4() { return &___s_Up_4; }
inline void set_s_Up_4(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_Up_4 = value;
}
inline static int32_t get_offset_of_s_Down_5() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_Down_5)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_Down_5() const { return ___s_Down_5; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_Down_5() { return &___s_Down_5; }
inline void set_s_Down_5(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_Down_5 = value;
}
inline static int32_t get_offset_of_s_Left_6() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_Left_6)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_Left_6() const { return ___s_Left_6; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_Left_6() { return &___s_Left_6; }
inline void set_s_Left_6(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_Left_6 = value;
}
inline static int32_t get_offset_of_s_Right_7() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_Right_7)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_Right_7() const { return ___s_Right_7; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_Right_7() { return &___s_Right_7; }
inline void set_s_Right_7(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_Right_7 = value;
}
};
// UnityEngine.Vector3
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___zeroVector_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___oneVector_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___upVector_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_upVector_7() const { return ___upVector_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___downVector_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_downVector_8() const { return ___downVector_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___leftVector_9)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___rightVector_10)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___forwardVector_11)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___backVector_12)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_backVector_12() const { return ___backVector_12; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___negativeInfinityVector_14 = value;
}
};
// UnityEngine.Vector4
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E
{
public:
// System.Single UnityEngine.Vector4::x
float ___x_1;
// System.Single UnityEngine.Vector4::y
float ___y_2;
// System.Single UnityEngine.Vector4::z
float ___z_3;
// System.Single UnityEngine.Vector4::w
float ___w_4;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___w_4)); }
inline float get_w_4() const { return ___w_4; }
inline float* get_address_of_w_4() { return &___w_4; }
inline void set_w_4(float value)
{
___w_4 = value;
}
};
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___negativeInfinityVector_8;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___zeroVector_5)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___oneVector_6)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_oneVector_6() const { return ___oneVector_6; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___positiveInfinityVector_7)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; }
inline void set_positiveInfinityVector_7(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___positiveInfinityVector_7 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___negativeInfinityVector_8)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; }
inline void set_negativeInfinityVector_8(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___negativeInfinityVector_8 = value;
}
};
// UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastInfo
struct PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2
{
public:
// System.Single UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastInfo::distance
float ___distance_0;
// System.Single UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastInfo::cosineAngleWithRay
float ___cosineAngleWithRay_1;
public:
inline static int32_t get_offset_of_distance_0() { return static_cast<int32_t>(offsetof(PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2, ___distance_0)); }
inline float get_distance_0() const { return ___distance_0; }
inline float* get_address_of_distance_0() { return &___distance_0; }
inline void set_distance_0(float value)
{
___distance_0 = value;
}
inline static int32_t get_offset_of_cosineAngleWithRay_1() { return static_cast<int32_t>(offsetof(PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2, ___cosineAngleWithRay_1)); }
inline float get_cosineAngleWithRay_1() const { return ___cosineAngleWithRay_1; }
inline float* get_address_of_cosineAngleWithRay_1() { return &___cosineAngleWithRay_1; }
inline void set_cosineAngleWithRay_1(float value)
{
___cosineAngleWithRay_1 = value;
}
};
// UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int16>
struct Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127
{
public:
// T UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1::a
int16_t ___a_0;
// T UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1::b
int16_t ___b_1;
// T UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1::c
int16_t ___c_2;
public:
inline static int32_t get_offset_of_a_0() { return static_cast<int32_t>(offsetof(Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127, ___a_0)); }
inline int16_t get_a_0() const { return ___a_0; }
inline int16_t* get_address_of_a_0() { return &___a_0; }
inline void set_a_0(int16_t value)
{
___a_0 = value;
}
inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127, ___b_1)); }
inline int16_t get_b_1() const { return ___b_1; }
inline int16_t* get_address_of_b_1() { return &___b_1; }
inline void set_b_1(int16_t value)
{
___b_1 = value;
}
inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127, ___c_2)); }
inline int16_t get_c_2() const { return ___c_2; }
inline int16_t* get_address_of_c_2() { return &___c_2; }
inline void set_c_2(int16_t value)
{
___c_2 = value;
}
};
// UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int32>
struct Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462
{
public:
// T UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1::a
int32_t ___a_0;
// T UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1::b
int32_t ___b_1;
// T UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1::c
int32_t ___c_2;
public:
inline static int32_t get_offset_of_a_0() { return static_cast<int32_t>(offsetof(Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462, ___a_0)); }
inline int32_t get_a_0() const { return ___a_0; }
inline int32_t* get_address_of_a_0() { return &___a_0; }
inline void set_a_0(int32_t value)
{
___a_0 = value;
}
inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462, ___b_1)); }
inline int32_t get_b_1() const { return ___b_1; }
inline int32_t* get_address_of_b_1() { return &___b_1; }
inline void set_b_1(int32_t value)
{
___b_1 = value;
}
inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462, ___c_2)); }
inline int32_t get_c_2() const { return ___c_2; }
inline int32_t* get_address_of_c_2() { return &___c_2; }
inline void set_c_2(int32_t value)
{
___c_2 = value;
}
};
// UnityEngine.XR.ARSubsystems.SerializableGuid
struct SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.SerializableGuid::m_GuidLow
uint64_t ___m_GuidLow_1;
// System.UInt64 UnityEngine.XR.ARSubsystems.SerializableGuid::m_GuidHigh
uint64_t ___m_GuidHigh_2;
public:
inline static int32_t get_offset_of_m_GuidLow_1() { return static_cast<int32_t>(offsetof(SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821, ___m_GuidLow_1)); }
inline uint64_t get_m_GuidLow_1() const { return ___m_GuidLow_1; }
inline uint64_t* get_address_of_m_GuidLow_1() { return &___m_GuidLow_1; }
inline void set_m_GuidLow_1(uint64_t value)
{
___m_GuidLow_1 = value;
}
inline static int32_t get_offset_of_m_GuidHigh_2() { return static_cast<int32_t>(offsetof(SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821, ___m_GuidHigh_2)); }
inline uint64_t get_m_GuidHigh_2() const { return ___m_GuidHigh_2; }
inline uint64_t* get_address_of_m_GuidHigh_2() { return &___m_GuidHigh_2; }
inline void set_m_GuidHigh_2(uint64_t value)
{
___m_GuidHigh_2 = value;
}
};
struct SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.SerializableGuid::k_Empty
SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 ___k_Empty_0;
public:
inline static int32_t get_offset_of_k_Empty_0() { return static_cast<int32_t>(offsetof(SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821_StaticFields, ___k_Empty_0)); }
inline SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 get_k_Empty_0() const { return ___k_Empty_0; }
inline SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 * get_address_of_k_Empty_0() { return &___k_Empty_0; }
inline void set_k_Empty_0(SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 value)
{
___k_Empty_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableId
struct TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId1
uint64_t ___m_SubId1_1;
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId2
uint64_t ___m_SubId2_2;
public:
inline static int32_t get_offset_of_m_SubId1_1() { return static_cast<int32_t>(offsetof(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47, ___m_SubId1_1)); }
inline uint64_t get_m_SubId1_1() const { return ___m_SubId1_1; }
inline uint64_t* get_address_of_m_SubId1_1() { return &___m_SubId1_1; }
inline void set_m_SubId1_1(uint64_t value)
{
___m_SubId1_1 = value;
}
inline static int32_t get_offset_of_m_SubId2_2() { return static_cast<int32_t>(offsetof(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47, ___m_SubId2_2)); }
inline uint64_t get_m_SubId2_2() const { return ___m_SubId2_2; }
inline uint64_t* get_address_of_m_SubId2_2() { return &___m_SubId2_2; }
inline void set_m_SubId2_2(uint64_t value)
{
___m_SubId2_2 = value;
}
};
struct TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.TrackableId::s_InvalidId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___s_InvalidId_0;
public:
inline static int32_t get_offset_of_s_InvalidId_0() { return static_cast<int32_t>(offsetof(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_StaticFields, ___s_InvalidId_0)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_s_InvalidId_0() const { return ___s_InvalidId_0; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_s_InvalidId_0() { return &___s_InvalidId_0; }
inline void set_s_InvalidId_0(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___s_InvalidId_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRReferenceObject
struct XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceObject::m_GuidLow
uint64_t ___m_GuidLow_0;
// System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceObject::m_GuidHigh
uint64_t ___m_GuidHigh_1;
// System.String UnityEngine.XR.ARSubsystems.XRReferenceObject::m_Name
String_t* ___m_Name_2;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry> UnityEngine.XR.ARSubsystems.XRReferenceObject::m_Entries
List_1_t564CABFE377BD9215732520DE10D1FEB72E336AE * ___m_Entries_3;
public:
inline static int32_t get_offset_of_m_GuidLow_0() { return static_cast<int32_t>(offsetof(XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA, ___m_GuidLow_0)); }
inline uint64_t get_m_GuidLow_0() const { return ___m_GuidLow_0; }
inline uint64_t* get_address_of_m_GuidLow_0() { return &___m_GuidLow_0; }
inline void set_m_GuidLow_0(uint64_t value)
{
___m_GuidLow_0 = value;
}
inline static int32_t get_offset_of_m_GuidHigh_1() { return static_cast<int32_t>(offsetof(XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA, ___m_GuidHigh_1)); }
inline uint64_t get_m_GuidHigh_1() const { return ___m_GuidHigh_1; }
inline uint64_t* get_address_of_m_GuidHigh_1() { return &___m_GuidHigh_1; }
inline void set_m_GuidHigh_1(uint64_t value)
{
___m_GuidHigh_1 = value;
}
inline static int32_t get_offset_of_m_Name_2() { return static_cast<int32_t>(offsetof(XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA, ___m_Name_2)); }
inline String_t* get_m_Name_2() const { return ___m_Name_2; }
inline String_t** get_address_of_m_Name_2() { return &___m_Name_2; }
inline void set_m_Name_2(String_t* value)
{
___m_Name_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_2), (void*)value);
}
inline static int32_t get_offset_of_m_Entries_3() { return static_cast<int32_t>(offsetof(XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA, ___m_Entries_3)); }
inline List_1_t564CABFE377BD9215732520DE10D1FEB72E336AE * get_m_Entries_3() const { return ___m_Entries_3; }
inline List_1_t564CABFE377BD9215732520DE10D1FEB72E336AE ** get_address_of_m_Entries_3() { return &___m_Entries_3; }
inline void set_m_Entries_3(List_1_t564CABFE377BD9215732520DE10D1FEB72E336AE * value)
{
___m_Entries_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Entries_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRReferenceObject
struct XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_marshaled_pinvoke
{
uint64_t ___m_GuidLow_0;
uint64_t ___m_GuidHigh_1;
char* ___m_Name_2;
List_1_t564CABFE377BD9215732520DE10D1FEB72E336AE * ___m_Entries_3;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRReferenceObject
struct XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_marshaled_com
{
uint64_t ___m_GuidLow_0;
uint64_t ___m_GuidHigh_1;
Il2CppChar* ___m_Name_2;
List_1_t564CABFE377BD9215732520DE10D1FEB72E336AE * ___m_Entries_3;
};
// UnityEngine.XR.MeshId
struct MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A
{
public:
// System.UInt64 UnityEngine.XR.MeshId::m_SubId1
uint64_t ___m_SubId1_1;
// System.UInt64 UnityEngine.XR.MeshId::m_SubId2
uint64_t ___m_SubId2_2;
public:
inline static int32_t get_offset_of_m_SubId1_1() { return static_cast<int32_t>(offsetof(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A, ___m_SubId1_1)); }
inline uint64_t get_m_SubId1_1() const { return ___m_SubId1_1; }
inline uint64_t* get_address_of_m_SubId1_1() { return &___m_SubId1_1; }
inline void set_m_SubId1_1(uint64_t value)
{
___m_SubId1_1 = value;
}
inline static int32_t get_offset_of_m_SubId2_2() { return static_cast<int32_t>(offsetof(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A, ___m_SubId2_2)); }
inline uint64_t get_m_SubId2_2() const { return ___m_SubId2_2; }
inline uint64_t* get_address_of_m_SubId2_2() { return &___m_SubId2_2; }
inline void set_m_SubId2_2(uint64_t value)
{
___m_SubId2_2 = value;
}
};
struct MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_StaticFields
{
public:
// UnityEngine.XR.MeshId UnityEngine.XR.MeshId::s_InvalidId
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___s_InvalidId_0;
public:
inline static int32_t get_offset_of_s_InvalidId_0() { return static_cast<int32_t>(offsetof(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_StaticFields, ___s_InvalidId_0)); }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A get_s_InvalidId_0() const { return ___s_InvalidId_0; }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * get_address_of_s_InvalidId_0() { return &___s_InvalidId_0; }
inline void set_s_InvalidId_0(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A value)
{
___s_InvalidId_0 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>
struct Entry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
Guid_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8, ___key_2)); }
inline Guid_t get_key_2() const { return ___key_2; }
inline Guid_t * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Guid_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8, ___value_3)); }
inline XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA get_value_3() const { return ___value_3; }
inline XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Name_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Entries_3), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>
struct Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___value_3)); }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_3() const { return ___value_3; }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>
struct Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4, ___key_2)); }
inline ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F get_key_2() const { return ___key_2; }
inline ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___Item1_0), (void*)NULL);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>
struct Entry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14, ___key_2)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_key_2() const { return ___key_2; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.HashSet`1_Slot<UnityEngine.XR.MeshId>
struct Slot_tEECB296281FB9107F82A5761CB0999F4E653D61D
{
public:
// System.Int32 System.Collections.Generic.HashSet`1_Slot::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.HashSet`1_Slot::next
int32_t ___next_1;
// T System.Collections.Generic.HashSet`1_Slot::value
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tEECB296281FB9107F82A5761CB0999F4E653D61D, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_tEECB296281FB9107F82A5761CB0999F4E653D61D, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_tEECB296281FB9107F82A5761CB0999F4E653D61D, ___value_2)); }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A get_value_2() const { return ___value_2; }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * get_address_of_value_2() { return &___value_2; }
inline void set_value_2(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A value)
{
___value_2 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>
struct KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___key_0)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_key_0() const { return ___key_0; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>
struct KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937, ___key_0)); }
inline Guid_t get_key_0() const { return ___key_0; }
inline Guid_t * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Guid_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>
struct KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___key_0)); }
inline Guid_t get_key_0() const { return ___key_0; }
inline Guid_t * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Guid_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>
struct KeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87, ___key_0)); }
inline Guid_t get_key_0() const { return ___key_0; }
inline Guid_t * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Guid_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87, ___value_1)); }
inline XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA get_value_1() const { return ___value_1; }
inline XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___m_Name_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___m_Entries_3), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>
struct KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___value_1)); }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_1() const { return ___value_1; }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>
struct KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71, ___key_0)); }
inline ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F get_key_0() const { return ___key_0; }
inline ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___Item1_0), (void*)NULL);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>
struct KeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA, ___key_0)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_key_0() const { return ___key_0; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.DateTimeOffset
struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85
{
public:
// System.DateTime System.DateTimeOffset::m_dateTime
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_dateTime_2;
// System.Int16 System.DateTimeOffset::m_offsetMinutes
int16_t ___m_offsetMinutes_3;
public:
inline static int32_t get_offset_of_m_dateTime_2() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_dateTime_2)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_dateTime_2() const { return ___m_dateTime_2; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; }
inline void set_m_dateTime_2(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___m_dateTime_2 = value;
}
inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_offsetMinutes_3)); }
inline int16_t get_m_offsetMinutes_3() const { return ___m_offsetMinutes_3; }
inline int16_t* get_address_of_m_offsetMinutes_3() { return &___m_offsetMinutes_3; }
inline void set_m_offsetMinutes_3(int16_t value)
{
___m_offsetMinutes_3 = value;
}
};
struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields
{
public:
// System.DateTimeOffset System.DateTimeOffset::MinValue
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MinValue_0;
// System.DateTimeOffset System.DateTimeOffset::MaxValue
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MaxValue_1;
public:
inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MinValue_0)); }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MinValue_0() const { return ___MinValue_0; }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MinValue_0() { return &___MinValue_0; }
inline void set_MinValue_0(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value)
{
___MinValue_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MaxValue_1)); }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MaxValue_1() const { return ___MaxValue_1; }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value)
{
___MaxValue_1 = value;
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// System.Diagnostics.Tracing.EventActivityOptions
struct EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168
{
public:
// System.Int32 System.Diagnostics.Tracing.EventActivityOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Diagnostics.Tracing.EventTags
struct EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712
{
public:
// System.Int32 System.Diagnostics.Tracing.EventTags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.Int32Enum
struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD
{
public:
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.Assembly
struct Assembly_t : public RuntimeObject
{
public:
// System.IntPtr System.Reflection.Assembly::_mono_assembly
intptr_t ____mono_assembly_0;
// System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
// System.Object System.Reflection.Assembly::_evidence
RuntimeObject * ____evidence_2;
// System.Object System.Reflection.Assembly::_minimum
RuntimeObject * ____minimum_3;
// System.Object System.Reflection.Assembly::_optional
RuntimeObject * ____optional_4;
// System.Object System.Reflection.Assembly::_refuse
RuntimeObject * ____refuse_5;
// System.Object System.Reflection.Assembly::_granted
RuntimeObject * ____granted_6;
// System.Object System.Reflection.Assembly::_denied
RuntimeObject * ____denied_7;
// System.Boolean System.Reflection.Assembly::fromByteArray
bool ___fromByteArray_8;
// System.String System.Reflection.Assembly::assemblyName
String_t* ___assemblyName_9;
public:
inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); }
inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; }
inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; }
inline void set__mono_assembly_0(intptr_t value)
{
____mono_assembly_0 = value;
}
inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value)
{
___resolve_event_holder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value);
}
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
inline RuntimeObject * get__evidence_2() const { return ____evidence_2; }
inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; }
inline void set__evidence_2(RuntimeObject * value)
{
____evidence_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value);
}
inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); }
inline RuntimeObject * get__minimum_3() const { return ____minimum_3; }
inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; }
inline void set__minimum_3(RuntimeObject * value)
{
____minimum_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value);
}
inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); }
inline RuntimeObject * get__optional_4() const { return ____optional_4; }
inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; }
inline void set__optional_4(RuntimeObject * value)
{
____optional_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value);
}
inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); }
inline RuntimeObject * get__refuse_5() const { return ____refuse_5; }
inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; }
inline void set__refuse_5(RuntimeObject * value)
{
____refuse_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value);
}
inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); }
inline RuntimeObject * get__granted_6() const { return ____granted_6; }
inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; }
inline void set__granted_6(RuntimeObject * value)
{
____granted_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value);
}
inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); }
inline RuntimeObject * get__denied_7() const { return ____denied_7; }
inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; }
inline void set__denied_7(RuntimeObject * value)
{
____denied_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value);
}
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
inline void set_fromByteArray_8(bool value)
{
___fromByteArray_8 = value;
}
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
inline void set_assemblyName_9(String_t* value)
{
___assemblyName_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_pinvoke
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
char* ___assemblyName_9;
};
// Native definition for COM marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_com
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
Il2CppChar* ___assemblyName_9;
};
// System.Reflection.BindingFlags
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E
{
public:
// System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___typedArgument_0;
// System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo
MemberInfo_t * ___memberInfo_1;
public:
inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___typedArgument_0)); }
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 get_typedArgument_0() const { return ___typedArgument_0; }
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * get_address_of_typedArgument_0() { return &___typedArgument_0; }
inline void set_typedArgument_0(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value)
{
___typedArgument_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___memberInfo_1)); }
inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; }
inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; }
inline void set_memberInfo_1(MemberInfo_t * value)
{
___memberInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___memberInfo_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_pinvoke
{
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_com
{
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2
{
public:
// System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
public:
inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_callbackInfo_0)); }
inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; }
inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; }
inline void set_m_callbackInfo_0(CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * value)
{
___m_callbackInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_callbackInfo_0), (void*)value);
}
inline static int32_t get_offset_of_m_registrationInfo_1() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_registrationInfo_1)); }
inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE get_m_registrationInfo_1() const { return ___m_registrationInfo_1; }
inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; }
inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE value)
{
___m_registrationInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_registrationInfo_1))->___m_source_0), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_pinvoke
{
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
};
// Native definition for COM marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_com
{
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
};
// System.TimeSpan
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_3;
public:
inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); }
inline int64_t get__ticks_3() const { return ____ticks_3; }
inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
inline void set__ticks_3(int64_t value)
{
____ticks_3 = value;
}
};
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_4;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_5;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); }
inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
inline void set__legacyConfigChecked_4(bool value)
{
____legacyConfigChecked_4 = value;
}
inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); }
inline bool get__legacyMode_5() const { return ____legacyMode_5; }
inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
inline void set__legacyMode_5(bool value)
{
____legacyMode_5 = value;
}
};
// System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>
struct ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331
{
public:
// T1 System.ValueTuple`2::Item1
RuntimeObject * ___Item1_0;
// T2 System.ValueTuple`2::Item2
ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F ___Item2_1;
public:
inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331, ___Item1_0)); }
inline RuntimeObject * get_Item1_0() const { return ___Item1_0; }
inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; }
inline void set_Item1_0(RuntimeObject * value)
{
___Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value);
}
inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331, ___Item2_1)); }
inline ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F get_Item2_1() const { return ___Item2_1; }
inline ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F * get_address_of_Item2_1() { return &___Item2_1; }
inline void set_Item2_1(ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F value)
{
___Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___Item2_1))->___Item1_0), (void*)NULL);
}
};
// System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Type,System.Int32>>
struct ValueTuple_2_tC1E4B764A22137F872FF33F434B43BE4B46D21F5
{
public:
// T1 System.ValueTuple`2::Item1
RuntimeObject * ___Item1_0;
// T2 System.ValueTuple`2::Item2
ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 ___Item2_1;
public:
inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_tC1E4B764A22137F872FF33F434B43BE4B46D21F5, ___Item1_0)); }
inline RuntimeObject * get_Item1_0() const { return ___Item1_0; }
inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; }
inline void set_Item1_0(RuntimeObject * value)
{
___Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value);
}
inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_tC1E4B764A22137F872FF33F434B43BE4B46D21F5, ___Item2_1)); }
inline ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 get_Item2_1() const { return ___Item2_1; }
inline ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 * get_address_of_Item2_1() { return &___Item2_1; }
inline void set_Item2_1(ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 value)
{
___Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___Item2_1))->___Item1_0), (void*)NULL);
}
};
// TMPro.Extents
struct Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3
{
public:
// UnityEngine.Vector2 TMPro.Extents::min
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___min_0;
// UnityEngine.Vector2 TMPro.Extents::max
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___max_1;
public:
inline static int32_t get_offset_of_min_0() { return static_cast<int32_t>(offsetof(Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3, ___min_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_min_0() const { return ___min_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_min_0() { return &___min_0; }
inline void set_min_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___min_0 = value;
}
inline static int32_t get_offset_of_max_1() { return static_cast<int32_t>(offsetof(Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3, ___max_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_max_1() const { return ___max_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_max_1() { return &___max_1; }
inline void set_max_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___max_1 = value;
}
};
// TMPro.FontStyles
struct FontStyles_t31B880C817B2DF0BF3B60AC4D187A3E7BE5D8893
{
public:
// System.Int32 TMPro.FontStyles::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontStyles_t31B880C817B2DF0BF3B60AC4D187A3E7BE5D8893, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteData
struct SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728
{
public:
// System.String TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::filename
String_t* ___filename_0;
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::frame
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___frame_1;
// System.Boolean TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::rotated
bool ___rotated_2;
// System.Boolean TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::trimmed
bool ___trimmed_3;
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::spriteSourceSize
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___spriteSourceSize_4;
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::sourceSize
SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E ___sourceSize_5;
// UnityEngine.Vector2 TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::pivot
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6;
public:
inline static int32_t get_offset_of_filename_0() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___filename_0)); }
inline String_t* get_filename_0() const { return ___filename_0; }
inline String_t** get_address_of_filename_0() { return &___filename_0; }
inline void set_filename_0(String_t* value)
{
___filename_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___filename_0), (void*)value);
}
inline static int32_t get_offset_of_frame_1() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___frame_1)); }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 get_frame_1() const { return ___frame_1; }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 * get_address_of_frame_1() { return &___frame_1; }
inline void set_frame_1(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 value)
{
___frame_1 = value;
}
inline static int32_t get_offset_of_rotated_2() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___rotated_2)); }
inline bool get_rotated_2() const { return ___rotated_2; }
inline bool* get_address_of_rotated_2() { return &___rotated_2; }
inline void set_rotated_2(bool value)
{
___rotated_2 = value;
}
inline static int32_t get_offset_of_trimmed_3() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___trimmed_3)); }
inline bool get_trimmed_3() const { return ___trimmed_3; }
inline bool* get_address_of_trimmed_3() { return &___trimmed_3; }
inline void set_trimmed_3(bool value)
{
___trimmed_3 = value;
}
inline static int32_t get_offset_of_spriteSourceSize_4() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___spriteSourceSize_4)); }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 get_spriteSourceSize_4() const { return ___spriteSourceSize_4; }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 * get_address_of_spriteSourceSize_4() { return &___spriteSourceSize_4; }
inline void set_spriteSourceSize_4(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 value)
{
___spriteSourceSize_4 = value;
}
inline static int32_t get_offset_of_sourceSize_5() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___sourceSize_5)); }
inline SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E get_sourceSize_5() const { return ___sourceSize_5; }
inline SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E * get_address_of_sourceSize_5() { return &___sourceSize_5; }
inline void set_sourceSize_5(SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E value)
{
___sourceSize_5 = value;
}
inline static int32_t get_offset_of_pivot_6() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___pivot_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_pivot_6() const { return ___pivot_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_pivot_6() { return &___pivot_6; }
inline void set_pivot_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___pivot_6 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.SpriteAssetUtilities.TexturePacker/SpriteData
struct SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_marshaled_pinvoke
{
char* ___filename_0;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___frame_1;
int32_t ___rotated_2;
int32_t ___trimmed_3;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___spriteSourceSize_4;
SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E ___sourceSize_5;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6;
};
// Native definition for COM marshalling of TMPro.SpriteAssetUtilities.TexturePacker/SpriteData
struct SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_marshaled_com
{
Il2CppChar* ___filename_0;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___frame_1;
int32_t ___rotated_2;
int32_t ___trimmed_3;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___spriteSourceSize_4;
SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E ___sourceSize_5;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6;
};
// TMPro.TMP_TextElementType
struct TMP_TextElementType_tBF2553FA730CC21CF99473E591C33DC52360D509
{
public:
// System.Int32 TMPro.TMP_TextElementType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TMP_TextElementType_tBF2553FA730CC21CF99473E591C33DC52360D509, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// TMPro.TMP_Vertex
struct TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0
{
public:
// UnityEngine.Vector3 TMPro.TMP_Vertex::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0;
// UnityEngine.Vector2 TMPro.TMP_Vertex::uv
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv_1;
// UnityEngine.Vector2 TMPro.TMP_Vertex::uv2
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv2_2;
// UnityEngine.Vector2 TMPro.TMP_Vertex::uv4
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv4_3;
// UnityEngine.Color32 TMPro.TMP_Vertex::color
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_4;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___position_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_uv_1() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___uv_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv_1() const { return ___uv_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv_1() { return &___uv_1; }
inline void set_uv_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv_1 = value;
}
inline static int32_t get_offset_of_uv2_2() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___uv2_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv2_2() const { return ___uv2_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv2_2() { return &___uv2_2; }
inline void set_uv2_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv2_2 = value;
}
inline static int32_t get_offset_of_uv4_3() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___uv4_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv4_3() const { return ___uv4_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv4_3() { return &___uv4_3; }
inline void set_uv4_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv4_3 = value;
}
inline static int32_t get_offset_of_color_4() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___color_4)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_4() const { return ___color_4; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_4() { return &___color_4; }
inline void set_color_4(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___color_4 = value;
}
};
// TMPro.TagUnitType
struct TagUnitType_t5F2B8EA2F25FEA0BAEC4A0151C29BD7D262553CF
{
public:
// System.Int32 TMPro.TagUnitType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TagUnitType_t5F2B8EA2F25FEA0BAEC4A0151C29BD7D262553CF, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// TMPro.TagValueType
struct TagValueType_tB0AE4FE83F0293DDD337886C8D5268947F25F5CC
{
public:
// System.Int32 TMPro.TagValueType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TagValueType_tB0AE4FE83F0293DDD337886C8D5268947F25F5CC, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// TMPro.TextAlignmentOptions
struct TextAlignmentOptions_t4BEB3BA6EE897B5127FFBABD7E36B1A024EE5337
{
public:
// System.Int32 TMPro.TextAlignmentOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextAlignmentOptions_t4BEB3BA6EE897B5127FFBABD7E36B1A024EE5337, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Unity.Collections.Allocator
struct Allocator_t62A091275262E7067EAAD565B67764FA877D58D6
{
public:
// System.Int32 Unity.Collections.Allocator::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Allocator_t62A091275262E7067EAAD565B67764FA877D58D6, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Unity.Collections.NativeArrayOptions
struct NativeArrayOptions_t23897F2D7CA2F1B58D2539C64062DD7C77615B6A
{
public:
// System.Int32 Unity.Collections.NativeArrayOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NativeArrayOptions_t23897F2D7CA2F1B58D2539C64062DD7C77615B6A, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Unity.Jobs.JobHandle
struct JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1
{
public:
// System.IntPtr Unity.Jobs.JobHandle::jobGroup
intptr_t ___jobGroup_0;
// System.Int32 Unity.Jobs.JobHandle::version
int32_t ___version_1;
public:
inline static int32_t get_offset_of_jobGroup_0() { return static_cast<int32_t>(offsetof(JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1, ___jobGroup_0)); }
inline intptr_t get_jobGroup_0() const { return ___jobGroup_0; }
inline intptr_t* get_address_of_jobGroup_0() { return &___jobGroup_0; }
inline void set_jobGroup_0(intptr_t value)
{
___jobGroup_0 = value;
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
};
// Unity.Jobs.LowLevel.Unsafe.ScheduleMode
struct ScheduleMode_t83F3C482EFD55A9D2FA6F84D626EF24DFACB2E37
{
public:
// System.Int32 Unity.Jobs.LowLevel.Unsafe.ScheduleMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ScheduleMode_t83F3C482EFD55A9D2FA6F84D626EF24DFACB2E37, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.BoundingSphere
struct BoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3
{
public:
// UnityEngine.Vector3 UnityEngine.BoundingSphere::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0;
// System.Single UnityEngine.BoundingSphere::radius
float ___radius_1;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(BoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3, ___position_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_radius_1() { return static_cast<int32_t>(offsetof(BoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3, ___radius_1)); }
inline float get_radius_1() const { return ___radius_1; }
inline float* get_address_of_radius_1() { return &___radius_1; }
inline void set_radius_1(float value)
{
___radius_1 = value;
}
};
// UnityEngine.Bounds
struct Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890
{
public:
// UnityEngine.Vector3 UnityEngine.Bounds::m_Center
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Center_0;
// UnityEngine.Vector3 UnityEngine.Bounds::m_Extents
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Extents_1;
public:
inline static int32_t get_offset_of_m_Center_0() { return static_cast<int32_t>(offsetof(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, ___m_Center_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Center_0() const { return ___m_Center_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Center_0() { return &___m_Center_0; }
inline void set_m_Center_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Center_0 = value;
}
inline static int32_t get_offset_of_m_Extents_1() { return static_cast<int32_t>(offsetof(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, ___m_Extents_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Extents_1() const { return ___m_Extents_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Extents_1() { return &___m_Extents_1; }
inline void set_m_Extents_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Extents_1 = value;
}
};
// UnityEngine.CastHelper`1<System.Object>
struct CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF
{
public:
// T UnityEngine.CastHelper`1::t
RuntimeObject * ___t_0;
// System.IntPtr UnityEngine.CastHelper`1::onePointerFurtherThanT
intptr_t ___onePointerFurtherThanT_1;
public:
inline static int32_t get_offset_of_t_0() { return static_cast<int32_t>(offsetof(CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF, ___t_0)); }
inline RuntimeObject * get_t_0() const { return ___t_0; }
inline RuntimeObject ** get_address_of_t_0() { return &___t_0; }
inline void set_t_0(RuntimeObject * value)
{
___t_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___t_0), (void*)value);
}
inline static int32_t get_offset_of_onePointerFurtherThanT_1() { return static_cast<int32_t>(offsetof(CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF, ___onePointerFurtherThanT_1)); }
inline intptr_t get_onePointerFurtherThanT_1() const { return ___onePointerFurtherThanT_1; }
inline intptr_t* get_address_of_onePointerFurtherThanT_1() { return &___onePointerFurtherThanT_1; }
inline void set_onePointerFurtherThanT_1(intptr_t value)
{
___onePointerFurtherThanT_1 = value;
}
};
// UnityEngine.ComputeBuffer
struct ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.ComputeBuffer::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// UnityEngine.ContactPoint
struct ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515
{
public:
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Point
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1;
// System.Int32 UnityEngine.ContactPoint::m_ThisColliderInstanceID
int32_t ___m_ThisColliderInstanceID_2;
// System.Int32 UnityEngine.ContactPoint::m_OtherColliderInstanceID
int32_t ___m_OtherColliderInstanceID_3;
// System.Single UnityEngine.ContactPoint::m_Separation
float ___m_Separation_4;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Point_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_ThisColliderInstanceID_2() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_ThisColliderInstanceID_2)); }
inline int32_t get_m_ThisColliderInstanceID_2() const { return ___m_ThisColliderInstanceID_2; }
inline int32_t* get_address_of_m_ThisColliderInstanceID_2() { return &___m_ThisColliderInstanceID_2; }
inline void set_m_ThisColliderInstanceID_2(int32_t value)
{
___m_ThisColliderInstanceID_2 = value;
}
inline static int32_t get_offset_of_m_OtherColliderInstanceID_3() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_OtherColliderInstanceID_3)); }
inline int32_t get_m_OtherColliderInstanceID_3() const { return ___m_OtherColliderInstanceID_3; }
inline int32_t* get_address_of_m_OtherColliderInstanceID_3() { return &___m_OtherColliderInstanceID_3; }
inline void set_m_OtherColliderInstanceID_3(int32_t value)
{
___m_OtherColliderInstanceID_3 = value;
}
inline static int32_t get_offset_of_m_Separation_4() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Separation_4)); }
inline float get_m_Separation_4() const { return ___m_Separation_4; }
inline float* get_address_of_m_Separation_4() { return &___m_Separation_4; }
inline void set_m_Separation_4(float value)
{
___m_Separation_4 = value;
}
};
// UnityEngine.ContactPoint2D
struct ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0
{
public:
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Point
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_0;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Normal
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_1;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_RelativeVelocity
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_RelativeVelocity_2;
// System.Single UnityEngine.ContactPoint2D::m_Separation
float ___m_Separation_3;
// System.Single UnityEngine.ContactPoint2D::m_NormalImpulse
float ___m_NormalImpulse_4;
// System.Single UnityEngine.ContactPoint2D::m_TangentImpulse
float ___m_TangentImpulse_5;
// System.Int32 UnityEngine.ContactPoint2D::m_Collider
int32_t ___m_Collider_6;
// System.Int32 UnityEngine.ContactPoint2D::m_OtherCollider
int32_t ___m_OtherCollider_7;
// System.Int32 UnityEngine.ContactPoint2D::m_Rigidbody
int32_t ___m_Rigidbody_8;
// System.Int32 UnityEngine.ContactPoint2D::m_OtherRigidbody
int32_t ___m_OtherRigidbody_9;
// System.Int32 UnityEngine.ContactPoint2D::m_Enabled
int32_t ___m_Enabled_10;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Point_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_0() const { return ___m_Point_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Normal_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_RelativeVelocity_2() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_RelativeVelocity_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_RelativeVelocity_2() const { return ___m_RelativeVelocity_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_RelativeVelocity_2() { return &___m_RelativeVelocity_2; }
inline void set_m_RelativeVelocity_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_RelativeVelocity_2 = value;
}
inline static int32_t get_offset_of_m_Separation_3() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Separation_3)); }
inline float get_m_Separation_3() const { return ___m_Separation_3; }
inline float* get_address_of_m_Separation_3() { return &___m_Separation_3; }
inline void set_m_Separation_3(float value)
{
___m_Separation_3 = value;
}
inline static int32_t get_offset_of_m_NormalImpulse_4() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_NormalImpulse_4)); }
inline float get_m_NormalImpulse_4() const { return ___m_NormalImpulse_4; }
inline float* get_address_of_m_NormalImpulse_4() { return &___m_NormalImpulse_4; }
inline void set_m_NormalImpulse_4(float value)
{
___m_NormalImpulse_4 = value;
}
inline static int32_t get_offset_of_m_TangentImpulse_5() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_TangentImpulse_5)); }
inline float get_m_TangentImpulse_5() const { return ___m_TangentImpulse_5; }
inline float* get_address_of_m_TangentImpulse_5() { return &___m_TangentImpulse_5; }
inline void set_m_TangentImpulse_5(float value)
{
___m_TangentImpulse_5 = value;
}
inline static int32_t get_offset_of_m_Collider_6() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Collider_6)); }
inline int32_t get_m_Collider_6() const { return ___m_Collider_6; }
inline int32_t* get_address_of_m_Collider_6() { return &___m_Collider_6; }
inline void set_m_Collider_6(int32_t value)
{
___m_Collider_6 = value;
}
inline static int32_t get_offset_of_m_OtherCollider_7() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_OtherCollider_7)); }
inline int32_t get_m_OtherCollider_7() const { return ___m_OtherCollider_7; }
inline int32_t* get_address_of_m_OtherCollider_7() { return &___m_OtherCollider_7; }
inline void set_m_OtherCollider_7(int32_t value)
{
___m_OtherCollider_7 = value;
}
inline static int32_t get_offset_of_m_Rigidbody_8() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Rigidbody_8)); }
inline int32_t get_m_Rigidbody_8() const { return ___m_Rigidbody_8; }
inline int32_t* get_address_of_m_Rigidbody_8() { return &___m_Rigidbody_8; }
inline void set_m_Rigidbody_8(int32_t value)
{
___m_Rigidbody_8 = value;
}
inline static int32_t get_offset_of_m_OtherRigidbody_9() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_OtherRigidbody_9)); }
inline int32_t get_m_OtherRigidbody_9() const { return ___m_OtherRigidbody_9; }
inline int32_t* get_address_of_m_OtherRigidbody_9() { return &___m_OtherRigidbody_9; }
inline void set_m_OtherRigidbody_9(int32_t value)
{
___m_OtherRigidbody_9 = value;
}
inline static int32_t get_offset_of_m_Enabled_10() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Enabled_10)); }
inline int32_t get_m_Enabled_10() const { return ___m_Enabled_10; }
inline int32_t* get_address_of_m_Enabled_10() { return &___m_Enabled_10; }
inline void set_m_Enabled_10(int32_t value)
{
___m_Enabled_10 = value;
}
};
// UnityEngine.CubemapFace
struct CubemapFace_t74DD9C86D8A5E5F782F136F8753580668F96FFB9
{
public:
// System.Int32 UnityEngine.CubemapFace::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CubemapFace_t74DD9C86D8A5E5F782F136F8753580668F96FFB9, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
// System.Single UnityEngine.EventSystems.RaycastResult::distance
float ___distance_2;
// System.Single UnityEngine.EventSystems.RaycastResult::index
float ___index_3;
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
int32_t ___depth_4;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
int32_t ___sortingLayer_5;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
int32_t ___sortingOrder_6;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
// System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex
int32_t ___displayIndex_10;
public:
inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___m_GameObject_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_GameObject_0() const { return ___m_GameObject_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; }
inline void set_m_GameObject_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_GameObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value);
}
inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___module_1)); }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * get_module_1() const { return ___module_1; }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** get_address_of_module_1() { return &___module_1; }
inline void set_module_1(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value)
{
___module_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value);
}
inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___distance_2)); }
inline float get_distance_2() const { return ___distance_2; }
inline float* get_address_of_distance_2() { return &___distance_2; }
inline void set_distance_2(float value)
{
___distance_2 = value;
}
inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___index_3)); }
inline float get_index_3() const { return ___index_3; }
inline float* get_address_of_index_3() { return &___index_3; }
inline void set_index_3(float value)
{
___index_3 = value;
}
inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___depth_4)); }
inline int32_t get_depth_4() const { return ___depth_4; }
inline int32_t* get_address_of_depth_4() { return &___depth_4; }
inline void set_depth_4(int32_t value)
{
___depth_4 = value;
}
inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingLayer_5)); }
inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; }
inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; }
inline void set_sortingLayer_5(int32_t value)
{
___sortingLayer_5 = value;
}
inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingOrder_6)); }
inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; }
inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; }
inline void set_sortingOrder_6(int32_t value)
{
___sortingOrder_6 = value;
}
inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldPosition_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldPosition_7() const { return ___worldPosition_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldPosition_7() { return &___worldPosition_7; }
inline void set_worldPosition_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldPosition_7 = value;
}
inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldNormal_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldNormal_8() const { return ___worldNormal_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldNormal_8() { return &___worldNormal_8; }
inline void set_worldNormal_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldNormal_8 = value;
}
inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___screenPosition_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_screenPosition_9() const { return ___screenPosition_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_screenPosition_9() { return &___screenPosition_9; }
inline void set_screenPosition_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___screenPosition_9 = value;
}
inline static int32_t get_offset_of_displayIndex_10() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___displayIndex_10)); }
inline int32_t get_displayIndex_10() const { return ___displayIndex_10; }
inline int32_t* get_address_of_displayIndex_10() { return &___displayIndex_10; }
inline void set_displayIndex_10(int32_t value)
{
___displayIndex_10 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
int32_t ___displayIndex_10;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
int32_t ___displayIndex_10;
};
// UnityEngine.Experimental.GlobalIllumination.FalloffType
struct FalloffType_t7875E80627449B25D89C044D11A2BA22AB4996E9
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.FalloffType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FalloffType_t7875E80627449B25D89C044D11A2BA22AB4996E9, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.GlobalIllumination.LightMode
struct LightMode_t2EFF26B7FB14FB7D2ACF550C591375B5A95A854A
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightMode::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightMode_t2EFF26B7FB14FB7D2ACF550C591375B5A95A854A, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.GlobalIllumination.LightType
struct LightType_t684FE1E4FB26D1A27EFCDB36446F55984C414E88
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightType_t684FE1E4FB26D1A27EFCDB36446F55984C414E88, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.Rendering.GraphicsFormat
struct GraphicsFormat_t512915BBE299AE115F4DB0B96DF1DA2E72ECA181
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.GraphicsFormat::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GraphicsFormat_t512915BBE299AE115F4DB0B96DF1DA2E72ECA181, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry
struct RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 : public RuntimeObject
{
public:
// UnityEngine.Rendering.DynamicArray`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_TextureResource> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry::m_TextureResources
DynamicArray_1_tF03ED6854CC538AE7AC37C22C920521E3AABD2A8 * ___m_TextureResources_1;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.Stack`1<UnityEngine.Rendering.RTHandle>> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry::m_TexturePool
Dictionary_2_tEF4C65656E284A264F8D30CEB002FFE814FEE380 * ___m_TexturePool_2;
// UnityEngine.Rendering.DynamicArray`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_RendererListResource> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry::m_RendererListResources
DynamicArray_1_t99828E6CE3CAE9F50FE06FC51527BE6763483CFF * ___m_RendererListResources_3;
// UnityEngine.Rendering.RTHandleSystem UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry::m_RTHandleSystem
RTHandleSystem_t767D689BA191A921429672BF8830F8AC24ADC36F * ___m_RTHandleSystem_4;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphDebugParams UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry::m_RenderGraphDebug
RenderGraphDebugParams_t91BFF8C4DDFB7554599BA1A4441F0D82BB9F6908 * ___m_RenderGraphDebug_5;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphLogger UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry::m_Logger
RenderGraphLogger_t134928C4D6F50853ED77DA1DF486B6C3719A360C * ___m_Logger_6;
// System.Collections.Generic.List`1<System.ValueTuple`2<System.Int32,UnityEngine.Rendering.RTHandle>> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry::m_AllocatedTextures
List_1_tB843D4B607172851A36CA6C7A9E10D5D2637750F * ___m_AllocatedTextures_7;
public:
inline static int32_t get_offset_of_m_TextureResources_1() { return static_cast<int32_t>(offsetof(RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82, ___m_TextureResources_1)); }
inline DynamicArray_1_tF03ED6854CC538AE7AC37C22C920521E3AABD2A8 * get_m_TextureResources_1() const { return ___m_TextureResources_1; }
inline DynamicArray_1_tF03ED6854CC538AE7AC37C22C920521E3AABD2A8 ** get_address_of_m_TextureResources_1() { return &___m_TextureResources_1; }
inline void set_m_TextureResources_1(DynamicArray_1_tF03ED6854CC538AE7AC37C22C920521E3AABD2A8 * value)
{
___m_TextureResources_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TextureResources_1), (void*)value);
}
inline static int32_t get_offset_of_m_TexturePool_2() { return static_cast<int32_t>(offsetof(RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82, ___m_TexturePool_2)); }
inline Dictionary_2_tEF4C65656E284A264F8D30CEB002FFE814FEE380 * get_m_TexturePool_2() const { return ___m_TexturePool_2; }
inline Dictionary_2_tEF4C65656E284A264F8D30CEB002FFE814FEE380 ** get_address_of_m_TexturePool_2() { return &___m_TexturePool_2; }
inline void set_m_TexturePool_2(Dictionary_2_tEF4C65656E284A264F8D30CEB002FFE814FEE380 * value)
{
___m_TexturePool_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TexturePool_2), (void*)value);
}
inline static int32_t get_offset_of_m_RendererListResources_3() { return static_cast<int32_t>(offsetof(RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82, ___m_RendererListResources_3)); }
inline DynamicArray_1_t99828E6CE3CAE9F50FE06FC51527BE6763483CFF * get_m_RendererListResources_3() const { return ___m_RendererListResources_3; }
inline DynamicArray_1_t99828E6CE3CAE9F50FE06FC51527BE6763483CFF ** get_address_of_m_RendererListResources_3() { return &___m_RendererListResources_3; }
inline void set_m_RendererListResources_3(DynamicArray_1_t99828E6CE3CAE9F50FE06FC51527BE6763483CFF * value)
{
___m_RendererListResources_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RendererListResources_3), (void*)value);
}
inline static int32_t get_offset_of_m_RTHandleSystem_4() { return static_cast<int32_t>(offsetof(RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82, ___m_RTHandleSystem_4)); }
inline RTHandleSystem_t767D689BA191A921429672BF8830F8AC24ADC36F * get_m_RTHandleSystem_4() const { return ___m_RTHandleSystem_4; }
inline RTHandleSystem_t767D689BA191A921429672BF8830F8AC24ADC36F ** get_address_of_m_RTHandleSystem_4() { return &___m_RTHandleSystem_4; }
inline void set_m_RTHandleSystem_4(RTHandleSystem_t767D689BA191A921429672BF8830F8AC24ADC36F * value)
{
___m_RTHandleSystem_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RTHandleSystem_4), (void*)value);
}
inline static int32_t get_offset_of_m_RenderGraphDebug_5() { return static_cast<int32_t>(offsetof(RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82, ___m_RenderGraphDebug_5)); }
inline RenderGraphDebugParams_t91BFF8C4DDFB7554599BA1A4441F0D82BB9F6908 * get_m_RenderGraphDebug_5() const { return ___m_RenderGraphDebug_5; }
inline RenderGraphDebugParams_t91BFF8C4DDFB7554599BA1A4441F0D82BB9F6908 ** get_address_of_m_RenderGraphDebug_5() { return &___m_RenderGraphDebug_5; }
inline void set_m_RenderGraphDebug_5(RenderGraphDebugParams_t91BFF8C4DDFB7554599BA1A4441F0D82BB9F6908 * value)
{
___m_RenderGraphDebug_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RenderGraphDebug_5), (void*)value);
}
inline static int32_t get_offset_of_m_Logger_6() { return static_cast<int32_t>(offsetof(RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82, ___m_Logger_6)); }
inline RenderGraphLogger_t134928C4D6F50853ED77DA1DF486B6C3719A360C * get_m_Logger_6() const { return ___m_Logger_6; }
inline RenderGraphLogger_t134928C4D6F50853ED77DA1DF486B6C3719A360C ** get_address_of_m_Logger_6() { return &___m_Logger_6; }
inline void set_m_Logger_6(RenderGraphLogger_t134928C4D6F50853ED77DA1DF486B6C3719A360C * value)
{
___m_Logger_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Logger_6), (void*)value);
}
inline static int32_t get_offset_of_m_AllocatedTextures_7() { return static_cast<int32_t>(offsetof(RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82, ___m_AllocatedTextures_7)); }
inline List_1_tB843D4B607172851A36CA6C7A9E10D5D2637750F * get_m_AllocatedTextures_7() const { return ___m_AllocatedTextures_7; }
inline List_1_tB843D4B607172851A36CA6C7A9E10D5D2637750F ** get_address_of_m_AllocatedTextures_7() { return &___m_AllocatedTextures_7; }
inline void set_m_AllocatedTextures_7(List_1_tB843D4B607172851A36CA6C7A9E10D5D2637750F * value)
{
___m_AllocatedTextures_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AllocatedTextures_7), (void*)value);
}
};
struct RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82_StaticFields
{
public:
// UnityEngine.Rendering.ShaderTagId UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry::s_EmptyName
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 ___s_EmptyName_0;
public:
inline static int32_t get_offset_of_s_EmptyName_0() { return static_cast<int32_t>(offsetof(RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82_StaticFields, ___s_EmptyName_0)); }
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 get_s_EmptyName_0() const { return ___s_EmptyName_0; }
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 * get_address_of_s_EmptyName_0() { return &___s_EmptyName_0; }
inline void set_s_EmptyName_0(ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 value)
{
___s_EmptyName_0 = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceType
struct RenderGraphResourceType_t13ED07FF7DD43627D5D5D985895BA904612D6905
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderGraphResourceType_t13ED07FF7DD43627D5D5D985895BA904612D6905, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.TextureSizeMode
struct TextureSizeMode_t23B61AB10F07924A73116C7D28AF632C025ECE54
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.TextureSizeMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureSizeMode_t23B61AB10F07924A73116C7D28AF632C025ECE54, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex
struct ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE
{
public:
// UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3 UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex::Position
Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D ___Position_0;
// System.Object UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex::Data
RuntimeObject * ___Data_1;
public:
inline static int32_t get_offset_of_Position_0() { return static_cast<int32_t>(offsetof(ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE, ___Position_0)); }
inline Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D get_Position_0() const { return ___Position_0; }
inline Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D * get_address_of_Position_0() { return &___Position_0; }
inline void set_Position_0(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D value)
{
___Position_0 = value;
}
inline static int32_t get_offset_of_Data_1() { return static_cast<int32_t>(offsetof(ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE, ___Data_1)); }
inline RuntimeObject * get_Data_1() const { return ___Data_1; }
inline RuntimeObject ** get_address_of_Data_1() { return &___Data_1; }
inline void set_Data_1(RuntimeObject * value)
{
___Data_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Data_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex
struct ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_marshaled_pinvoke
{
Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D ___Position_0;
Il2CppIUnknown* ___Data_1;
};
// Native definition for COM marshalling of UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex
struct ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_marshaled_com
{
Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D ___Position_0;
Il2CppIUnknown* ___Data_1;
};
// UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle_BlendMode
struct BlendMode_t39F8626D83AE0AE0A45E74B43CDFB0BDB87CA81E
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle_BlendMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BlendMode_t39F8626D83AE0AE0A45E74B43CDFB0BDB87CA81E, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle_TextureChannel
struct TextureChannel_t46BBD2BE0A03C8CF0C3E17E46F76AEF6274AE70E
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle_TextureChannel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureChannel_t46BBD2BE0A03C8CF0C3E17E46F76AEF6274AE70E, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge
struct Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge::vertexIndex0
int32_t ___vertexIndex0_0;
// System.Int32 UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge::vertexIndex1
int32_t ___vertexIndex1_1;
// UnityEngine.Vector4 UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge::tangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2;
// System.Boolean UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge::compareReversed
bool ___compareReversed_3;
public:
inline static int32_t get_offset_of_vertexIndex0_0() { return static_cast<int32_t>(offsetof(Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0, ___vertexIndex0_0)); }
inline int32_t get_vertexIndex0_0() const { return ___vertexIndex0_0; }
inline int32_t* get_address_of_vertexIndex0_0() { return &___vertexIndex0_0; }
inline void set_vertexIndex0_0(int32_t value)
{
___vertexIndex0_0 = value;
}
inline static int32_t get_offset_of_vertexIndex1_1() { return static_cast<int32_t>(offsetof(Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0, ___vertexIndex1_1)); }
inline int32_t get_vertexIndex1_1() const { return ___vertexIndex1_1; }
inline int32_t* get_address_of_vertexIndex1_1() { return &___vertexIndex1_1; }
inline void set_vertexIndex1_1(int32_t value)
{
___vertexIndex1_1 = value;
}
inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0, ___tangent_2)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_tangent_2() const { return ___tangent_2; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_tangent_2() { return &___tangent_2; }
inline void set_tangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___tangent_2 = value;
}
inline static int32_t get_offset_of_compareReversed_3() { return static_cast<int32_t>(offsetof(Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0, ___compareReversed_3)); }
inline bool get_compareReversed_3() const { return ___compareReversed_3; }
inline bool* get_address_of_compareReversed_3() { return &___compareReversed_3; }
inline void set_compareReversed_3(bool value)
{
___compareReversed_3 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.Universal.ShadowUtility/Edge
struct Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_marshaled_pinvoke
{
int32_t ___vertexIndex0_0;
int32_t ___vertexIndex1_1;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2;
int32_t ___compareReversed_3;
};
// Native definition for COM marshalling of UnityEngine.Experimental.Rendering.Universal.ShadowUtility/Edge
struct Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_marshaled_com
{
int32_t ___vertexIndex0_0;
int32_t ___vertexIndex1_1;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2;
int32_t ___compareReversed_3;
};
// UnityEngine.FilterMode
struct FilterMode_t6590B4B0BAE2BBBCABA8E1E93FA07A052B3261AF
{
public:
// System.Int32 UnityEngine.FilterMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FilterMode_t6590B4B0BAE2BBBCABA8E1E93FA07A052B3261AF, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.LightType
struct LightType_t5B27FCCF8FBDFA21F5A34A48BB8333C05889DD0B
{
public:
// System.Int32 UnityEngine.LightType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightType_t5B27FCCF8FBDFA21F5A34A48BB8333C05889DD0B, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93
{
public:
// System.Type UnityEngine.LowLevel.PlayerLoopSystem::type
Type_t * ___type_0;
// UnityEngine.LowLevel.PlayerLoopSystem[] UnityEngine.LowLevel.PlayerLoopSystem::subSystemList
PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77* ___subSystemList_1;
// UnityEngine.LowLevel.PlayerLoopSystem_UpdateFunction UnityEngine.LowLevel.PlayerLoopSystem::updateDelegate
UpdateFunction_tD84FFC4AEE25C3DEBD3AB85700E096090FC7995E * ___updateDelegate_2;
// System.IntPtr UnityEngine.LowLevel.PlayerLoopSystem::updateFunction
intptr_t ___updateFunction_3;
// System.IntPtr UnityEngine.LowLevel.PlayerLoopSystem::loopConditionFunction
intptr_t ___loopConditionFunction_4;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93, ___type_0)); }
inline Type_t * get_type_0() const { return ___type_0; }
inline Type_t ** get_address_of_type_0() { return &___type_0; }
inline void set_type_0(Type_t * value)
{
___type_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_0), (void*)value);
}
inline static int32_t get_offset_of_subSystemList_1() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93, ___subSystemList_1)); }
inline PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77* get_subSystemList_1() const { return ___subSystemList_1; }
inline PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77** get_address_of_subSystemList_1() { return &___subSystemList_1; }
inline void set_subSystemList_1(PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77* value)
{
___subSystemList_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___subSystemList_1), (void*)value);
}
inline static int32_t get_offset_of_updateDelegate_2() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93, ___updateDelegate_2)); }
inline UpdateFunction_tD84FFC4AEE25C3DEBD3AB85700E096090FC7995E * get_updateDelegate_2() const { return ___updateDelegate_2; }
inline UpdateFunction_tD84FFC4AEE25C3DEBD3AB85700E096090FC7995E ** get_address_of_updateDelegate_2() { return &___updateDelegate_2; }
inline void set_updateDelegate_2(UpdateFunction_tD84FFC4AEE25C3DEBD3AB85700E096090FC7995E * value)
{
___updateDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___updateDelegate_2), (void*)value);
}
inline static int32_t get_offset_of_updateFunction_3() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93, ___updateFunction_3)); }
inline intptr_t get_updateFunction_3() const { return ___updateFunction_3; }
inline intptr_t* get_address_of_updateFunction_3() { return &___updateFunction_3; }
inline void set_updateFunction_3(intptr_t value)
{
___updateFunction_3 = value;
}
inline static int32_t get_offset_of_loopConditionFunction_4() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93, ___loopConditionFunction_4)); }
inline intptr_t get_loopConditionFunction_4() const { return ___loopConditionFunction_4; }
inline intptr_t* get_address_of_loopConditionFunction_4() { return &___loopConditionFunction_4; }
inline void set_loopConditionFunction_4(intptr_t value)
{
___loopConditionFunction_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_pinvoke
{
Type_t * ___type_0;
PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_pinvoke* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
// Native definition for COM marshalling of UnityEngine.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_com
{
Type_t * ___type_0;
PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_com* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.ParticleSystem_Particle
struct Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E
{
public:
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_Position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Position_0;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_Velocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Velocity_1;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_AnimatedVelocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AnimatedVelocity_2;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_InitialVelocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_InitialVelocity_3;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_AxisOfRotation
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AxisOfRotation_4;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_Rotation
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Rotation_5;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_AngularVelocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularVelocity_6;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_StartSize
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_StartSize_7;
// UnityEngine.Color32 UnityEngine.ParticleSystem_Particle::m_StartColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_StartColor_8;
// System.UInt32 UnityEngine.ParticleSystem_Particle::m_RandomSeed
uint32_t ___m_RandomSeed_9;
// System.UInt32 UnityEngine.ParticleSystem_Particle::m_ParentRandomSeed
uint32_t ___m_ParentRandomSeed_10;
// System.Single UnityEngine.ParticleSystem_Particle::m_Lifetime
float ___m_Lifetime_11;
// System.Single UnityEngine.ParticleSystem_Particle::m_StartLifetime
float ___m_StartLifetime_12;
// System.Int32 UnityEngine.ParticleSystem_Particle::m_MeshIndex
int32_t ___m_MeshIndex_13;
// System.Single UnityEngine.ParticleSystem_Particle::m_EmitAccumulator0
float ___m_EmitAccumulator0_14;
// System.Single UnityEngine.ParticleSystem_Particle::m_EmitAccumulator1
float ___m_EmitAccumulator1_15;
// System.UInt32 UnityEngine.ParticleSystem_Particle::m_Flags
uint32_t ___m_Flags_16;
public:
inline static int32_t get_offset_of_m_Position_0() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Position_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Position_0() const { return ___m_Position_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Position_0() { return &___m_Position_0; }
inline void set_m_Position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Position_0 = value;
}
inline static int32_t get_offset_of_m_Velocity_1() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Velocity_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Velocity_1() const { return ___m_Velocity_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Velocity_1() { return &___m_Velocity_1; }
inline void set_m_Velocity_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Velocity_1 = value;
}
inline static int32_t get_offset_of_m_AnimatedVelocity_2() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_AnimatedVelocity_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AnimatedVelocity_2() const { return ___m_AnimatedVelocity_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AnimatedVelocity_2() { return &___m_AnimatedVelocity_2; }
inline void set_m_AnimatedVelocity_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AnimatedVelocity_2 = value;
}
inline static int32_t get_offset_of_m_InitialVelocity_3() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_InitialVelocity_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_InitialVelocity_3() const { return ___m_InitialVelocity_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_InitialVelocity_3() { return &___m_InitialVelocity_3; }
inline void set_m_InitialVelocity_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_InitialVelocity_3 = value;
}
inline static int32_t get_offset_of_m_AxisOfRotation_4() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_AxisOfRotation_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AxisOfRotation_4() const { return ___m_AxisOfRotation_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AxisOfRotation_4() { return &___m_AxisOfRotation_4; }
inline void set_m_AxisOfRotation_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AxisOfRotation_4 = value;
}
inline static int32_t get_offset_of_m_Rotation_5() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Rotation_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Rotation_5() const { return ___m_Rotation_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Rotation_5() { return &___m_Rotation_5; }
inline void set_m_Rotation_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Rotation_5 = value;
}
inline static int32_t get_offset_of_m_AngularVelocity_6() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_AngularVelocity_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularVelocity_6() const { return ___m_AngularVelocity_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularVelocity_6() { return &___m_AngularVelocity_6; }
inline void set_m_AngularVelocity_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AngularVelocity_6 = value;
}
inline static int32_t get_offset_of_m_StartSize_7() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_StartSize_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_StartSize_7() const { return ___m_StartSize_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_StartSize_7() { return &___m_StartSize_7; }
inline void set_m_StartSize_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_StartSize_7 = value;
}
inline static int32_t get_offset_of_m_StartColor_8() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_StartColor_8)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_StartColor_8() const { return ___m_StartColor_8; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_StartColor_8() { return &___m_StartColor_8; }
inline void set_m_StartColor_8(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___m_StartColor_8 = value;
}
inline static int32_t get_offset_of_m_RandomSeed_9() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_RandomSeed_9)); }
inline uint32_t get_m_RandomSeed_9() const { return ___m_RandomSeed_9; }
inline uint32_t* get_address_of_m_RandomSeed_9() { return &___m_RandomSeed_9; }
inline void set_m_RandomSeed_9(uint32_t value)
{
___m_RandomSeed_9 = value;
}
inline static int32_t get_offset_of_m_ParentRandomSeed_10() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_ParentRandomSeed_10)); }
inline uint32_t get_m_ParentRandomSeed_10() const { return ___m_ParentRandomSeed_10; }
inline uint32_t* get_address_of_m_ParentRandomSeed_10() { return &___m_ParentRandomSeed_10; }
inline void set_m_ParentRandomSeed_10(uint32_t value)
{
___m_ParentRandomSeed_10 = value;
}
inline static int32_t get_offset_of_m_Lifetime_11() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Lifetime_11)); }
inline float get_m_Lifetime_11() const { return ___m_Lifetime_11; }
inline float* get_address_of_m_Lifetime_11() { return &___m_Lifetime_11; }
inline void set_m_Lifetime_11(float value)
{
___m_Lifetime_11 = value;
}
inline static int32_t get_offset_of_m_StartLifetime_12() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_StartLifetime_12)); }
inline float get_m_StartLifetime_12() const { return ___m_StartLifetime_12; }
inline float* get_address_of_m_StartLifetime_12() { return &___m_StartLifetime_12; }
inline void set_m_StartLifetime_12(float value)
{
___m_StartLifetime_12 = value;
}
inline static int32_t get_offset_of_m_MeshIndex_13() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_MeshIndex_13)); }
inline int32_t get_m_MeshIndex_13() const { return ___m_MeshIndex_13; }
inline int32_t* get_address_of_m_MeshIndex_13() { return &___m_MeshIndex_13; }
inline void set_m_MeshIndex_13(int32_t value)
{
___m_MeshIndex_13 = value;
}
inline static int32_t get_offset_of_m_EmitAccumulator0_14() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_EmitAccumulator0_14)); }
inline float get_m_EmitAccumulator0_14() const { return ___m_EmitAccumulator0_14; }
inline float* get_address_of_m_EmitAccumulator0_14() { return &___m_EmitAccumulator0_14; }
inline void set_m_EmitAccumulator0_14(float value)
{
___m_EmitAccumulator0_14 = value;
}
inline static int32_t get_offset_of_m_EmitAccumulator1_15() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_EmitAccumulator1_15)); }
inline float get_m_EmitAccumulator1_15() const { return ___m_EmitAccumulator1_15; }
inline float* get_address_of_m_EmitAccumulator1_15() { return &___m_EmitAccumulator1_15; }
inline void set_m_EmitAccumulator1_15(float value)
{
___m_EmitAccumulator1_15 = value;
}
inline static int32_t get_offset_of_m_Flags_16() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Flags_16)); }
inline uint32_t get_m_Flags_16() const { return ___m_Flags_16; }
inline uint32_t* get_address_of_m_Flags_16() { return &___m_Flags_16; }
inline void set_m_Flags_16(uint32_t value)
{
___m_Flags_16 = value;
}
};
// UnityEngine.Plane
struct Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED
{
public:
// UnityEngine.Vector3 UnityEngine.Plane::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_0;
// System.Single UnityEngine.Plane::m_Distance
float ___m_Distance_1;
public:
inline static int32_t get_offset_of_m_Normal_0() { return static_cast<int32_t>(offsetof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, ___m_Normal_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_0() const { return ___m_Normal_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_0() { return &___m_Normal_0; }
inline void set_m_Normal_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_0 = value;
}
inline static int32_t get_offset_of_m_Distance_1() { return static_cast<int32_t>(offsetof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, ___m_Distance_1)); }
inline float get_m_Distance_1() const { return ___m_Distance_1; }
inline float* get_address_of_m_Distance_1() { return &___m_Distance_1; }
inline void set_m_Distance_1(float value)
{
___m_Distance_1 = value;
}
};
// UnityEngine.Pose
struct Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29
{
public:
// UnityEngine.Vector3 UnityEngine.Pose::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0;
// UnityEngine.Quaternion UnityEngine.Pose::rotation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___rotation_1;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29, ___position_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_rotation_1() { return static_cast<int32_t>(offsetof(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29, ___rotation_1)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_rotation_1() const { return ___rotation_1; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_rotation_1() { return &___rotation_1; }
inline void set_rotation_1(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___rotation_1 = value;
}
};
struct Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29_StaticFields
{
public:
// UnityEngine.Pose UnityEngine.Pose::k_Identity
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___k_Identity_2;
public:
inline static int32_t get_offset_of_k_Identity_2() { return static_cast<int32_t>(offsetof(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29_StaticFields, ___k_Identity_2)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_k_Identity_2() const { return ___k_Identity_2; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_k_Identity_2() { return &___k_Identity_2; }
inline void set_k_Identity_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___k_Identity_2 = value;
}
};
// UnityEngine.Profiling.Sampler
struct Sampler_t6BFBE2B578BC0C28F4A78C6EA545AB8A4C50C6A4 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Profiling.Sampler::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(Sampler_t6BFBE2B578BC0C28F4A78C6EA545AB8A4C50C6A4, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
struct Sampler_t6BFBE2B578BC0C28F4A78C6EA545AB8A4C50C6A4_StaticFields
{
public:
// UnityEngine.Profiling.Sampler UnityEngine.Profiling.Sampler::s_InvalidSampler
Sampler_t6BFBE2B578BC0C28F4A78C6EA545AB8A4C50C6A4 * ___s_InvalidSampler_1;
public:
inline static int32_t get_offset_of_s_InvalidSampler_1() { return static_cast<int32_t>(offsetof(Sampler_t6BFBE2B578BC0C28F4A78C6EA545AB8A4C50C6A4_StaticFields, ___s_InvalidSampler_1)); }
inline Sampler_t6BFBE2B578BC0C28F4A78C6EA545AB8A4C50C6A4 * get_s_InvalidSampler_1() const { return ___s_InvalidSampler_1; }
inline Sampler_t6BFBE2B578BC0C28F4A78C6EA545AB8A4C50C6A4 ** get_address_of_s_InvalidSampler_1() { return &___s_InvalidSampler_1; }
inline void set_s_InvalidSampler_1(Sampler_t6BFBE2B578BC0C28F4A78C6EA545AB8A4C50C6A4 * value)
{
___s_InvalidSampler_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InvalidSampler_1), (void*)value);
}
};
// UnityEngine.Ray
struct Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2
{
public:
// UnityEngine.Vector3 UnityEngine.Ray::m_Origin
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Origin_0;
// UnityEngine.Vector3 UnityEngine.Ray::m_Direction
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Direction_1;
public:
inline static int32_t get_offset_of_m_Origin_0() { return static_cast<int32_t>(offsetof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, ___m_Origin_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Origin_0() const { return ___m_Origin_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Origin_0() { return &___m_Origin_0; }
inline void set_m_Origin_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Origin_0 = value;
}
inline static int32_t get_offset_of_m_Direction_1() { return static_cast<int32_t>(offsetof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, ___m_Direction_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Direction_1() const { return ___m_Direction_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Direction_1() { return &___m_Direction_1; }
inline void set_m_Direction_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Direction_1 = value;
}
};
// UnityEngine.RaycastHit
struct RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3
{
public:
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1;
// System.UInt32 UnityEngine.RaycastHit::m_FaceID
uint32_t ___m_FaceID_2;
// System.Single UnityEngine.RaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_UV_4;
// System.Int32 UnityEngine.RaycastHit::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Point_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_FaceID_2)); }
inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; }
inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; }
inline void set_m_FaceID_2(uint32_t value)
{
___m_FaceID_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_UV_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_UV_4() const { return ___m_UV_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_UV_4() { return &___m_UV_4; }
inline void set_m_UV_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_UV_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE
{
public:
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_2;
// System.Single UnityEngine.RaycastHit2D::m_Distance
float ___m_Distance_3;
// System.Single UnityEngine.RaycastHit2D::m_Fraction
float ___m_Fraction_4;
// System.Int32 UnityEngine.RaycastHit2D::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Centroid_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Centroid_0() const { return ___m_Centroid_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Centroid_0() { return &___m_Centroid_0; }
inline void set_m_Centroid_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Centroid_0 = value;
}
inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Point_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_1() const { return ___m_Point_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_1() { return &___m_Point_1; }
inline void set_m_Point_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Point_1 = value;
}
inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Normal_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_2() const { return ___m_Normal_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_2() { return &___m_Normal_2; }
inline void set_m_Normal_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Normal_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Fraction_4)); }
inline float get_m_Fraction_4() const { return ___m_Fraction_4; }
inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; }
inline void set_m_Fraction_4(float value)
{
___m_Fraction_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.RenderTextureMemoryless
struct RenderTextureMemoryless_t19E37ADD57C1F00D67146A2BB4521D06F370D2E9
{
public:
// System.Int32 UnityEngine.RenderTextureMemoryless::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderTextureMemoryless_t19E37ADD57C1F00D67146A2BB4521D06F370D2E9, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.BlendState
struct BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC
{
public:
// UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState0
RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState0_0;
// UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState1
RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState1_1;
// UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState2
RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState2_2;
// UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState3
RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState3_3;
// UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState4
RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState4_4;
// UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState5
RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState5_5;
// UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState6
RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState6_6;
// UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState7
RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState7_7;
// System.Byte UnityEngine.Rendering.BlendState::m_SeparateMRTBlendStates
uint8_t ___m_SeparateMRTBlendStates_8;
// System.Byte UnityEngine.Rendering.BlendState::m_AlphaToMask
uint8_t ___m_AlphaToMask_9;
// System.Int16 UnityEngine.Rendering.BlendState::m_Padding
int16_t ___m_Padding_10;
public:
inline static int32_t get_offset_of_m_BlendState0_0() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState0_0)); }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState0_0() const { return ___m_BlendState0_0; }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState0_0() { return &___m_BlendState0_0; }
inline void set_m_BlendState0_0(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value)
{
___m_BlendState0_0 = value;
}
inline static int32_t get_offset_of_m_BlendState1_1() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState1_1)); }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState1_1() const { return ___m_BlendState1_1; }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState1_1() { return &___m_BlendState1_1; }
inline void set_m_BlendState1_1(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value)
{
___m_BlendState1_1 = value;
}
inline static int32_t get_offset_of_m_BlendState2_2() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState2_2)); }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState2_2() const { return ___m_BlendState2_2; }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState2_2() { return &___m_BlendState2_2; }
inline void set_m_BlendState2_2(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value)
{
___m_BlendState2_2 = value;
}
inline static int32_t get_offset_of_m_BlendState3_3() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState3_3)); }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState3_3() const { return ___m_BlendState3_3; }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState3_3() { return &___m_BlendState3_3; }
inline void set_m_BlendState3_3(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value)
{
___m_BlendState3_3 = value;
}
inline static int32_t get_offset_of_m_BlendState4_4() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState4_4)); }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState4_4() const { return ___m_BlendState4_4; }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState4_4() { return &___m_BlendState4_4; }
inline void set_m_BlendState4_4(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value)
{
___m_BlendState4_4 = value;
}
inline static int32_t get_offset_of_m_BlendState5_5() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState5_5)); }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState5_5() const { return ___m_BlendState5_5; }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState5_5() { return &___m_BlendState5_5; }
inline void set_m_BlendState5_5(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value)
{
___m_BlendState5_5 = value;
}
inline static int32_t get_offset_of_m_BlendState6_6() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState6_6)); }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState6_6() const { return ___m_BlendState6_6; }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState6_6() { return &___m_BlendState6_6; }
inline void set_m_BlendState6_6(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value)
{
___m_BlendState6_6 = value;
}
inline static int32_t get_offset_of_m_BlendState7_7() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState7_7)); }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState7_7() const { return ___m_BlendState7_7; }
inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState7_7() { return &___m_BlendState7_7; }
inline void set_m_BlendState7_7(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value)
{
___m_BlendState7_7 = value;
}
inline static int32_t get_offset_of_m_SeparateMRTBlendStates_8() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_SeparateMRTBlendStates_8)); }
inline uint8_t get_m_SeparateMRTBlendStates_8() const { return ___m_SeparateMRTBlendStates_8; }
inline uint8_t* get_address_of_m_SeparateMRTBlendStates_8() { return &___m_SeparateMRTBlendStates_8; }
inline void set_m_SeparateMRTBlendStates_8(uint8_t value)
{
___m_SeparateMRTBlendStates_8 = value;
}
inline static int32_t get_offset_of_m_AlphaToMask_9() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_AlphaToMask_9)); }
inline uint8_t get_m_AlphaToMask_9() const { return ___m_AlphaToMask_9; }
inline uint8_t* get_address_of_m_AlphaToMask_9() { return &___m_AlphaToMask_9; }
inline void set_m_AlphaToMask_9(uint8_t value)
{
___m_AlphaToMask_9 = value;
}
inline static int32_t get_offset_of_m_Padding_10() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_Padding_10)); }
inline int16_t get_m_Padding_10() const { return ___m_Padding_10; }
inline int16_t* get_address_of_m_Padding_10() { return &___m_Padding_10; }
inline void set_m_Padding_10(int16_t value)
{
___m_Padding_10 = value;
}
};
// UnityEngine.Rendering.BuiltinRenderTextureType
struct BuiltinRenderTextureType_t6ECEE9FF62E815D7ED640D057EEA84C0FD145D01
{
public:
// System.Int32 UnityEngine.Rendering.BuiltinRenderTextureType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BuiltinRenderTextureType_t6ECEE9FF62E815D7ED640D057EEA84C0FD145D01, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.CullMode
struct CullMode_tB2EE0A4E3037D9632C62070AFCF12B64B7CD7D31
{
public:
// System.Int32 UnityEngine.Rendering.CullMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CullMode_tB2EE0A4E3037D9632C62070AFCF12B64B7CD7D31, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.CullingResults
struct CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B
{
public:
// System.IntPtr UnityEngine.Rendering.CullingResults::ptr
intptr_t ___ptr_0;
// UnityEngine.Rendering.CullingAllocationInfo* UnityEngine.Rendering.CullingResults::m_AllocationInfo
CullingAllocationInfo_t6FB719F375B06A0C10B87DB287A8143452406A14 * ___m_AllocationInfo_1;
public:
inline static int32_t get_offset_of_ptr_0() { return static_cast<int32_t>(offsetof(CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B, ___ptr_0)); }
inline intptr_t get_ptr_0() const { return ___ptr_0; }
inline intptr_t* get_address_of_ptr_0() { return &___ptr_0; }
inline void set_ptr_0(intptr_t value)
{
___ptr_0 = value;
}
inline static int32_t get_offset_of_m_AllocationInfo_1() { return static_cast<int32_t>(offsetof(CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B, ___m_AllocationInfo_1)); }
inline CullingAllocationInfo_t6FB719F375B06A0C10B87DB287A8143452406A14 * get_m_AllocationInfo_1() const { return ___m_AllocationInfo_1; }
inline CullingAllocationInfo_t6FB719F375B06A0C10B87DB287A8143452406A14 ** get_address_of_m_AllocationInfo_1() { return &___m_AllocationInfo_1; }
inline void set_m_AllocationInfo_1(CullingAllocationInfo_t6FB719F375B06A0C10B87DB287A8143452406A14 * value)
{
___m_AllocationInfo_1 = value;
}
};
// UnityEngine.Rendering.DebugUI_Flags
struct Flags_t1512896A60515E6D6AE2533F13CBE9D7C55F62D6
{
public:
// System.Int32 UnityEngine.Rendering.DebugUI_Flags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_t1512896A60515E6D6AE2533F13CBE9D7C55F62D6, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.DepthBits
struct DepthBits_tD35AB9FB7D232C9C761403CE567FC5C70C7E45F4
{
public:
// System.Int32 UnityEngine.Rendering.DepthBits::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DepthBits_tD35AB9FB7D232C9C761403CE567FC5C70C7E45F4, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.DistanceMetric
struct DistanceMetric_t5C45071996667083C69AB237FCFB89E7AA56CC78
{
public:
// System.Int32 UnityEngine.Rendering.DistanceMetric::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DistanceMetric_t5C45071996667083C69AB237FCFB89E7AA56CC78, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.DrawRendererFlags
struct DrawRendererFlags_t5453C423A72998F26DD0B302282870AB36D8A8FA
{
public:
// System.Int32 UnityEngine.Rendering.DrawRendererFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DrawRendererFlags_t5453C423A72998F26DD0B302282870AB36D8A8FA, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.FilteringSettings
struct FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD
{
public:
// UnityEngine.Rendering.RenderQueueRange UnityEngine.Rendering.FilteringSettings::m_RenderQueueRange
RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A ___m_RenderQueueRange_0;
// System.Int32 UnityEngine.Rendering.FilteringSettings::m_LayerMask
int32_t ___m_LayerMask_1;
// System.UInt32 UnityEngine.Rendering.FilteringSettings::m_RenderingLayerMask
uint32_t ___m_RenderingLayerMask_2;
// System.Int32 UnityEngine.Rendering.FilteringSettings::m_ExcludeMotionVectorObjects
int32_t ___m_ExcludeMotionVectorObjects_3;
// UnityEngine.Rendering.SortingLayerRange UnityEngine.Rendering.FilteringSettings::m_SortingLayerRange
SortingLayerRange_t2FD40EF4E4BAFF8597654DA7FC3F6E8AEE1FDC2E ___m_SortingLayerRange_4;
public:
inline static int32_t get_offset_of_m_RenderQueueRange_0() { return static_cast<int32_t>(offsetof(FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD, ___m_RenderQueueRange_0)); }
inline RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A get_m_RenderQueueRange_0() const { return ___m_RenderQueueRange_0; }
inline RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A * get_address_of_m_RenderQueueRange_0() { return &___m_RenderQueueRange_0; }
inline void set_m_RenderQueueRange_0(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A value)
{
___m_RenderQueueRange_0 = value;
}
inline static int32_t get_offset_of_m_LayerMask_1() { return static_cast<int32_t>(offsetof(FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD, ___m_LayerMask_1)); }
inline int32_t get_m_LayerMask_1() const { return ___m_LayerMask_1; }
inline int32_t* get_address_of_m_LayerMask_1() { return &___m_LayerMask_1; }
inline void set_m_LayerMask_1(int32_t value)
{
___m_LayerMask_1 = value;
}
inline static int32_t get_offset_of_m_RenderingLayerMask_2() { return static_cast<int32_t>(offsetof(FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD, ___m_RenderingLayerMask_2)); }
inline uint32_t get_m_RenderingLayerMask_2() const { return ___m_RenderingLayerMask_2; }
inline uint32_t* get_address_of_m_RenderingLayerMask_2() { return &___m_RenderingLayerMask_2; }
inline void set_m_RenderingLayerMask_2(uint32_t value)
{
___m_RenderingLayerMask_2 = value;
}
inline static int32_t get_offset_of_m_ExcludeMotionVectorObjects_3() { return static_cast<int32_t>(offsetof(FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD, ___m_ExcludeMotionVectorObjects_3)); }
inline int32_t get_m_ExcludeMotionVectorObjects_3() const { return ___m_ExcludeMotionVectorObjects_3; }
inline int32_t* get_address_of_m_ExcludeMotionVectorObjects_3() { return &___m_ExcludeMotionVectorObjects_3; }
inline void set_m_ExcludeMotionVectorObjects_3(int32_t value)
{
___m_ExcludeMotionVectorObjects_3 = value;
}
inline static int32_t get_offset_of_m_SortingLayerRange_4() { return static_cast<int32_t>(offsetof(FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD, ___m_SortingLayerRange_4)); }
inline SortingLayerRange_t2FD40EF4E4BAFF8597654DA7FC3F6E8AEE1FDC2E get_m_SortingLayerRange_4() const { return ___m_SortingLayerRange_4; }
inline SortingLayerRange_t2FD40EF4E4BAFF8597654DA7FC3F6E8AEE1FDC2E * get_address_of_m_SortingLayerRange_4() { return &___m_SortingLayerRange_4; }
inline void set_m_SortingLayerRange_4(SortingLayerRange_t2FD40EF4E4BAFF8597654DA7FC3F6E8AEE1FDC2E value)
{
___m_SortingLayerRange_4 = value;
}
};
// UnityEngine.Rendering.MSAASamples
struct MSAASamples_t844465BCB0FB6AD9C0EDC4DE4DECDB7674505139
{
public:
// System.Int32 UnityEngine.Rendering.MSAASamples::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MSAASamples_t844465BCB0FB6AD9C0EDC4DE4DECDB7674505139, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.PerObjectData
struct PerObjectData_tDA8D1525ADF92C3BFAFEAA4CBCB3239B3862485B
{
public:
// System.Int32 UnityEngine.Rendering.PerObjectData::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PerObjectData_tDA8D1525ADF92C3BFAFEAA4CBCB3239B3862485B, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.RenderStateMask
struct RenderStateMask_tF27E38BE839F07C591AD1690F17A00F0953051B2
{
public:
// System.Int32 UnityEngine.Rendering.RenderStateMask::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderStateMask_tF27E38BE839F07C591AD1690F17A00F0953051B2, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.ScriptableRenderContext
struct ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B
{
public:
// System.IntPtr UnityEngine.Rendering.ScriptableRenderContext::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// UnityEngine.Rendering.SortingCriteria
struct SortingCriteria_tF9ECC6E424F3114CF3E5C7F681B8C92BEE392A7C
{
public:
// System.Int32 UnityEngine.Rendering.SortingCriteria::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SortingCriteria_tF9ECC6E424F3114CF3E5C7F681B8C92BEE392A7C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.TextureDimension
struct TextureDimension_t90D0E4110D3F4D062F3E8C0F69809BFBBDF8E19C
{
public:
// System.Int32 UnityEngine.Rendering.TextureDimension::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureDimension_t90D0E4110D3F4D062F3E8C0F69809BFBBDF8E19C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.Universal.ShaderInput_LightData
struct LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF
{
public:
// UnityEngine.Vector4 UnityEngine.Rendering.Universal.ShaderInput_LightData::position
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___position_0;
// UnityEngine.Vector4 UnityEngine.Rendering.Universal.ShaderInput_LightData::color
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___color_1;
// UnityEngine.Vector4 UnityEngine.Rendering.Universal.ShaderInput_LightData::attenuation
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___attenuation_2;
// UnityEngine.Vector4 UnityEngine.Rendering.Universal.ShaderInput_LightData::spotDirection
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___spotDirection_3;
// UnityEngine.Vector4 UnityEngine.Rendering.Universal.ShaderInput_LightData::occlusionProbeChannels
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___occlusionProbeChannels_4;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF, ___position_0)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_position_0() const { return ___position_0; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_color_1() { return static_cast<int32_t>(offsetof(LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF, ___color_1)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_color_1() const { return ___color_1; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_color_1() { return &___color_1; }
inline void set_color_1(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___color_1 = value;
}
inline static int32_t get_offset_of_attenuation_2() { return static_cast<int32_t>(offsetof(LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF, ___attenuation_2)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_attenuation_2() const { return ___attenuation_2; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_attenuation_2() { return &___attenuation_2; }
inline void set_attenuation_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___attenuation_2 = value;
}
inline static int32_t get_offset_of_spotDirection_3() { return static_cast<int32_t>(offsetof(LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF, ___spotDirection_3)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_spotDirection_3() const { return ___spotDirection_3; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_spotDirection_3() { return &___spotDirection_3; }
inline void set_spotDirection_3(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___spotDirection_3 = value;
}
inline static int32_t get_offset_of_occlusionProbeChannels_4() { return static_cast<int32_t>(offsetof(LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF, ___occlusionProbeChannels_4)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_occlusionProbeChannels_4() const { return ___occlusionProbeChannels_4; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_occlusionProbeChannels_4() { return &___occlusionProbeChannels_4; }
inline void set_occlusionProbeChannels_4(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___occlusionProbeChannels_4 = value;
}
};
// UnityEngine.Rendering.Universal.ShaderInput_ShadowData
struct ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Rendering.Universal.ShaderInput_ShadowData::worldToShadowMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___worldToShadowMatrix_0;
// UnityEngine.Vector4 UnityEngine.Rendering.Universal.ShaderInput_ShadowData::shadowParams
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___shadowParams_1;
public:
inline static int32_t get_offset_of_worldToShadowMatrix_0() { return static_cast<int32_t>(offsetof(ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571, ___worldToShadowMatrix_0)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_worldToShadowMatrix_0() const { return ___worldToShadowMatrix_0; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_worldToShadowMatrix_0() { return &___worldToShadowMatrix_0; }
inline void set_worldToShadowMatrix_0(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___worldToShadowMatrix_0 = value;
}
inline static int32_t get_offset_of_shadowParams_1() { return static_cast<int32_t>(offsetof(ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571, ___shadowParams_1)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_shadowParams_1() const { return ___shadowParams_1; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_shadowParams_1() { return &___shadowParams_1; }
inline void set_shadowParams_1(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___shadowParams_1 = value;
}
};
// UnityEngine.Rendering.Universal.ShadowSliceData
struct ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Rendering.Universal.ShadowSliceData::viewMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___viewMatrix_0;
// UnityEngine.Matrix4x4 UnityEngine.Rendering.Universal.ShadowSliceData::projectionMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___projectionMatrix_1;
// UnityEngine.Matrix4x4 UnityEngine.Rendering.Universal.ShadowSliceData::shadowTransform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___shadowTransform_2;
// System.Int32 UnityEngine.Rendering.Universal.ShadowSliceData::offsetX
int32_t ___offsetX_3;
// System.Int32 UnityEngine.Rendering.Universal.ShadowSliceData::offsetY
int32_t ___offsetY_4;
// System.Int32 UnityEngine.Rendering.Universal.ShadowSliceData::resolution
int32_t ___resolution_5;
public:
inline static int32_t get_offset_of_viewMatrix_0() { return static_cast<int32_t>(offsetof(ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7, ___viewMatrix_0)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_viewMatrix_0() const { return ___viewMatrix_0; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_viewMatrix_0() { return &___viewMatrix_0; }
inline void set_viewMatrix_0(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___viewMatrix_0 = value;
}
inline static int32_t get_offset_of_projectionMatrix_1() { return static_cast<int32_t>(offsetof(ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7, ___projectionMatrix_1)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_projectionMatrix_1() const { return ___projectionMatrix_1; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_projectionMatrix_1() { return &___projectionMatrix_1; }
inline void set_projectionMatrix_1(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___projectionMatrix_1 = value;
}
inline static int32_t get_offset_of_shadowTransform_2() { return static_cast<int32_t>(offsetof(ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7, ___shadowTransform_2)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_shadowTransform_2() const { return ___shadowTransform_2; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_shadowTransform_2() { return &___shadowTransform_2; }
inline void set_shadowTransform_2(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___shadowTransform_2 = value;
}
inline static int32_t get_offset_of_offsetX_3() { return static_cast<int32_t>(offsetof(ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7, ___offsetX_3)); }
inline int32_t get_offsetX_3() const { return ___offsetX_3; }
inline int32_t* get_address_of_offsetX_3() { return &___offsetX_3; }
inline void set_offsetX_3(int32_t value)
{
___offsetX_3 = value;
}
inline static int32_t get_offset_of_offsetY_4() { return static_cast<int32_t>(offsetof(ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7, ___offsetY_4)); }
inline int32_t get_offsetY_4() const { return ___offsetY_4; }
inline int32_t* get_address_of_offsetY_4() { return &___offsetY_4; }
inline void set_offsetY_4(int32_t value)
{
___offsetY_4 = value;
}
inline static int32_t get_offset_of_resolution_5() { return static_cast<int32_t>(offsetof(ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7, ___resolution_5)); }
inline int32_t get_resolution_5() const { return ___resolution_5; }
inline int32_t* get_address_of_resolution_5() { return &___resolution_5; }
inline void set_resolution_5(int32_t value)
{
___resolution_5 = value;
}
};
// UnityEngine.Rendering.VertexAttribute
struct VertexAttribute_t2D79DF64001C55DA72AC86CE8946098970E8194D
{
public:
// System.Int32 UnityEngine.Rendering.VertexAttribute::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VertexAttribute_t2D79DF64001C55DA72AC86CE8946098970E8194D, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.VertexAttributeFormat
struct VertexAttributeFormat_tE6C8ECB044124F5BE97C3AA20DDFE9EDB0046F27
{
public:
// System.Int32 UnityEngine.Rendering.VertexAttributeFormat::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VertexAttributeFormat_tE6C8ECB044124F5BE97C3AA20DDFE9EDB0046F27, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.VisibleLightFlags
struct VisibleLightFlags_tF19C7BDF673C373A56FBBD51177A88A9D2886E56
{
public:
// System.Int32 UnityEngine.Rendering.VisibleLightFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VisibleLightFlags_tF19C7BDF673C373A56FBBD51177A88A9D2886E56, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.VolumeParameter`1<UnityEngine.Color>
struct VolumeParameter_1_t059451FC1519EE7A60C91C2D4FB0B146384E8EFF : public VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978
{
public:
// T UnityEngine.Rendering.VolumeParameter`1::m_Value
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_Value_2;
public:
inline static int32_t get_offset_of_m_Value_2() { return static_cast<int32_t>(offsetof(VolumeParameter_1_t059451FC1519EE7A60C91C2D4FB0B146384E8EFF, ___m_Value_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_Value_2() const { return ___m_Value_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_Value_2() { return &___m_Value_2; }
inline void set_m_Value_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_Value_2 = value;
}
};
// UnityEngine.Rendering.VolumeParameter`1<UnityEngine.LayerMask>
struct VolumeParameter_1_t197079DE61D57F1377FDC4FA60C73D44F000C547 : public VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978
{
public:
// T UnityEngine.Rendering.VolumeParameter`1::m_Value
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___m_Value_2;
public:
inline static int32_t get_offset_of_m_Value_2() { return static_cast<int32_t>(offsetof(VolumeParameter_1_t197079DE61D57F1377FDC4FA60C73D44F000C547, ___m_Value_2)); }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 get_m_Value_2() const { return ___m_Value_2; }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 * get_address_of_m_Value_2() { return &___m_Value_2; }
inline void set_m_Value_2(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 value)
{
___m_Value_2 = value;
}
};
// UnityEngine.Rendering.VolumeParameter`1<UnityEngine.Vector2>
struct VolumeParameter_1_tF58299DEEE2EF4D80FD77FC009ED2A4CE3D411ED : public VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978
{
public:
// T UnityEngine.Rendering.VolumeParameter`1::m_Value
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Value_2;
public:
inline static int32_t get_offset_of_m_Value_2() { return static_cast<int32_t>(offsetof(VolumeParameter_1_tF58299DEEE2EF4D80FD77FC009ED2A4CE3D411ED, ___m_Value_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Value_2() const { return ___m_Value_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Value_2() { return &___m_Value_2; }
inline void set_m_Value_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Value_2 = value;
}
};
// UnityEngine.Rendering.VolumeParameter`1<UnityEngine.Vector3>
struct VolumeParameter_1_t410FFFF80FBCD4C465026DD7AFD1572D87E4F3E1 : public VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978
{
public:
// T UnityEngine.Rendering.VolumeParameter`1::m_Value
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Value_2;
public:
inline static int32_t get_offset_of_m_Value_2() { return static_cast<int32_t>(offsetof(VolumeParameter_1_t410FFFF80FBCD4C465026DD7AFD1572D87E4F3E1, ___m_Value_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Value_2() const { return ___m_Value_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Value_2() { return &___m_Value_2; }
inline void set_m_Value_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Value_2 = value;
}
};
// UnityEngine.Rendering.VolumeParameter`1<UnityEngine.Vector4>
struct VolumeParameter_1_t14EDC405CD6A3957BDB5B917DAB8AFA918F67431 : public VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978
{
public:
// T UnityEngine.Rendering.VolumeParameter`1::m_Value
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___m_Value_2;
public:
inline static int32_t get_offset_of_m_Value_2() { return static_cast<int32_t>(offsetof(VolumeParameter_1_t14EDC405CD6A3957BDB5B917DAB8AFA918F67431, ___m_Value_2)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_m_Value_2() const { return ___m_Value_2; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_m_Value_2() { return &___m_Value_2; }
inline void set_m_Value_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___m_Value_2 = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord
struct GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00
{
public:
// System.UInt32 UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::m_GlyphIndex
uint32_t ___m_GlyphIndex_0;
// UnityEngine.TextCore.LowLevel.GlyphValueRecord UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::m_GlyphValueRecord
GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D ___m_GlyphValueRecord_1;
public:
inline static int32_t get_offset_of_m_GlyphIndex_0() { return static_cast<int32_t>(offsetof(GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00, ___m_GlyphIndex_0)); }
inline uint32_t get_m_GlyphIndex_0() const { return ___m_GlyphIndex_0; }
inline uint32_t* get_address_of_m_GlyphIndex_0() { return &___m_GlyphIndex_0; }
inline void set_m_GlyphIndex_0(uint32_t value)
{
___m_GlyphIndex_0 = value;
}
inline static int32_t get_offset_of_m_GlyphValueRecord_1() { return static_cast<int32_t>(offsetof(GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00, ___m_GlyphValueRecord_1)); }
inline GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D get_m_GlyphValueRecord_1() const { return ___m_GlyphValueRecord_1; }
inline GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D * get_address_of_m_GlyphValueRecord_1() { return &___m_GlyphValueRecord_1; }
inline void set_m_GlyphValueRecord_1(GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D value)
{
___m_GlyphValueRecord_1 = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct
struct GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448
{
public:
// System.UInt32 UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::index
uint32_t ___index_0;
// UnityEngine.TextCore.GlyphMetrics UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::metrics
GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB ___metrics_1;
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::glyphRect
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___glyphRect_2;
// System.Single UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::scale
float ___scale_3;
// System.Int32 UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::atlasIndex
int32_t ___atlasIndex_4;
public:
inline static int32_t get_offset_of_index_0() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448, ___index_0)); }
inline uint32_t get_index_0() const { return ___index_0; }
inline uint32_t* get_address_of_index_0() { return &___index_0; }
inline void set_index_0(uint32_t value)
{
___index_0 = value;
}
inline static int32_t get_offset_of_metrics_1() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448, ___metrics_1)); }
inline GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB get_metrics_1() const { return ___metrics_1; }
inline GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB * get_address_of_metrics_1() { return &___metrics_1; }
inline void set_metrics_1(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB value)
{
___metrics_1 = value;
}
inline static int32_t get_offset_of_glyphRect_2() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448, ___glyphRect_2)); }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C get_glyphRect_2() const { return ___glyphRect_2; }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * get_address_of_glyphRect_2() { return &___glyphRect_2; }
inline void set_glyphRect_2(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
___glyphRect_2 = value;
}
inline static int32_t get_offset_of_scale_3() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448, ___scale_3)); }
inline float get_scale_3() const { return ___scale_3; }
inline float* get_address_of_scale_3() { return &___scale_3; }
inline void set_scale_3(float value)
{
___scale_3 = value;
}
inline static int32_t get_offset_of_atlasIndex_4() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448, ___atlasIndex_4)); }
inline int32_t get_atlasIndex_4() const { return ___atlasIndex_4; }
inline int32_t* get_address_of_atlasIndex_4() { return &___atlasIndex_4; }
inline void set_atlasIndex_4(int32_t value)
{
___atlasIndex_4 = value;
}
};
// UnityEngine.TextureFormat
struct TextureFormat_t7C6B5101554065C47682E592D1E26079D4EC2DCE
{
public:
// System.Int32 UnityEngine.TextureFormat::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureFormat_t7C6B5101554065C47682E592D1E26079D4EC2DCE, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.TextureWrapMode
struct TextureWrapMode_t8AC763BD80806A9175C6AA8D33D6BABAD83E950F
{
public:
// System.Int32 UnityEngine.TextureWrapMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureWrapMode_t8AC763BD80806A9175C6AA8D33D6BABAD83E950F, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.ColorBlock
struct ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA
{
public:
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_NormalColor_0;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_HighlightedColor_1;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_PressedColor_2;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_SelectedColor_3;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_DisabledColor_4;
// System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier
float ___m_ColorMultiplier_5;
// System.Single UnityEngine.UI.ColorBlock::m_FadeDuration
float ___m_FadeDuration_6;
public:
inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_NormalColor_0)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_NormalColor_0() const { return ___m_NormalColor_0; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; }
inline void set_m_NormalColor_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_NormalColor_0 = value;
}
inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_HighlightedColor_1)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; }
inline void set_m_HighlightedColor_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_HighlightedColor_1 = value;
}
inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_PressedColor_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_PressedColor_2() const { return ___m_PressedColor_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; }
inline void set_m_PressedColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_PressedColor_2 = value;
}
inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_SelectedColor_3)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; }
inline void set_m_SelectedColor_3(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_SelectedColor_3 = value;
}
inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_DisabledColor_4)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; }
inline void set_m_DisabledColor_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_DisabledColor_4 = value;
}
inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_ColorMultiplier_5)); }
inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; }
inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; }
inline void set_m_ColorMultiplier_5(float value)
{
___m_ColorMultiplier_5 = value;
}
inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_FadeDuration_6)); }
inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; }
inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; }
inline void set_m_FadeDuration_6(float value)
{
___m_FadeDuration_6 = value;
}
};
// UnityEngine.UI.Navigation_Mode
struct Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26
{
public:
// System.Int32 UnityEngine.UI.Navigation_Mode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.Selectable_Transition
struct Transition_tA9261C608B54C52324084A0B080E7A3E0548A181
{
public:
// System.Int32 UnityEngine.UI.Selectable_Transition::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Transition_tA9261C608B54C52324084A0B080E7A3E0548A181, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UICharInfo
struct UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A
{
public:
// UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___cursorPos_0;
// System.Single UnityEngine.UICharInfo::charWidth
float ___charWidth_1;
public:
inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___cursorPos_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_cursorPos_0() const { return ___cursorPos_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_cursorPos_0() { return &___cursorPos_0; }
inline void set_cursorPos_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___cursorPos_0 = value;
}
inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___charWidth_1)); }
inline float get_charWidth_1() const { return ___charWidth_1; }
inline float* get_address_of_charWidth_1() { return &___charWidth_1; }
inline void set_charWidth_1(float value)
{
___charWidth_1 = value;
}
};
// UnityEngine.UIVertex
struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577
{
public:
// UnityEngine.Vector3 UnityEngine.UIVertex::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0;
// UnityEngine.Vector3 UnityEngine.UIVertex::normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___normal_1;
// UnityEngine.Vector4 UnityEngine.UIVertex::tangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2;
// UnityEngine.Color32 UnityEngine.UIVertex::color
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_3;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv0
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv0_4;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv1
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv1_5;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv2
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv2_6;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv3
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv3_7;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___position_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_normal_1() const { return ___normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_normal_1() { return &___normal_1; }
inline void set_normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___normal_1 = value;
}
inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___tangent_2)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_tangent_2() const { return ___tangent_2; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_tangent_2() { return &___tangent_2; }
inline void set_tangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___tangent_2 = value;
}
inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___color_3)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_3() const { return ___color_3; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_3() { return &___color_3; }
inline void set_color_3(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___color_3 = value;
}
inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv0_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv0_4() const { return ___uv0_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv0_4() { return &___uv0_4; }
inline void set_uv0_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv0_4 = value;
}
inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv1_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv1_5() const { return ___uv1_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv1_5() { return &___uv1_5; }
inline void set_uv1_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv1_5 = value;
}
inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv2_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv2_6() const { return ___uv2_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv2_6() { return &___uv2_6; }
inline void set_uv2_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv2_6 = value;
}
inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv3_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv3_7() const { return ___uv3_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv3_7() { return &___uv3_7; }
inline void set_uv3_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv3_7 = value;
}
};
struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields
{
public:
// UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___s_DefaultColor_8;
// UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___s_DefaultTangent_9;
// UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___simpleVert_10;
public:
inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultColor_8)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_s_DefaultColor_8() const { return ___s_DefaultColor_8; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; }
inline void set_s_DefaultColor_8(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___s_DefaultColor_8 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultTangent_9)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; }
inline void set_s_DefaultTangent_9(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___s_DefaultTangent_9 = value;
}
inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___simpleVert_10)); }
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 get_simpleVert_10() const { return ___simpleVert_10; }
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * get_address_of_simpleVert_10() { return &___simpleVert_10; }
inline void set_simpleVert_10(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value)
{
___simpleVert_10 = value;
}
};
// UnityEngine.XR.ARKit.ARKitImageDatabase_ConvertRGBA32ToARGB32Job
struct ConvertRGBA32ToARGB32Job_t81AAD60557C255D4A08CBD6789644DCA20D61AA0
{
public:
// Unity.Collections.NativeSlice`1<System.UInt32> UnityEngine.XR.ARKit.ARKitImageDatabase_ConvertRGBA32ToARGB32Job::rgbaImage
NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A ___rgbaImage_0;
// Unity.Collections.NativeSlice`1<System.UInt32> UnityEngine.XR.ARKit.ARKitImageDatabase_ConvertRGBA32ToARGB32Job::argbImage
NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A ___argbImage_1;
public:
inline static int32_t get_offset_of_rgbaImage_0() { return static_cast<int32_t>(offsetof(ConvertRGBA32ToARGB32Job_t81AAD60557C255D4A08CBD6789644DCA20D61AA0, ___rgbaImage_0)); }
inline NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A get_rgbaImage_0() const { return ___rgbaImage_0; }
inline NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A * get_address_of_rgbaImage_0() { return &___rgbaImage_0; }
inline void set_rgbaImage_0(NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A value)
{
___rgbaImage_0 = value;
}
inline static int32_t get_offset_of_argbImage_1() { return static_cast<int32_t>(offsetof(ConvertRGBA32ToARGB32Job_t81AAD60557C255D4A08CBD6789644DCA20D61AA0, ___argbImage_1)); }
inline NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A get_argbImage_1() const { return ___argbImage_1; }
inline NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A * get_address_of_argbImage_1() { return &___argbImage_1; }
inline void set_argbImage_1(NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A value)
{
___argbImage_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARKit.ARKitImageDatabase/ConvertRGBA32ToARGB32Job
struct ConvertRGBA32ToARGB32Job_t81AAD60557C255D4A08CBD6789644DCA20D61AA0_marshaled_pinvoke
{
NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A ___rgbaImage_0;
NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A ___argbImage_1;
};
// Native definition for COM marshalling of UnityEngine.XR.ARKit.ARKitImageDatabase/ConvertRGBA32ToARGB32Job
struct ConvertRGBA32ToARGB32Job_t81AAD60557C255D4A08CBD6789644DCA20D61AA0_marshaled_com
{
NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A ___rgbaImage_0;
NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A ___argbImage_1;
};
// UnityEngine.XR.ARKit.ManagedReferenceImage
struct ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789
{
public:
// System.Guid UnityEngine.XR.ARKit.ManagedReferenceImage::guid
Guid_t ___guid_0;
// System.Guid UnityEngine.XR.ARKit.ManagedReferenceImage::textureGuid
Guid_t ___textureGuid_1;
// UnityEngine.Vector2 UnityEngine.XR.ARKit.ManagedReferenceImage::size
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___size_2;
// System.IntPtr UnityEngine.XR.ARKit.ManagedReferenceImage::name
intptr_t ___name_3;
// System.IntPtr UnityEngine.XR.ARKit.ManagedReferenceImage::texture
intptr_t ___texture_4;
public:
inline static int32_t get_offset_of_guid_0() { return static_cast<int32_t>(offsetof(ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789, ___guid_0)); }
inline Guid_t get_guid_0() const { return ___guid_0; }
inline Guid_t * get_address_of_guid_0() { return &___guid_0; }
inline void set_guid_0(Guid_t value)
{
___guid_0 = value;
}
inline static int32_t get_offset_of_textureGuid_1() { return static_cast<int32_t>(offsetof(ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789, ___textureGuid_1)); }
inline Guid_t get_textureGuid_1() const { return ___textureGuid_1; }
inline Guid_t * get_address_of_textureGuid_1() { return &___textureGuid_1; }
inline void set_textureGuid_1(Guid_t value)
{
___textureGuid_1 = value;
}
inline static int32_t get_offset_of_size_2() { return static_cast<int32_t>(offsetof(ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789, ___size_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_size_2() const { return ___size_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_size_2() { return &___size_2; }
inline void set_size_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___size_2 = value;
}
inline static int32_t get_offset_of_name_3() { return static_cast<int32_t>(offsetof(ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789, ___name_3)); }
inline intptr_t get_name_3() const { return ___name_3; }
inline intptr_t* get_address_of_name_3() { return &___name_3; }
inline void set_name_3(intptr_t value)
{
___name_3 = value;
}
inline static int32_t get_offset_of_texture_4() { return static_cast<int32_t>(offsetof(ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789, ___texture_4)); }
inline intptr_t get_texture_4() const { return ___texture_4; }
inline intptr_t* get_address_of_texture_4() { return &___texture_4; }
inline void set_texture_4(intptr_t value)
{
___texture_4 = value;
}
};
// UnityEngine.XR.ARSubsystems.PlaneAlignment
struct PlaneAlignment_t8959E33A181E8A5B46387DDC30F957DD14B48783
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.PlaneAlignment::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneAlignment_t8959E33A181E8A5B46387DDC30F957DD14B48783, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.PlaneClassification
struct PlaneClassification_t71F2A910A03A3173EC07FA011082D6ED7B8851C2
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.PlaneClassification::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneClassification_t71F2A910A03A3173EC07FA011082D6ED7B8851C2, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableType
struct TrackableType_t078FFF635AE2E4FC51E7D7DB8AB1CB884D30EA1F
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.TrackableType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackableType_t078FFF635AE2E4FC51E7D7DB8AB1CB884D30EA1F, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackingState
struct TrackingState_t124D9E603E4E0453A85409CF7762EE8C946233F6
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.TrackingState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingState_t124D9E603E4E0453A85409CF7762EE8C946233F6, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCameraConfiguration
struct XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97
{
public:
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCameraConfiguration::m_Resolution
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___m_Resolution_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraConfiguration::m_Framerate
int32_t ___m_Framerate_1;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRCameraConfiguration::m_NativeConfigurationHandle
intptr_t ___m_NativeConfigurationHandle_2;
public:
inline static int32_t get_offset_of_m_Resolution_0() { return static_cast<int32_t>(offsetof(XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97, ___m_Resolution_0)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_m_Resolution_0() const { return ___m_Resolution_0; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_m_Resolution_0() { return &___m_Resolution_0; }
inline void set_m_Resolution_0(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___m_Resolution_0 = value;
}
inline static int32_t get_offset_of_m_Framerate_1() { return static_cast<int32_t>(offsetof(XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97, ___m_Framerate_1)); }
inline int32_t get_m_Framerate_1() const { return ___m_Framerate_1; }
inline int32_t* get_address_of_m_Framerate_1() { return &___m_Framerate_1; }
inline void set_m_Framerate_1(int32_t value)
{
___m_Framerate_1 = value;
}
inline static int32_t get_offset_of_m_NativeConfigurationHandle_2() { return static_cast<int32_t>(offsetof(XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97, ___m_NativeConfigurationHandle_2)); }
inline intptr_t get_m_NativeConfigurationHandle_2() const { return ___m_NativeConfigurationHandle_2; }
inline intptr_t* get_address_of_m_NativeConfigurationHandle_2() { return &___m_NativeConfigurationHandle_2; }
inline void set_m_NativeConfigurationHandle_2(intptr_t value)
{
___m_NativeConfigurationHandle_2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint
struct XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_Index
int32_t ___m_Index_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_ParentIndex
int32_t ___m_ParentIndex_1;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_Position
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Position_2;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_Tracked
int32_t ___m_Tracked_3;
public:
inline static int32_t get_offset_of_m_Index_0() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B, ___m_Index_0)); }
inline int32_t get_m_Index_0() const { return ___m_Index_0; }
inline int32_t* get_address_of_m_Index_0() { return &___m_Index_0; }
inline void set_m_Index_0(int32_t value)
{
___m_Index_0 = value;
}
inline static int32_t get_offset_of_m_ParentIndex_1() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B, ___m_ParentIndex_1)); }
inline int32_t get_m_ParentIndex_1() const { return ___m_ParentIndex_1; }
inline int32_t* get_address_of_m_ParentIndex_1() { return &___m_ParentIndex_1; }
inline void set_m_ParentIndex_1(int32_t value)
{
___m_ParentIndex_1 = value;
}
inline static int32_t get_offset_of_m_Position_2() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B, ___m_Position_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Position_2() const { return ___m_Position_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Position_2() { return &___m_Position_2; }
inline void set_m_Position_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Position_2 = value;
}
inline static int32_t get_offset_of_m_Tracked_3() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B, ___m_Tracked_3)); }
inline int32_t get_m_Tracked_3() const { return ___m_Tracked_3; }
inline int32_t* get_address_of_m_Tracked_3() { return &___m_Tracked_3; }
inline void set_m_Tracked_3(int32_t value)
{
___m_Tracked_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRReferenceImage
struct XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E
{
public:
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SerializedGuid
SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 ___m_SerializedGuid_0;
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SerializedTextureGuid
SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 ___m_SerializedTextureGuid_1;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Size
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Size_2;
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SpecifySize
bool ___m_SpecifySize_3;
// System.String UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Name
String_t* ___m_Name_4;
// UnityEngine.Texture2D UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Texture
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___m_Texture_5;
public:
inline static int32_t get_offset_of_m_SerializedGuid_0() { return static_cast<int32_t>(offsetof(XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E, ___m_SerializedGuid_0)); }
inline SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 get_m_SerializedGuid_0() const { return ___m_SerializedGuid_0; }
inline SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 * get_address_of_m_SerializedGuid_0() { return &___m_SerializedGuid_0; }
inline void set_m_SerializedGuid_0(SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 value)
{
___m_SerializedGuid_0 = value;
}
inline static int32_t get_offset_of_m_SerializedTextureGuid_1() { return static_cast<int32_t>(offsetof(XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E, ___m_SerializedTextureGuid_1)); }
inline SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 get_m_SerializedTextureGuid_1() const { return ___m_SerializedTextureGuid_1; }
inline SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 * get_address_of_m_SerializedTextureGuid_1() { return &___m_SerializedTextureGuid_1; }
inline void set_m_SerializedTextureGuid_1(SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 value)
{
___m_SerializedTextureGuid_1 = value;
}
inline static int32_t get_offset_of_m_Size_2() { return static_cast<int32_t>(offsetof(XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E, ___m_Size_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Size_2() const { return ___m_Size_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Size_2() { return &___m_Size_2; }
inline void set_m_Size_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Size_2 = value;
}
inline static int32_t get_offset_of_m_SpecifySize_3() { return static_cast<int32_t>(offsetof(XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E, ___m_SpecifySize_3)); }
inline bool get_m_SpecifySize_3() const { return ___m_SpecifySize_3; }
inline bool* get_address_of_m_SpecifySize_3() { return &___m_SpecifySize_3; }
inline void set_m_SpecifySize_3(bool value)
{
___m_SpecifySize_3 = value;
}
inline static int32_t get_offset_of_m_Name_4() { return static_cast<int32_t>(offsetof(XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E, ___m_Name_4)); }
inline String_t* get_m_Name_4() const { return ___m_Name_4; }
inline String_t** get_address_of_m_Name_4() { return &___m_Name_4; }
inline void set_m_Name_4(String_t* value)
{
___m_Name_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_4), (void*)value);
}
inline static int32_t get_offset_of_m_Texture_5() { return static_cast<int32_t>(offsetof(XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E, ___m_Texture_5)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_m_Texture_5() const { return ___m_Texture_5; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_m_Texture_5() { return &___m_Texture_5; }
inline void set_m_Texture_5(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___m_Texture_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Texture_5), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRReferenceImage
struct XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_marshaled_pinvoke
{
SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 ___m_SerializedGuid_0;
SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 ___m_SerializedTextureGuid_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Size_2;
int32_t ___m_SpecifySize_3;
char* ___m_Name_4;
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___m_Texture_5;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRReferenceImage
struct XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_marshaled_com
{
SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 ___m_SerializedGuid_0;
SerializableGuid_tF7CD988878BEBB3281FA1C06B4457569DFD75821 ___m_SerializedTextureGuid_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Size_2;
int32_t ___m_SpecifySize_3;
Il2CppChar* ___m_Name_4;
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___m_Texture_5;
};
// UnityEngine.XR.AvailableTrackingData
struct AvailableTrackingData_tF1140FC398AFB5CA7E9FBBBC8ECB242E91E86AAD
{
public:
// System.Int32 UnityEngine.XR.AvailableTrackingData::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AvailableTrackingData_tF1140FC398AFB5CA7E9FBBBC8ECB242E91E86AAD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.MeshChangeState
struct MeshChangeState_t42D58EE953790EC6E1609C4BEB5FC75C680D84E0
{
public:
// System.Int32 UnityEngine.XR.MeshChangeState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MeshChangeState_t42D58EE953790EC6E1609C4BEB5FC75C680D84E0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.XRNode
struct XRNode_tC8909A28AC7B1B4D71839715DDC1011895BA5F5F
{
public:
// System.Int32 UnityEngine.XR.XRNode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XRNode_tC8909A28AC7B1B4D71839715DDC1011895BA5F5F, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>
struct Entry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
Guid_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA, ___key_2)); }
inline Guid_t get_key_2() const { return ___key_2; }
inline Guid_t * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Guid_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA, ___value_3)); }
inline XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E get_value_3() const { return ___value_3; }
inline XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Name_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Texture_5), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,System.Boolean>
struct Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
bool ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9, ___value_3)); }
inline bool get_value_3() const { return ___value_3; }
inline bool* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(bool value)
{
___value_3 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>
struct KeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F, ___key_0)); }
inline Guid_t get_key_0() const { return ___key_0; }
inline Guid_t * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Guid_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F, ___value_1)); }
inline XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E get_value_1() const { return ___value_1; }
inline XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___m_Name_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___m_Texture_5), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>
struct KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
bool ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04, ___value_1)); }
inline bool get_value_1() const { return ___value_1; }
inline bool* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(bool value)
{
___value_1 = value;
}
};
// System.Diagnostics.Tracing.EventSource_EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B
{
public:
// System.Diagnostics.Tracing.EventDescriptor System.Diagnostics.Tracing.EventSource_EventMetadata::Descriptor
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
// System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventSource_EventMetadata::Tags
int32_t ___Tags_1;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForAnyListener
bool ___EnabledForAnyListener_2;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForETW
bool ___EnabledForETW_3;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::HasRelatedActivityID
bool ___HasRelatedActivityID_4;
// System.Byte System.Diagnostics.Tracing.EventSource_EventMetadata::TriggersActivityTracking
uint8_t ___TriggersActivityTracking_5;
// System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Name
String_t* ___Name_6;
// System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Message
String_t* ___Message_7;
// System.Reflection.ParameterInfo[] System.Diagnostics.Tracing.EventSource_EventMetadata::Parameters
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___Parameters_8;
// System.Diagnostics.Tracing.TraceLoggingEventTypes System.Diagnostics.Tracing.EventSource_EventMetadata::TraceLoggingEventTypes
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
// System.Diagnostics.Tracing.EventActivityOptions System.Diagnostics.Tracing.EventSource_EventMetadata::ActivityOptions
int32_t ___ActivityOptions_10;
public:
inline static int32_t get_offset_of_Descriptor_0() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Descriptor_0)); }
inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E get_Descriptor_0() const { return ___Descriptor_0; }
inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E * get_address_of_Descriptor_0() { return &___Descriptor_0; }
inline void set_Descriptor_0(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E value)
{
___Descriptor_0 = value;
}
inline static int32_t get_offset_of_Tags_1() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Tags_1)); }
inline int32_t get_Tags_1() const { return ___Tags_1; }
inline int32_t* get_address_of_Tags_1() { return &___Tags_1; }
inline void set_Tags_1(int32_t value)
{
___Tags_1 = value;
}
inline static int32_t get_offset_of_EnabledForAnyListener_2() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForAnyListener_2)); }
inline bool get_EnabledForAnyListener_2() const { return ___EnabledForAnyListener_2; }
inline bool* get_address_of_EnabledForAnyListener_2() { return &___EnabledForAnyListener_2; }
inline void set_EnabledForAnyListener_2(bool value)
{
___EnabledForAnyListener_2 = value;
}
inline static int32_t get_offset_of_EnabledForETW_3() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForETW_3)); }
inline bool get_EnabledForETW_3() const { return ___EnabledForETW_3; }
inline bool* get_address_of_EnabledForETW_3() { return &___EnabledForETW_3; }
inline void set_EnabledForETW_3(bool value)
{
___EnabledForETW_3 = value;
}
inline static int32_t get_offset_of_HasRelatedActivityID_4() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___HasRelatedActivityID_4)); }
inline bool get_HasRelatedActivityID_4() const { return ___HasRelatedActivityID_4; }
inline bool* get_address_of_HasRelatedActivityID_4() { return &___HasRelatedActivityID_4; }
inline void set_HasRelatedActivityID_4(bool value)
{
___HasRelatedActivityID_4 = value;
}
inline static int32_t get_offset_of_TriggersActivityTracking_5() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TriggersActivityTracking_5)); }
inline uint8_t get_TriggersActivityTracking_5() const { return ___TriggersActivityTracking_5; }
inline uint8_t* get_address_of_TriggersActivityTracking_5() { return &___TriggersActivityTracking_5; }
inline void set_TriggersActivityTracking_5(uint8_t value)
{
___TriggersActivityTracking_5 = value;
}
inline static int32_t get_offset_of_Name_6() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Name_6)); }
inline String_t* get_Name_6() const { return ___Name_6; }
inline String_t** get_address_of_Name_6() { return &___Name_6; }
inline void set_Name_6(String_t* value)
{
___Name_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_6), (void*)value);
}
inline static int32_t get_offset_of_Message_7() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Message_7)); }
inline String_t* get_Message_7() const { return ___Message_7; }
inline String_t** get_address_of_Message_7() { return &___Message_7; }
inline void set_Message_7(String_t* value)
{
___Message_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Message_7), (void*)value);
}
inline static int32_t get_offset_of_Parameters_8() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Parameters_8)); }
inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* get_Parameters_8() const { return ___Parameters_8; }
inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694** get_address_of_Parameters_8() { return &___Parameters_8; }
inline void set_Parameters_8(ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* value)
{
___Parameters_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Parameters_8), (void*)value);
}
inline static int32_t get_offset_of_TraceLoggingEventTypes_9() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TraceLoggingEventTypes_9)); }
inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * get_TraceLoggingEventTypes_9() const { return ___TraceLoggingEventTypes_9; }
inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 ** get_address_of_TraceLoggingEventTypes_9() { return &___TraceLoggingEventTypes_9; }
inline void set_TraceLoggingEventTypes_9(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * value)
{
___TraceLoggingEventTypes_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TraceLoggingEventTypes_9), (void*)value);
}
inline static int32_t get_offset_of_ActivityOptions_10() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___ActivityOptions_10)); }
inline int32_t get_ActivityOptions_10() const { return ___ActivityOptions_10; }
inline int32_t* get_address_of_ActivityOptions_10() { return &___ActivityOptions_10; }
inline void set_ActivityOptions_10(int32_t value)
{
___ActivityOptions_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke
{
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
int32_t ___Tags_1;
int32_t ___EnabledForAnyListener_2;
int32_t ___EnabledForETW_3;
int32_t ___HasRelatedActivityID_4;
uint8_t ___TriggersActivityTracking_5;
char* ___Name_6;
char* ___Message_7;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke** ___Parameters_8;
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
int32_t ___ActivityOptions_10;
};
// Native definition for COM marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com
{
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
int32_t ___Tags_1;
int32_t ___EnabledForAnyListener_2;
int32_t ___EnabledForETW_3;
int32_t ___HasRelatedActivityID_4;
uint8_t ___TriggersActivityTracking_5;
Il2CppChar* ___Name_6;
Il2CppChar* ___Message_7;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com** ___Parameters_8;
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
int32_t ___ActivityOptions_10;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// TMPro.RichTextTagAttribute
struct RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98
{
public:
// System.Int32 TMPro.RichTextTagAttribute::nameHashCode
int32_t ___nameHashCode_0;
// System.Int32 TMPro.RichTextTagAttribute::valueHashCode
int32_t ___valueHashCode_1;
// TMPro.TagValueType TMPro.RichTextTagAttribute::valueType
int32_t ___valueType_2;
// System.Int32 TMPro.RichTextTagAttribute::valueStartIndex
int32_t ___valueStartIndex_3;
// System.Int32 TMPro.RichTextTagAttribute::valueLength
int32_t ___valueLength_4;
// TMPro.TagUnitType TMPro.RichTextTagAttribute::unitType
int32_t ___unitType_5;
public:
inline static int32_t get_offset_of_nameHashCode_0() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___nameHashCode_0)); }
inline int32_t get_nameHashCode_0() const { return ___nameHashCode_0; }
inline int32_t* get_address_of_nameHashCode_0() { return &___nameHashCode_0; }
inline void set_nameHashCode_0(int32_t value)
{
___nameHashCode_0 = value;
}
inline static int32_t get_offset_of_valueHashCode_1() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___valueHashCode_1)); }
inline int32_t get_valueHashCode_1() const { return ___valueHashCode_1; }
inline int32_t* get_address_of_valueHashCode_1() { return &___valueHashCode_1; }
inline void set_valueHashCode_1(int32_t value)
{
___valueHashCode_1 = value;
}
inline static int32_t get_offset_of_valueType_2() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___valueType_2)); }
inline int32_t get_valueType_2() const { return ___valueType_2; }
inline int32_t* get_address_of_valueType_2() { return &___valueType_2; }
inline void set_valueType_2(int32_t value)
{
___valueType_2 = value;
}
inline static int32_t get_offset_of_valueStartIndex_3() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___valueStartIndex_3)); }
inline int32_t get_valueStartIndex_3() const { return ___valueStartIndex_3; }
inline int32_t* get_address_of_valueStartIndex_3() { return &___valueStartIndex_3; }
inline void set_valueStartIndex_3(int32_t value)
{
___valueStartIndex_3 = value;
}
inline static int32_t get_offset_of_valueLength_4() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___valueLength_4)); }
inline int32_t get_valueLength_4() const { return ___valueLength_4; }
inline int32_t* get_address_of_valueLength_4() { return &___valueLength_4; }
inline void set_valueLength_4(int32_t value)
{
___valueLength_4 = value;
}
inline static int32_t get_offset_of_unitType_5() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___unitType_5)); }
inline int32_t get_unitType_5() const { return ___unitType_5; }
inline int32_t* get_address_of_unitType_5() { return &___unitType_5; }
inline void set_unitType_5(int32_t value)
{
___unitType_5 = value;
}
};
// TMPro.TMP_CharacterInfo
struct TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1
{
public:
// System.Char TMPro.TMP_CharacterInfo::character
Il2CppChar ___character_0;
// System.Int32 TMPro.TMP_CharacterInfo::index
int32_t ___index_1;
// System.Int32 TMPro.TMP_CharacterInfo::stringLength
int32_t ___stringLength_2;
// TMPro.TMP_TextElementType TMPro.TMP_CharacterInfo::elementType
int32_t ___elementType_3;
// TMPro.TMP_TextElement TMPro.TMP_CharacterInfo::textElement
TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * ___textElement_4;
// TMPro.TMP_FontAsset TMPro.TMP_CharacterInfo::fontAsset
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_5;
// TMPro.TMP_SpriteAsset TMPro.TMP_CharacterInfo::spriteAsset
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_6;
// System.Int32 TMPro.TMP_CharacterInfo::spriteIndex
int32_t ___spriteIndex_7;
// UnityEngine.Material TMPro.TMP_CharacterInfo::material
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_8;
// System.Int32 TMPro.TMP_CharacterInfo::materialReferenceIndex
int32_t ___materialReferenceIndex_9;
// System.Boolean TMPro.TMP_CharacterInfo::isUsingAlternateTypeface
bool ___isUsingAlternateTypeface_10;
// System.Single TMPro.TMP_CharacterInfo::pointSize
float ___pointSize_11;
// System.Int32 TMPro.TMP_CharacterInfo::lineNumber
int32_t ___lineNumber_12;
// System.Int32 TMPro.TMP_CharacterInfo::pageNumber
int32_t ___pageNumber_13;
// System.Int32 TMPro.TMP_CharacterInfo::vertexIndex
int32_t ___vertexIndex_14;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_BL
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BL_15;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_TL
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TL_16;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_TR
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TR_17;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_BR
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BR_18;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::topLeft
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topLeft_19;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::bottomLeft
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomLeft_20;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::topRight
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topRight_21;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::bottomRight
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomRight_22;
// System.Single TMPro.TMP_CharacterInfo::origin
float ___origin_23;
// System.Single TMPro.TMP_CharacterInfo::ascender
float ___ascender_24;
// System.Single TMPro.TMP_CharacterInfo::baseLine
float ___baseLine_25;
// System.Single TMPro.TMP_CharacterInfo::descender
float ___descender_26;
// System.Single TMPro.TMP_CharacterInfo::xAdvance
float ___xAdvance_27;
// System.Single TMPro.TMP_CharacterInfo::aspectRatio
float ___aspectRatio_28;
// System.Single TMPro.TMP_CharacterInfo::scale
float ___scale_29;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::color
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_30;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::underlineColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_31;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::strikethroughColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_32;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::highlightColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_33;
// TMPro.FontStyles TMPro.TMP_CharacterInfo::style
int32_t ___style_34;
// System.Boolean TMPro.TMP_CharacterInfo::isVisible
bool ___isVisible_35;
public:
inline static int32_t get_offset_of_character_0() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___character_0)); }
inline Il2CppChar get_character_0() const { return ___character_0; }
inline Il2CppChar* get_address_of_character_0() { return &___character_0; }
inline void set_character_0(Il2CppChar value)
{
___character_0 = value;
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_stringLength_2() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___stringLength_2)); }
inline int32_t get_stringLength_2() const { return ___stringLength_2; }
inline int32_t* get_address_of_stringLength_2() { return &___stringLength_2; }
inline void set_stringLength_2(int32_t value)
{
___stringLength_2 = value;
}
inline static int32_t get_offset_of_elementType_3() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___elementType_3)); }
inline int32_t get_elementType_3() const { return ___elementType_3; }
inline int32_t* get_address_of_elementType_3() { return &___elementType_3; }
inline void set_elementType_3(int32_t value)
{
___elementType_3 = value;
}
inline static int32_t get_offset_of_textElement_4() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___textElement_4)); }
inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * get_textElement_4() const { return ___textElement_4; }
inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 ** get_address_of_textElement_4() { return &___textElement_4; }
inline void set_textElement_4(TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * value)
{
___textElement_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textElement_4), (void*)value);
}
inline static int32_t get_offset_of_fontAsset_5() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___fontAsset_5)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_fontAsset_5() const { return ___fontAsset_5; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_fontAsset_5() { return &___fontAsset_5; }
inline void set_fontAsset_5(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___fontAsset_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fontAsset_5), (void*)value);
}
inline static int32_t get_offset_of_spriteAsset_6() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___spriteAsset_6)); }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * get_spriteAsset_6() const { return ___spriteAsset_6; }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 ** get_address_of_spriteAsset_6() { return &___spriteAsset_6; }
inline void set_spriteAsset_6(TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * value)
{
___spriteAsset_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___spriteAsset_6), (void*)value);
}
inline static int32_t get_offset_of_spriteIndex_7() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___spriteIndex_7)); }
inline int32_t get_spriteIndex_7() const { return ___spriteIndex_7; }
inline int32_t* get_address_of_spriteIndex_7() { return &___spriteIndex_7; }
inline void set_spriteIndex_7(int32_t value)
{
___spriteIndex_7 = value;
}
inline static int32_t get_offset_of_material_8() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___material_8)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_material_8() const { return ___material_8; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_material_8() { return &___material_8; }
inline void set_material_8(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___material_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___material_8), (void*)value);
}
inline static int32_t get_offset_of_materialReferenceIndex_9() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___materialReferenceIndex_9)); }
inline int32_t get_materialReferenceIndex_9() const { return ___materialReferenceIndex_9; }
inline int32_t* get_address_of_materialReferenceIndex_9() { return &___materialReferenceIndex_9; }
inline void set_materialReferenceIndex_9(int32_t value)
{
___materialReferenceIndex_9 = value;
}
inline static int32_t get_offset_of_isUsingAlternateTypeface_10() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___isUsingAlternateTypeface_10)); }
inline bool get_isUsingAlternateTypeface_10() const { return ___isUsingAlternateTypeface_10; }
inline bool* get_address_of_isUsingAlternateTypeface_10() { return &___isUsingAlternateTypeface_10; }
inline void set_isUsingAlternateTypeface_10(bool value)
{
___isUsingAlternateTypeface_10 = value;
}
inline static int32_t get_offset_of_pointSize_11() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___pointSize_11)); }
inline float get_pointSize_11() const { return ___pointSize_11; }
inline float* get_address_of_pointSize_11() { return &___pointSize_11; }
inline void set_pointSize_11(float value)
{
___pointSize_11 = value;
}
inline static int32_t get_offset_of_lineNumber_12() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___lineNumber_12)); }
inline int32_t get_lineNumber_12() const { return ___lineNumber_12; }
inline int32_t* get_address_of_lineNumber_12() { return &___lineNumber_12; }
inline void set_lineNumber_12(int32_t value)
{
___lineNumber_12 = value;
}
inline static int32_t get_offset_of_pageNumber_13() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___pageNumber_13)); }
inline int32_t get_pageNumber_13() const { return ___pageNumber_13; }
inline int32_t* get_address_of_pageNumber_13() { return &___pageNumber_13; }
inline void set_pageNumber_13(int32_t value)
{
___pageNumber_13 = value;
}
inline static int32_t get_offset_of_vertexIndex_14() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertexIndex_14)); }
inline int32_t get_vertexIndex_14() const { return ___vertexIndex_14; }
inline int32_t* get_address_of_vertexIndex_14() { return &___vertexIndex_14; }
inline void set_vertexIndex_14(int32_t value)
{
___vertexIndex_14 = value;
}
inline static int32_t get_offset_of_vertex_BL_15() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_BL_15)); }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_BL_15() const { return ___vertex_BL_15; }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_BL_15() { return &___vertex_BL_15; }
inline void set_vertex_BL_15(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value)
{
___vertex_BL_15 = value;
}
inline static int32_t get_offset_of_vertex_TL_16() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_TL_16)); }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_TL_16() const { return ___vertex_TL_16; }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_TL_16() { return &___vertex_TL_16; }
inline void set_vertex_TL_16(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value)
{
___vertex_TL_16 = value;
}
inline static int32_t get_offset_of_vertex_TR_17() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_TR_17)); }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_TR_17() const { return ___vertex_TR_17; }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_TR_17() { return &___vertex_TR_17; }
inline void set_vertex_TR_17(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value)
{
___vertex_TR_17 = value;
}
inline static int32_t get_offset_of_vertex_BR_18() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_BR_18)); }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_BR_18() const { return ___vertex_BR_18; }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_BR_18() { return &___vertex_BR_18; }
inline void set_vertex_BR_18(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value)
{
___vertex_BR_18 = value;
}
inline static int32_t get_offset_of_topLeft_19() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___topLeft_19)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_topLeft_19() const { return ___topLeft_19; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_topLeft_19() { return &___topLeft_19; }
inline void set_topLeft_19(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___topLeft_19 = value;
}
inline static int32_t get_offset_of_bottomLeft_20() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___bottomLeft_20)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_bottomLeft_20() const { return ___bottomLeft_20; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_bottomLeft_20() { return &___bottomLeft_20; }
inline void set_bottomLeft_20(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___bottomLeft_20 = value;
}
inline static int32_t get_offset_of_topRight_21() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___topRight_21)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_topRight_21() const { return ___topRight_21; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_topRight_21() { return &___topRight_21; }
inline void set_topRight_21(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___topRight_21 = value;
}
inline static int32_t get_offset_of_bottomRight_22() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___bottomRight_22)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_bottomRight_22() const { return ___bottomRight_22; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_bottomRight_22() { return &___bottomRight_22; }
inline void set_bottomRight_22(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___bottomRight_22 = value;
}
inline static int32_t get_offset_of_origin_23() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___origin_23)); }
inline float get_origin_23() const { return ___origin_23; }
inline float* get_address_of_origin_23() { return &___origin_23; }
inline void set_origin_23(float value)
{
___origin_23 = value;
}
inline static int32_t get_offset_of_ascender_24() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___ascender_24)); }
inline float get_ascender_24() const { return ___ascender_24; }
inline float* get_address_of_ascender_24() { return &___ascender_24; }
inline void set_ascender_24(float value)
{
___ascender_24 = value;
}
inline static int32_t get_offset_of_baseLine_25() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___baseLine_25)); }
inline float get_baseLine_25() const { return ___baseLine_25; }
inline float* get_address_of_baseLine_25() { return &___baseLine_25; }
inline void set_baseLine_25(float value)
{
___baseLine_25 = value;
}
inline static int32_t get_offset_of_descender_26() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___descender_26)); }
inline float get_descender_26() const { return ___descender_26; }
inline float* get_address_of_descender_26() { return &___descender_26; }
inline void set_descender_26(float value)
{
___descender_26 = value;
}
inline static int32_t get_offset_of_xAdvance_27() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___xAdvance_27)); }
inline float get_xAdvance_27() const { return ___xAdvance_27; }
inline float* get_address_of_xAdvance_27() { return &___xAdvance_27; }
inline void set_xAdvance_27(float value)
{
___xAdvance_27 = value;
}
inline static int32_t get_offset_of_aspectRatio_28() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___aspectRatio_28)); }
inline float get_aspectRatio_28() const { return ___aspectRatio_28; }
inline float* get_address_of_aspectRatio_28() { return &___aspectRatio_28; }
inline void set_aspectRatio_28(float value)
{
___aspectRatio_28 = value;
}
inline static int32_t get_offset_of_scale_29() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___scale_29)); }
inline float get_scale_29() const { return ___scale_29; }
inline float* get_address_of_scale_29() { return &___scale_29; }
inline void set_scale_29(float value)
{
___scale_29 = value;
}
inline static int32_t get_offset_of_color_30() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___color_30)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_30() const { return ___color_30; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_30() { return &___color_30; }
inline void set_color_30(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___color_30 = value;
}
inline static int32_t get_offset_of_underlineColor_31() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___underlineColor_31)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_underlineColor_31() const { return ___underlineColor_31; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_underlineColor_31() { return &___underlineColor_31; }
inline void set_underlineColor_31(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___underlineColor_31 = value;
}
inline static int32_t get_offset_of_strikethroughColor_32() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___strikethroughColor_32)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_strikethroughColor_32() const { return ___strikethroughColor_32; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_strikethroughColor_32() { return &___strikethroughColor_32; }
inline void set_strikethroughColor_32(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___strikethroughColor_32 = value;
}
inline static int32_t get_offset_of_highlightColor_33() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___highlightColor_33)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_highlightColor_33() const { return ___highlightColor_33; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_highlightColor_33() { return &___highlightColor_33; }
inline void set_highlightColor_33(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___highlightColor_33 = value;
}
inline static int32_t get_offset_of_style_34() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___style_34)); }
inline int32_t get_style_34() const { return ___style_34; }
inline int32_t* get_address_of_style_34() { return &___style_34; }
inline void set_style_34(int32_t value)
{
___style_34 = value;
}
inline static int32_t get_offset_of_isVisible_35() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___isVisible_35)); }
inline bool get_isVisible_35() const { return ___isVisible_35; }
inline bool* get_address_of_isVisible_35() { return &___isVisible_35; }
inline void set_isVisible_35(bool value)
{
___isVisible_35 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.TMP_CharacterInfo
struct TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_marshaled_pinvoke
{
uint8_t ___character_0;
int32_t ___index_1;
int32_t ___stringLength_2;
int32_t ___elementType_3;
TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * ___textElement_4;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_5;
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_6;
int32_t ___spriteIndex_7;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_8;
int32_t ___materialReferenceIndex_9;
int32_t ___isUsingAlternateTypeface_10;
float ___pointSize_11;
int32_t ___lineNumber_12;
int32_t ___pageNumber_13;
int32_t ___vertexIndex_14;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BL_15;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TL_16;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TR_17;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BR_18;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topLeft_19;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomLeft_20;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topRight_21;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomRight_22;
float ___origin_23;
float ___ascender_24;
float ___baseLine_25;
float ___descender_26;
float ___xAdvance_27;
float ___aspectRatio_28;
float ___scale_29;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_30;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_31;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_32;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_33;
int32_t ___style_34;
int32_t ___isVisible_35;
};
// Native definition for COM marshalling of TMPro.TMP_CharacterInfo
struct TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_marshaled_com
{
uint8_t ___character_0;
int32_t ___index_1;
int32_t ___stringLength_2;
int32_t ___elementType_3;
TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * ___textElement_4;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_5;
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_6;
int32_t ___spriteIndex_7;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_8;
int32_t ___materialReferenceIndex_9;
int32_t ___isUsingAlternateTypeface_10;
float ___pointSize_11;
int32_t ___lineNumber_12;
int32_t ___pageNumber_13;
int32_t ___vertexIndex_14;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BL_15;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TL_16;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TR_17;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BR_18;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topLeft_19;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomLeft_20;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topRight_21;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomRight_22;
float ___origin_23;
float ___ascender_24;
float ___baseLine_25;
float ___descender_26;
float ___xAdvance_27;
float ___aspectRatio_28;
float ___scale_29;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_30;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_31;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_32;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_33;
int32_t ___style_34;
int32_t ___isVisible_35;
};
// TMPro.TMP_LineInfo
struct TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442
{
public:
// System.Int32 TMPro.TMP_LineInfo::controlCharacterCount
int32_t ___controlCharacterCount_0;
// System.Int32 TMPro.TMP_LineInfo::characterCount
int32_t ___characterCount_1;
// System.Int32 TMPro.TMP_LineInfo::visibleCharacterCount
int32_t ___visibleCharacterCount_2;
// System.Int32 TMPro.TMP_LineInfo::spaceCount
int32_t ___spaceCount_3;
// System.Int32 TMPro.TMP_LineInfo::wordCount
int32_t ___wordCount_4;
// System.Int32 TMPro.TMP_LineInfo::firstCharacterIndex
int32_t ___firstCharacterIndex_5;
// System.Int32 TMPro.TMP_LineInfo::firstVisibleCharacterIndex
int32_t ___firstVisibleCharacterIndex_6;
// System.Int32 TMPro.TMP_LineInfo::lastCharacterIndex
int32_t ___lastCharacterIndex_7;
// System.Int32 TMPro.TMP_LineInfo::lastVisibleCharacterIndex
int32_t ___lastVisibleCharacterIndex_8;
// System.Single TMPro.TMP_LineInfo::length
float ___length_9;
// System.Single TMPro.TMP_LineInfo::lineHeight
float ___lineHeight_10;
// System.Single TMPro.TMP_LineInfo::ascender
float ___ascender_11;
// System.Single TMPro.TMP_LineInfo::baseline
float ___baseline_12;
// System.Single TMPro.TMP_LineInfo::descender
float ___descender_13;
// System.Single TMPro.TMP_LineInfo::maxAdvance
float ___maxAdvance_14;
// System.Single TMPro.TMP_LineInfo::width
float ___width_15;
// System.Single TMPro.TMP_LineInfo::marginLeft
float ___marginLeft_16;
// System.Single TMPro.TMP_LineInfo::marginRight
float ___marginRight_17;
// TMPro.TextAlignmentOptions TMPro.TMP_LineInfo::alignment
int32_t ___alignment_18;
// TMPro.Extents TMPro.TMP_LineInfo::lineExtents
Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 ___lineExtents_19;
public:
inline static int32_t get_offset_of_controlCharacterCount_0() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___controlCharacterCount_0)); }
inline int32_t get_controlCharacterCount_0() const { return ___controlCharacterCount_0; }
inline int32_t* get_address_of_controlCharacterCount_0() { return &___controlCharacterCount_0; }
inline void set_controlCharacterCount_0(int32_t value)
{
___controlCharacterCount_0 = value;
}
inline static int32_t get_offset_of_characterCount_1() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___characterCount_1)); }
inline int32_t get_characterCount_1() const { return ___characterCount_1; }
inline int32_t* get_address_of_characterCount_1() { return &___characterCount_1; }
inline void set_characterCount_1(int32_t value)
{
___characterCount_1 = value;
}
inline static int32_t get_offset_of_visibleCharacterCount_2() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___visibleCharacterCount_2)); }
inline int32_t get_visibleCharacterCount_2() const { return ___visibleCharacterCount_2; }
inline int32_t* get_address_of_visibleCharacterCount_2() { return &___visibleCharacterCount_2; }
inline void set_visibleCharacterCount_2(int32_t value)
{
___visibleCharacterCount_2 = value;
}
inline static int32_t get_offset_of_spaceCount_3() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___spaceCount_3)); }
inline int32_t get_spaceCount_3() const { return ___spaceCount_3; }
inline int32_t* get_address_of_spaceCount_3() { return &___spaceCount_3; }
inline void set_spaceCount_3(int32_t value)
{
___spaceCount_3 = value;
}
inline static int32_t get_offset_of_wordCount_4() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___wordCount_4)); }
inline int32_t get_wordCount_4() const { return ___wordCount_4; }
inline int32_t* get_address_of_wordCount_4() { return &___wordCount_4; }
inline void set_wordCount_4(int32_t value)
{
___wordCount_4 = value;
}
inline static int32_t get_offset_of_firstCharacterIndex_5() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___firstCharacterIndex_5)); }
inline int32_t get_firstCharacterIndex_5() const { return ___firstCharacterIndex_5; }
inline int32_t* get_address_of_firstCharacterIndex_5() { return &___firstCharacterIndex_5; }
inline void set_firstCharacterIndex_5(int32_t value)
{
___firstCharacterIndex_5 = value;
}
inline static int32_t get_offset_of_firstVisibleCharacterIndex_6() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___firstVisibleCharacterIndex_6)); }
inline int32_t get_firstVisibleCharacterIndex_6() const { return ___firstVisibleCharacterIndex_6; }
inline int32_t* get_address_of_firstVisibleCharacterIndex_6() { return &___firstVisibleCharacterIndex_6; }
inline void set_firstVisibleCharacterIndex_6(int32_t value)
{
___firstVisibleCharacterIndex_6 = value;
}
inline static int32_t get_offset_of_lastCharacterIndex_7() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___lastCharacterIndex_7)); }
inline int32_t get_lastCharacterIndex_7() const { return ___lastCharacterIndex_7; }
inline int32_t* get_address_of_lastCharacterIndex_7() { return &___lastCharacterIndex_7; }
inline void set_lastCharacterIndex_7(int32_t value)
{
___lastCharacterIndex_7 = value;
}
inline static int32_t get_offset_of_lastVisibleCharacterIndex_8() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___lastVisibleCharacterIndex_8)); }
inline int32_t get_lastVisibleCharacterIndex_8() const { return ___lastVisibleCharacterIndex_8; }
inline int32_t* get_address_of_lastVisibleCharacterIndex_8() { return &___lastVisibleCharacterIndex_8; }
inline void set_lastVisibleCharacterIndex_8(int32_t value)
{
___lastVisibleCharacterIndex_8 = value;
}
inline static int32_t get_offset_of_length_9() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___length_9)); }
inline float get_length_9() const { return ___length_9; }
inline float* get_address_of_length_9() { return &___length_9; }
inline void set_length_9(float value)
{
___length_9 = value;
}
inline static int32_t get_offset_of_lineHeight_10() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___lineHeight_10)); }
inline float get_lineHeight_10() const { return ___lineHeight_10; }
inline float* get_address_of_lineHeight_10() { return &___lineHeight_10; }
inline void set_lineHeight_10(float value)
{
___lineHeight_10 = value;
}
inline static int32_t get_offset_of_ascender_11() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___ascender_11)); }
inline float get_ascender_11() const { return ___ascender_11; }
inline float* get_address_of_ascender_11() { return &___ascender_11; }
inline void set_ascender_11(float value)
{
___ascender_11 = value;
}
inline static int32_t get_offset_of_baseline_12() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___baseline_12)); }
inline float get_baseline_12() const { return ___baseline_12; }
inline float* get_address_of_baseline_12() { return &___baseline_12; }
inline void set_baseline_12(float value)
{
___baseline_12 = value;
}
inline static int32_t get_offset_of_descender_13() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___descender_13)); }
inline float get_descender_13() const { return ___descender_13; }
inline float* get_address_of_descender_13() { return &___descender_13; }
inline void set_descender_13(float value)
{
___descender_13 = value;
}
inline static int32_t get_offset_of_maxAdvance_14() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___maxAdvance_14)); }
inline float get_maxAdvance_14() const { return ___maxAdvance_14; }
inline float* get_address_of_maxAdvance_14() { return &___maxAdvance_14; }
inline void set_maxAdvance_14(float value)
{
___maxAdvance_14 = value;
}
inline static int32_t get_offset_of_width_15() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___width_15)); }
inline float get_width_15() const { return ___width_15; }
inline float* get_address_of_width_15() { return &___width_15; }
inline void set_width_15(float value)
{
___width_15 = value;
}
inline static int32_t get_offset_of_marginLeft_16() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___marginLeft_16)); }
inline float get_marginLeft_16() const { return ___marginLeft_16; }
inline float* get_address_of_marginLeft_16() { return &___marginLeft_16; }
inline void set_marginLeft_16(float value)
{
___marginLeft_16 = value;
}
inline static int32_t get_offset_of_marginRight_17() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___marginRight_17)); }
inline float get_marginRight_17() const { return ___marginRight_17; }
inline float* get_address_of_marginRight_17() { return &___marginRight_17; }
inline void set_marginRight_17(float value)
{
___marginRight_17 = value;
}
inline static int32_t get_offset_of_alignment_18() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___alignment_18)); }
inline int32_t get_alignment_18() const { return ___alignment_18; }
inline int32_t* get_address_of_alignment_18() { return &___alignment_18; }
inline void set_alignment_18(int32_t value)
{
___alignment_18 = value;
}
inline static int32_t get_offset_of_lineExtents_19() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___lineExtents_19)); }
inline Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 get_lineExtents_19() const { return ___lineExtents_19; }
inline Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 * get_address_of_lineExtents_19() { return &___lineExtents_19; }
inline void set_lineExtents_19(Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 value)
{
___lineExtents_19 = value;
}
};
// TMPro.TMP_MeshInfo
struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E
{
public:
// UnityEngine.Mesh TMPro.TMP_MeshInfo::mesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_4;
// System.Int32 TMPro.TMP_MeshInfo::vertexCount
int32_t ___vertexCount_5;
// UnityEngine.Vector3[] TMPro.TMP_MeshInfo::vertices
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___vertices_6;
// UnityEngine.Vector3[] TMPro.TMP_MeshInfo::normals
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___normals_7;
// UnityEngine.Vector4[] TMPro.TMP_MeshInfo::tangents
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___tangents_8;
// UnityEngine.Vector2[] TMPro.TMP_MeshInfo::uvs0
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___uvs0_9;
// UnityEngine.Vector2[] TMPro.TMP_MeshInfo::uvs2
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___uvs2_10;
// UnityEngine.Color32[] TMPro.TMP_MeshInfo::colors32
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ___colors32_11;
// System.Int32[] TMPro.TMP_MeshInfo::triangles
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___triangles_12;
public:
inline static int32_t get_offset_of_mesh_4() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___mesh_4)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_mesh_4() const { return ___mesh_4; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_mesh_4() { return &___mesh_4; }
inline void set_mesh_4(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___mesh_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mesh_4), (void*)value);
}
inline static int32_t get_offset_of_vertexCount_5() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___vertexCount_5)); }
inline int32_t get_vertexCount_5() const { return ___vertexCount_5; }
inline int32_t* get_address_of_vertexCount_5() { return &___vertexCount_5; }
inline void set_vertexCount_5(int32_t value)
{
___vertexCount_5 = value;
}
inline static int32_t get_offset_of_vertices_6() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___vertices_6)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_vertices_6() const { return ___vertices_6; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_vertices_6() { return &___vertices_6; }
inline void set_vertices_6(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___vertices_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___vertices_6), (void*)value);
}
inline static int32_t get_offset_of_normals_7() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___normals_7)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_normals_7() const { return ___normals_7; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_normals_7() { return &___normals_7; }
inline void set_normals_7(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___normals_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___normals_7), (void*)value);
}
inline static int32_t get_offset_of_tangents_8() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___tangents_8)); }
inline Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* get_tangents_8() const { return ___tangents_8; }
inline Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66** get_address_of_tangents_8() { return &___tangents_8; }
inline void set_tangents_8(Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* value)
{
___tangents_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___tangents_8), (void*)value);
}
inline static int32_t get_offset_of_uvs0_9() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___uvs0_9)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_uvs0_9() const { return ___uvs0_9; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_uvs0_9() { return &___uvs0_9; }
inline void set_uvs0_9(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
___uvs0_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uvs0_9), (void*)value);
}
inline static int32_t get_offset_of_uvs2_10() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___uvs2_10)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_uvs2_10() const { return ___uvs2_10; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_uvs2_10() { return &___uvs2_10; }
inline void set_uvs2_10(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
___uvs2_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uvs2_10), (void*)value);
}
inline static int32_t get_offset_of_colors32_11() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___colors32_11)); }
inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* get_colors32_11() const { return ___colors32_11; }
inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983** get_address_of_colors32_11() { return &___colors32_11; }
inline void set_colors32_11(Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* value)
{
___colors32_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___colors32_11), (void*)value);
}
inline static int32_t get_offset_of_triangles_12() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___triangles_12)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_triangles_12() const { return ___triangles_12; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_triangles_12() { return &___triangles_12; }
inline void set_triangles_12(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___triangles_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___triangles_12), (void*)value);
}
};
struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields
{
public:
// UnityEngine.Color32 TMPro.TMP_MeshInfo::s_DefaultColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___s_DefaultColor_0;
// UnityEngine.Vector3 TMPro.TMP_MeshInfo::s_DefaultNormal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___s_DefaultNormal_1;
// UnityEngine.Vector4 TMPro.TMP_MeshInfo::s_DefaultTangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___s_DefaultTangent_2;
// UnityEngine.Bounds TMPro.TMP_MeshInfo::s_DefaultBounds
Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___s_DefaultBounds_3;
public:
inline static int32_t get_offset_of_s_DefaultColor_0() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultColor_0)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_s_DefaultColor_0() const { return ___s_DefaultColor_0; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_s_DefaultColor_0() { return &___s_DefaultColor_0; }
inline void set_s_DefaultColor_0(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___s_DefaultColor_0 = value;
}
inline static int32_t get_offset_of_s_DefaultNormal_1() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultNormal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_s_DefaultNormal_1() const { return ___s_DefaultNormal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_s_DefaultNormal_1() { return &___s_DefaultNormal_1; }
inline void set_s_DefaultNormal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___s_DefaultNormal_1 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_2() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultTangent_2)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_s_DefaultTangent_2() const { return ___s_DefaultTangent_2; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_s_DefaultTangent_2() { return &___s_DefaultTangent_2; }
inline void set_s_DefaultTangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___s_DefaultTangent_2 = value;
}
inline static int32_t get_offset_of_s_DefaultBounds_3() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultBounds_3)); }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 get_s_DefaultBounds_3() const { return ___s_DefaultBounds_3; }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 * get_address_of_s_DefaultBounds_3() { return &___s_DefaultBounds_3; }
inline void set_s_DefaultBounds_3(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 value)
{
___s_DefaultBounds_3 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.TMP_MeshInfo
struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_marshaled_pinvoke
{
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_4;
int32_t ___vertexCount_5;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___vertices_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___normals_7;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * ___tangents_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs0_9;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs2_10;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * ___colors32_11;
Il2CppSafeArray/*NONE*/* ___triangles_12;
};
// Native definition for COM marshalling of TMPro.TMP_MeshInfo
struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_marshaled_com
{
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_4;
int32_t ___vertexCount_5;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___vertices_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___normals_7;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * ___tangents_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs0_9;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs2_10;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * ___colors32_11;
Il2CppSafeArray/*NONE*/* ___triangles_12;
};
// Unity.Collections.NativeArray`1<System.Byte>
struct NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<System.Int32>
struct NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<System.UInt64>
struct NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>
struct NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Plane>
struct NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Quaternion>
struct NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility>
struct NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Rendering.VisibleLight>
struct NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Vector2>
struct NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Vector3>
struct NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Vector4>
struct NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastInfo>
struct NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int16>>
struct NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int32>>
struct NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.BoundedPlane>
struct NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId>
struct NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRAnchor>
struct NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>
struct NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>
struct NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRFace>
struct NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBody>
struct NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRParticipant>
struct NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRPointCloud>
struct NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>
struct NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>
struct NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>
struct NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>
struct NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>
struct NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Jobs.LowLevel.Unsafe.JobsUtility_JobScheduleParameters
struct JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F
{
public:
// Unity.Jobs.JobHandle Unity.Jobs.LowLevel.Unsafe.JobsUtility_JobScheduleParameters::Dependency
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___Dependency_0;
// System.Int32 Unity.Jobs.LowLevel.Unsafe.JobsUtility_JobScheduleParameters::ScheduleMode
int32_t ___ScheduleMode_1;
// System.IntPtr Unity.Jobs.LowLevel.Unsafe.JobsUtility_JobScheduleParameters::ReflectionData
intptr_t ___ReflectionData_2;
// System.IntPtr Unity.Jobs.LowLevel.Unsafe.JobsUtility_JobScheduleParameters::JobDataPtr
intptr_t ___JobDataPtr_3;
public:
inline static int32_t get_offset_of_Dependency_0() { return static_cast<int32_t>(offsetof(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F, ___Dependency_0)); }
inline JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 get_Dependency_0() const { return ___Dependency_0; }
inline JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 * get_address_of_Dependency_0() { return &___Dependency_0; }
inline void set_Dependency_0(JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 value)
{
___Dependency_0 = value;
}
inline static int32_t get_offset_of_ScheduleMode_1() { return static_cast<int32_t>(offsetof(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F, ___ScheduleMode_1)); }
inline int32_t get_ScheduleMode_1() const { return ___ScheduleMode_1; }
inline int32_t* get_address_of_ScheduleMode_1() { return &___ScheduleMode_1; }
inline void set_ScheduleMode_1(int32_t value)
{
___ScheduleMode_1 = value;
}
inline static int32_t get_offset_of_ReflectionData_2() { return static_cast<int32_t>(offsetof(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F, ___ReflectionData_2)); }
inline intptr_t get_ReflectionData_2() const { return ___ReflectionData_2; }
inline intptr_t* get_address_of_ReflectionData_2() { return &___ReflectionData_2; }
inline void set_ReflectionData_2(intptr_t value)
{
___ReflectionData_2 = value;
}
inline static int32_t get_offset_of_JobDataPtr_3() { return static_cast<int32_t>(offsetof(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F, ___JobDataPtr_3)); }
inline intptr_t get_JobDataPtr_3() const { return ___JobDataPtr_3; }
inline intptr_t* get_address_of_JobDataPtr_3() { return &___JobDataPtr_3; }
inline void set_JobDataPtr_3(intptr_t value)
{
___JobDataPtr_3 = value;
}
};
// UnityEngine.Component
struct Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Experimental.GlobalIllumination.LightDataGI
struct LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2
{
public:
// System.Int32 UnityEngine.Experimental.GlobalIllumination.LightDataGI::instanceID
int32_t ___instanceID_0;
// UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LightDataGI::color
LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD ___color_1;
// UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LightDataGI::indirectColor
LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD ___indirectColor_2;
// UnityEngine.Quaternion UnityEngine.Experimental.GlobalIllumination.LightDataGI::orientation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___orientation_3;
// UnityEngine.Vector3 UnityEngine.Experimental.GlobalIllumination.LightDataGI::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_4;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::range
float ___range_5;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::coneAngle
float ___coneAngle_6;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::innerConeAngle
float ___innerConeAngle_7;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::shape0
float ___shape0_8;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::shape1
float ___shape1_9;
// UnityEngine.Experimental.GlobalIllumination.LightType UnityEngine.Experimental.GlobalIllumination.LightDataGI::type
uint8_t ___type_10;
// UnityEngine.Experimental.GlobalIllumination.LightMode UnityEngine.Experimental.GlobalIllumination.LightDataGI::mode
uint8_t ___mode_11;
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightDataGI::shadow
uint8_t ___shadow_12;
// UnityEngine.Experimental.GlobalIllumination.FalloffType UnityEngine.Experimental.GlobalIllumination.LightDataGI::falloff
uint8_t ___falloff_13;
public:
inline static int32_t get_offset_of_instanceID_0() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___instanceID_0)); }
inline int32_t get_instanceID_0() const { return ___instanceID_0; }
inline int32_t* get_address_of_instanceID_0() { return &___instanceID_0; }
inline void set_instanceID_0(int32_t value)
{
___instanceID_0 = value;
}
inline static int32_t get_offset_of_color_1() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___color_1)); }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD get_color_1() const { return ___color_1; }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD * get_address_of_color_1() { return &___color_1; }
inline void set_color_1(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD value)
{
___color_1 = value;
}
inline static int32_t get_offset_of_indirectColor_2() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___indirectColor_2)); }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD get_indirectColor_2() const { return ___indirectColor_2; }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD * get_address_of_indirectColor_2() { return &___indirectColor_2; }
inline void set_indirectColor_2(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD value)
{
___indirectColor_2 = value;
}
inline static int32_t get_offset_of_orientation_3() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___orientation_3)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_orientation_3() const { return ___orientation_3; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_orientation_3() { return &___orientation_3; }
inline void set_orientation_3(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___orientation_3 = value;
}
inline static int32_t get_offset_of_position_4() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___position_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_4() const { return ___position_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_4() { return &___position_4; }
inline void set_position_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_4 = value;
}
inline static int32_t get_offset_of_range_5() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___range_5)); }
inline float get_range_5() const { return ___range_5; }
inline float* get_address_of_range_5() { return &___range_5; }
inline void set_range_5(float value)
{
___range_5 = value;
}
inline static int32_t get_offset_of_coneAngle_6() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___coneAngle_6)); }
inline float get_coneAngle_6() const { return ___coneAngle_6; }
inline float* get_address_of_coneAngle_6() { return &___coneAngle_6; }
inline void set_coneAngle_6(float value)
{
___coneAngle_6 = value;
}
inline static int32_t get_offset_of_innerConeAngle_7() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___innerConeAngle_7)); }
inline float get_innerConeAngle_7() const { return ___innerConeAngle_7; }
inline float* get_address_of_innerConeAngle_7() { return &___innerConeAngle_7; }
inline void set_innerConeAngle_7(float value)
{
___innerConeAngle_7 = value;
}
inline static int32_t get_offset_of_shape0_8() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shape0_8)); }
inline float get_shape0_8() const { return ___shape0_8; }
inline float* get_address_of_shape0_8() { return &___shape0_8; }
inline void set_shape0_8(float value)
{
___shape0_8 = value;
}
inline static int32_t get_offset_of_shape1_9() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shape1_9)); }
inline float get_shape1_9() const { return ___shape1_9; }
inline float* get_address_of_shape1_9() { return &___shape1_9; }
inline void set_shape1_9(float value)
{
___shape1_9 = value;
}
inline static int32_t get_offset_of_type_10() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___type_10)); }
inline uint8_t get_type_10() const { return ___type_10; }
inline uint8_t* get_address_of_type_10() { return &___type_10; }
inline void set_type_10(uint8_t value)
{
___type_10 = value;
}
inline static int32_t get_offset_of_mode_11() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___mode_11)); }
inline uint8_t get_mode_11() const { return ___mode_11; }
inline uint8_t* get_address_of_mode_11() { return &___mode_11; }
inline void set_mode_11(uint8_t value)
{
___mode_11 = value;
}
inline static int32_t get_offset_of_shadow_12() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shadow_12)); }
inline uint8_t get_shadow_12() const { return ___shadow_12; }
inline uint8_t* get_address_of_shadow_12() { return &___shadow_12; }
inline void set_shadow_12(uint8_t value)
{
___shadow_12 = value;
}
inline static int32_t get_offset_of_falloff_13() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___falloff_13)); }
inline uint8_t get_falloff_13() const { return ___falloff_13; }
inline uint8_t* get_address_of_falloff_13() { return &___falloff_13; }
inline void set_falloff_13(uint8_t value)
{
___falloff_13 = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphContext
struct RenderGraphContext_t7AFBB4B7123530BF370FF3AA41D1FEC59C9846E3
{
public:
// UnityEngine.Rendering.ScriptableRenderContext UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphContext::renderContext
ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B ___renderContext_0;
// UnityEngine.Rendering.CommandBuffer UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphContext::cmd
CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD * ___cmd_1;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphContext::renderGraphPool
RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * ___renderGraphPool_2;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphContext::resources
RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * ___resources_3;
public:
inline static int32_t get_offset_of_renderContext_0() { return static_cast<int32_t>(offsetof(RenderGraphContext_t7AFBB4B7123530BF370FF3AA41D1FEC59C9846E3, ___renderContext_0)); }
inline ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B get_renderContext_0() const { return ___renderContext_0; }
inline ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B * get_address_of_renderContext_0() { return &___renderContext_0; }
inline void set_renderContext_0(ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B value)
{
___renderContext_0 = value;
}
inline static int32_t get_offset_of_cmd_1() { return static_cast<int32_t>(offsetof(RenderGraphContext_t7AFBB4B7123530BF370FF3AA41D1FEC59C9846E3, ___cmd_1)); }
inline CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD * get_cmd_1() const { return ___cmd_1; }
inline CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD ** get_address_of_cmd_1() { return &___cmd_1; }
inline void set_cmd_1(CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD * value)
{
___cmd_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cmd_1), (void*)value);
}
inline static int32_t get_offset_of_renderGraphPool_2() { return static_cast<int32_t>(offsetof(RenderGraphContext_t7AFBB4B7123530BF370FF3AA41D1FEC59C9846E3, ___renderGraphPool_2)); }
inline RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * get_renderGraphPool_2() const { return ___renderGraphPool_2; }
inline RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 ** get_address_of_renderGraphPool_2() { return &___renderGraphPool_2; }
inline void set_renderGraphPool_2(RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * value)
{
___renderGraphPool_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___renderGraphPool_2), (void*)value);
}
inline static int32_t get_offset_of_resources_3() { return static_cast<int32_t>(offsetof(RenderGraphContext_t7AFBB4B7123530BF370FF3AA41D1FEC59C9846E3, ___resources_3)); }
inline RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * get_resources_3() const { return ___resources_3; }
inline RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 ** get_address_of_resources_3() { return &___resources_3; }
inline void set_resources_3(RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * value)
{
___resources_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resources_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphContext
struct RenderGraphContext_t7AFBB4B7123530BF370FF3AA41D1FEC59C9846E3_marshaled_pinvoke
{
ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B ___renderContext_0;
CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD * ___cmd_1;
RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * ___renderGraphPool_2;
RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * ___resources_3;
};
// Native definition for COM marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphContext
struct RenderGraphContext_t7AFBB4B7123530BF370FF3AA41D1FEC59C9846E3_marshaled_com
{
ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B ___renderContext_0;
CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD * ___cmd_1;
RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * ___renderGraphPool_2;
RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * ___resources_3;
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource
struct RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource::<handle>k__BackingField
int32_t ___U3ChandleU3Ek__BackingField_0;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceType UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource::<type>k__BackingField
int32_t ___U3CtypeU3Ek__BackingField_1;
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource::<version>k__BackingField
int32_t ___U3CversionU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3ChandleU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524, ___U3ChandleU3Ek__BackingField_0)); }
inline int32_t get_U3ChandleU3Ek__BackingField_0() const { return ___U3ChandleU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3ChandleU3Ek__BackingField_0() { return &___U3ChandleU3Ek__BackingField_0; }
inline void set_U3ChandleU3Ek__BackingField_0(int32_t value)
{
___U3ChandleU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CtypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524, ___U3CtypeU3Ek__BackingField_1)); }
inline int32_t get_U3CtypeU3Ek__BackingField_1() const { return ___U3CtypeU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CtypeU3Ek__BackingField_1() { return &___U3CtypeU3Ek__BackingField_1; }
inline void set_U3CtypeU3Ek__BackingField_1(int32_t value)
{
___U3CtypeU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CversionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524, ___U3CversionU3Ek__BackingField_2)); }
inline int32_t get_U3CversionU3Ek__BackingField_2() const { return ___U3CversionU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CversionU3Ek__BackingField_2() { return &___U3CversionU3Ek__BackingField_2; }
inline void set_U3CversionU3Ek__BackingField_2(int32_t value)
{
___U3CversionU3Ek__BackingField_2 = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource
struct RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource::<handle>k__BackingField
int32_t ___U3ChandleU3Ek__BackingField_0;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceType UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource::<type>k__BackingField
int32_t ___U3CtypeU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3ChandleU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF, ___U3ChandleU3Ek__BackingField_0)); }
inline int32_t get_U3ChandleU3Ek__BackingField_0() const { return ___U3ChandleU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3ChandleU3Ek__BackingField_0() { return &___U3ChandleU3Ek__BackingField_0; }
inline void set_U3ChandleU3Ek__BackingField_0(int32_t value)
{
___U3ChandleU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CtypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF, ___U3CtypeU3Ek__BackingField_1)); }
inline int32_t get_U3CtypeU3Ek__BackingField_1() const { return ___U3CtypeU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CtypeU3Ek__BackingField_1() { return &___U3CtypeU3Ek__BackingField_1; }
inline void set_U3CtypeU3Ek__BackingField_1(int32_t value)
{
___U3CtypeU3Ek__BackingField_1 = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc
struct TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985
{
public:
// UnityEngine.Experimental.Rendering.RenderGraphModule.TextureSizeMode UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::sizeMode
int32_t ___sizeMode_0;
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::width
int32_t ___width_1;
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::height
int32_t ___height_2;
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::slices
int32_t ___slices_3;
// UnityEngine.Vector2 UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::scale
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___scale_4;
// UnityEngine.Rendering.ScaleFunc UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::func
ScaleFunc_tB6A754FECE6AA10AABBA7DDAF2708585A53D79AE * ___func_5;
// UnityEngine.Rendering.DepthBits UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::depthBufferBits
int32_t ___depthBufferBits_6;
// UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::colorFormat
int32_t ___colorFormat_7;
// UnityEngine.FilterMode UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::filterMode
int32_t ___filterMode_8;
// UnityEngine.TextureWrapMode UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::wrapMode
int32_t ___wrapMode_9;
// UnityEngine.Rendering.TextureDimension UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::dimension
int32_t ___dimension_10;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::enableRandomWrite
bool ___enableRandomWrite_11;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::useMipMap
bool ___useMipMap_12;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::autoGenerateMips
bool ___autoGenerateMips_13;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::isShadowMap
bool ___isShadowMap_14;
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::anisoLevel
int32_t ___anisoLevel_15;
// System.Single UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::mipMapBias
float ___mipMapBias_16;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::enableMSAA
bool ___enableMSAA_17;
// UnityEngine.Rendering.MSAASamples UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::msaaSamples
int32_t ___msaaSamples_18;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::bindTextureMS
bool ___bindTextureMS_19;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::useDynamicScale
bool ___useDynamicScale_20;
// UnityEngine.RenderTextureMemoryless UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::memoryless
int32_t ___memoryless_21;
// System.String UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::name
String_t* ___name_22;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::clearBuffer
bool ___clearBuffer_23;
// UnityEngine.Color UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc::clearColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___clearColor_24;
public:
inline static int32_t get_offset_of_sizeMode_0() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___sizeMode_0)); }
inline int32_t get_sizeMode_0() const { return ___sizeMode_0; }
inline int32_t* get_address_of_sizeMode_0() { return &___sizeMode_0; }
inline void set_sizeMode_0(int32_t value)
{
___sizeMode_0 = value;
}
inline static int32_t get_offset_of_width_1() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___width_1)); }
inline int32_t get_width_1() const { return ___width_1; }
inline int32_t* get_address_of_width_1() { return &___width_1; }
inline void set_width_1(int32_t value)
{
___width_1 = value;
}
inline static int32_t get_offset_of_height_2() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___height_2)); }
inline int32_t get_height_2() const { return ___height_2; }
inline int32_t* get_address_of_height_2() { return &___height_2; }
inline void set_height_2(int32_t value)
{
___height_2 = value;
}
inline static int32_t get_offset_of_slices_3() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___slices_3)); }
inline int32_t get_slices_3() const { return ___slices_3; }
inline int32_t* get_address_of_slices_3() { return &___slices_3; }
inline void set_slices_3(int32_t value)
{
___slices_3 = value;
}
inline static int32_t get_offset_of_scale_4() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___scale_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_scale_4() const { return ___scale_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_scale_4() { return &___scale_4; }
inline void set_scale_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___scale_4 = value;
}
inline static int32_t get_offset_of_func_5() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___func_5)); }
inline ScaleFunc_tB6A754FECE6AA10AABBA7DDAF2708585A53D79AE * get_func_5() const { return ___func_5; }
inline ScaleFunc_tB6A754FECE6AA10AABBA7DDAF2708585A53D79AE ** get_address_of_func_5() { return &___func_5; }
inline void set_func_5(ScaleFunc_tB6A754FECE6AA10AABBA7DDAF2708585A53D79AE * value)
{
___func_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___func_5), (void*)value);
}
inline static int32_t get_offset_of_depthBufferBits_6() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___depthBufferBits_6)); }
inline int32_t get_depthBufferBits_6() const { return ___depthBufferBits_6; }
inline int32_t* get_address_of_depthBufferBits_6() { return &___depthBufferBits_6; }
inline void set_depthBufferBits_6(int32_t value)
{
___depthBufferBits_6 = value;
}
inline static int32_t get_offset_of_colorFormat_7() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___colorFormat_7)); }
inline int32_t get_colorFormat_7() const { return ___colorFormat_7; }
inline int32_t* get_address_of_colorFormat_7() { return &___colorFormat_7; }
inline void set_colorFormat_7(int32_t value)
{
___colorFormat_7 = value;
}
inline static int32_t get_offset_of_filterMode_8() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___filterMode_8)); }
inline int32_t get_filterMode_8() const { return ___filterMode_8; }
inline int32_t* get_address_of_filterMode_8() { return &___filterMode_8; }
inline void set_filterMode_8(int32_t value)
{
___filterMode_8 = value;
}
inline static int32_t get_offset_of_wrapMode_9() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___wrapMode_9)); }
inline int32_t get_wrapMode_9() const { return ___wrapMode_9; }
inline int32_t* get_address_of_wrapMode_9() { return &___wrapMode_9; }
inline void set_wrapMode_9(int32_t value)
{
___wrapMode_9 = value;
}
inline static int32_t get_offset_of_dimension_10() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___dimension_10)); }
inline int32_t get_dimension_10() const { return ___dimension_10; }
inline int32_t* get_address_of_dimension_10() { return &___dimension_10; }
inline void set_dimension_10(int32_t value)
{
___dimension_10 = value;
}
inline static int32_t get_offset_of_enableRandomWrite_11() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___enableRandomWrite_11)); }
inline bool get_enableRandomWrite_11() const { return ___enableRandomWrite_11; }
inline bool* get_address_of_enableRandomWrite_11() { return &___enableRandomWrite_11; }
inline void set_enableRandomWrite_11(bool value)
{
___enableRandomWrite_11 = value;
}
inline static int32_t get_offset_of_useMipMap_12() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___useMipMap_12)); }
inline bool get_useMipMap_12() const { return ___useMipMap_12; }
inline bool* get_address_of_useMipMap_12() { return &___useMipMap_12; }
inline void set_useMipMap_12(bool value)
{
___useMipMap_12 = value;
}
inline static int32_t get_offset_of_autoGenerateMips_13() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___autoGenerateMips_13)); }
inline bool get_autoGenerateMips_13() const { return ___autoGenerateMips_13; }
inline bool* get_address_of_autoGenerateMips_13() { return &___autoGenerateMips_13; }
inline void set_autoGenerateMips_13(bool value)
{
___autoGenerateMips_13 = value;
}
inline static int32_t get_offset_of_isShadowMap_14() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___isShadowMap_14)); }
inline bool get_isShadowMap_14() const { return ___isShadowMap_14; }
inline bool* get_address_of_isShadowMap_14() { return &___isShadowMap_14; }
inline void set_isShadowMap_14(bool value)
{
___isShadowMap_14 = value;
}
inline static int32_t get_offset_of_anisoLevel_15() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___anisoLevel_15)); }
inline int32_t get_anisoLevel_15() const { return ___anisoLevel_15; }
inline int32_t* get_address_of_anisoLevel_15() { return &___anisoLevel_15; }
inline void set_anisoLevel_15(int32_t value)
{
___anisoLevel_15 = value;
}
inline static int32_t get_offset_of_mipMapBias_16() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___mipMapBias_16)); }
inline float get_mipMapBias_16() const { return ___mipMapBias_16; }
inline float* get_address_of_mipMapBias_16() { return &___mipMapBias_16; }
inline void set_mipMapBias_16(float value)
{
___mipMapBias_16 = value;
}
inline static int32_t get_offset_of_enableMSAA_17() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___enableMSAA_17)); }
inline bool get_enableMSAA_17() const { return ___enableMSAA_17; }
inline bool* get_address_of_enableMSAA_17() { return &___enableMSAA_17; }
inline void set_enableMSAA_17(bool value)
{
___enableMSAA_17 = value;
}
inline static int32_t get_offset_of_msaaSamples_18() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___msaaSamples_18)); }
inline int32_t get_msaaSamples_18() const { return ___msaaSamples_18; }
inline int32_t* get_address_of_msaaSamples_18() { return &___msaaSamples_18; }
inline void set_msaaSamples_18(int32_t value)
{
___msaaSamples_18 = value;
}
inline static int32_t get_offset_of_bindTextureMS_19() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___bindTextureMS_19)); }
inline bool get_bindTextureMS_19() const { return ___bindTextureMS_19; }
inline bool* get_address_of_bindTextureMS_19() { return &___bindTextureMS_19; }
inline void set_bindTextureMS_19(bool value)
{
___bindTextureMS_19 = value;
}
inline static int32_t get_offset_of_useDynamicScale_20() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___useDynamicScale_20)); }
inline bool get_useDynamicScale_20() const { return ___useDynamicScale_20; }
inline bool* get_address_of_useDynamicScale_20() { return &___useDynamicScale_20; }
inline void set_useDynamicScale_20(bool value)
{
___useDynamicScale_20 = value;
}
inline static int32_t get_offset_of_memoryless_21() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___memoryless_21)); }
inline int32_t get_memoryless_21() const { return ___memoryless_21; }
inline int32_t* get_address_of_memoryless_21() { return &___memoryless_21; }
inline void set_memoryless_21(int32_t value)
{
___memoryless_21 = value;
}
inline static int32_t get_offset_of_name_22() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___name_22)); }
inline String_t* get_name_22() const { return ___name_22; }
inline String_t** get_address_of_name_22() { return &___name_22; }
inline void set_name_22(String_t* value)
{
___name_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_22), (void*)value);
}
inline static int32_t get_offset_of_clearBuffer_23() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___clearBuffer_23)); }
inline bool get_clearBuffer_23() const { return ___clearBuffer_23; }
inline bool* get_address_of_clearBuffer_23() { return &___clearBuffer_23; }
inline void set_clearBuffer_23(bool value)
{
___clearBuffer_23 = value;
}
inline static int32_t get_offset_of_clearColor_24() { return static_cast<int32_t>(offsetof(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985, ___clearColor_24)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_clearColor_24() const { return ___clearColor_24; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_clearColor_24() { return &___clearColor_24; }
inline void set_clearColor_24(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___clearColor_24 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc
struct TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985_marshaled_pinvoke
{
int32_t ___sizeMode_0;
int32_t ___width_1;
int32_t ___height_2;
int32_t ___slices_3;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___scale_4;
Il2CppMethodPointer ___func_5;
int32_t ___depthBufferBits_6;
int32_t ___colorFormat_7;
int32_t ___filterMode_8;
int32_t ___wrapMode_9;
int32_t ___dimension_10;
int32_t ___enableRandomWrite_11;
int32_t ___useMipMap_12;
int32_t ___autoGenerateMips_13;
int32_t ___isShadowMap_14;
int32_t ___anisoLevel_15;
float ___mipMapBias_16;
int32_t ___enableMSAA_17;
int32_t ___msaaSamples_18;
int32_t ___bindTextureMS_19;
int32_t ___useDynamicScale_20;
int32_t ___memoryless_21;
char* ___name_22;
int32_t ___clearBuffer_23;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___clearColor_24;
};
// Native definition for COM marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc
struct TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985_marshaled_com
{
int32_t ___sizeMode_0;
int32_t ___width_1;
int32_t ___height_2;
int32_t ___slices_3;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___scale_4;
Il2CppMethodPointer ___func_5;
int32_t ___depthBufferBits_6;
int32_t ___colorFormat_7;
int32_t ___filterMode_8;
int32_t ___wrapMode_9;
int32_t ___dimension_10;
int32_t ___enableRandomWrite_11;
int32_t ___useMipMap_12;
int32_t ___autoGenerateMips_13;
int32_t ___isShadowMap_14;
int32_t ___anisoLevel_15;
float ___mipMapBias_16;
int32_t ___enableMSAA_17;
int32_t ___msaaSamples_18;
int32_t ___bindTextureMS_19;
int32_t ___useDynamicScale_20;
int32_t ___memoryless_21;
Il2CppChar* ___name_22;
int32_t ___clearBuffer_23;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___clearColor_24;
};
// UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle
struct Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE
{
public:
// System.Boolean UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle::enabled
bool ___enabled_0;
// System.String UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle::name
String_t* ___name_1;
// UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle_TextureChannel UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle::maskTextureChannel
int32_t ___maskTextureChannel_2;
// System.Single UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle::renderTextureScale
float ___renderTextureScale_3;
// UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle_BlendMode UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle::blendMode
int32_t ___blendMode_4;
// UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle_BlendFactors UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle::customBlendFactors
BlendFactors_t48FB87D047E971732AA50BA99EB48CCFDAEA467C ___customBlendFactors_5;
public:
inline static int32_t get_offset_of_enabled_0() { return static_cast<int32_t>(offsetof(Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE, ___enabled_0)); }
inline bool get_enabled_0() const { return ___enabled_0; }
inline bool* get_address_of_enabled_0() { return &___enabled_0; }
inline void set_enabled_0(bool value)
{
___enabled_0 = value;
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE, ___name_1)); }
inline String_t* get_name_1() const { return ___name_1; }
inline String_t** get_address_of_name_1() { return &___name_1; }
inline void set_name_1(String_t* value)
{
___name_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value);
}
inline static int32_t get_offset_of_maskTextureChannel_2() { return static_cast<int32_t>(offsetof(Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE, ___maskTextureChannel_2)); }
inline int32_t get_maskTextureChannel_2() const { return ___maskTextureChannel_2; }
inline int32_t* get_address_of_maskTextureChannel_2() { return &___maskTextureChannel_2; }
inline void set_maskTextureChannel_2(int32_t value)
{
___maskTextureChannel_2 = value;
}
inline static int32_t get_offset_of_renderTextureScale_3() { return static_cast<int32_t>(offsetof(Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE, ___renderTextureScale_3)); }
inline float get_renderTextureScale_3() const { return ___renderTextureScale_3; }
inline float* get_address_of_renderTextureScale_3() { return &___renderTextureScale_3; }
inline void set_renderTextureScale_3(float value)
{
___renderTextureScale_3 = value;
}
inline static int32_t get_offset_of_blendMode_4() { return static_cast<int32_t>(offsetof(Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE, ___blendMode_4)); }
inline int32_t get_blendMode_4() const { return ___blendMode_4; }
inline int32_t* get_address_of_blendMode_4() { return &___blendMode_4; }
inline void set_blendMode_4(int32_t value)
{
___blendMode_4 = value;
}
inline static int32_t get_offset_of_customBlendFactors_5() { return static_cast<int32_t>(offsetof(Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE, ___customBlendFactors_5)); }
inline BlendFactors_t48FB87D047E971732AA50BA99EB48CCFDAEA467C get_customBlendFactors_5() const { return ___customBlendFactors_5; }
inline BlendFactors_t48FB87D047E971732AA50BA99EB48CCFDAEA467C * get_address_of_customBlendFactors_5() { return &___customBlendFactors_5; }
inline void set_customBlendFactors_5(BlendFactors_t48FB87D047E971732AA50BA99EB48CCFDAEA467C value)
{
___customBlendFactors_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle
struct Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE_marshaled_pinvoke
{
int32_t ___enabled_0;
char* ___name_1;
int32_t ___maskTextureChannel_2;
float ___renderTextureScale_3;
int32_t ___blendMode_4;
BlendFactors_t48FB87D047E971732AA50BA99EB48CCFDAEA467C ___customBlendFactors_5;
};
// Native definition for COM marshalling of UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle
struct Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE_marshaled_com
{
int32_t ___enabled_0;
Il2CppChar* ___name_1;
int32_t ___maskTextureChannel_2;
float ___renderTextureScale_3;
int32_t ___blendMode_4;
BlendFactors_t48FB87D047E971732AA50BA99EB48CCFDAEA467C ___customBlendFactors_5;
};
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8
{
public:
// System.String UnityEngine.Playables.PlayableBinding::m_StreamName
String_t* ___m_StreamName_0;
// UnityEngine.Object UnityEngine.Playables.PlayableBinding::m_SourceObject
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___m_SourceObject_1;
// System.Type UnityEngine.Playables.PlayableBinding::m_SourceBindingType
Type_t * ___m_SourceBindingType_2;
// UnityEngine.Playables.PlayableBinding_CreateOutputMethod UnityEngine.Playables.PlayableBinding::m_CreateOutputMethod
CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * ___m_CreateOutputMethod_3;
public:
inline static int32_t get_offset_of_m_StreamName_0() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_StreamName_0)); }
inline String_t* get_m_StreamName_0() const { return ___m_StreamName_0; }
inline String_t** get_address_of_m_StreamName_0() { return &___m_StreamName_0; }
inline void set_m_StreamName_0(String_t* value)
{
___m_StreamName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_StreamName_0), (void*)value);
}
inline static int32_t get_offset_of_m_SourceObject_1() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceObject_1)); }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_m_SourceObject_1() const { return ___m_SourceObject_1; }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_m_SourceObject_1() { return &___m_SourceObject_1; }
inline void set_m_SourceObject_1(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
___m_SourceObject_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceObject_1), (void*)value);
}
inline static int32_t get_offset_of_m_SourceBindingType_2() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceBindingType_2)); }
inline Type_t * get_m_SourceBindingType_2() const { return ___m_SourceBindingType_2; }
inline Type_t ** get_address_of_m_SourceBindingType_2() { return &___m_SourceBindingType_2; }
inline void set_m_SourceBindingType_2(Type_t * value)
{
___m_SourceBindingType_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceBindingType_2), (void*)value);
}
inline static int32_t get_offset_of_m_CreateOutputMethod_3() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_CreateOutputMethod_3)); }
inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * get_m_CreateOutputMethod_3() const { return ___m_CreateOutputMethod_3; }
inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 ** get_address_of_m_CreateOutputMethod_3() { return &___m_CreateOutputMethod_3; }
inline void set_m_CreateOutputMethod_3(CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * value)
{
___m_CreateOutputMethod_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CreateOutputMethod_3), (void*)value);
}
};
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields
{
public:
// UnityEngine.Playables.PlayableBinding[] UnityEngine.Playables.PlayableBinding::None
PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* ___None_4;
// System.Double UnityEngine.Playables.PlayableBinding::DefaultDuration
double ___DefaultDuration_5;
public:
inline static int32_t get_offset_of_None_4() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___None_4)); }
inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* get_None_4() const { return ___None_4; }
inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB** get_address_of_None_4() { return &___None_4; }
inline void set_None_4(PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* value)
{
___None_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___None_4), (void*)value);
}
inline static int32_t get_offset_of_DefaultDuration_5() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___DefaultDuration_5)); }
inline double get_DefaultDuration_5() const { return ___DefaultDuration_5; }
inline double* get_address_of_DefaultDuration_5() { return &___DefaultDuration_5; }
inline void set_DefaultDuration_5(double value)
{
___DefaultDuration_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_pinvoke
{
char* ___m_StreamName_0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
// Native definition for COM marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_com
{
Il2CppChar* ___m_StreamName_0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
// UnityEngine.Profiling.CustomSampler
struct CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8 : public Sampler_t6BFBE2B578BC0C28F4A78C6EA545AB8A4C50C6A4
{
public:
public:
};
struct CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8_StaticFields
{
public:
// UnityEngine.Profiling.CustomSampler UnityEngine.Profiling.CustomSampler::s_InvalidCustomSampler
CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8 * ___s_InvalidCustomSampler_2;
public:
inline static int32_t get_offset_of_s_InvalidCustomSampler_2() { return static_cast<int32_t>(offsetof(CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8_StaticFields, ___s_InvalidCustomSampler_2)); }
inline CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8 * get_s_InvalidCustomSampler_2() const { return ___s_InvalidCustomSampler_2; }
inline CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8 ** get_address_of_s_InvalidCustomSampler_2() { return &___s_InvalidCustomSampler_2; }
inline void set_s_InvalidCustomSampler_2(CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8 * value)
{
___s_InvalidCustomSampler_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InvalidCustomSampler_2), (void*)value);
}
};
// UnityEngine.Rendering.DebugUI_Widget
struct Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1 : public RuntimeObject
{
public:
// UnityEngine.Rendering.DebugUI_Panel UnityEngine.Rendering.DebugUI_Widget::m_Panel
Panel_t3A5AEA08819D0431C994F595FF8012656B54D904 * ___m_Panel_0;
// UnityEngine.Rendering.DebugUI_IContainer UnityEngine.Rendering.DebugUI_Widget::m_Parent
RuntimeObject* ___m_Parent_1;
// UnityEngine.Rendering.DebugUI_Flags UnityEngine.Rendering.DebugUI_Widget::<flags>k__BackingField
int32_t ___U3CflagsU3Ek__BackingField_2;
// System.String UnityEngine.Rendering.DebugUI_Widget::<displayName>k__BackingField
String_t* ___U3CdisplayNameU3Ek__BackingField_3;
// System.String UnityEngine.Rendering.DebugUI_Widget::<queryPath>k__BackingField
String_t* ___U3CqueryPathU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_m_Panel_0() { return static_cast<int32_t>(offsetof(Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1, ___m_Panel_0)); }
inline Panel_t3A5AEA08819D0431C994F595FF8012656B54D904 * get_m_Panel_0() const { return ___m_Panel_0; }
inline Panel_t3A5AEA08819D0431C994F595FF8012656B54D904 ** get_address_of_m_Panel_0() { return &___m_Panel_0; }
inline void set_m_Panel_0(Panel_t3A5AEA08819D0431C994F595FF8012656B54D904 * value)
{
___m_Panel_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Panel_0), (void*)value);
}
inline static int32_t get_offset_of_m_Parent_1() { return static_cast<int32_t>(offsetof(Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1, ___m_Parent_1)); }
inline RuntimeObject* get_m_Parent_1() const { return ___m_Parent_1; }
inline RuntimeObject** get_address_of_m_Parent_1() { return &___m_Parent_1; }
inline void set_m_Parent_1(RuntimeObject* value)
{
___m_Parent_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Parent_1), (void*)value);
}
inline static int32_t get_offset_of_U3CflagsU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1, ___U3CflagsU3Ek__BackingField_2)); }
inline int32_t get_U3CflagsU3Ek__BackingField_2() const { return ___U3CflagsU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CflagsU3Ek__BackingField_2() { return &___U3CflagsU3Ek__BackingField_2; }
inline void set_U3CflagsU3Ek__BackingField_2(int32_t value)
{
___U3CflagsU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CdisplayNameU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1, ___U3CdisplayNameU3Ek__BackingField_3)); }
inline String_t* get_U3CdisplayNameU3Ek__BackingField_3() const { return ___U3CdisplayNameU3Ek__BackingField_3; }
inline String_t** get_address_of_U3CdisplayNameU3Ek__BackingField_3() { return &___U3CdisplayNameU3Ek__BackingField_3; }
inline void set_U3CdisplayNameU3Ek__BackingField_3(String_t* value)
{
___U3CdisplayNameU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdisplayNameU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CqueryPathU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1, ___U3CqueryPathU3Ek__BackingField_4)); }
inline String_t* get_U3CqueryPathU3Ek__BackingField_4() const { return ___U3CqueryPathU3Ek__BackingField_4; }
inline String_t** get_address_of_U3CqueryPathU3Ek__BackingField_4() { return &___U3CqueryPathU3Ek__BackingField_4; }
inline void set_U3CqueryPathU3Ek__BackingField_4(String_t* value)
{
___U3CqueryPathU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CqueryPathU3Ek__BackingField_4), (void*)value);
}
};
// UnityEngine.Rendering.RasterState
struct RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E
{
public:
// UnityEngine.Rendering.CullMode UnityEngine.Rendering.RasterState::m_CullingMode
int32_t ___m_CullingMode_1;
// System.Int32 UnityEngine.Rendering.RasterState::m_OffsetUnits
int32_t ___m_OffsetUnits_2;
// System.Single UnityEngine.Rendering.RasterState::m_OffsetFactor
float ___m_OffsetFactor_3;
// System.Byte UnityEngine.Rendering.RasterState::m_DepthClip
uint8_t ___m_DepthClip_4;
// System.Byte UnityEngine.Rendering.RasterState::m_Padding1
uint8_t ___m_Padding1_5;
// System.Byte UnityEngine.Rendering.RasterState::m_Padding2
uint8_t ___m_Padding2_6;
// System.Byte UnityEngine.Rendering.RasterState::m_Padding3
uint8_t ___m_Padding3_7;
public:
inline static int32_t get_offset_of_m_CullingMode_1() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_CullingMode_1)); }
inline int32_t get_m_CullingMode_1() const { return ___m_CullingMode_1; }
inline int32_t* get_address_of_m_CullingMode_1() { return &___m_CullingMode_1; }
inline void set_m_CullingMode_1(int32_t value)
{
___m_CullingMode_1 = value;
}
inline static int32_t get_offset_of_m_OffsetUnits_2() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_OffsetUnits_2)); }
inline int32_t get_m_OffsetUnits_2() const { return ___m_OffsetUnits_2; }
inline int32_t* get_address_of_m_OffsetUnits_2() { return &___m_OffsetUnits_2; }
inline void set_m_OffsetUnits_2(int32_t value)
{
___m_OffsetUnits_2 = value;
}
inline static int32_t get_offset_of_m_OffsetFactor_3() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_OffsetFactor_3)); }
inline float get_m_OffsetFactor_3() const { return ___m_OffsetFactor_3; }
inline float* get_address_of_m_OffsetFactor_3() { return &___m_OffsetFactor_3; }
inline void set_m_OffsetFactor_3(float value)
{
___m_OffsetFactor_3 = value;
}
inline static int32_t get_offset_of_m_DepthClip_4() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_DepthClip_4)); }
inline uint8_t get_m_DepthClip_4() const { return ___m_DepthClip_4; }
inline uint8_t* get_address_of_m_DepthClip_4() { return &___m_DepthClip_4; }
inline void set_m_DepthClip_4(uint8_t value)
{
___m_DepthClip_4 = value;
}
inline static int32_t get_offset_of_m_Padding1_5() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_Padding1_5)); }
inline uint8_t get_m_Padding1_5() const { return ___m_Padding1_5; }
inline uint8_t* get_address_of_m_Padding1_5() { return &___m_Padding1_5; }
inline void set_m_Padding1_5(uint8_t value)
{
___m_Padding1_5 = value;
}
inline static int32_t get_offset_of_m_Padding2_6() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_Padding2_6)); }
inline uint8_t get_m_Padding2_6() const { return ___m_Padding2_6; }
inline uint8_t* get_address_of_m_Padding2_6() { return &___m_Padding2_6; }
inline void set_m_Padding2_6(uint8_t value)
{
___m_Padding2_6 = value;
}
inline static int32_t get_offset_of_m_Padding3_7() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_Padding3_7)); }
inline uint8_t get_m_Padding3_7() const { return ___m_Padding3_7; }
inline uint8_t* get_address_of_m_Padding3_7() { return &___m_Padding3_7; }
inline void set_m_Padding3_7(uint8_t value)
{
___m_Padding3_7 = value;
}
};
struct RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E_StaticFields
{
public:
// UnityEngine.Rendering.RasterState UnityEngine.Rendering.RasterState::defaultValue
RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E ___defaultValue_0;
public:
inline static int32_t get_offset_of_defaultValue_0() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E_StaticFields, ___defaultValue_0)); }
inline RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E get_defaultValue_0() const { return ___defaultValue_0; }
inline RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E * get_address_of_defaultValue_0() { return &___defaultValue_0; }
inline void set_defaultValue_0(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E value)
{
___defaultValue_0 = value;
}
};
// UnityEngine.Rendering.RenderTargetIdentifier
struct RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B
{
public:
// UnityEngine.Rendering.BuiltinRenderTextureType UnityEngine.Rendering.RenderTargetIdentifier::m_Type
int32_t ___m_Type_0;
// System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_NameID
int32_t ___m_NameID_1;
// System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_InstanceID
int32_t ___m_InstanceID_2;
// System.IntPtr UnityEngine.Rendering.RenderTargetIdentifier::m_BufferPointer
intptr_t ___m_BufferPointer_3;
// System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_MipLevel
int32_t ___m_MipLevel_4;
// UnityEngine.CubemapFace UnityEngine.Rendering.RenderTargetIdentifier::m_CubeFace
int32_t ___m_CubeFace_5;
// System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_DepthSlice
int32_t ___m_DepthSlice_6;
public:
inline static int32_t get_offset_of_m_Type_0() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_Type_0)); }
inline int32_t get_m_Type_0() const { return ___m_Type_0; }
inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; }
inline void set_m_Type_0(int32_t value)
{
___m_Type_0 = value;
}
inline static int32_t get_offset_of_m_NameID_1() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_NameID_1)); }
inline int32_t get_m_NameID_1() const { return ___m_NameID_1; }
inline int32_t* get_address_of_m_NameID_1() { return &___m_NameID_1; }
inline void set_m_NameID_1(int32_t value)
{
___m_NameID_1 = value;
}
inline static int32_t get_offset_of_m_InstanceID_2() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_InstanceID_2)); }
inline int32_t get_m_InstanceID_2() const { return ___m_InstanceID_2; }
inline int32_t* get_address_of_m_InstanceID_2() { return &___m_InstanceID_2; }
inline void set_m_InstanceID_2(int32_t value)
{
___m_InstanceID_2 = value;
}
inline static int32_t get_offset_of_m_BufferPointer_3() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_BufferPointer_3)); }
inline intptr_t get_m_BufferPointer_3() const { return ___m_BufferPointer_3; }
inline intptr_t* get_address_of_m_BufferPointer_3() { return &___m_BufferPointer_3; }
inline void set_m_BufferPointer_3(intptr_t value)
{
___m_BufferPointer_3 = value;
}
inline static int32_t get_offset_of_m_MipLevel_4() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_MipLevel_4)); }
inline int32_t get_m_MipLevel_4() const { return ___m_MipLevel_4; }
inline int32_t* get_address_of_m_MipLevel_4() { return &___m_MipLevel_4; }
inline void set_m_MipLevel_4(int32_t value)
{
___m_MipLevel_4 = value;
}
inline static int32_t get_offset_of_m_CubeFace_5() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_CubeFace_5)); }
inline int32_t get_m_CubeFace_5() const { return ___m_CubeFace_5; }
inline int32_t* get_address_of_m_CubeFace_5() { return &___m_CubeFace_5; }
inline void set_m_CubeFace_5(int32_t value)
{
___m_CubeFace_5 = value;
}
inline static int32_t get_offset_of_m_DepthSlice_6() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_DepthSlice_6)); }
inline int32_t get_m_DepthSlice_6() const { return ___m_DepthSlice_6; }
inline int32_t* get_address_of_m_DepthSlice_6() { return &___m_DepthSlice_6; }
inline void set_m_DepthSlice_6(int32_t value)
{
___m_DepthSlice_6 = value;
}
};
// UnityEngine.Rendering.SortingSettings
struct SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Rendering.SortingSettings::m_WorldToCameraMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___m_WorldToCameraMatrix_0;
// UnityEngine.Vector3 UnityEngine.Rendering.SortingSettings::m_CameraPosition
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_CameraPosition_1;
// UnityEngine.Vector3 UnityEngine.Rendering.SortingSettings::m_CustomAxis
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_CustomAxis_2;
// UnityEngine.Rendering.SortingCriteria UnityEngine.Rendering.SortingSettings::m_Criteria
int32_t ___m_Criteria_3;
// UnityEngine.Rendering.DistanceMetric UnityEngine.Rendering.SortingSettings::m_DistanceMetric
int32_t ___m_DistanceMetric_4;
// UnityEngine.Matrix4x4 UnityEngine.Rendering.SortingSettings::m_PreviousVPMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___m_PreviousVPMatrix_5;
// UnityEngine.Matrix4x4 UnityEngine.Rendering.SortingSettings::m_NonJitteredVPMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___m_NonJitteredVPMatrix_6;
public:
inline static int32_t get_offset_of_m_WorldToCameraMatrix_0() { return static_cast<int32_t>(offsetof(SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29, ___m_WorldToCameraMatrix_0)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_m_WorldToCameraMatrix_0() const { return ___m_WorldToCameraMatrix_0; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_m_WorldToCameraMatrix_0() { return &___m_WorldToCameraMatrix_0; }
inline void set_m_WorldToCameraMatrix_0(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___m_WorldToCameraMatrix_0 = value;
}
inline static int32_t get_offset_of_m_CameraPosition_1() { return static_cast<int32_t>(offsetof(SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29, ___m_CameraPosition_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_CameraPosition_1() const { return ___m_CameraPosition_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_CameraPosition_1() { return &___m_CameraPosition_1; }
inline void set_m_CameraPosition_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_CameraPosition_1 = value;
}
inline static int32_t get_offset_of_m_CustomAxis_2() { return static_cast<int32_t>(offsetof(SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29, ___m_CustomAxis_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_CustomAxis_2() const { return ___m_CustomAxis_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_CustomAxis_2() { return &___m_CustomAxis_2; }
inline void set_m_CustomAxis_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_CustomAxis_2 = value;
}
inline static int32_t get_offset_of_m_Criteria_3() { return static_cast<int32_t>(offsetof(SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29, ___m_Criteria_3)); }
inline int32_t get_m_Criteria_3() const { return ___m_Criteria_3; }
inline int32_t* get_address_of_m_Criteria_3() { return &___m_Criteria_3; }
inline void set_m_Criteria_3(int32_t value)
{
___m_Criteria_3 = value;
}
inline static int32_t get_offset_of_m_DistanceMetric_4() { return static_cast<int32_t>(offsetof(SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29, ___m_DistanceMetric_4)); }
inline int32_t get_m_DistanceMetric_4() const { return ___m_DistanceMetric_4; }
inline int32_t* get_address_of_m_DistanceMetric_4() { return &___m_DistanceMetric_4; }
inline void set_m_DistanceMetric_4(int32_t value)
{
___m_DistanceMetric_4 = value;
}
inline static int32_t get_offset_of_m_PreviousVPMatrix_5() { return static_cast<int32_t>(offsetof(SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29, ___m_PreviousVPMatrix_5)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_m_PreviousVPMatrix_5() const { return ___m_PreviousVPMatrix_5; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_m_PreviousVPMatrix_5() { return &___m_PreviousVPMatrix_5; }
inline void set_m_PreviousVPMatrix_5(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___m_PreviousVPMatrix_5 = value;
}
inline static int32_t get_offset_of_m_NonJitteredVPMatrix_6() { return static_cast<int32_t>(offsetof(SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29, ___m_NonJitteredVPMatrix_6)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_m_NonJitteredVPMatrix_6() const { return ___m_NonJitteredVPMatrix_6; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_m_NonJitteredVPMatrix_6() { return &___m_NonJitteredVPMatrix_6; }
inline void set_m_NonJitteredVPMatrix_6(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___m_NonJitteredVPMatrix_6 = value;
}
};
// UnityEngine.Rendering.VisibleLight
struct VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4
{
public:
// UnityEngine.LightType UnityEngine.Rendering.VisibleLight::m_LightType
int32_t ___m_LightType_0;
// UnityEngine.Color UnityEngine.Rendering.VisibleLight::m_FinalColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_FinalColor_1;
// UnityEngine.Rect UnityEngine.Rendering.VisibleLight::m_ScreenRect
Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___m_ScreenRect_2;
// UnityEngine.Matrix4x4 UnityEngine.Rendering.VisibleLight::m_LocalToWorldMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___m_LocalToWorldMatrix_3;
// System.Single UnityEngine.Rendering.VisibleLight::m_Range
float ___m_Range_4;
// System.Single UnityEngine.Rendering.VisibleLight::m_SpotAngle
float ___m_SpotAngle_5;
// System.Int32 UnityEngine.Rendering.VisibleLight::m_InstanceId
int32_t ___m_InstanceId_6;
// UnityEngine.Rendering.VisibleLightFlags UnityEngine.Rendering.VisibleLight::m_Flags
int32_t ___m_Flags_7;
public:
inline static int32_t get_offset_of_m_LightType_0() { return static_cast<int32_t>(offsetof(VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4, ___m_LightType_0)); }
inline int32_t get_m_LightType_0() const { return ___m_LightType_0; }
inline int32_t* get_address_of_m_LightType_0() { return &___m_LightType_0; }
inline void set_m_LightType_0(int32_t value)
{
___m_LightType_0 = value;
}
inline static int32_t get_offset_of_m_FinalColor_1() { return static_cast<int32_t>(offsetof(VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4, ___m_FinalColor_1)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_FinalColor_1() const { return ___m_FinalColor_1; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_FinalColor_1() { return &___m_FinalColor_1; }
inline void set_m_FinalColor_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_FinalColor_1 = value;
}
inline static int32_t get_offset_of_m_ScreenRect_2() { return static_cast<int32_t>(offsetof(VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4, ___m_ScreenRect_2)); }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE get_m_ScreenRect_2() const { return ___m_ScreenRect_2; }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE * get_address_of_m_ScreenRect_2() { return &___m_ScreenRect_2; }
inline void set_m_ScreenRect_2(Rect_t35B976DE901B5423C11705E156938EA27AB402CE value)
{
___m_ScreenRect_2 = value;
}
inline static int32_t get_offset_of_m_LocalToWorldMatrix_3() { return static_cast<int32_t>(offsetof(VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4, ___m_LocalToWorldMatrix_3)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_m_LocalToWorldMatrix_3() const { return ___m_LocalToWorldMatrix_3; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_m_LocalToWorldMatrix_3() { return &___m_LocalToWorldMatrix_3; }
inline void set_m_LocalToWorldMatrix_3(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___m_LocalToWorldMatrix_3 = value;
}
inline static int32_t get_offset_of_m_Range_4() { return static_cast<int32_t>(offsetof(VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4, ___m_Range_4)); }
inline float get_m_Range_4() const { return ___m_Range_4; }
inline float* get_address_of_m_Range_4() { return &___m_Range_4; }
inline void set_m_Range_4(float value)
{
___m_Range_4 = value;
}
inline static int32_t get_offset_of_m_SpotAngle_5() { return static_cast<int32_t>(offsetof(VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4, ___m_SpotAngle_5)); }
inline float get_m_SpotAngle_5() const { return ___m_SpotAngle_5; }
inline float* get_address_of_m_SpotAngle_5() { return &___m_SpotAngle_5; }
inline void set_m_SpotAngle_5(float value)
{
___m_SpotAngle_5 = value;
}
inline static int32_t get_offset_of_m_InstanceId_6() { return static_cast<int32_t>(offsetof(VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4, ___m_InstanceId_6)); }
inline int32_t get_m_InstanceId_6() const { return ___m_InstanceId_6; }
inline int32_t* get_address_of_m_InstanceId_6() { return &___m_InstanceId_6; }
inline void set_m_InstanceId_6(int32_t value)
{
___m_InstanceId_6 = value;
}
inline static int32_t get_offset_of_m_Flags_7() { return static_cast<int32_t>(offsetof(VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4, ___m_Flags_7)); }
inline int32_t get_m_Flags_7() const { return ___m_Flags_7; }
inline int32_t* get_address_of_m_Flags_7() { return &___m_Flags_7; }
inline void set_m_Flags_7(int32_t value)
{
___m_Flags_7 = value;
}
};
// UnityEngine.Rendering.VolumeParameter`1<System.Int32Enum>
struct VolumeParameter_1_t9BBACA16D59EEA84C3FF8B494907380317900093 : public VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978
{
public:
// T UnityEngine.Rendering.VolumeParameter`1::m_Value
int32_t ___m_Value_2;
public:
inline static int32_t get_offset_of_m_Value_2() { return static_cast<int32_t>(offsetof(VolumeParameter_1_t9BBACA16D59EEA84C3FF8B494907380317900093, ___m_Value_2)); }
inline int32_t get_m_Value_2() const { return ___m_Value_2; }
inline int32_t* get_address_of_m_Value_2() { return &___m_Value_2; }
inline void set_m_Value_2(int32_t value)
{
___m_Value_2 = value;
}
};
// UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_pinvoke : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_com : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
};
// UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord
struct GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C
{
public:
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::m_FirstAdjustmentRecord
GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 ___m_FirstAdjustmentRecord_0;
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::m_SecondAdjustmentRecord
GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 ___m_SecondAdjustmentRecord_1;
public:
inline static int32_t get_offset_of_m_FirstAdjustmentRecord_0() { return static_cast<int32_t>(offsetof(GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C, ___m_FirstAdjustmentRecord_0)); }
inline GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 get_m_FirstAdjustmentRecord_0() const { return ___m_FirstAdjustmentRecord_0; }
inline GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 * get_address_of_m_FirstAdjustmentRecord_0() { return &___m_FirstAdjustmentRecord_0; }
inline void set_m_FirstAdjustmentRecord_0(GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 value)
{
___m_FirstAdjustmentRecord_0 = value;
}
inline static int32_t get_offset_of_m_SecondAdjustmentRecord_1() { return static_cast<int32_t>(offsetof(GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C, ___m_SecondAdjustmentRecord_1)); }
inline GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 get_m_SecondAdjustmentRecord_1() const { return ___m_SecondAdjustmentRecord_1; }
inline GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 * get_address_of_m_SecondAdjustmentRecord_1() { return &___m_SecondAdjustmentRecord_1; }
inline void set_m_SecondAdjustmentRecord_1(GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 value)
{
___m_SecondAdjustmentRecord_1 = value;
}
};
// UnityEngine.Texture
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4_StaticFields
{
public:
// System.Int32 UnityEngine.Texture::GenerateAllMips
int32_t ___GenerateAllMips_4;
public:
inline static int32_t get_offset_of_GenerateAllMips_4() { return static_cast<int32_t>(offsetof(Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4_StaticFields, ___GenerateAllMips_4)); }
inline int32_t get_GenerateAllMips_4() const { return ___GenerateAllMips_4; }
inline int32_t* get_address_of_GenerateAllMips_4() { return &___GenerateAllMips_4; }
inline void set_GenerateAllMips_4(int32_t value)
{
___GenerateAllMips_4 = value;
}
};
// UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07
{
public:
// UnityEngine.UI.Navigation_Mode UnityEngine.UI.Navigation::m_Mode
int32_t ___m_Mode_0;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
public:
inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_Mode_0)); }
inline int32_t get_m_Mode_0() const { return ___m_Mode_0; }
inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; }
inline void set_m_Mode_0(int32_t value)
{
___m_Mode_0 = value;
}
inline static int32_t get_offset_of_m_SelectOnUp_1() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnUp_1)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnUp_1() const { return ___m_SelectOnUp_1; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnUp_1() { return &___m_SelectOnUp_1; }
inline void set_m_SelectOnUp_1(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnUp_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnDown_2() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnDown_2)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnDown_2() const { return ___m_SelectOnDown_2; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnDown_2() { return &___m_SelectOnDown_2; }
inline void set_m_SelectOnDown_2(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnDown_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_2), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnLeft_3() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnLeft_3)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnLeft_3() const { return ___m_SelectOnLeft_3; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnLeft_3() { return &___m_SelectOnLeft_3; }
inline void set_m_SelectOnLeft_3(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnLeft_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_3), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnRight_4() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnRight_4)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnRight_4() const { return ___m_SelectOnRight_4; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnRight_4() { return &___m_SelectOnRight_4; }
inline void set_m_SelectOnRight_4(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnRight_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_pinvoke
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// Native definition for COM marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_com
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// UnityEngine.UnityException
struct UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28 : public Exception_t
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitImageDatabase_AddImageJob
struct AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B
{
public:
// Unity.Collections.NativeSlice`1<System.Byte> UnityEngine.XR.ARKit.ARKitImageDatabase_AddImageJob::image
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E ___image_0;
// System.IntPtr UnityEngine.XR.ARKit.ARKitImageDatabase_AddImageJob::database
intptr_t ___database_1;
// System.Int32 UnityEngine.XR.ARKit.ARKitImageDatabase_AddImageJob::width
int32_t ___width_2;
// System.Int32 UnityEngine.XR.ARKit.ARKitImageDatabase_AddImageJob::height
int32_t ___height_3;
// System.Single UnityEngine.XR.ARKit.ARKitImageDatabase_AddImageJob::physicalWidth
float ___physicalWidth_4;
// UnityEngine.TextureFormat UnityEngine.XR.ARKit.ARKitImageDatabase_AddImageJob::format
int32_t ___format_5;
// UnityEngine.XR.ARKit.ManagedReferenceImage UnityEngine.XR.ARKit.ARKitImageDatabase_AddImageJob::managedReferenceImage
ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 ___managedReferenceImage_6;
public:
inline static int32_t get_offset_of_image_0() { return static_cast<int32_t>(offsetof(AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B, ___image_0)); }
inline NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E get_image_0() const { return ___image_0; }
inline NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E * get_address_of_image_0() { return &___image_0; }
inline void set_image_0(NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E value)
{
___image_0 = value;
}
inline static int32_t get_offset_of_database_1() { return static_cast<int32_t>(offsetof(AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B, ___database_1)); }
inline intptr_t get_database_1() const { return ___database_1; }
inline intptr_t* get_address_of_database_1() { return &___database_1; }
inline void set_database_1(intptr_t value)
{
___database_1 = value;
}
inline static int32_t get_offset_of_width_2() { return static_cast<int32_t>(offsetof(AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B, ___width_2)); }
inline int32_t get_width_2() const { return ___width_2; }
inline int32_t* get_address_of_width_2() { return &___width_2; }
inline void set_width_2(int32_t value)
{
___width_2 = value;
}
inline static int32_t get_offset_of_height_3() { return static_cast<int32_t>(offsetof(AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B, ___height_3)); }
inline int32_t get_height_3() const { return ___height_3; }
inline int32_t* get_address_of_height_3() { return &___height_3; }
inline void set_height_3(int32_t value)
{
___height_3 = value;
}
inline static int32_t get_offset_of_physicalWidth_4() { return static_cast<int32_t>(offsetof(AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B, ___physicalWidth_4)); }
inline float get_physicalWidth_4() const { return ___physicalWidth_4; }
inline float* get_address_of_physicalWidth_4() { return &___physicalWidth_4; }
inline void set_physicalWidth_4(float value)
{
___physicalWidth_4 = value;
}
inline static int32_t get_offset_of_format_5() { return static_cast<int32_t>(offsetof(AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B, ___format_5)); }
inline int32_t get_format_5() const { return ___format_5; }
inline int32_t* get_address_of_format_5() { return &___format_5; }
inline void set_format_5(int32_t value)
{
___format_5 = value;
}
inline static int32_t get_offset_of_managedReferenceImage_6() { return static_cast<int32_t>(offsetof(AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B, ___managedReferenceImage_6)); }
inline ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 get_managedReferenceImage_6() const { return ___managedReferenceImage_6; }
inline ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 * get_address_of_managedReferenceImage_6() { return &___managedReferenceImage_6; }
inline void set_managedReferenceImage_6(ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 value)
{
___managedReferenceImage_6 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARKit.ARKitImageDatabase/AddImageJob
struct AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B_marshaled_pinvoke
{
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E ___image_0;
intptr_t ___database_1;
int32_t ___width_2;
int32_t ___height_3;
float ___physicalWidth_4;
int32_t ___format_5;
ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 ___managedReferenceImage_6;
};
// Native definition for COM marshalling of UnityEngine.XR.ARKit.ARKitImageDatabase/AddImageJob
struct AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B_marshaled_com
{
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E ___image_0;
intptr_t ___database_1;
int32_t ___width_2;
int32_t ___height_3;
float ___physicalWidth_4;
int32_t ___format_5;
ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 ___managedReferenceImage_6;
};
// UnityEngine.XR.ARSubsystems.BoundedPlane
struct BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::m_TrackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_TrackableId_1;
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::m_SubsumedById
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_SubsumedById_2;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::m_Center
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Center_3;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.BoundedPlane::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_4;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::m_Size
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Size_5;
// UnityEngine.XR.ARSubsystems.PlaneAlignment UnityEngine.XR.ARSubsystems.BoundedPlane::m_Alignment
int32_t ___m_Alignment_6;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.BoundedPlane::m_TrackingState
int32_t ___m_TrackingState_7;
// System.IntPtr UnityEngine.XR.ARSubsystems.BoundedPlane::m_NativePtr
intptr_t ___m_NativePtr_8;
// UnityEngine.XR.ARSubsystems.PlaneClassification UnityEngine.XR.ARSubsystems.BoundedPlane::m_Classification
int32_t ___m_Classification_9;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_TrackableId_1)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_SubsumedById_2() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_SubsumedById_2)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_SubsumedById_2() const { return ___m_SubsumedById_2; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_SubsumedById_2() { return &___m_SubsumedById_2; }
inline void set_m_SubsumedById_2(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_SubsumedById_2 = value;
}
inline static int32_t get_offset_of_m_Center_3() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_Center_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Center_3() const { return ___m_Center_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Center_3() { return &___m_Center_3; }
inline void set_m_Center_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Center_3 = value;
}
inline static int32_t get_offset_of_m_Pose_4() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_Pose_4)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_4() const { return ___m_Pose_4; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_4() { return &___m_Pose_4; }
inline void set_m_Pose_4(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_4 = value;
}
inline static int32_t get_offset_of_m_Size_5() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_Size_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Size_5() const { return ___m_Size_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Size_5() { return &___m_Size_5; }
inline void set_m_Size_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Size_5 = value;
}
inline static int32_t get_offset_of_m_Alignment_6() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_Alignment_6)); }
inline int32_t get_m_Alignment_6() const { return ___m_Alignment_6; }
inline int32_t* get_address_of_m_Alignment_6() { return &___m_Alignment_6; }
inline void set_m_Alignment_6(int32_t value)
{
___m_Alignment_6 = value;
}
inline static int32_t get_offset_of_m_TrackingState_7() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_TrackingState_7)); }
inline int32_t get_m_TrackingState_7() const { return ___m_TrackingState_7; }
inline int32_t* get_address_of_m_TrackingState_7() { return &___m_TrackingState_7; }
inline void set_m_TrackingState_7(int32_t value)
{
___m_TrackingState_7 = value;
}
inline static int32_t get_offset_of_m_NativePtr_8() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_NativePtr_8)); }
inline intptr_t get_m_NativePtr_8() const { return ___m_NativePtr_8; }
inline intptr_t* get_address_of_m_NativePtr_8() { return &___m_NativePtr_8; }
inline void set_m_NativePtr_8(intptr_t value)
{
___m_NativePtr_8 = value;
}
inline static int32_t get_offset_of_m_Classification_9() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_Classification_9)); }
inline int32_t get_m_Classification_9() const { return ___m_Classification_9; }
inline int32_t* get_address_of_m_Classification_9() { return &___m_Classification_9; }
inline void set_m_Classification_9(int32_t value)
{
___m_Classification_9 = value;
}
};
struct BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.BoundedPlane UnityEngine.XR.ARSubsystems.BoundedPlane::s_Default
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_StaticFields, ___s_Default_0)); }
inline BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 get_s_Default_0() const { return ___s_Default_0; }
inline BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRAnchor
struct XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRAnchor::m_Id
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_Id_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRAnchor::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRAnchor::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRAnchor::m_NativePtr
intptr_t ___m_NativePtr_4;
// System.Guid UnityEngine.XR.ARSubsystems.XRAnchor::m_SessionId
Guid_t ___m_SessionId_5;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29, ___m_Id_1)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_Id_1() const { return ___m_Id_1; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_Id_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29, ___m_Pose_2)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
inline static int32_t get_offset_of_m_SessionId_5() { return static_cast<int32_t>(offsetof(XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29, ___m_SessionId_5)); }
inline Guid_t get_m_SessionId_5() const { return ___m_SessionId_5; }
inline Guid_t * get_address_of_m_SessionId_5() { return &___m_SessionId_5; }
inline void set_m_SessionId_5(Guid_t value)
{
___m_SessionId_5 = value;
}
};
struct XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRAnchor UnityEngine.XR.ARSubsystems.XRAnchor::s_Default
XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_StaticFields, ___s_Default_0)); }
inline XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 get_s_Default_0() const { return ___s_Default_0; }
inline XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRFace
struct XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRFace::m_TrackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_1;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRFace::m_TrackingState
int32_t ___m_TrackingState_2;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRFace::m_NativePtr
intptr_t ___m_NativePtr_3;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_LeftEyePose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_LeftEyePose_4;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_RightEyePose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_RightEyePose_5;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRFace::m_FixationPoint
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_FixationPoint_6;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7, ___m_TrackableId_0)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7, ___m_Pose_1)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7, ___m_TrackingState_2)); }
inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; }
inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; }
inline void set_m_TrackingState_2(int32_t value)
{
___m_TrackingState_2 = value;
}
inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7, ___m_NativePtr_3)); }
inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; }
inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; }
inline void set_m_NativePtr_3(intptr_t value)
{
___m_NativePtr_3 = value;
}
inline static int32_t get_offset_of_m_LeftEyePose_4() { return static_cast<int32_t>(offsetof(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7, ___m_LeftEyePose_4)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_LeftEyePose_4() const { return ___m_LeftEyePose_4; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_LeftEyePose_4() { return &___m_LeftEyePose_4; }
inline void set_m_LeftEyePose_4(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_LeftEyePose_4 = value;
}
inline static int32_t get_offset_of_m_RightEyePose_5() { return static_cast<int32_t>(offsetof(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7, ___m_RightEyePose_5)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_RightEyePose_5() const { return ___m_RightEyePose_5; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_RightEyePose_5() { return &___m_RightEyePose_5; }
inline void set_m_RightEyePose_5(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_RightEyePose_5 = value;
}
inline static int32_t get_offset_of_m_FixationPoint_6() { return static_cast<int32_t>(offsetof(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7, ___m_FixationPoint_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_FixationPoint_6() const { return ___m_FixationPoint_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_FixationPoint_6() { return &___m_FixationPoint_6; }
inline void set_m_FixationPoint_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_FixationPoint_6 = value;
}
};
struct XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRFace UnityEngine.XR.ARSubsystems.XRFace::s_Default
XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 ___s_Default_7;
public:
inline static int32_t get_offset_of_s_Default_7() { return static_cast<int32_t>(offsetof(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_StaticFields, ___s_Default_7)); }
inline XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 get_s_Default_7() const { return ___s_Default_7; }
inline XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 * get_address_of_s_Default_7() { return &___s_Default_7; }
inline void set_s_Default_7(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 value)
{
___s_Default_7 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRHumanBody
struct XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRHumanBody::m_TrackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBody::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_1;
// System.Single UnityEngine.XR.ARSubsystems.XRHumanBody::m_EstimatedHeightScaleFactor
float ___m_EstimatedHeightScaleFactor_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRHumanBody::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRHumanBody::m_NativePtr
intptr_t ___m_NativePtr_4;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1, ___m_TrackableId_0)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1, ___m_Pose_1)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_EstimatedHeightScaleFactor_2() { return static_cast<int32_t>(offsetof(XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1, ___m_EstimatedHeightScaleFactor_2)); }
inline float get_m_EstimatedHeightScaleFactor_2() const { return ___m_EstimatedHeightScaleFactor_2; }
inline float* get_address_of_m_EstimatedHeightScaleFactor_2() { return &___m_EstimatedHeightScaleFactor_2; }
inline void set_m_EstimatedHeightScaleFactor_2(float value)
{
___m_EstimatedHeightScaleFactor_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
};
struct XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRHumanBody UnityEngine.XR.ARSubsystems.XRHumanBody::s_Default
XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 ___s_Default_5;
public:
inline static int32_t get_offset_of_s_Default_5() { return static_cast<int32_t>(offsetof(XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_StaticFields, ___s_Default_5)); }
inline XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 get_s_Default_5() const { return ___s_Default_5; }
inline XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 * get_address_of_s_Default_5() { return &___s_Default_5; }
inline void set_s_Default_5(XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 value)
{
___s_Default_5 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRHumanBodyJoint
struct XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_Index
int32_t ___m_Index_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_ParentIndex
int32_t ___m_ParentIndex_1;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_LocalScale
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_LocalScale_2;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_LocalPose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_LocalPose_3;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_AnchorScale
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AnchorScale_4;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_AnchorPose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_AnchorPose_5;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_Tracked
int32_t ___m_Tracked_6;
public:
inline static int32_t get_offset_of_m_Index_0() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF, ___m_Index_0)); }
inline int32_t get_m_Index_0() const { return ___m_Index_0; }
inline int32_t* get_address_of_m_Index_0() { return &___m_Index_0; }
inline void set_m_Index_0(int32_t value)
{
___m_Index_0 = value;
}
inline static int32_t get_offset_of_m_ParentIndex_1() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF, ___m_ParentIndex_1)); }
inline int32_t get_m_ParentIndex_1() const { return ___m_ParentIndex_1; }
inline int32_t* get_address_of_m_ParentIndex_1() { return &___m_ParentIndex_1; }
inline void set_m_ParentIndex_1(int32_t value)
{
___m_ParentIndex_1 = value;
}
inline static int32_t get_offset_of_m_LocalScale_2() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF, ___m_LocalScale_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_LocalScale_2() const { return ___m_LocalScale_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_LocalScale_2() { return &___m_LocalScale_2; }
inline void set_m_LocalScale_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_LocalScale_2 = value;
}
inline static int32_t get_offset_of_m_LocalPose_3() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF, ___m_LocalPose_3)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_LocalPose_3() const { return ___m_LocalPose_3; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_LocalPose_3() { return &___m_LocalPose_3; }
inline void set_m_LocalPose_3(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_LocalPose_3 = value;
}
inline static int32_t get_offset_of_m_AnchorScale_4() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF, ___m_AnchorScale_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AnchorScale_4() const { return ___m_AnchorScale_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AnchorScale_4() { return &___m_AnchorScale_4; }
inline void set_m_AnchorScale_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AnchorScale_4 = value;
}
inline static int32_t get_offset_of_m_AnchorPose_5() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF, ___m_AnchorPose_5)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_AnchorPose_5() const { return ___m_AnchorPose_5; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_AnchorPose_5() { return &___m_AnchorPose_5; }
inline void set_m_AnchorPose_5(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_AnchorPose_5 = value;
}
inline static int32_t get_offset_of_m_Tracked_6() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF, ___m_Tracked_6)); }
inline int32_t get_m_Tracked_6() const { return ___m_Tracked_6; }
inline int32_t* get_address_of_m_Tracked_6() { return &___m_Tracked_6; }
inline void set_m_Tracked_6(int32_t value)
{
___m_Tracked_6 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRParticipant
struct XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRParticipant::m_TrackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRParticipant::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_1;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRParticipant::m_TrackingState
int32_t ___m_TrackingState_2;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRParticipant::m_NativePtr
intptr_t ___m_NativePtr_3;
// System.Guid UnityEngine.XR.ARSubsystems.XRParticipant::m_SessionId
Guid_t ___m_SessionId_4;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062, ___m_TrackableId_0)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062, ___m_Pose_1)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062, ___m_TrackingState_2)); }
inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; }
inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; }
inline void set_m_TrackingState_2(int32_t value)
{
___m_TrackingState_2 = value;
}
inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062, ___m_NativePtr_3)); }
inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; }
inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; }
inline void set_m_NativePtr_3(intptr_t value)
{
___m_NativePtr_3 = value;
}
inline static int32_t get_offset_of_m_SessionId_4() { return static_cast<int32_t>(offsetof(XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062, ___m_SessionId_4)); }
inline Guid_t get_m_SessionId_4() const { return ___m_SessionId_4; }
inline Guid_t * get_address_of_m_SessionId_4() { return &___m_SessionId_4; }
inline void set_m_SessionId_4(Guid_t value)
{
___m_SessionId_4 = value;
}
};
struct XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRParticipant UnityEngine.XR.ARSubsystems.XRParticipant::k_Default
XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 ___k_Default_5;
public:
inline static int32_t get_offset_of_k_Default_5() { return static_cast<int32_t>(offsetof(XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_StaticFields, ___k_Default_5)); }
inline XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 get_k_Default_5() const { return ___k_Default_5; }
inline XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 * get_address_of_k_Default_5() { return &___k_Default_5; }
inline void set_k_Default_5(XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 value)
{
___k_Default_5 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRPointCloud
struct XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRPointCloud::m_TrackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_TrackableId_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRPointCloud::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRPointCloud::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRPointCloud::m_NativePtr
intptr_t ___m_NativePtr_4;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0, ___m_TrackableId_1)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0, ___m_Pose_2)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
};
struct XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRPointCloud UnityEngine.XR.ARSubsystems.XRPointCloud::s_Default
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_StaticFields, ___s_Default_0)); }
inline XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 get_s_Default_0() const { return ___s_Default_0; }
inline XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRRaycastHit
struct XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycastHit::m_TrackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_TrackableId_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycastHit::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_2;
// System.Single UnityEngine.XR.ARSubsystems.XRRaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastHit::m_HitType
int32_t ___m_HitType_4;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82, ___m_TrackableId_1)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82, ___m_Pose_2)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_HitType_4() { return static_cast<int32_t>(offsetof(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82, ___m_HitType_4)); }
inline int32_t get_m_HitType_4() const { return ___m_HitType_4; }
inline int32_t* get_address_of_m_HitType_4() { return &___m_HitType_4; }
inline void set_m_HitType_4(int32_t value)
{
___m_HitType_4 = value;
}
};
struct XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRRaycastHit UnityEngine.XR.ARSubsystems.XRRaycastHit::s_Default
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_StaticFields, ___s_Default_0)); }
inline XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 get_s_Default_0() const { return ___s_Default_0; }
inline XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRReferencePoint
struct XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRReferencePoint::m_Id
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_Id_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRReferencePoint::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRReferencePoint::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRReferencePoint::m_NativePtr
intptr_t ___m_NativePtr_4;
// System.Guid UnityEngine.XR.ARSubsystems.XRReferencePoint::m_SessionId
Guid_t ___m_SessionId_5;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9, ___m_Id_1)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_Id_1() const { return ___m_Id_1; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_Id_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9, ___m_Pose_2)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
inline static int32_t get_offset_of_m_SessionId_5() { return static_cast<int32_t>(offsetof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9, ___m_SessionId_5)); }
inline Guid_t get_m_SessionId_5() const { return ___m_SessionId_5; }
inline Guid_t * get_address_of_m_SessionId_5() { return &___m_SessionId_5; }
inline void set_m_SessionId_5(Guid_t value)
{
___m_SessionId_5 = value;
}
};
struct XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRReferencePoint UnityEngine.XR.ARSubsystems.XRReferencePoint::s_Default
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_StaticFields, ___s_Default_0)); }
inline XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 get_s_Default_0() const { return ___s_Default_0; }
inline XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor
struct XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD
{
public:
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_NativeTexture
intptr_t ___m_NativeTexture_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Width
int32_t ___m_Width_1;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Height
int32_t ___m_Height_2;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_MipmapCount
int32_t ___m_MipmapCount_3;
// UnityEngine.TextureFormat UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Format
int32_t ___m_Format_4;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_PropertyNameId
int32_t ___m_PropertyNameId_5;
public:
inline static int32_t get_offset_of_m_NativeTexture_0() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD, ___m_NativeTexture_0)); }
inline intptr_t get_m_NativeTexture_0() const { return ___m_NativeTexture_0; }
inline intptr_t* get_address_of_m_NativeTexture_0() { return &___m_NativeTexture_0; }
inline void set_m_NativeTexture_0(intptr_t value)
{
___m_NativeTexture_0 = value;
}
inline static int32_t get_offset_of_m_Width_1() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD, ___m_Width_1)); }
inline int32_t get_m_Width_1() const { return ___m_Width_1; }
inline int32_t* get_address_of_m_Width_1() { return &___m_Width_1; }
inline void set_m_Width_1(int32_t value)
{
___m_Width_1 = value;
}
inline static int32_t get_offset_of_m_Height_2() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD, ___m_Height_2)); }
inline int32_t get_m_Height_2() const { return ___m_Height_2; }
inline int32_t* get_address_of_m_Height_2() { return &___m_Height_2; }
inline void set_m_Height_2(int32_t value)
{
___m_Height_2 = value;
}
inline static int32_t get_offset_of_m_MipmapCount_3() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD, ___m_MipmapCount_3)); }
inline int32_t get_m_MipmapCount_3() const { return ___m_MipmapCount_3; }
inline int32_t* get_address_of_m_MipmapCount_3() { return &___m_MipmapCount_3; }
inline void set_m_MipmapCount_3(int32_t value)
{
___m_MipmapCount_3 = value;
}
inline static int32_t get_offset_of_m_Format_4() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD, ___m_Format_4)); }
inline int32_t get_m_Format_4() const { return ___m_Format_4; }
inline int32_t* get_address_of_m_Format_4() { return &___m_Format_4; }
inline void set_m_Format_4(int32_t value)
{
___m_Format_4 = value;
}
inline static int32_t get_offset_of_m_PropertyNameId_5() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD, ___m_PropertyNameId_5)); }
inline int32_t get_m_PropertyNameId_5() const { return ___m_PropertyNameId_5; }
inline int32_t* get_address_of_m_PropertyNameId_5() { return &___m_PropertyNameId_5; }
inline void set_m_PropertyNameId_5(int32_t value)
{
___m_PropertyNameId_5 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRTrackedImage
struct XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Id
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_Id_1;
// System.Guid UnityEngine.XR.ARSubsystems.XRTrackedImage::m_SourceImageId
Guid_t ___m_SourceImageId_2;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_3;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Size
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Size_4;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedImage::m_TrackingState
int32_t ___m_TrackingState_5;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedImage::m_NativePtr
intptr_t ___m_NativePtr_6;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8, ___m_Id_1)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_Id_1() const { return ___m_Id_1; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_Id_1 = value;
}
inline static int32_t get_offset_of_m_SourceImageId_2() { return static_cast<int32_t>(offsetof(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8, ___m_SourceImageId_2)); }
inline Guid_t get_m_SourceImageId_2() const { return ___m_SourceImageId_2; }
inline Guid_t * get_address_of_m_SourceImageId_2() { return &___m_SourceImageId_2; }
inline void set_m_SourceImageId_2(Guid_t value)
{
___m_SourceImageId_2 = value;
}
inline static int32_t get_offset_of_m_Pose_3() { return static_cast<int32_t>(offsetof(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8, ___m_Pose_3)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_3() const { return ___m_Pose_3; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_3() { return &___m_Pose_3; }
inline void set_m_Pose_3(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_3 = value;
}
inline static int32_t get_offset_of_m_Size_4() { return static_cast<int32_t>(offsetof(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8, ___m_Size_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Size_4() const { return ___m_Size_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Size_4() { return &___m_Size_4; }
inline void set_m_Size_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Size_4 = value;
}
inline static int32_t get_offset_of_m_TrackingState_5() { return static_cast<int32_t>(offsetof(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8, ___m_TrackingState_5)); }
inline int32_t get_m_TrackingState_5() const { return ___m_TrackingState_5; }
inline int32_t* get_address_of_m_TrackingState_5() { return &___m_TrackingState_5; }
inline void set_m_TrackingState_5(int32_t value)
{
___m_TrackingState_5 = value;
}
inline static int32_t get_offset_of_m_NativePtr_6() { return static_cast<int32_t>(offsetof(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8, ___m_NativePtr_6)); }
inline intptr_t get_m_NativePtr_6() const { return ___m_NativePtr_6; }
inline intptr_t* get_address_of_m_NativePtr_6() { return &___m_NativePtr_6; }
inline void set_m_NativePtr_6(intptr_t value)
{
___m_NativePtr_6 = value;
}
};
struct XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRTrackedImage UnityEngine.XR.ARSubsystems.XRTrackedImage::s_Default
XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_StaticFields, ___s_Default_0)); }
inline XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 get_s_Default_0() const { return ___s_Default_0; }
inline XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRTrackedObject
struct XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedObject::m_TrackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedObject::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_1;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedObject::m_TrackingState
int32_t ___m_TrackingState_2;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedObject::m_NativePtr
intptr_t ___m_NativePtr_3;
// System.Guid UnityEngine.XR.ARSubsystems.XRTrackedObject::m_ReferenceObjectGuid
Guid_t ___m_ReferenceObjectGuid_4;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260, ___m_TrackableId_0)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260, ___m_Pose_1)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260, ___m_TrackingState_2)); }
inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; }
inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; }
inline void set_m_TrackingState_2(int32_t value)
{
___m_TrackingState_2 = value;
}
inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260, ___m_NativePtr_3)); }
inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; }
inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; }
inline void set_m_NativePtr_3(intptr_t value)
{
___m_NativePtr_3 = value;
}
inline static int32_t get_offset_of_m_ReferenceObjectGuid_4() { return static_cast<int32_t>(offsetof(XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260, ___m_ReferenceObjectGuid_4)); }
inline Guid_t get_m_ReferenceObjectGuid_4() const { return ___m_ReferenceObjectGuid_4; }
inline Guid_t * get_address_of_m_ReferenceObjectGuid_4() { return &___m_ReferenceObjectGuid_4; }
inline void set_m_ReferenceObjectGuid_4(Guid_t value)
{
___m_ReferenceObjectGuid_4 = value;
}
};
struct XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRTrackedObject UnityEngine.XR.ARSubsystems.XRTrackedObject::s_Default
XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 ___s_Default_5;
public:
inline static int32_t get_offset_of_s_Default_5() { return static_cast<int32_t>(offsetof(XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_StaticFields, ___s_Default_5)); }
inline XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 get_s_Default_5() const { return ___s_Default_5; }
inline XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 * get_address_of_s_Default_5() { return &___s_Default_5; }
inline void set_s_Default_5(XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 value)
{
___s_Default_5 = value;
}
};
// UnityEngine.XR.MeshInfo
struct MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3
{
public:
// UnityEngine.XR.MeshId UnityEngine.XR.MeshInfo::<MeshId>k__BackingField
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___U3CMeshIdU3Ek__BackingField_0;
// UnityEngine.XR.MeshChangeState UnityEngine.XR.MeshInfo::<ChangeState>k__BackingField
int32_t ___U3CChangeStateU3Ek__BackingField_1;
// System.Int32 UnityEngine.XR.MeshInfo::<PriorityHint>k__BackingField
int32_t ___U3CPriorityHintU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CMeshIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3, ___U3CMeshIdU3Ek__BackingField_0)); }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A get_U3CMeshIdU3Ek__BackingField_0() const { return ___U3CMeshIdU3Ek__BackingField_0; }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * get_address_of_U3CMeshIdU3Ek__BackingField_0() { return &___U3CMeshIdU3Ek__BackingField_0; }
inline void set_U3CMeshIdU3Ek__BackingField_0(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A value)
{
___U3CMeshIdU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CChangeStateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3, ___U3CChangeStateU3Ek__BackingField_1)); }
inline int32_t get_U3CChangeStateU3Ek__BackingField_1() const { return ___U3CChangeStateU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CChangeStateU3Ek__BackingField_1() { return &___U3CChangeStateU3Ek__BackingField_1; }
inline void set_U3CChangeStateU3Ek__BackingField_1(int32_t value)
{
___U3CChangeStateU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CPriorityHintU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3, ___U3CPriorityHintU3Ek__BackingField_2)); }
inline int32_t get_U3CPriorityHintU3Ek__BackingField_2() const { return ___U3CPriorityHintU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CPriorityHintU3Ek__BackingField_2() { return &___U3CPriorityHintU3Ek__BackingField_2; }
inline void set_U3CPriorityHintU3Ek__BackingField_2(int32_t value)
{
___U3CPriorityHintU3Ek__BackingField_2 = value;
}
};
// UnityEngine.XR.XRNodeState
struct XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A
{
public:
// UnityEngine.XR.XRNode UnityEngine.XR.XRNodeState::m_Type
int32_t ___m_Type_0;
// UnityEngine.XR.AvailableTrackingData UnityEngine.XR.XRNodeState::m_AvailableFields
int32_t ___m_AvailableFields_1;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Position_2;
// UnityEngine.Quaternion UnityEngine.XR.XRNodeState::m_Rotation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___m_Rotation_3;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Velocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Velocity_4;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularVelocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularVelocity_5;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Acceleration
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Acceleration_6;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularAcceleration
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularAcceleration_7;
// System.Int32 UnityEngine.XR.XRNodeState::m_Tracked
int32_t ___m_Tracked_8;
// System.UInt64 UnityEngine.XR.XRNodeState::m_UniqueID
uint64_t ___m_UniqueID_9;
public:
inline static int32_t get_offset_of_m_Type_0() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Type_0)); }
inline int32_t get_m_Type_0() const { return ___m_Type_0; }
inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; }
inline void set_m_Type_0(int32_t value)
{
___m_Type_0 = value;
}
inline static int32_t get_offset_of_m_AvailableFields_1() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AvailableFields_1)); }
inline int32_t get_m_AvailableFields_1() const { return ___m_AvailableFields_1; }
inline int32_t* get_address_of_m_AvailableFields_1() { return &___m_AvailableFields_1; }
inline void set_m_AvailableFields_1(int32_t value)
{
___m_AvailableFields_1 = value;
}
inline static int32_t get_offset_of_m_Position_2() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Position_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Position_2() const { return ___m_Position_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Position_2() { return &___m_Position_2; }
inline void set_m_Position_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Position_2 = value;
}
inline static int32_t get_offset_of_m_Rotation_3() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Rotation_3)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_m_Rotation_3() const { return ___m_Rotation_3; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_m_Rotation_3() { return &___m_Rotation_3; }
inline void set_m_Rotation_3(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___m_Rotation_3 = value;
}
inline static int32_t get_offset_of_m_Velocity_4() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Velocity_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Velocity_4() const { return ___m_Velocity_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Velocity_4() { return &___m_Velocity_4; }
inline void set_m_Velocity_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Velocity_4 = value;
}
inline static int32_t get_offset_of_m_AngularVelocity_5() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AngularVelocity_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularVelocity_5() const { return ___m_AngularVelocity_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularVelocity_5() { return &___m_AngularVelocity_5; }
inline void set_m_AngularVelocity_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AngularVelocity_5 = value;
}
inline static int32_t get_offset_of_m_Acceleration_6() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Acceleration_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Acceleration_6() const { return ___m_Acceleration_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Acceleration_6() { return &___m_Acceleration_6; }
inline void set_m_Acceleration_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Acceleration_6 = value;
}
inline static int32_t get_offset_of_m_AngularAcceleration_7() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AngularAcceleration_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularAcceleration_7() const { return ___m_AngularAcceleration_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularAcceleration_7() { return &___m_AngularAcceleration_7; }
inline void set_m_AngularAcceleration_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AngularAcceleration_7 = value;
}
inline static int32_t get_offset_of_m_Tracked_8() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Tracked_8)); }
inline int32_t get_m_Tracked_8() const { return ___m_Tracked_8; }
inline int32_t* get_address_of_m_Tracked_8() { return &___m_Tracked_8; }
inline void set_m_Tracked_8(int32_t value)
{
___m_Tracked_8 = value;
}
inline static int32_t get_offset_of_m_UniqueID_9() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_UniqueID_9)); }
inline uint64_t get_m_UniqueID_9() const { return ___m_UniqueID_9; }
inline uint64_t* get_address_of_m_UniqueID_9() { return &___m_UniqueID_9; }
inline void set_m_UniqueID_9(uint64_t value)
{
___m_UniqueID_9 = value;
}
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>
struct Entry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096, ___key_2)); }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A get_key_2() const { return ___key_2; }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096, ___value_3)); }
inline MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 get_value_3() const { return ___value_3; }
inline MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 value)
{
___value_3 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>
struct KeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31, ___key_0)); }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A get_key_0() const { return ___key_0; }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31, ___value_1)); }
inline MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 get_value_1() const { return ___value_1; }
inline MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 value)
{
___value_1 = value;
}
};
// System.Converter`2<System.Object,System.Object>
struct Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Boolean>
struct Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Byte>
struct Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Char>
struct Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.DateTime>
struct Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.DateTimeOffset>
struct Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Decimal>
struct Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Double>
struct Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Guid>
struct Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Int16>
struct Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Int32>
struct Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Int64>
struct Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.IntPtr>
struct Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Object>
struct Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.SByte>
struct Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.Single>
struct Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.TimeSpan>
struct Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.UInt16>
struct Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.UInt32>
struct Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.UInt64>
struct Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Byte,System.UIntPtr>
struct Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Boolean>
struct Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Byte>
struct Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Char>
struct Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.DateTime>
struct Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.DateTimeOffset>
struct Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Decimal>
struct Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Double>
struct Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Guid>
struct Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Int16>
struct Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Int32>
struct Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Int64>
struct Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.IntPtr>
struct Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Object>
struct Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.SByte>
struct Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.Single>
struct Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.TimeSpan>
struct Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.UInt16>
struct Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.UInt32>
struct Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.UInt64>
struct Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int16,System.UIntPtr>
struct Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Boolean>
struct Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Byte>
struct Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Char>
struct Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.DateTime>
struct Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.DateTimeOffset>
struct Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Decimal>
struct Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Double>
struct Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Guid>
struct Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Int16>
struct Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Int32>
struct Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Int64>
struct Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.IntPtr>
struct Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Object>
struct Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.SByte>
struct Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.Single>
struct Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.TimeSpan>
struct Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.UInt16>
struct Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.UInt32>
struct Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.UInt64>
struct Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int32,System.UIntPtr>
struct Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Boolean>
struct Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Byte>
struct Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Char>
struct Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.DateTime>
struct Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.DateTimeOffset>
struct Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Decimal>
struct Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Double>
struct Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Guid>
struct Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Int16>
struct Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Int32>
struct Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Int64>
struct Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.IntPtr>
struct Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Object>
struct Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.SByte>
struct Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.Single>
struct Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.TimeSpan>
struct Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.UInt16>
struct Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.UInt32>
struct Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.UInt64>
struct Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Int64,System.UIntPtr>
struct Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.Object,System.Object>
struct Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Boolean>
struct Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Byte>
struct Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Char>
struct Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.DateTime>
struct Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.DateTimeOffset>
struct Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Decimal>
struct Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Double>
struct Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Guid>
struct Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Int16>
struct Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Int32>
struct Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Int64>
struct Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.IntPtr>
struct Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Object>
struct Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.SByte>
struct Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.Single>
struct Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.TimeSpan>
struct Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.UInt16>
struct Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.UInt32>
struct Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.UInt64>
struct Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.SByte,System.UIntPtr>
struct Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Boolean>
struct Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Byte>
struct Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Char>
struct Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.DateTime>
struct Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.DateTimeOffset>
struct Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Decimal>
struct Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Double>
struct Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Guid>
struct Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int16>
struct Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int32>
struct Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Int64>
struct Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.IntPtr>
struct Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Object>
struct Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.SByte>
struct Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.Single>
struct Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.TimeSpan>
struct Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt16>
struct Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt32>
struct Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UInt64>
struct Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt16,System.UIntPtr>
struct Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Boolean>
struct Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Byte>
struct Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Char>
struct Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTime>
struct Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.DateTimeOffset>
struct Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Decimal>
struct Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Double>
struct Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Guid>
struct Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int16>
struct Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int32>
struct Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Int64>
struct Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.IntPtr>
struct Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Object>
struct Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.SByte>
struct Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.Single>
struct Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.TimeSpan>
struct Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt16>
struct Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt32>
struct Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UInt64>
struct Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt32,System.UIntPtr>
struct Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Boolean>
struct Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Byte>
struct Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Char>
struct Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTime>
struct Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.DateTimeOffset>
struct Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Decimal>
struct Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Diagnostics.Tracing.EmptyStruct>
struct Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Double>
struct Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Guid>
struct Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int16>
struct Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int32>
struct Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Int64>
struct Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.IntPtr>
struct Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Object>
struct Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.SByte>
struct Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.Single>
struct Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.TimeSpan>
struct Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt16>
struct Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt32>
struct Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UInt64>
struct Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE : public MulticastDelegate_t
{
public:
public:
};
// System.Diagnostics.Tracing.EnumHelper`1_Transformer`1<System.UInt64,System.UIntPtr>
struct Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`1<System.Object>
struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC : public MulticastDelegate_t
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Behaviour
struct Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8 : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<System.Object>
struct EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderFunc`1<System.Object>
struct RenderFunc_1_t6963E4F494F441886F42D47BFB357196C662DDB7 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass
struct RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 : public RuntimeObject
{
public:
// System.String UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass::name
String_t* ___name_0;
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass::index
int32_t ___index_1;
// UnityEngine.Profiling.CustomSampler UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass::customSampler
CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8 * ___customSampler_2;
// System.Collections.Generic.List`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass::resourceReadList
List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A * ___resourceReadList_3;
// System.Collections.Generic.List`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass::resourceWriteList
List_1_tEBA98BE7FBE0C275FAEB779DDACD275830D43BB8 * ___resourceWriteList_4;
// System.Collections.Generic.List`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass::usedRendererListList
List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A * ___usedRendererListList_5;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass::enableAsyncCompute
bool ___enableAsyncCompute_6;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource[] UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass::m_ColorBuffers
RenderGraphMutableResourceU5BU5D_tC5DD0DF1CAE7DE95421B26158C9F5E24169156CA* ___m_ColorBuffers_7;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass::m_DepthBuffer
RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 ___m_DepthBuffer_8;
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass::m_MaxColorBufferIndex
int32_t ___m_MaxColorBufferIndex_9;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_customSampler_2() { return static_cast<int32_t>(offsetof(RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035, ___customSampler_2)); }
inline CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8 * get_customSampler_2() const { return ___customSampler_2; }
inline CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8 ** get_address_of_customSampler_2() { return &___customSampler_2; }
inline void set_customSampler_2(CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8 * value)
{
___customSampler_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___customSampler_2), (void*)value);
}
inline static int32_t get_offset_of_resourceReadList_3() { return static_cast<int32_t>(offsetof(RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035, ___resourceReadList_3)); }
inline List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A * get_resourceReadList_3() const { return ___resourceReadList_3; }
inline List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A ** get_address_of_resourceReadList_3() { return &___resourceReadList_3; }
inline void set_resourceReadList_3(List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A * value)
{
___resourceReadList_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resourceReadList_3), (void*)value);
}
inline static int32_t get_offset_of_resourceWriteList_4() { return static_cast<int32_t>(offsetof(RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035, ___resourceWriteList_4)); }
inline List_1_tEBA98BE7FBE0C275FAEB779DDACD275830D43BB8 * get_resourceWriteList_4() const { return ___resourceWriteList_4; }
inline List_1_tEBA98BE7FBE0C275FAEB779DDACD275830D43BB8 ** get_address_of_resourceWriteList_4() { return &___resourceWriteList_4; }
inline void set_resourceWriteList_4(List_1_tEBA98BE7FBE0C275FAEB779DDACD275830D43BB8 * value)
{
___resourceWriteList_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resourceWriteList_4), (void*)value);
}
inline static int32_t get_offset_of_usedRendererListList_5() { return static_cast<int32_t>(offsetof(RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035, ___usedRendererListList_5)); }
inline List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A * get_usedRendererListList_5() const { return ___usedRendererListList_5; }
inline List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A ** get_address_of_usedRendererListList_5() { return &___usedRendererListList_5; }
inline void set_usedRendererListList_5(List_1_t3DB3A57DAA1C2A9B312E3B24A7C03D028DB1097A * value)
{
___usedRendererListList_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___usedRendererListList_5), (void*)value);
}
inline static int32_t get_offset_of_enableAsyncCompute_6() { return static_cast<int32_t>(offsetof(RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035, ___enableAsyncCompute_6)); }
inline bool get_enableAsyncCompute_6() const { return ___enableAsyncCompute_6; }
inline bool* get_address_of_enableAsyncCompute_6() { return &___enableAsyncCompute_6; }
inline void set_enableAsyncCompute_6(bool value)
{
___enableAsyncCompute_6 = value;
}
inline static int32_t get_offset_of_m_ColorBuffers_7() { return static_cast<int32_t>(offsetof(RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035, ___m_ColorBuffers_7)); }
inline RenderGraphMutableResourceU5BU5D_tC5DD0DF1CAE7DE95421B26158C9F5E24169156CA* get_m_ColorBuffers_7() const { return ___m_ColorBuffers_7; }
inline RenderGraphMutableResourceU5BU5D_tC5DD0DF1CAE7DE95421B26158C9F5E24169156CA** get_address_of_m_ColorBuffers_7() { return &___m_ColorBuffers_7; }
inline void set_m_ColorBuffers_7(RenderGraphMutableResourceU5BU5D_tC5DD0DF1CAE7DE95421B26158C9F5E24169156CA* value)
{
___m_ColorBuffers_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ColorBuffers_7), (void*)value);
}
inline static int32_t get_offset_of_m_DepthBuffer_8() { return static_cast<int32_t>(offsetof(RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035, ___m_DepthBuffer_8)); }
inline RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 get_m_DepthBuffer_8() const { return ___m_DepthBuffer_8; }
inline RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 * get_address_of_m_DepthBuffer_8() { return &___m_DepthBuffer_8; }
inline void set_m_DepthBuffer_8(RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 value)
{
___m_DepthBuffer_8 = value;
}
inline static int32_t get_offset_of_m_MaxColorBufferIndex_9() { return static_cast<int32_t>(offsetof(RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035, ___m_MaxColorBufferIndex_9)); }
inline int32_t get_m_MaxColorBufferIndex_9() const { return ___m_MaxColorBufferIndex_9; }
inline int32_t* get_address_of_m_MaxColorBufferIndex_9() { return &___m_MaxColorBufferIndex_9; }
inline void set_m_MaxColorBufferIndex_9(int32_t value)
{
___m_MaxColorBufferIndex_9 = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_TextureResource
struct TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60
{
public:
// UnityEngine.Experimental.Rendering.RenderGraphModule.TextureDesc UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_TextureResource::desc
TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985 ___desc_0;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_TextureResource::imported
bool ___imported_1;
// UnityEngine.Rendering.RTHandle UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_TextureResource::rt
RTHandle_tEA0162F7F963913BAEDC1F970E261D0874F2996C * ___rt_2;
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_TextureResource::cachedHash
int32_t ___cachedHash_3;
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_TextureResource::firstWritePassIndex
int32_t ___firstWritePassIndex_4;
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_TextureResource::lastReadPassIndex
int32_t ___lastReadPassIndex_5;
// System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_TextureResource::shaderProperty
int32_t ___shaderProperty_6;
// System.Boolean UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_TextureResource::wasReleased
bool ___wasReleased_7;
public:
inline static int32_t get_offset_of_desc_0() { return static_cast<int32_t>(offsetof(TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60, ___desc_0)); }
inline TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985 get_desc_0() const { return ___desc_0; }
inline TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985 * get_address_of_desc_0() { return &___desc_0; }
inline void set_desc_0(TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985 value)
{
___desc_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___desc_0))->___func_5), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___desc_0))->___name_22), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_imported_1() { return static_cast<int32_t>(offsetof(TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60, ___imported_1)); }
inline bool get_imported_1() const { return ___imported_1; }
inline bool* get_address_of_imported_1() { return &___imported_1; }
inline void set_imported_1(bool value)
{
___imported_1 = value;
}
inline static int32_t get_offset_of_rt_2() { return static_cast<int32_t>(offsetof(TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60, ___rt_2)); }
inline RTHandle_tEA0162F7F963913BAEDC1F970E261D0874F2996C * get_rt_2() const { return ___rt_2; }
inline RTHandle_tEA0162F7F963913BAEDC1F970E261D0874F2996C ** get_address_of_rt_2() { return &___rt_2; }
inline void set_rt_2(RTHandle_tEA0162F7F963913BAEDC1F970E261D0874F2996C * value)
{
___rt_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rt_2), (void*)value);
}
inline static int32_t get_offset_of_cachedHash_3() { return static_cast<int32_t>(offsetof(TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60, ___cachedHash_3)); }
inline int32_t get_cachedHash_3() const { return ___cachedHash_3; }
inline int32_t* get_address_of_cachedHash_3() { return &___cachedHash_3; }
inline void set_cachedHash_3(int32_t value)
{
___cachedHash_3 = value;
}
inline static int32_t get_offset_of_firstWritePassIndex_4() { return static_cast<int32_t>(offsetof(TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60, ___firstWritePassIndex_4)); }
inline int32_t get_firstWritePassIndex_4() const { return ___firstWritePassIndex_4; }
inline int32_t* get_address_of_firstWritePassIndex_4() { return &___firstWritePassIndex_4; }
inline void set_firstWritePassIndex_4(int32_t value)
{
___firstWritePassIndex_4 = value;
}
inline static int32_t get_offset_of_lastReadPassIndex_5() { return static_cast<int32_t>(offsetof(TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60, ___lastReadPassIndex_5)); }
inline int32_t get_lastReadPassIndex_5() const { return ___lastReadPassIndex_5; }
inline int32_t* get_address_of_lastReadPassIndex_5() { return &___lastReadPassIndex_5; }
inline void set_lastReadPassIndex_5(int32_t value)
{
___lastReadPassIndex_5 = value;
}
inline static int32_t get_offset_of_shaderProperty_6() { return static_cast<int32_t>(offsetof(TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60, ___shaderProperty_6)); }
inline int32_t get_shaderProperty_6() const { return ___shaderProperty_6; }
inline int32_t* get_address_of_shaderProperty_6() { return &___shaderProperty_6; }
inline void set_shaderProperty_6(int32_t value)
{
___shaderProperty_6 = value;
}
inline static int32_t get_offset_of_wasReleased_7() { return static_cast<int32_t>(offsetof(TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60, ___wasReleased_7)); }
inline bool get_wasReleased_7() const { return ___wasReleased_7; }
inline bool* get_address_of_wasReleased_7() { return &___wasReleased_7; }
inline void set_wasReleased_7(bool value)
{
___wasReleased_7 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry/TextureResource
struct TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60_marshaled_pinvoke
{
TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985_marshaled_pinvoke ___desc_0;
int32_t ___imported_1;
RTHandle_tEA0162F7F963913BAEDC1F970E261D0874F2996C * ___rt_2;
int32_t ___cachedHash_3;
int32_t ___firstWritePassIndex_4;
int32_t ___lastReadPassIndex_5;
int32_t ___shaderProperty_6;
int32_t ___wasReleased_7;
};
// Native definition for COM marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry/TextureResource
struct TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60_marshaled_com
{
TextureDesc_t895867BE050B20F4F3D19B8D95606C3AA97A2985_marshaled_com ___desc_0;
int32_t ___imported_1;
RTHandle_tEA0162F7F963913BAEDC1F970E261D0874F2996C * ___rt_2;
int32_t ___cachedHash_3;
int32_t ___firstWritePassIndex_4;
int32_t ___lastReadPassIndex_5;
int32_t ___shaderProperty_6;
int32_t ___wasReleased_7;
};
// UnityEngine.Rendering.DrawingSettings
struct DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D
{
public:
// UnityEngine.Rendering.SortingSettings UnityEngine.Rendering.DrawingSettings::m_SortingSettings
SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29 ___m_SortingSettings_1;
// UnityEngine.Rendering.DrawingSettings_<shaderPassNames>e__FixedBuffer UnityEngine.Rendering.DrawingSettings::shaderPassNames
U3CshaderPassNamesU3Ee__FixedBuffer_t90D82EBB68FD984CB8C6D6523258A9C7DC1C0319 ___shaderPassNames_2;
// UnityEngine.Rendering.PerObjectData UnityEngine.Rendering.DrawingSettings::m_PerObjectData
int32_t ___m_PerObjectData_3;
// UnityEngine.Rendering.DrawRendererFlags UnityEngine.Rendering.DrawingSettings::m_Flags
int32_t ___m_Flags_4;
// System.Int32 UnityEngine.Rendering.DrawingSettings::m_OverrideMaterialInstanceId
int32_t ___m_OverrideMaterialInstanceId_5;
// System.Int32 UnityEngine.Rendering.DrawingSettings::m_OverrideMaterialPassIndex
int32_t ___m_OverrideMaterialPassIndex_6;
// System.Int32 UnityEngine.Rendering.DrawingSettings::m_MainLightIndex
int32_t ___m_MainLightIndex_7;
// System.Int32 UnityEngine.Rendering.DrawingSettings::m_UseSrpBatcher
int32_t ___m_UseSrpBatcher_8;
public:
inline static int32_t get_offset_of_m_SortingSettings_1() { return static_cast<int32_t>(offsetof(DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D, ___m_SortingSettings_1)); }
inline SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29 get_m_SortingSettings_1() const { return ___m_SortingSettings_1; }
inline SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29 * get_address_of_m_SortingSettings_1() { return &___m_SortingSettings_1; }
inline void set_m_SortingSettings_1(SortingSettings_t2F1140C59A0EF4F0C4EAAE9055730B9CBA2ACE29 value)
{
___m_SortingSettings_1 = value;
}
inline static int32_t get_offset_of_shaderPassNames_2() { return static_cast<int32_t>(offsetof(DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D, ___shaderPassNames_2)); }
inline U3CshaderPassNamesU3Ee__FixedBuffer_t90D82EBB68FD984CB8C6D6523258A9C7DC1C0319 get_shaderPassNames_2() const { return ___shaderPassNames_2; }
inline U3CshaderPassNamesU3Ee__FixedBuffer_t90D82EBB68FD984CB8C6D6523258A9C7DC1C0319 * get_address_of_shaderPassNames_2() { return &___shaderPassNames_2; }
inline void set_shaderPassNames_2(U3CshaderPassNamesU3Ee__FixedBuffer_t90D82EBB68FD984CB8C6D6523258A9C7DC1C0319 value)
{
___shaderPassNames_2 = value;
}
inline static int32_t get_offset_of_m_PerObjectData_3() { return static_cast<int32_t>(offsetof(DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D, ___m_PerObjectData_3)); }
inline int32_t get_m_PerObjectData_3() const { return ___m_PerObjectData_3; }
inline int32_t* get_address_of_m_PerObjectData_3() { return &___m_PerObjectData_3; }
inline void set_m_PerObjectData_3(int32_t value)
{
___m_PerObjectData_3 = value;
}
inline static int32_t get_offset_of_m_Flags_4() { return static_cast<int32_t>(offsetof(DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D, ___m_Flags_4)); }
inline int32_t get_m_Flags_4() const { return ___m_Flags_4; }
inline int32_t* get_address_of_m_Flags_4() { return &___m_Flags_4; }
inline void set_m_Flags_4(int32_t value)
{
___m_Flags_4 = value;
}
inline static int32_t get_offset_of_m_OverrideMaterialInstanceId_5() { return static_cast<int32_t>(offsetof(DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D, ___m_OverrideMaterialInstanceId_5)); }
inline int32_t get_m_OverrideMaterialInstanceId_5() const { return ___m_OverrideMaterialInstanceId_5; }
inline int32_t* get_address_of_m_OverrideMaterialInstanceId_5() { return &___m_OverrideMaterialInstanceId_5; }
inline void set_m_OverrideMaterialInstanceId_5(int32_t value)
{
___m_OverrideMaterialInstanceId_5 = value;
}
inline static int32_t get_offset_of_m_OverrideMaterialPassIndex_6() { return static_cast<int32_t>(offsetof(DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D, ___m_OverrideMaterialPassIndex_6)); }
inline int32_t get_m_OverrideMaterialPassIndex_6() const { return ___m_OverrideMaterialPassIndex_6; }
inline int32_t* get_address_of_m_OverrideMaterialPassIndex_6() { return &___m_OverrideMaterialPassIndex_6; }
inline void set_m_OverrideMaterialPassIndex_6(int32_t value)
{
___m_OverrideMaterialPassIndex_6 = value;
}
inline static int32_t get_offset_of_m_MainLightIndex_7() { return static_cast<int32_t>(offsetof(DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D, ___m_MainLightIndex_7)); }
inline int32_t get_m_MainLightIndex_7() const { return ___m_MainLightIndex_7; }
inline int32_t* get_address_of_m_MainLightIndex_7() { return &___m_MainLightIndex_7; }
inline void set_m_MainLightIndex_7(int32_t value)
{
___m_MainLightIndex_7 = value;
}
inline static int32_t get_offset_of_m_UseSrpBatcher_8() { return static_cast<int32_t>(offsetof(DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D, ___m_UseSrpBatcher_8)); }
inline int32_t get_m_UseSrpBatcher_8() const { return ___m_UseSrpBatcher_8; }
inline int32_t* get_address_of_m_UseSrpBatcher_8() { return &___m_UseSrpBatcher_8; }
inline void set_m_UseSrpBatcher_8(int32_t value)
{
___m_UseSrpBatcher_8 = value;
}
};
struct DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D_StaticFields
{
public:
// System.Int32 UnityEngine.Rendering.DrawingSettings::maxShaderPasses
int32_t ___maxShaderPasses_0;
public:
inline static int32_t get_offset_of_maxShaderPasses_0() { return static_cast<int32_t>(offsetof(DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D_StaticFields, ___maxShaderPasses_0)); }
inline int32_t get_maxShaderPasses_0() const { return ___maxShaderPasses_0; }
inline int32_t* get_address_of_maxShaderPasses_0() { return &___maxShaderPasses_0; }
inline void set_maxShaderPasses_0(int32_t value)
{
___maxShaderPasses_0 = value;
}
};
// UnityEngine.Rendering.RenderStateBlock
struct RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE
{
public:
// UnityEngine.Rendering.BlendState UnityEngine.Rendering.RenderStateBlock::m_BlendState
BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC ___m_BlendState_0;
// UnityEngine.Rendering.RasterState UnityEngine.Rendering.RenderStateBlock::m_RasterState
RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E ___m_RasterState_1;
// UnityEngine.Rendering.DepthState UnityEngine.Rendering.RenderStateBlock::m_DepthState
DepthState_t8C699747E66773A90F87252A8E978924050C7F12 ___m_DepthState_2;
// UnityEngine.Rendering.StencilState UnityEngine.Rendering.RenderStateBlock::m_StencilState
StencilState_t46E35B038A8E436BD616755432326977CB3E5E78 ___m_StencilState_3;
// System.Int32 UnityEngine.Rendering.RenderStateBlock::m_StencilReference
int32_t ___m_StencilReference_4;
// UnityEngine.Rendering.RenderStateMask UnityEngine.Rendering.RenderStateBlock::m_Mask
int32_t ___m_Mask_5;
public:
inline static int32_t get_offset_of_m_BlendState_0() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_BlendState_0)); }
inline BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC get_m_BlendState_0() const { return ___m_BlendState_0; }
inline BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC * get_address_of_m_BlendState_0() { return &___m_BlendState_0; }
inline void set_m_BlendState_0(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC value)
{
___m_BlendState_0 = value;
}
inline static int32_t get_offset_of_m_RasterState_1() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_RasterState_1)); }
inline RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E get_m_RasterState_1() const { return ___m_RasterState_1; }
inline RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E * get_address_of_m_RasterState_1() { return &___m_RasterState_1; }
inline void set_m_RasterState_1(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E value)
{
___m_RasterState_1 = value;
}
inline static int32_t get_offset_of_m_DepthState_2() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_DepthState_2)); }
inline DepthState_t8C699747E66773A90F87252A8E978924050C7F12 get_m_DepthState_2() const { return ___m_DepthState_2; }
inline DepthState_t8C699747E66773A90F87252A8E978924050C7F12 * get_address_of_m_DepthState_2() { return &___m_DepthState_2; }
inline void set_m_DepthState_2(DepthState_t8C699747E66773A90F87252A8E978924050C7F12 value)
{
___m_DepthState_2 = value;
}
inline static int32_t get_offset_of_m_StencilState_3() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_StencilState_3)); }
inline StencilState_t46E35B038A8E436BD616755432326977CB3E5E78 get_m_StencilState_3() const { return ___m_StencilState_3; }
inline StencilState_t46E35B038A8E436BD616755432326977CB3E5E78 * get_address_of_m_StencilState_3() { return &___m_StencilState_3; }
inline void set_m_StencilState_3(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78 value)
{
___m_StencilState_3 = value;
}
inline static int32_t get_offset_of_m_StencilReference_4() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_StencilReference_4)); }
inline int32_t get_m_StencilReference_4() const { return ___m_StencilReference_4; }
inline int32_t* get_address_of_m_StencilReference_4() { return &___m_StencilReference_4; }
inline void set_m_StencilReference_4(int32_t value)
{
___m_StencilReference_4 = value;
}
inline static int32_t get_offset_of_m_Mask_5() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_Mask_5)); }
inline int32_t get_m_Mask_5() const { return ___m_Mask_5; }
inline int32_t* get_address_of_m_Mask_5() { return &___m_Mask_5; }
inline void set_m_Mask_5(int32_t value)
{
___m_Mask_5 = value;
}
};
// UnityEngine.Rendering.VolumeComponent
struct VolumeComponent_t333392A1EED68E0227F1B4E974B1AD591BB13753 : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
// System.Boolean UnityEngine.Rendering.VolumeComponent::active
bool ___active_4;
// System.String UnityEngine.Rendering.VolumeComponent::<displayName>k__BackingField
String_t* ___U3CdisplayNameU3Ek__BackingField_5;
// System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Rendering.VolumeParameter> UnityEngine.Rendering.VolumeComponent::<parameters>k__BackingField
ReadOnlyCollection_1_tC1E7A449E4F4B3F50B5D1F3827267CAD5B647A25 * ___U3CparametersU3Ek__BackingField_6;
// System.Boolean UnityEngine.Rendering.VolumeComponent::m_AdvancedMode
bool ___m_AdvancedMode_7;
public:
inline static int32_t get_offset_of_active_4() { return static_cast<int32_t>(offsetof(VolumeComponent_t333392A1EED68E0227F1B4E974B1AD591BB13753, ___active_4)); }
inline bool get_active_4() const { return ___active_4; }
inline bool* get_address_of_active_4() { return &___active_4; }
inline void set_active_4(bool value)
{
___active_4 = value;
}
inline static int32_t get_offset_of_U3CdisplayNameU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(VolumeComponent_t333392A1EED68E0227F1B4E974B1AD591BB13753, ___U3CdisplayNameU3Ek__BackingField_5)); }
inline String_t* get_U3CdisplayNameU3Ek__BackingField_5() const { return ___U3CdisplayNameU3Ek__BackingField_5; }
inline String_t** get_address_of_U3CdisplayNameU3Ek__BackingField_5() { return &___U3CdisplayNameU3Ek__BackingField_5; }
inline void set_U3CdisplayNameU3Ek__BackingField_5(String_t* value)
{
___U3CdisplayNameU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdisplayNameU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CparametersU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(VolumeComponent_t333392A1EED68E0227F1B4E974B1AD591BB13753, ___U3CparametersU3Ek__BackingField_6)); }
inline ReadOnlyCollection_1_tC1E7A449E4F4B3F50B5D1F3827267CAD5B647A25 * get_U3CparametersU3Ek__BackingField_6() const { return ___U3CparametersU3Ek__BackingField_6; }
inline ReadOnlyCollection_1_tC1E7A449E4F4B3F50B5D1F3827267CAD5B647A25 ** get_address_of_U3CparametersU3Ek__BackingField_6() { return &___U3CparametersU3Ek__BackingField_6; }
inline void set_U3CparametersU3Ek__BackingField_6(ReadOnlyCollection_1_tC1E7A449E4F4B3F50B5D1F3827267CAD5B647A25 * value)
{
___U3CparametersU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CparametersU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_m_AdvancedMode_7() { return static_cast<int32_t>(offsetof(VolumeComponent_t333392A1EED68E0227F1B4E974B1AD591BB13753, ___m_AdvancedMode_7)); }
inline bool get_m_AdvancedMode_7() const { return ___m_AdvancedMode_7; }
inline bool* get_address_of_m_AdvancedMode_7() { return &___m_AdvancedMode_7; }
inline void set_m_AdvancedMode_7(bool value)
{
___m_AdvancedMode_7 = value;
}
};
// UnityEngine.Rendering.VolumeProfile
struct VolumeProfile_t337A44A671E93CF2687335B64D6AB1C60EEA34EC : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
// System.Collections.Generic.List`1<UnityEngine.Rendering.VolumeComponent> UnityEngine.Rendering.VolumeProfile::components
List_1_t6A4316C7C3458222B79D67660681E1D27F7B8645 * ___components_4;
// System.Boolean UnityEngine.Rendering.VolumeProfile::isDirty
bool ___isDirty_5;
public:
inline static int32_t get_offset_of_components_4() { return static_cast<int32_t>(offsetof(VolumeProfile_t337A44A671E93CF2687335B64D6AB1C60EEA34EC, ___components_4)); }
inline List_1_t6A4316C7C3458222B79D67660681E1D27F7B8645 * get_components_4() const { return ___components_4; }
inline List_1_t6A4316C7C3458222B79D67660681E1D27F7B8645 ** get_address_of_components_4() { return &___components_4; }
inline void set_components_4(List_1_t6A4316C7C3458222B79D67660681E1D27F7B8645 * value)
{
___components_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___components_4), (void*)value);
}
inline static int32_t get_offset_of_isDirty_5() { return static_cast<int32_t>(offsetof(VolumeProfile_t337A44A671E93CF2687335B64D6AB1C60EEA34EC, ___isDirty_5)); }
inline bool get_isDirty_5() const { return ___isDirty_5; }
inline bool* get_address_of_isDirty_5() { return &___isDirty_5; }
inline void set_isDirty_5(bool value)
{
___isDirty_5 = value;
}
};
// UnityEngine.Texture2D
struct Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C : public Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4
{
public:
public:
};
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastCollectResultsJob
struct PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800
{
public:
// Unity.Collections.NativeSlice`1<UnityEngine.Vector3> UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastCollectResultsJob::points
NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 ___points_0;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastInfo> UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastCollectResultsJob::infos
NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F ___infos_1;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit> UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastCollectResultsJob::hits
NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 ___hits_2;
// Unity.Collections.NativeArray`1<System.Int32> UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastCollectResultsJob::count
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ___count_3;
// System.Single UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastCollectResultsJob::cosineThreshold
float ___cosineThreshold_4;
// UnityEngine.Pose UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastCollectResultsJob::pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___pose_5;
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastCollectResultsJob::trackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___trackableId_6;
public:
inline static int32_t get_offset_of_points_0() { return static_cast<int32_t>(offsetof(PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800, ___points_0)); }
inline NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 get_points_0() const { return ___points_0; }
inline NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 * get_address_of_points_0() { return &___points_0; }
inline void set_points_0(NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 value)
{
___points_0 = value;
}
inline static int32_t get_offset_of_infos_1() { return static_cast<int32_t>(offsetof(PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800, ___infos_1)); }
inline NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F get_infos_1() const { return ___infos_1; }
inline NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F * get_address_of_infos_1() { return &___infos_1; }
inline void set_infos_1(NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F value)
{
___infos_1 = value;
}
inline static int32_t get_offset_of_hits_2() { return static_cast<int32_t>(offsetof(PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800, ___hits_2)); }
inline NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 get_hits_2() const { return ___hits_2; }
inline NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 * get_address_of_hits_2() { return &___hits_2; }
inline void set_hits_2(NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 value)
{
___hits_2 = value;
}
inline static int32_t get_offset_of_count_3() { return static_cast<int32_t>(offsetof(PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800, ___count_3)); }
inline NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF get_count_3() const { return ___count_3; }
inline NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF * get_address_of_count_3() { return &___count_3; }
inline void set_count_3(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF value)
{
___count_3 = value;
}
inline static int32_t get_offset_of_cosineThreshold_4() { return static_cast<int32_t>(offsetof(PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800, ___cosineThreshold_4)); }
inline float get_cosineThreshold_4() const { return ___cosineThreshold_4; }
inline float* get_address_of_cosineThreshold_4() { return &___cosineThreshold_4; }
inline void set_cosineThreshold_4(float value)
{
___cosineThreshold_4 = value;
}
inline static int32_t get_offset_of_pose_5() { return static_cast<int32_t>(offsetof(PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800, ___pose_5)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_pose_5() const { return ___pose_5; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_pose_5() { return &___pose_5; }
inline void set_pose_5(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___pose_5 = value;
}
inline static int32_t get_offset_of_trackableId_6() { return static_cast<int32_t>(offsetof(PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800, ___trackableId_6)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_trackableId_6() const { return ___trackableId_6; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_trackableId_6() { return &___trackableId_6; }
inline void set_trackableId_6(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___trackableId_6 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastCollectResultsJob
struct PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800_marshaled_pinvoke
{
NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 ___points_0;
NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F ___infos_1;
NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 ___hits_2;
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ___count_3;
float ___cosineThreshold_4;
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___pose_5;
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___trackableId_6;
};
// Native definition for COM marshalling of UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastCollectResultsJob
struct PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800_marshaled_com
{
NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 ___points_0;
NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F ___infos_1;
NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 ___hits_2;
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ___count_3;
float ___cosineThreshold_4;
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___pose_5;
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___trackableId_6;
};
// UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastJob
struct PointCloudRaycastJob_t8187276FD1BF0C2443AC32E527990C1975442A8C
{
public:
// Unity.Collections.NativeSlice`1<UnityEngine.Vector3> UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastJob::points
NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 ___points_0;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastInfo> UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastJob::infoOut
NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F ___infoOut_1;
// UnityEngine.Ray UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastJob::ray
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___ray_2;
public:
inline static int32_t get_offset_of_points_0() { return static_cast<int32_t>(offsetof(PointCloudRaycastJob_t8187276FD1BF0C2443AC32E527990C1975442A8C, ___points_0)); }
inline NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 get_points_0() const { return ___points_0; }
inline NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 * get_address_of_points_0() { return &___points_0; }
inline void set_points_0(NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 value)
{
___points_0 = value;
}
inline static int32_t get_offset_of_infoOut_1() { return static_cast<int32_t>(offsetof(PointCloudRaycastJob_t8187276FD1BF0C2443AC32E527990C1975442A8C, ___infoOut_1)); }
inline NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F get_infoOut_1() const { return ___infoOut_1; }
inline NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F * get_address_of_infoOut_1() { return &___infoOut_1; }
inline void set_infoOut_1(NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F value)
{
___infoOut_1 = value;
}
inline static int32_t get_offset_of_ray_2() { return static_cast<int32_t>(offsetof(PointCloudRaycastJob_t8187276FD1BF0C2443AC32E527990C1975442A8C, ___ray_2)); }
inline Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 get_ray_2() const { return ___ray_2; }
inline Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 * get_address_of_ray_2() { return &___ray_2; }
inline void set_ray_2(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 value)
{
___ray_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastJob
struct PointCloudRaycastJob_t8187276FD1BF0C2443AC32E527990C1975442A8C_marshaled_pinvoke
{
NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 ___points_0;
NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F ___infoOut_1;
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___ray_2;
};
// Native definition for COM marshalling of UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastJob
struct PointCloudRaycastJob_t8187276FD1BF0C2443AC32E527990C1975442A8C_marshaled_com
{
NativeSlice_1_t11EBDE608ABB6D874F3EADDD448BE8BA39A54E41 ___points_0;
NativeArray_1_tA80DDB40F373EBFA9AA644D341B3D1362249A11F ___infoOut_1;
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___ray_2;
};
// UnityEngine.XR.ARFoundation.ARRaycastHit
struct ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC
{
public:
// System.Single UnityEngine.XR.ARFoundation.ARRaycastHit::<distance>k__BackingField
float ___U3CdistanceU3Ek__BackingField_0;
// UnityEngine.XR.ARSubsystems.XRRaycastHit UnityEngine.XR.ARFoundation.ARRaycastHit::m_Hit
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 ___m_Hit_1;
// UnityEngine.Transform UnityEngine.XR.ARFoundation.ARRaycastHit::m_Transform
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_Transform_2;
public:
inline static int32_t get_offset_of_U3CdistanceU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC, ___U3CdistanceU3Ek__BackingField_0)); }
inline float get_U3CdistanceU3Ek__BackingField_0() const { return ___U3CdistanceU3Ek__BackingField_0; }
inline float* get_address_of_U3CdistanceU3Ek__BackingField_0() { return &___U3CdistanceU3Ek__BackingField_0; }
inline void set_U3CdistanceU3Ek__BackingField_0(float value)
{
___U3CdistanceU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Hit_1() { return static_cast<int32_t>(offsetof(ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC, ___m_Hit_1)); }
inline XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 get_m_Hit_1() const { return ___m_Hit_1; }
inline XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 * get_address_of_m_Hit_1() { return &___m_Hit_1; }
inline void set_m_Hit_1(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 value)
{
___m_Hit_1 = value;
}
inline static int32_t get_offset_of_m_Transform_2() { return static_cast<int32_t>(offsetof(ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC, ___m_Transform_2)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_Transform_2() const { return ___m_Transform_2; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_Transform_2() { return &___m_Transform_2; }
inline void set_m_Transform_2(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_Transform_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Transform_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARFoundation.ARRaycastHit
struct ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_marshaled_pinvoke
{
float ___U3CdistanceU3Ek__BackingField_0;
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 ___m_Hit_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_Transform_2;
};
// Native definition for COM marshalling of UnityEngine.XR.ARFoundation.ARRaycastHit
struct ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_marshaled_com
{
float ___U3CdistanceU3Ek__BackingField_0;
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 ___m_Hit_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_Transform_2;
};
// UnityEngine.XR.ARFoundation.ARTextureInfo
struct ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0
{
public:
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARFoundation.ARTextureInfo::m_Descriptor
XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD ___m_Descriptor_1;
// UnityEngine.Texture2D UnityEngine.XR.ARFoundation.ARTextureInfo::m_Texture
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___m_Texture_2;
public:
inline static int32_t get_offset_of_m_Descriptor_1() { return static_cast<int32_t>(offsetof(ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0, ___m_Descriptor_1)); }
inline XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD get_m_Descriptor_1() const { return ___m_Descriptor_1; }
inline XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD * get_address_of_m_Descriptor_1() { return &___m_Descriptor_1; }
inline void set_m_Descriptor_1(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD value)
{
___m_Descriptor_1 = value;
}
inline static int32_t get_offset_of_m_Texture_2() { return static_cast<int32_t>(offsetof(ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0, ___m_Texture_2)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_m_Texture_2() const { return ___m_Texture_2; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_m_Texture_2() { return &___m_Texture_2; }
inline void set_m_Texture_2(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___m_Texture_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Texture_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARFoundation.ARTextureInfo
struct ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_marshaled_pinvoke
{
XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD ___m_Descriptor_1;
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___m_Texture_2;
};
// Native definition for COM marshalling of UnityEngine.XR.ARFoundation.ARTextureInfo
struct ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_marshaled_com
{
XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD ___m_Descriptor_1;
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___m_Texture_2;
};
// UnityEngine.XR.ARFoundation.MutableRuntimeReferenceImageLibraryExtensions_DeallocateJob
struct DeallocateJob_t5CF23E1E3DFFAC4FD7D519CCB7359342BC3F607C
{
public:
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.XR.ARFoundation.MutableRuntimeReferenceImageLibraryExtensions_DeallocateJob::data
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 ___data_0;
public:
inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(DeallocateJob_t5CF23E1E3DFFAC4FD7D519CCB7359342BC3F607C, ___data_0)); }
inline NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 get_data_0() const { return ___data_0; }
inline NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 * get_address_of_data_0() { return &___data_0; }
inline void set_data_0(NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 value)
{
___data_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARFoundation.MutableRuntimeReferenceImageLibraryExtensions/DeallocateJob
struct DeallocateJob_t5CF23E1E3DFFAC4FD7D519CCB7359342BC3F607C_marshaled_pinvoke
{
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 ___data_0;
};
// Native definition for COM marshalling of UnityEngine.XR.ARFoundation.MutableRuntimeReferenceImageLibraryExtensions/DeallocateJob
struct DeallocateJob_t5CF23E1E3DFFAC4FD7D519CCB7359342BC3F607C_marshaled_com
{
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 ___data_0;
};
// UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformIndicesJob
struct TransformIndicesJob_t0343F44C820BAF8CDDD88CE9973ED6C7E041FD81
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int16>> UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformIndicesJob::triangleIndicesIn
NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 ___triangleIndicesIn_0;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int32>> UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformIndicesJob::triangleIndicesOut
NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 ___triangleIndicesOut_1;
public:
inline static int32_t get_offset_of_triangleIndicesIn_0() { return static_cast<int32_t>(offsetof(TransformIndicesJob_t0343F44C820BAF8CDDD88CE9973ED6C7E041FD81, ___triangleIndicesIn_0)); }
inline NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 get_triangleIndicesIn_0() const { return ___triangleIndicesIn_0; }
inline NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 * get_address_of_triangleIndicesIn_0() { return &___triangleIndicesIn_0; }
inline void set_triangleIndicesIn_0(NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 value)
{
___triangleIndicesIn_0 = value;
}
inline static int32_t get_offset_of_triangleIndicesOut_1() { return static_cast<int32_t>(offsetof(TransformIndicesJob_t0343F44C820BAF8CDDD88CE9973ED6C7E041FD81, ___triangleIndicesOut_1)); }
inline NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 get_triangleIndicesOut_1() const { return ___triangleIndicesOut_1; }
inline NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 * get_address_of_triangleIndicesOut_1() { return &___triangleIndicesOut_1; }
inline void set_triangleIndicesOut_1(NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 value)
{
___triangleIndicesOut_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARKit.ARKitFaceSubsystem/ARKitProvider/TransformIndicesJob
struct TransformIndicesJob_t0343F44C820BAF8CDDD88CE9973ED6C7E041FD81_marshaled_pinvoke
{
NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 ___triangleIndicesIn_0;
NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 ___triangleIndicesOut_1;
};
// Native definition for COM marshalling of UnityEngine.XR.ARKit.ARKitFaceSubsystem/ARKitProvider/TransformIndicesJob
struct TransformIndicesJob_t0343F44C820BAF8CDDD88CE9973ED6C7E041FD81_marshaled_com
{
NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 ___triangleIndicesIn_0;
NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 ___triangleIndicesOut_1;
};
// UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformUVsJob
struct TransformUVsJob_t6DE90A3353456307A60BDF9A28C6FD37ED0C003A
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Vector2> UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformUVsJob::uvsIn
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___uvsIn_0;
// Unity.Collections.NativeArray`1<UnityEngine.Vector2> UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformUVsJob::uvsOut
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___uvsOut_1;
public:
inline static int32_t get_offset_of_uvsIn_0() { return static_cast<int32_t>(offsetof(TransformUVsJob_t6DE90A3353456307A60BDF9A28C6FD37ED0C003A, ___uvsIn_0)); }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 get_uvsIn_0() const { return ___uvsIn_0; }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 * get_address_of_uvsIn_0() { return &___uvsIn_0; }
inline void set_uvsIn_0(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 value)
{
___uvsIn_0 = value;
}
inline static int32_t get_offset_of_uvsOut_1() { return static_cast<int32_t>(offsetof(TransformUVsJob_t6DE90A3353456307A60BDF9A28C6FD37ED0C003A, ___uvsOut_1)); }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 get_uvsOut_1() const { return ___uvsOut_1; }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 * get_address_of_uvsOut_1() { return &___uvsOut_1; }
inline void set_uvsOut_1(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 value)
{
___uvsOut_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARKit.ARKitFaceSubsystem/ARKitProvider/TransformUVsJob
struct TransformUVsJob_t6DE90A3353456307A60BDF9A28C6FD37ED0C003A_marshaled_pinvoke
{
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___uvsIn_0;
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___uvsOut_1;
};
// Native definition for COM marshalling of UnityEngine.XR.ARKit.ARKitFaceSubsystem/ARKitProvider/TransformUVsJob
struct TransformUVsJob_t6DE90A3353456307A60BDF9A28C6FD37ED0C003A_marshaled_com
{
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___uvsIn_0;
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___uvsOut_1;
};
// UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformVerticesJob
struct TransformVerticesJob_t9465EFCD14CC37F13A15C0055F4B76E027A6319D
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Vector4> UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformVerticesJob::verticesIn
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 ___verticesIn_0;
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformVerticesJob::verticesOut
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___verticesOut_1;
public:
inline static int32_t get_offset_of_verticesIn_0() { return static_cast<int32_t>(offsetof(TransformVerticesJob_t9465EFCD14CC37F13A15C0055F4B76E027A6319D, ___verticesIn_0)); }
inline NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 get_verticesIn_0() const { return ___verticesIn_0; }
inline NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 * get_address_of_verticesIn_0() { return &___verticesIn_0; }
inline void set_verticesIn_0(NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 value)
{
___verticesIn_0 = value;
}
inline static int32_t get_offset_of_verticesOut_1() { return static_cast<int32_t>(offsetof(TransformVerticesJob_t9465EFCD14CC37F13A15C0055F4B76E027A6319D, ___verticesOut_1)); }
inline NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 get_verticesOut_1() const { return ___verticesOut_1; }
inline NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 * get_address_of_verticesOut_1() { return &___verticesOut_1; }
inline void set_verticesOut_1(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 value)
{
___verticesOut_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARKit.ARKitFaceSubsystem/ARKitProvider/TransformVerticesJob
struct TransformVerticesJob_t9465EFCD14CC37F13A15C0055F4B76E027A6319D_marshaled_pinvoke
{
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 ___verticesIn_0;
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___verticesOut_1;
};
// Native definition for COM marshalling of UnityEngine.XR.ARKit.ARKitFaceSubsystem/ARKitProvider/TransformVerticesJob
struct TransformVerticesJob_t9465EFCD14CC37F13A15C0055F4B76E027A6319D_marshaled_com
{
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 ___verticesIn_0;
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___verticesOut_1;
};
// UnityEngine.XR.ARKit.ARKitImageDatabase_DeallocateNativeArrayJob`1<System.Byte>
struct DeallocateNativeArrayJob_1_t59DBA0C9BBC893D25CDD20316BE2D44BCF0BEE5A
{
public:
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARKit.ARKitImageDatabase_DeallocateNativeArrayJob`1::array
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 ___array_0;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(DeallocateNativeArrayJob_1_t59DBA0C9BBC893D25CDD20316BE2D44BCF0BEE5A, ___array_0)); }
inline NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 get_array_0() const { return ___array_0; }
inline NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 * get_address_of_array_0() { return &___array_0; }
inline void set_array_0(NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 value)
{
___array_0 = value;
}
};
// UnityEngine.XR.ARKit.ARKitXRDepthSubsystem_TransformPositionsJob
struct TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Quaternion> UnityEngine.XR.ARKit.ARKitXRDepthSubsystem_TransformPositionsJob::positionsIn
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 ___positionsIn_0;
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARKit.ARKitXRDepthSubsystem_TransformPositionsJob::positionsOut
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___positionsOut_1;
public:
inline static int32_t get_offset_of_positionsIn_0() { return static_cast<int32_t>(offsetof(TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283, ___positionsIn_0)); }
inline NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 get_positionsIn_0() const { return ___positionsIn_0; }
inline NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 * get_address_of_positionsIn_0() { return &___positionsIn_0; }
inline void set_positionsIn_0(NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 value)
{
___positionsIn_0 = value;
}
inline static int32_t get_offset_of_positionsOut_1() { return static_cast<int32_t>(offsetof(TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283, ___positionsOut_1)); }
inline NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 get_positionsOut_1() const { return ___positionsOut_1; }
inline NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 * get_address_of_positionsOut_1() { return &___positionsOut_1; }
inline void set_positionsOut_1(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 value)
{
___positionsOut_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARKit.ARKitXRDepthSubsystem/TransformPositionsJob
struct TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283_marshaled_pinvoke
{
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 ___positionsIn_0;
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___positionsOut_1;
};
// Native definition for COM marshalling of UnityEngine.XR.ARKit.ARKitXRDepthSubsystem/TransformPositionsJob
struct TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283_marshaled_com
{
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 ___positionsIn_0;
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___positionsOut_1;
};
// UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_ARKitProvider_FlipBoundaryWindingJob
struct FlipBoundaryWindingJob_t5FB548E1D853A28EE666EC1E24E5D3D213B7247B
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Vector2> UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_ARKitProvider_FlipBoundaryWindingJob::positions
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positions_0;
public:
inline static int32_t get_offset_of_positions_0() { return static_cast<int32_t>(offsetof(FlipBoundaryWindingJob_t5FB548E1D853A28EE666EC1E24E5D3D213B7247B, ___positions_0)); }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 get_positions_0() const { return ___positions_0; }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 * get_address_of_positions_0() { return &___positions_0; }
inline void set_positions_0(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 value)
{
___positions_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem/ARKitProvider/FlipBoundaryWindingJob
struct FlipBoundaryWindingJob_t5FB548E1D853A28EE666EC1E24E5D3D213B7247B_marshaled_pinvoke
{
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positions_0;
};
// Native definition for COM marshalling of UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem/ARKitProvider/FlipBoundaryWindingJob
struct FlipBoundaryWindingJob_t5FB548E1D853A28EE666EC1E24E5D3D213B7247B_marshaled_com
{
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positions_0;
};
// UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_ARKitProvider_TransformBoundaryPositionsJob
struct TransformBoundaryPositionsJob_t1AEFA76DC77740E7CA334DC8C60612BF6D6FA872
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Vector4> UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_ARKitProvider_TransformBoundaryPositionsJob::positionsIn
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 ___positionsIn_0;
// Unity.Collections.NativeArray`1<UnityEngine.Vector2> UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_ARKitProvider_TransformBoundaryPositionsJob::positionsOut
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positionsOut_1;
public:
inline static int32_t get_offset_of_positionsIn_0() { return static_cast<int32_t>(offsetof(TransformBoundaryPositionsJob_t1AEFA76DC77740E7CA334DC8C60612BF6D6FA872, ___positionsIn_0)); }
inline NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 get_positionsIn_0() const { return ___positionsIn_0; }
inline NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 * get_address_of_positionsIn_0() { return &___positionsIn_0; }
inline void set_positionsIn_0(NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 value)
{
___positionsIn_0 = value;
}
inline static int32_t get_offset_of_positionsOut_1() { return static_cast<int32_t>(offsetof(TransformBoundaryPositionsJob_t1AEFA76DC77740E7CA334DC8C60612BF6D6FA872, ___positionsOut_1)); }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 get_positionsOut_1() const { return ___positionsOut_1; }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 * get_address_of_positionsOut_1() { return &___positionsOut_1; }
inline void set_positionsOut_1(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 value)
{
___positionsOut_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem/ARKitProvider/TransformBoundaryPositionsJob
struct TransformBoundaryPositionsJob_t1AEFA76DC77740E7CA334DC8C60612BF6D6FA872_marshaled_pinvoke
{
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 ___positionsIn_0;
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positionsOut_1;
};
// Native definition for COM marshalling of UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem/ARKitProvider/TransformBoundaryPositionsJob
struct TransformBoundaryPositionsJob_t1AEFA76DC77740E7CA334DC8C60612BF6D6FA872_marshaled_com
{
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 ___positionsIn_0;
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positionsOut_1;
};
// UnityEngine.XR.ARSubsystems.XREnvironmentProbe
struct XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TrackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_TrackableId_1;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Scale
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Scale_2;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_3;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Size
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Size_4;
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TextureDescriptor
XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD ___m_TextureDescriptor_5;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TrackingState
int32_t ___m_TrackingState_6;
// System.IntPtr UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_NativePtr
intptr_t ___m_NativePtr_7;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2, ___m_TrackableId_1)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_Scale_2() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2, ___m_Scale_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Scale_2() const { return ___m_Scale_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Scale_2() { return &___m_Scale_2; }
inline void set_m_Scale_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Scale_2 = value;
}
inline static int32_t get_offset_of_m_Pose_3() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2, ___m_Pose_3)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_3() const { return ___m_Pose_3; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_3() { return &___m_Pose_3; }
inline void set_m_Pose_3(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_3 = value;
}
inline static int32_t get_offset_of_m_Size_4() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2, ___m_Size_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Size_4() const { return ___m_Size_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Size_4() { return &___m_Size_4; }
inline void set_m_Size_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Size_4 = value;
}
inline static int32_t get_offset_of_m_TextureDescriptor_5() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2, ___m_TextureDescriptor_5)); }
inline XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD get_m_TextureDescriptor_5() const { return ___m_TextureDescriptor_5; }
inline XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD * get_address_of_m_TextureDescriptor_5() { return &___m_TextureDescriptor_5; }
inline void set_m_TextureDescriptor_5(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD value)
{
___m_TextureDescriptor_5 = value;
}
inline static int32_t get_offset_of_m_TrackingState_6() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2, ___m_TrackingState_6)); }
inline int32_t get_m_TrackingState_6() const { return ___m_TrackingState_6; }
inline int32_t* get_address_of_m_TrackingState_6() { return &___m_TrackingState_6; }
inline void set_m_TrackingState_6(int32_t value)
{
___m_TrackingState_6 = value;
}
inline static int32_t get_offset_of_m_NativePtr_7() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2, ___m_NativePtr_7)); }
inline intptr_t get_m_NativePtr_7() const { return ___m_NativePtr_7; }
inline intptr_t* get_address_of_m_NativePtr_7() { return &___m_NativePtr_7; }
inline void set_m_NativePtr_7(intptr_t value)
{
___m_NativePtr_7 = value;
}
};
struct XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XREnvironmentProbe UnityEngine.XR.ARSubsystems.XREnvironmentProbe::s_Default
XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_StaticFields, ___s_Default_0)); }
inline XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 get_s_Default_0() const { return ___s_Default_0; }
inline XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRFaceMesh
struct XRFaceMesh_t38421E2A79DE93B8DA04E111E8FC82DDBCC74B84
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARSubsystems.XRFaceMesh::m_Vertices
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___m_Vertices_0;
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARSubsystems.XRFaceMesh::m_Normals
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___m_Normals_1;
// Unity.Collections.NativeArray`1<System.Int32> UnityEngine.XR.ARSubsystems.XRFaceMesh::m_Indices
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ___m_Indices_2;
// Unity.Collections.NativeArray`1<UnityEngine.Vector2> UnityEngine.XR.ARSubsystems.XRFaceMesh::m_UVs
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___m_UVs_3;
public:
inline static int32_t get_offset_of_m_Vertices_0() { return static_cast<int32_t>(offsetof(XRFaceMesh_t38421E2A79DE93B8DA04E111E8FC82DDBCC74B84, ___m_Vertices_0)); }
inline NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 get_m_Vertices_0() const { return ___m_Vertices_0; }
inline NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 * get_address_of_m_Vertices_0() { return &___m_Vertices_0; }
inline void set_m_Vertices_0(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 value)
{
___m_Vertices_0 = value;
}
inline static int32_t get_offset_of_m_Normals_1() { return static_cast<int32_t>(offsetof(XRFaceMesh_t38421E2A79DE93B8DA04E111E8FC82DDBCC74B84, ___m_Normals_1)); }
inline NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 get_m_Normals_1() const { return ___m_Normals_1; }
inline NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 * get_address_of_m_Normals_1() { return &___m_Normals_1; }
inline void set_m_Normals_1(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 value)
{
___m_Normals_1 = value;
}
inline static int32_t get_offset_of_m_Indices_2() { return static_cast<int32_t>(offsetof(XRFaceMesh_t38421E2A79DE93B8DA04E111E8FC82DDBCC74B84, ___m_Indices_2)); }
inline NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF get_m_Indices_2() const { return ___m_Indices_2; }
inline NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF * get_address_of_m_Indices_2() { return &___m_Indices_2; }
inline void set_m_Indices_2(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF value)
{
___m_Indices_2 = value;
}
inline static int32_t get_offset_of_m_UVs_3() { return static_cast<int32_t>(offsetof(XRFaceMesh_t38421E2A79DE93B8DA04E111E8FC82DDBCC74B84, ___m_UVs_3)); }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 get_m_UVs_3() const { return ___m_UVs_3; }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 * get_address_of_m_UVs_3() { return &___m_UVs_3; }
inline void set_m_UVs_3(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 value)
{
___m_UVs_3 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRFaceMesh
struct XRFaceMesh_t38421E2A79DE93B8DA04E111E8FC82DDBCC74B84_marshaled_pinvoke
{
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___m_Vertices_0;
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___m_Normals_1;
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ___m_Indices_2;
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___m_UVs_3;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRFaceMesh
struct XRFaceMesh_t38421E2A79DE93B8DA04E111E8FC82DDBCC74B84_marshaled_com
{
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___m_Vertices_0;
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___m_Normals_1;
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ___m_Indices_2;
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___m_UVs_3;
};
// UnityEngine.XR.Management.XRLoader
struct XRLoader_t2574091AF57F902BF504098AB113416E8D15186A : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
public:
};
// UnityEngine.XR.Management.XRManagerSettings
struct XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5 : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
// System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_InitializationComplete
bool ___m_InitializationComplete_4;
// System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_RequiresSettingsUpdate
bool ___m_RequiresSettingsUpdate_5;
// System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_AutomaticLoading
bool ___m_AutomaticLoading_6;
// System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_AutomaticRunning
bool ___m_AutomaticRunning_7;
// System.Collections.Generic.List`1<UnityEngine.XR.Management.XRLoader> UnityEngine.XR.Management.XRManagerSettings::m_Loaders
List_1_t358A375827DE759C632FEC77C83FEE87CCE55529 * ___m_Loaders_8;
public:
inline static int32_t get_offset_of_m_InitializationComplete_4() { return static_cast<int32_t>(offsetof(XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5, ___m_InitializationComplete_4)); }
inline bool get_m_InitializationComplete_4() const { return ___m_InitializationComplete_4; }
inline bool* get_address_of_m_InitializationComplete_4() { return &___m_InitializationComplete_4; }
inline void set_m_InitializationComplete_4(bool value)
{
___m_InitializationComplete_4 = value;
}
inline static int32_t get_offset_of_m_RequiresSettingsUpdate_5() { return static_cast<int32_t>(offsetof(XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5, ___m_RequiresSettingsUpdate_5)); }
inline bool get_m_RequiresSettingsUpdate_5() const { return ___m_RequiresSettingsUpdate_5; }
inline bool* get_address_of_m_RequiresSettingsUpdate_5() { return &___m_RequiresSettingsUpdate_5; }
inline void set_m_RequiresSettingsUpdate_5(bool value)
{
___m_RequiresSettingsUpdate_5 = value;
}
inline static int32_t get_offset_of_m_AutomaticLoading_6() { return static_cast<int32_t>(offsetof(XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5, ___m_AutomaticLoading_6)); }
inline bool get_m_AutomaticLoading_6() const { return ___m_AutomaticLoading_6; }
inline bool* get_address_of_m_AutomaticLoading_6() { return &___m_AutomaticLoading_6; }
inline void set_m_AutomaticLoading_6(bool value)
{
___m_AutomaticLoading_6 = value;
}
inline static int32_t get_offset_of_m_AutomaticRunning_7() { return static_cast<int32_t>(offsetof(XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5, ___m_AutomaticRunning_7)); }
inline bool get_m_AutomaticRunning_7() const { return ___m_AutomaticRunning_7; }
inline bool* get_address_of_m_AutomaticRunning_7() { return &___m_AutomaticRunning_7; }
inline void set_m_AutomaticRunning_7(bool value)
{
___m_AutomaticRunning_7 = value;
}
inline static int32_t get_offset_of_m_Loaders_8() { return static_cast<int32_t>(offsetof(XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5, ___m_Loaders_8)); }
inline List_1_t358A375827DE759C632FEC77C83FEE87CCE55529 * get_m_Loaders_8() const { return ___m_Loaders_8; }
inline List_1_t358A375827DE759C632FEC77C83FEE87CCE55529 ** get_address_of_m_Loaders_8() { return &___m_Loaders_8; }
inline void set_m_Loaders_8(List_1_t358A375827DE759C632FEC77C83FEE87CCE55529 * value)
{
___m_Loaders_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Loaders_8), (void*)value);
}
};
struct XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5_StaticFields
{
public:
// UnityEngine.XR.Management.XRLoader UnityEngine.XR.Management.XRManagerSettings::s_ActiveLoader
XRLoader_t2574091AF57F902BF504098AB113416E8D15186A * ___s_ActiveLoader_9;
public:
inline static int32_t get_offset_of_s_ActiveLoader_9() { return static_cast<int32_t>(offsetof(XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5_StaticFields, ___s_ActiveLoader_9)); }
inline XRLoader_t2574091AF57F902BF504098AB113416E8D15186A * get_s_ActiveLoader_9() const { return ___s_ActiveLoader_9; }
inline XRLoader_t2574091AF57F902BF504098AB113416E8D15186A ** get_address_of_s_ActiveLoader_9() { return &___s_ActiveLoader_9; }
inline void set_s_ActiveLoader_9(XRLoader_t2574091AF57F902BF504098AB113416E8D15186A * value)
{
___s_ActiveLoader_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ActiveLoader_9), (void*)value);
}
};
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_19;
public:
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value);
}
};
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_18;
public:
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value);
}
};
// System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>
struct Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE
{
public:
// T System.Nullable`1::value
RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE, ___value_0)); }
inline RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE get_value_0() const { return ___value_0; }
inline RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass`1<System.Object>
struct RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 : public RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035
{
public:
// PassData UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass`1::data
RuntimeObject * ___data_10;
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderFunc`1<PassData> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass`1::renderFunc
RenderFunc_1_t6963E4F494F441886F42D47BFB357196C662DDB7 * ___renderFunc_11;
public:
inline static int32_t get_offset_of_data_10() { return static_cast<int32_t>(offsetof(RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8, ___data_10)); }
inline RuntimeObject * get_data_10() const { return ___data_10; }
inline RuntimeObject ** get_address_of_data_10() { return &___data_10; }
inline void set_data_10(RuntimeObject * value)
{
___data_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_10), (void*)value);
}
inline static int32_t get_offset_of_renderFunc_11() { return static_cast<int32_t>(offsetof(RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8, ___renderFunc_11)); }
inline RenderFunc_1_t6963E4F494F441886F42D47BFB357196C662DDB7 * get_renderFunc_11() const { return ___renderFunc_11; }
inline RenderFunc_1_t6963E4F494F441886F42D47BFB357196C662DDB7 ** get_address_of_renderFunc_11() { return &___renderFunc_11; }
inline void set_renderFunc_11(RenderFunc_1_t6963E4F494F441886F42D47BFB357196C662DDB7 * value)
{
___renderFunc_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___renderFunc_11), (void*)value);
}
};
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
// UnityEngine.XR.Management.XRLoaderHelper
struct XRLoaderHelper_tD0931FCDC2CEA47D2C4F81741FCC7EE65C8DB0C3 : public XRLoader_t2574091AF57F902BF504098AB113416E8D15186A
{
public:
// System.Collections.Generic.Dictionary`2<System.Type,UnityEngine.ISubsystem> UnityEngine.XR.Management.XRLoaderHelper::m_SubsystemInstanceMap
Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86 * ___m_SubsystemInstanceMap_4;
public:
inline static int32_t get_offset_of_m_SubsystemInstanceMap_4() { return static_cast<int32_t>(offsetof(XRLoaderHelper_tD0931FCDC2CEA47D2C4F81741FCC7EE65C8DB0C3, ___m_SubsystemInstanceMap_4)); }
inline Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86 * get_m_SubsystemInstanceMap_4() const { return ___m_SubsystemInstanceMap_4; }
inline Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86 ** get_address_of_m_SubsystemInstanceMap_4() { return &___m_SubsystemInstanceMap_4; }
inline void set_m_SubsystemInstanceMap_4(Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86 * value)
{
___m_SubsystemInstanceMap_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SubsystemInstanceMap_4), (void*)value);
}
};
// UnityEngine.EventSystems.UIBehaviour
struct UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
public:
};
// UnityEngine.Experimental.Rendering.RendererList
struct RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB
{
public:
// System.Boolean UnityEngine.Experimental.Rendering.RendererList::<isValid>k__BackingField
bool ___U3CisValidU3Ek__BackingField_2;
// UnityEngine.Rendering.CullingResults UnityEngine.Experimental.Rendering.RendererList::cullingResult
CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B ___cullingResult_3;
// UnityEngine.Rendering.DrawingSettings UnityEngine.Experimental.Rendering.RendererList::drawSettings
DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D ___drawSettings_4;
// UnityEngine.Rendering.FilteringSettings UnityEngine.Experimental.Rendering.RendererList::filteringSettings
FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD ___filteringSettings_5;
// System.Nullable`1<UnityEngine.Rendering.RenderStateBlock> UnityEngine.Experimental.Rendering.RendererList::stateBlock
Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE ___stateBlock_6;
public:
inline static int32_t get_offset_of_U3CisValidU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB, ___U3CisValidU3Ek__BackingField_2)); }
inline bool get_U3CisValidU3Ek__BackingField_2() const { return ___U3CisValidU3Ek__BackingField_2; }
inline bool* get_address_of_U3CisValidU3Ek__BackingField_2() { return &___U3CisValidU3Ek__BackingField_2; }
inline void set_U3CisValidU3Ek__BackingField_2(bool value)
{
___U3CisValidU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_cullingResult_3() { return static_cast<int32_t>(offsetof(RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB, ___cullingResult_3)); }
inline CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B get_cullingResult_3() const { return ___cullingResult_3; }
inline CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B * get_address_of_cullingResult_3() { return &___cullingResult_3; }
inline void set_cullingResult_3(CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B value)
{
___cullingResult_3 = value;
}
inline static int32_t get_offset_of_drawSettings_4() { return static_cast<int32_t>(offsetof(RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB, ___drawSettings_4)); }
inline DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D get_drawSettings_4() const { return ___drawSettings_4; }
inline DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D * get_address_of_drawSettings_4() { return &___drawSettings_4; }
inline void set_drawSettings_4(DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D value)
{
___drawSettings_4 = value;
}
inline static int32_t get_offset_of_filteringSettings_5() { return static_cast<int32_t>(offsetof(RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB, ___filteringSettings_5)); }
inline FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD get_filteringSettings_5() const { return ___filteringSettings_5; }
inline FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD * get_address_of_filteringSettings_5() { return &___filteringSettings_5; }
inline void set_filteringSettings_5(FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD value)
{
___filteringSettings_5 = value;
}
inline static int32_t get_offset_of_stateBlock_6() { return static_cast<int32_t>(offsetof(RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB, ___stateBlock_6)); }
inline Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE get_stateBlock_6() const { return ___stateBlock_6; }
inline Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE * get_address_of_stateBlock_6() { return &___stateBlock_6; }
inline void set_stateBlock_6(Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE value)
{
___stateBlock_6 = value;
}
};
struct RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB_StaticFields
{
public:
// UnityEngine.Rendering.ShaderTagId UnityEngine.Experimental.Rendering.RendererList::s_EmptyName
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 ___s_EmptyName_0;
// UnityEngine.Experimental.Rendering.RendererList UnityEngine.Experimental.Rendering.RendererList::nullRendererList
RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB ___nullRendererList_1;
public:
inline static int32_t get_offset_of_s_EmptyName_0() { return static_cast<int32_t>(offsetof(RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB_StaticFields, ___s_EmptyName_0)); }
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 get_s_EmptyName_0() const { return ___s_EmptyName_0; }
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 * get_address_of_s_EmptyName_0() { return &___s_EmptyName_0; }
inline void set_s_EmptyName_0(ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 value)
{
___s_EmptyName_0 = value;
}
inline static int32_t get_offset_of_nullRendererList_1() { return static_cast<int32_t>(offsetof(RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB_StaticFields, ___nullRendererList_1)); }
inline RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB get_nullRendererList_1() const { return ___nullRendererList_1; }
inline RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB * get_address_of_nullRendererList_1() { return &___nullRendererList_1; }
inline void set_nullRendererList_1(RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB value)
{
___nullRendererList_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.RendererList
struct RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB_marshaled_pinvoke
{
int32_t ___U3CisValidU3Ek__BackingField_2;
CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B ___cullingResult_3;
DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D ___drawSettings_4;
FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD ___filteringSettings_5;
Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE ___stateBlock_6;
};
// Native definition for COM marshalling of UnityEngine.Experimental.Rendering.RendererList
struct RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB_marshaled_com
{
int32_t ___U3CisValidU3Ek__BackingField_2;
CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B ___cullingResult_3;
DrawingSettings_t9D6742A00F6A40C3E9860F0CD30951C50D31597D ___drawSettings_4;
FilteringSettings_t9F1C283370F68129A5F18A152C4963F99EACE7DD ___filteringSettings_5;
Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE ___stateBlock_6;
};
// UnityEngine.Experimental.Rendering.RendererListDesc
struct RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F
{
public:
// UnityEngine.Rendering.SortingCriteria UnityEngine.Experimental.Rendering.RendererListDesc::sortingCriteria
int32_t ___sortingCriteria_0;
// UnityEngine.Rendering.PerObjectData UnityEngine.Experimental.Rendering.RendererListDesc::rendererConfiguration
int32_t ___rendererConfiguration_1;
// UnityEngine.Rendering.RenderQueueRange UnityEngine.Experimental.Rendering.RendererListDesc::renderQueueRange
RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A ___renderQueueRange_2;
// System.Nullable`1<UnityEngine.Rendering.RenderStateBlock> UnityEngine.Experimental.Rendering.RendererListDesc::stateBlock
Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE ___stateBlock_3;
// UnityEngine.Material UnityEngine.Experimental.Rendering.RendererListDesc::overrideMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___overrideMaterial_4;
// System.Boolean UnityEngine.Experimental.Rendering.RendererListDesc::excludeObjectMotionVectors
bool ___excludeObjectMotionVectors_5;
// System.Int32 UnityEngine.Experimental.Rendering.RendererListDesc::layerMask
int32_t ___layerMask_6;
// System.Int32 UnityEngine.Experimental.Rendering.RendererListDesc::overrideMaterialPassIndex
int32_t ___overrideMaterialPassIndex_7;
// UnityEngine.Rendering.CullingResults UnityEngine.Experimental.Rendering.RendererListDesc::<cullingResult>k__BackingField
CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B ___U3CcullingResultU3Ek__BackingField_8;
// UnityEngine.Camera UnityEngine.Experimental.Rendering.RendererListDesc::<camera>k__BackingField
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___U3CcameraU3Ek__BackingField_9;
// UnityEngine.Rendering.ShaderTagId UnityEngine.Experimental.Rendering.RendererListDesc::<passName>k__BackingField
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 ___U3CpassNameU3Ek__BackingField_10;
// UnityEngine.Rendering.ShaderTagId[] UnityEngine.Experimental.Rendering.RendererListDesc::<passNames>k__BackingField
ShaderTagIdU5BU5D_tFA48D4C6A2EF95AF0BF3EEB90B9719F0154CBEF0* ___U3CpassNamesU3Ek__BackingField_11;
public:
inline static int32_t get_offset_of_sortingCriteria_0() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___sortingCriteria_0)); }
inline int32_t get_sortingCriteria_0() const { return ___sortingCriteria_0; }
inline int32_t* get_address_of_sortingCriteria_0() { return &___sortingCriteria_0; }
inline void set_sortingCriteria_0(int32_t value)
{
___sortingCriteria_0 = value;
}
inline static int32_t get_offset_of_rendererConfiguration_1() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___rendererConfiguration_1)); }
inline int32_t get_rendererConfiguration_1() const { return ___rendererConfiguration_1; }
inline int32_t* get_address_of_rendererConfiguration_1() { return &___rendererConfiguration_1; }
inline void set_rendererConfiguration_1(int32_t value)
{
___rendererConfiguration_1 = value;
}
inline static int32_t get_offset_of_renderQueueRange_2() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___renderQueueRange_2)); }
inline RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A get_renderQueueRange_2() const { return ___renderQueueRange_2; }
inline RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A * get_address_of_renderQueueRange_2() { return &___renderQueueRange_2; }
inline void set_renderQueueRange_2(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A value)
{
___renderQueueRange_2 = value;
}
inline static int32_t get_offset_of_stateBlock_3() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___stateBlock_3)); }
inline Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE get_stateBlock_3() const { return ___stateBlock_3; }
inline Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE * get_address_of_stateBlock_3() { return &___stateBlock_3; }
inline void set_stateBlock_3(Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE value)
{
___stateBlock_3 = value;
}
inline static int32_t get_offset_of_overrideMaterial_4() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___overrideMaterial_4)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_overrideMaterial_4() const { return ___overrideMaterial_4; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_overrideMaterial_4() { return &___overrideMaterial_4; }
inline void set_overrideMaterial_4(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___overrideMaterial_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___overrideMaterial_4), (void*)value);
}
inline static int32_t get_offset_of_excludeObjectMotionVectors_5() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___excludeObjectMotionVectors_5)); }
inline bool get_excludeObjectMotionVectors_5() const { return ___excludeObjectMotionVectors_5; }
inline bool* get_address_of_excludeObjectMotionVectors_5() { return &___excludeObjectMotionVectors_5; }
inline void set_excludeObjectMotionVectors_5(bool value)
{
___excludeObjectMotionVectors_5 = value;
}
inline static int32_t get_offset_of_layerMask_6() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___layerMask_6)); }
inline int32_t get_layerMask_6() const { return ___layerMask_6; }
inline int32_t* get_address_of_layerMask_6() { return &___layerMask_6; }
inline void set_layerMask_6(int32_t value)
{
___layerMask_6 = value;
}
inline static int32_t get_offset_of_overrideMaterialPassIndex_7() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___overrideMaterialPassIndex_7)); }
inline int32_t get_overrideMaterialPassIndex_7() const { return ___overrideMaterialPassIndex_7; }
inline int32_t* get_address_of_overrideMaterialPassIndex_7() { return &___overrideMaterialPassIndex_7; }
inline void set_overrideMaterialPassIndex_7(int32_t value)
{
___overrideMaterialPassIndex_7 = value;
}
inline static int32_t get_offset_of_U3CcullingResultU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___U3CcullingResultU3Ek__BackingField_8)); }
inline CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B get_U3CcullingResultU3Ek__BackingField_8() const { return ___U3CcullingResultU3Ek__BackingField_8; }
inline CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B * get_address_of_U3CcullingResultU3Ek__BackingField_8() { return &___U3CcullingResultU3Ek__BackingField_8; }
inline void set_U3CcullingResultU3Ek__BackingField_8(CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B value)
{
___U3CcullingResultU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CcameraU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___U3CcameraU3Ek__BackingField_9)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_U3CcameraU3Ek__BackingField_9() const { return ___U3CcameraU3Ek__BackingField_9; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_U3CcameraU3Ek__BackingField_9() { return &___U3CcameraU3Ek__BackingField_9; }
inline void set_U3CcameraU3Ek__BackingField_9(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___U3CcameraU3Ek__BackingField_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CcameraU3Ek__BackingField_9), (void*)value);
}
inline static int32_t get_offset_of_U3CpassNameU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___U3CpassNameU3Ek__BackingField_10)); }
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 get_U3CpassNameU3Ek__BackingField_10() const { return ___U3CpassNameU3Ek__BackingField_10; }
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 * get_address_of_U3CpassNameU3Ek__BackingField_10() { return &___U3CpassNameU3Ek__BackingField_10; }
inline void set_U3CpassNameU3Ek__BackingField_10(ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 value)
{
___U3CpassNameU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CpassNamesU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F, ___U3CpassNamesU3Ek__BackingField_11)); }
inline ShaderTagIdU5BU5D_tFA48D4C6A2EF95AF0BF3EEB90B9719F0154CBEF0* get_U3CpassNamesU3Ek__BackingField_11() const { return ___U3CpassNamesU3Ek__BackingField_11; }
inline ShaderTagIdU5BU5D_tFA48D4C6A2EF95AF0BF3EEB90B9719F0154CBEF0** get_address_of_U3CpassNamesU3Ek__BackingField_11() { return &___U3CpassNamesU3Ek__BackingField_11; }
inline void set_U3CpassNamesU3Ek__BackingField_11(ShaderTagIdU5BU5D_tFA48D4C6A2EF95AF0BF3EEB90B9719F0154CBEF0* value)
{
___U3CpassNamesU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpassNamesU3Ek__BackingField_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.RendererListDesc
struct RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F_marshaled_pinvoke
{
int32_t ___sortingCriteria_0;
int32_t ___rendererConfiguration_1;
RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A ___renderQueueRange_2;
Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE ___stateBlock_3;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___overrideMaterial_4;
int32_t ___excludeObjectMotionVectors_5;
int32_t ___layerMask_6;
int32_t ___overrideMaterialPassIndex_7;
CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B ___U3CcullingResultU3Ek__BackingField_8;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___U3CcameraU3Ek__BackingField_9;
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 ___U3CpassNameU3Ek__BackingField_10;
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 * ___U3CpassNamesU3Ek__BackingField_11;
};
// Native definition for COM marshalling of UnityEngine.Experimental.Rendering.RendererListDesc
struct RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F_marshaled_com
{
int32_t ___sortingCriteria_0;
int32_t ___rendererConfiguration_1;
RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A ___renderQueueRange_2;
Nullable_1_t18CF488F6DAA576B6B0866F4143EB1E44AA4F0EE ___stateBlock_3;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___overrideMaterial_4;
int32_t ___excludeObjectMotionVectors_5;
int32_t ___layerMask_6;
int32_t ___overrideMaterialPassIndex_7;
CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B ___U3CcullingResultU3Ek__BackingField_8;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___U3CcameraU3Ek__BackingField_9;
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 ___U3CpassNameU3Ek__BackingField_10;
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 * ___U3CpassNamesU3Ek__BackingField_11;
};
// UnityEngine.Rendering.UI.DebugUIHandlerWidget
struct DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Color UnityEngine.Rendering.UI.DebugUIHandlerWidget::colorDefault
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___colorDefault_4;
// UnityEngine.Color UnityEngine.Rendering.UI.DebugUIHandlerWidget::colorSelected
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___colorSelected_5;
// UnityEngine.Rendering.UI.DebugUIHandlerWidget UnityEngine.Rendering.UI.DebugUIHandlerWidget::<parentUIHandler>k__BackingField
DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B * ___U3CparentUIHandlerU3Ek__BackingField_6;
// UnityEngine.Rendering.UI.DebugUIHandlerWidget UnityEngine.Rendering.UI.DebugUIHandlerWidget::<previousUIHandler>k__BackingField
DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B * ___U3CpreviousUIHandlerU3Ek__BackingField_7;
// UnityEngine.Rendering.UI.DebugUIHandlerWidget UnityEngine.Rendering.UI.DebugUIHandlerWidget::<nextUIHandler>k__BackingField
DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B * ___U3CnextUIHandlerU3Ek__BackingField_8;
// UnityEngine.Rendering.DebugUI_Widget UnityEngine.Rendering.UI.DebugUIHandlerWidget::m_Widget
Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1 * ___m_Widget_9;
public:
inline static int32_t get_offset_of_colorDefault_4() { return static_cast<int32_t>(offsetof(DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B, ___colorDefault_4)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_colorDefault_4() const { return ___colorDefault_4; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_colorDefault_4() { return &___colorDefault_4; }
inline void set_colorDefault_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___colorDefault_4 = value;
}
inline static int32_t get_offset_of_colorSelected_5() { return static_cast<int32_t>(offsetof(DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B, ___colorSelected_5)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_colorSelected_5() const { return ___colorSelected_5; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_colorSelected_5() { return &___colorSelected_5; }
inline void set_colorSelected_5(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___colorSelected_5 = value;
}
inline static int32_t get_offset_of_U3CparentUIHandlerU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B, ___U3CparentUIHandlerU3Ek__BackingField_6)); }
inline DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B * get_U3CparentUIHandlerU3Ek__BackingField_6() const { return ___U3CparentUIHandlerU3Ek__BackingField_6; }
inline DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B ** get_address_of_U3CparentUIHandlerU3Ek__BackingField_6() { return &___U3CparentUIHandlerU3Ek__BackingField_6; }
inline void set_U3CparentUIHandlerU3Ek__BackingField_6(DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B * value)
{
___U3CparentUIHandlerU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CparentUIHandlerU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CpreviousUIHandlerU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B, ___U3CpreviousUIHandlerU3Ek__BackingField_7)); }
inline DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B * get_U3CpreviousUIHandlerU3Ek__BackingField_7() const { return ___U3CpreviousUIHandlerU3Ek__BackingField_7; }
inline DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B ** get_address_of_U3CpreviousUIHandlerU3Ek__BackingField_7() { return &___U3CpreviousUIHandlerU3Ek__BackingField_7; }
inline void set_U3CpreviousUIHandlerU3Ek__BackingField_7(DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B * value)
{
___U3CpreviousUIHandlerU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpreviousUIHandlerU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of_U3CnextUIHandlerU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B, ___U3CnextUIHandlerU3Ek__BackingField_8)); }
inline DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B * get_U3CnextUIHandlerU3Ek__BackingField_8() const { return ___U3CnextUIHandlerU3Ek__BackingField_8; }
inline DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B ** get_address_of_U3CnextUIHandlerU3Ek__BackingField_8() { return &___U3CnextUIHandlerU3Ek__BackingField_8; }
inline void set_U3CnextUIHandlerU3Ek__BackingField_8(DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B * value)
{
___U3CnextUIHandlerU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnextUIHandlerU3Ek__BackingField_8), (void*)value);
}
inline static int32_t get_offset_of_m_Widget_9() { return static_cast<int32_t>(offsetof(DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B, ___m_Widget_9)); }
inline Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1 * get_m_Widget_9() const { return ___m_Widget_9; }
inline Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1 ** get_address_of_m_Widget_9() { return &___m_Widget_9; }
inline void set_m_Widget_9(Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1 * value)
{
___m_Widget_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Widget_9), (void*)value);
}
};
// UnityEngine.XR.ARFoundation.ARTrackable`2<UnityEngine.XR.ARSubsystems.XRFace,UnityEngine.XR.ARFoundation.ARFace>
struct ARTrackable_2_tD82405FC40CC95A2EF48E280B48A1FCA87693B1E : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.Boolean UnityEngine.XR.ARFoundation.ARTrackable`2::m_DestroyOnRemoval
bool ___m_DestroyOnRemoval_4;
// System.Boolean UnityEngine.XR.ARFoundation.ARTrackable`2::<pending>k__BackingField
bool ___U3CpendingU3Ek__BackingField_5;
// TSessionRelativeData UnityEngine.XR.ARFoundation.ARTrackable`2::<sessionRelativeData>k__BackingField
XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 ___U3CsessionRelativeDataU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_m_DestroyOnRemoval_4() { return static_cast<int32_t>(offsetof(ARTrackable_2_tD82405FC40CC95A2EF48E280B48A1FCA87693B1E, ___m_DestroyOnRemoval_4)); }
inline bool get_m_DestroyOnRemoval_4() const { return ___m_DestroyOnRemoval_4; }
inline bool* get_address_of_m_DestroyOnRemoval_4() { return &___m_DestroyOnRemoval_4; }
inline void set_m_DestroyOnRemoval_4(bool value)
{
___m_DestroyOnRemoval_4 = value;
}
inline static int32_t get_offset_of_U3CpendingU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(ARTrackable_2_tD82405FC40CC95A2EF48E280B48A1FCA87693B1E, ___U3CpendingU3Ek__BackingField_5)); }
inline bool get_U3CpendingU3Ek__BackingField_5() const { return ___U3CpendingU3Ek__BackingField_5; }
inline bool* get_address_of_U3CpendingU3Ek__BackingField_5() { return &___U3CpendingU3Ek__BackingField_5; }
inline void set_U3CpendingU3Ek__BackingField_5(bool value)
{
___U3CpendingU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsessionRelativeDataU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(ARTrackable_2_tD82405FC40CC95A2EF48E280B48A1FCA87693B1E, ___U3CsessionRelativeDataU3Ek__BackingField_6)); }
inline XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 get_U3CsessionRelativeDataU3Ek__BackingField_6() const { return ___U3CsessionRelativeDataU3Ek__BackingField_6; }
inline XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 * get_address_of_U3CsessionRelativeDataU3Ek__BackingField_6() { return &___U3CsessionRelativeDataU3Ek__BackingField_6; }
inline void set_U3CsessionRelativeDataU3Ek__BackingField_6(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 value)
{
___U3CsessionRelativeDataU3Ek__BackingField_6 = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_RendererListResource
struct RendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2
{
public:
// UnityEngine.Experimental.Rendering.RendererListDesc UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_RendererListResource::desc
RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F ___desc_0;
// UnityEngine.Experimental.Rendering.RendererList UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_RendererListResource::rendererList
RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB ___rendererList_1;
public:
inline static int32_t get_offset_of_desc_0() { return static_cast<int32_t>(offsetof(RendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2, ___desc_0)); }
inline RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F get_desc_0() const { return ___desc_0; }
inline RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F * get_address_of_desc_0() { return &___desc_0; }
inline void set_desc_0(RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F value)
{
___desc_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___desc_0))->___overrideMaterial_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___desc_0))->___U3CcameraU3Ek__BackingField_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___desc_0))->___U3CpassNamesU3Ek__BackingField_11), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_rendererList_1() { return static_cast<int32_t>(offsetof(RendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2, ___rendererList_1)); }
inline RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB get_rendererList_1() const { return ___rendererList_1; }
inline RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB * get_address_of_rendererList_1() { return &___rendererList_1; }
inline void set_rendererList_1(RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB value)
{
___rendererList_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry/RendererListResource
struct RendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2_marshaled_pinvoke
{
RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F_marshaled_pinvoke ___desc_0;
RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB_marshaled_pinvoke ___rendererList_1;
};
// Native definition for COM marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry/RendererListResource
struct RendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2_marshaled_com
{
RendererListDesc_t8EBCC15EEE3ACE662734D96EA43DA86536DD977F_marshaled_com ___desc_0;
RendererList_t1DC535515D0D3CB24AF97A09F16FBDBBBAE33CFB_marshaled_com ___rendererList_1;
};
// UnityEngine.UI.Selectable
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.UI.Navigation UnityEngine.UI.Selectable::m_Navigation
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ___m_Navigation_6;
// UnityEngine.UI.Selectable_Transition UnityEngine.UI.Selectable::m_Transition
int32_t ___m_Transition_7;
// UnityEngine.UI.ColorBlock UnityEngine.UI.Selectable::m_Colors
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___m_Colors_8;
// UnityEngine.UI.SpriteState UnityEngine.UI.Selectable::m_SpriteState
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A ___m_SpriteState_9;
// UnityEngine.UI.AnimationTriggers UnityEngine.UI.Selectable::m_AnimationTriggers
AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * ___m_AnimationTriggers_10;
// System.Boolean UnityEngine.UI.Selectable::m_Interactable
bool ___m_Interactable_11;
// UnityEngine.UI.Graphic UnityEngine.UI.Selectable::m_TargetGraphic
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___m_TargetGraphic_12;
// System.Boolean UnityEngine.UI.Selectable::m_GroupsAllowInteraction
bool ___m_GroupsAllowInteraction_13;
// System.Int32 UnityEngine.UI.Selectable::m_CurrentIndex
int32_t ___m_CurrentIndex_14;
// System.Boolean UnityEngine.UI.Selectable::<isPointerInside>k__BackingField
bool ___U3CisPointerInsideU3Ek__BackingField_15;
// System.Boolean UnityEngine.UI.Selectable::<isPointerDown>k__BackingField
bool ___U3CisPointerDownU3Ek__BackingField_16;
// System.Boolean UnityEngine.UI.Selectable::<hasSelection>k__BackingField
bool ___U3ChasSelectionU3Ek__BackingField_17;
// System.Collections.Generic.List`1<UnityEngine.CanvasGroup> UnityEngine.UI.Selectable::m_CanvasGroupCache
List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 * ___m_CanvasGroupCache_18;
public:
inline static int32_t get_offset_of_m_Navigation_6() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Navigation_6)); }
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 get_m_Navigation_6() const { return ___m_Navigation_6; }
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * get_address_of_m_Navigation_6() { return &___m_Navigation_6; }
inline void set_m_Navigation_6(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 value)
{
___m_Navigation_6 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_6))->___m_SelectOnUp_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_6))->___m_SelectOnDown_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_6))->___m_SelectOnLeft_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_6))->___m_SelectOnRight_4), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_Transition_7() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Transition_7)); }
inline int32_t get_m_Transition_7() const { return ___m_Transition_7; }
inline int32_t* get_address_of_m_Transition_7() { return &___m_Transition_7; }
inline void set_m_Transition_7(int32_t value)
{
___m_Transition_7 = value;
}
inline static int32_t get_offset_of_m_Colors_8() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Colors_8)); }
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA get_m_Colors_8() const { return ___m_Colors_8; }
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * get_address_of_m_Colors_8() { return &___m_Colors_8; }
inline void set_m_Colors_8(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA value)
{
___m_Colors_8 = value;
}
inline static int32_t get_offset_of_m_SpriteState_9() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_SpriteState_9)); }
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A get_m_SpriteState_9() const { return ___m_SpriteState_9; }
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A * get_address_of_m_SpriteState_9() { return &___m_SpriteState_9; }
inline void set_m_SpriteState_9(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A value)
{
___m_SpriteState_9 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_9))->___m_HighlightedSprite_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_9))->___m_PressedSprite_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_9))->___m_SelectedSprite_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_9))->___m_DisabledSprite_3), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_AnimationTriggers_10() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_AnimationTriggers_10)); }
inline AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * get_m_AnimationTriggers_10() const { return ___m_AnimationTriggers_10; }
inline AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 ** get_address_of_m_AnimationTriggers_10() { return &___m_AnimationTriggers_10; }
inline void set_m_AnimationTriggers_10(AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * value)
{
___m_AnimationTriggers_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AnimationTriggers_10), (void*)value);
}
inline static int32_t get_offset_of_m_Interactable_11() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Interactable_11)); }
inline bool get_m_Interactable_11() const { return ___m_Interactable_11; }
inline bool* get_address_of_m_Interactable_11() { return &___m_Interactable_11; }
inline void set_m_Interactable_11(bool value)
{
___m_Interactable_11 = value;
}
inline static int32_t get_offset_of_m_TargetGraphic_12() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_TargetGraphic_12)); }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * get_m_TargetGraphic_12() const { return ___m_TargetGraphic_12; }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 ** get_address_of_m_TargetGraphic_12() { return &___m_TargetGraphic_12; }
inline void set_m_TargetGraphic_12(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * value)
{
___m_TargetGraphic_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TargetGraphic_12), (void*)value);
}
inline static int32_t get_offset_of_m_GroupsAllowInteraction_13() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_GroupsAllowInteraction_13)); }
inline bool get_m_GroupsAllowInteraction_13() const { return ___m_GroupsAllowInteraction_13; }
inline bool* get_address_of_m_GroupsAllowInteraction_13() { return &___m_GroupsAllowInteraction_13; }
inline void set_m_GroupsAllowInteraction_13(bool value)
{
___m_GroupsAllowInteraction_13 = value;
}
inline static int32_t get_offset_of_m_CurrentIndex_14() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_CurrentIndex_14)); }
inline int32_t get_m_CurrentIndex_14() const { return ___m_CurrentIndex_14; }
inline int32_t* get_address_of_m_CurrentIndex_14() { return &___m_CurrentIndex_14; }
inline void set_m_CurrentIndex_14(int32_t value)
{
___m_CurrentIndex_14 = value;
}
inline static int32_t get_offset_of_U3CisPointerInsideU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___U3CisPointerInsideU3Ek__BackingField_15)); }
inline bool get_U3CisPointerInsideU3Ek__BackingField_15() const { return ___U3CisPointerInsideU3Ek__BackingField_15; }
inline bool* get_address_of_U3CisPointerInsideU3Ek__BackingField_15() { return &___U3CisPointerInsideU3Ek__BackingField_15; }
inline void set_U3CisPointerInsideU3Ek__BackingField_15(bool value)
{
___U3CisPointerInsideU3Ek__BackingField_15 = value;
}
inline static int32_t get_offset_of_U3CisPointerDownU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___U3CisPointerDownU3Ek__BackingField_16)); }
inline bool get_U3CisPointerDownU3Ek__BackingField_16() const { return ___U3CisPointerDownU3Ek__BackingField_16; }
inline bool* get_address_of_U3CisPointerDownU3Ek__BackingField_16() { return &___U3CisPointerDownU3Ek__BackingField_16; }
inline void set_U3CisPointerDownU3Ek__BackingField_16(bool value)
{
___U3CisPointerDownU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3ChasSelectionU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___U3ChasSelectionU3Ek__BackingField_17)); }
inline bool get_U3ChasSelectionU3Ek__BackingField_17() const { return ___U3ChasSelectionU3Ek__BackingField_17; }
inline bool* get_address_of_U3ChasSelectionU3Ek__BackingField_17() { return &___U3ChasSelectionU3Ek__BackingField_17; }
inline void set_U3ChasSelectionU3Ek__BackingField_17(bool value)
{
___U3ChasSelectionU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_m_CanvasGroupCache_18() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_CanvasGroupCache_18)); }
inline List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 * get_m_CanvasGroupCache_18() const { return ___m_CanvasGroupCache_18; }
inline List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 ** get_address_of_m_CanvasGroupCache_18() { return &___m_CanvasGroupCache_18; }
inline void set_m_CanvasGroupCache_18(List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 * value)
{
___m_CanvasGroupCache_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasGroupCache_18), (void*)value);
}
};
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields
{
public:
// UnityEngine.UI.Selectable[] UnityEngine.UI.Selectable::s_Selectables
SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* ___s_Selectables_4;
// System.Int32 UnityEngine.UI.Selectable::s_SelectableCount
int32_t ___s_SelectableCount_5;
public:
inline static int32_t get_offset_of_s_Selectables_4() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields, ___s_Selectables_4)); }
inline SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* get_s_Selectables_4() const { return ___s_Selectables_4; }
inline SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02** get_address_of_s_Selectables_4() { return &___s_Selectables_4; }
inline void set_s_Selectables_4(SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* value)
{
___s_Selectables_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Selectables_4), (void*)value);
}
inline static int32_t get_offset_of_s_SelectableCount_5() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields, ___s_SelectableCount_5)); }
inline int32_t get_s_SelectableCount_5() const { return ___s_SelectableCount_5; }
inline int32_t* get_address_of_s_SelectableCount_5() { return &___s_SelectableCount_5; }
inline void set_s_SelectableCount_5(int32_t value)
{
___s_SelectableCount_5 = value;
}
};
// UnityEngine.XR.ARFoundation.ARFace
struct ARFace_t6743D3C0C57B5B559B335F7EB6523211A4EA579F : public ARTrackable_2_tD82405FC40CC95A2EF48E280B48A1FCA87693B1E
{
public:
// System.Action`1<UnityEngine.XR.ARFoundation.ARFaceUpdatedEventArgs> UnityEngine.XR.ARFoundation.ARFace::updated
Action_1_tC5697491E95A2FC8A04FFA200D2BC28C4A845F1C * ___updated_7;
// UnityEngine.Transform UnityEngine.XR.ARFoundation.ARFace::<leftEye>k__BackingField
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___U3CleftEyeU3Ek__BackingField_8;
// UnityEngine.Transform UnityEngine.XR.ARFoundation.ARFace::<rightEye>k__BackingField
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___U3CrightEyeU3Ek__BackingField_9;
// UnityEngine.Transform UnityEngine.XR.ARFoundation.ARFace::<fixationPoint>k__BackingField
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___U3CfixationPointU3Ek__BackingField_10;
// UnityEngine.XR.ARSubsystems.XRFaceMesh UnityEngine.XR.ARFoundation.ARFace::m_FaceMesh
XRFaceMesh_t38421E2A79DE93B8DA04E111E8FC82DDBCC74B84 ___m_FaceMesh_11;
// System.Boolean UnityEngine.XR.ARFoundation.ARFace::m_Updated
bool ___m_Updated_12;
public:
inline static int32_t get_offset_of_updated_7() { return static_cast<int32_t>(offsetof(ARFace_t6743D3C0C57B5B559B335F7EB6523211A4EA579F, ___updated_7)); }
inline Action_1_tC5697491E95A2FC8A04FFA200D2BC28C4A845F1C * get_updated_7() const { return ___updated_7; }
inline Action_1_tC5697491E95A2FC8A04FFA200D2BC28C4A845F1C ** get_address_of_updated_7() { return &___updated_7; }
inline void set_updated_7(Action_1_tC5697491E95A2FC8A04FFA200D2BC28C4A845F1C * value)
{
___updated_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___updated_7), (void*)value);
}
inline static int32_t get_offset_of_U3CleftEyeU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(ARFace_t6743D3C0C57B5B559B335F7EB6523211A4EA579F, ___U3CleftEyeU3Ek__BackingField_8)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_U3CleftEyeU3Ek__BackingField_8() const { return ___U3CleftEyeU3Ek__BackingField_8; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_U3CleftEyeU3Ek__BackingField_8() { return &___U3CleftEyeU3Ek__BackingField_8; }
inline void set_U3CleftEyeU3Ek__BackingField_8(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___U3CleftEyeU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftEyeU3Ek__BackingField_8), (void*)value);
}
inline static int32_t get_offset_of_U3CrightEyeU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(ARFace_t6743D3C0C57B5B559B335F7EB6523211A4EA579F, ___U3CrightEyeU3Ek__BackingField_9)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_U3CrightEyeU3Ek__BackingField_9() const { return ___U3CrightEyeU3Ek__BackingField_9; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_U3CrightEyeU3Ek__BackingField_9() { return &___U3CrightEyeU3Ek__BackingField_9; }
inline void set_U3CrightEyeU3Ek__BackingField_9(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___U3CrightEyeU3Ek__BackingField_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightEyeU3Ek__BackingField_9), (void*)value);
}
inline static int32_t get_offset_of_U3CfixationPointU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(ARFace_t6743D3C0C57B5B559B335F7EB6523211A4EA579F, ___U3CfixationPointU3Ek__BackingField_10)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_U3CfixationPointU3Ek__BackingField_10() const { return ___U3CfixationPointU3Ek__BackingField_10; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_U3CfixationPointU3Ek__BackingField_10() { return &___U3CfixationPointU3Ek__BackingField_10; }
inline void set_U3CfixationPointU3Ek__BackingField_10(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___U3CfixationPointU3Ek__BackingField_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CfixationPointU3Ek__BackingField_10), (void*)value);
}
inline static int32_t get_offset_of_m_FaceMesh_11() { return static_cast<int32_t>(offsetof(ARFace_t6743D3C0C57B5B559B335F7EB6523211A4EA579F, ___m_FaceMesh_11)); }
inline XRFaceMesh_t38421E2A79DE93B8DA04E111E8FC82DDBCC74B84 get_m_FaceMesh_11() const { return ___m_FaceMesh_11; }
inline XRFaceMesh_t38421E2A79DE93B8DA04E111E8FC82DDBCC74B84 * get_address_of_m_FaceMesh_11() { return &___m_FaceMesh_11; }
inline void set_m_FaceMesh_11(XRFaceMesh_t38421E2A79DE93B8DA04E111E8FC82DDBCC74B84 value)
{
___m_FaceMesh_11 = value;
}
inline static int32_t get_offset_of_m_Updated_12() { return static_cast<int32_t>(offsetof(ARFace_t6743D3C0C57B5B559B335F7EB6523211A4EA579F, ___m_Updated_12)); }
inline bool get_m_Updated_12() const { return ___m_Updated_12; }
inline bool* get_address_of_m_Updated_12() { return &___m_Updated_12; }
inline void set_m_Updated_12(bool value)
{
___m_Updated_12 = value;
}
};
// TMPro.TMP_Dropdown
struct TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353 : public Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A
{
public:
// UnityEngine.RectTransform TMPro.TMP_Dropdown::m_Template
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_Template_19;
// TMPro.TMP_Text TMPro.TMP_Dropdown::m_CaptionText
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___m_CaptionText_20;
// UnityEngine.UI.Image TMPro.TMP_Dropdown::m_CaptionImage
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___m_CaptionImage_21;
// TMPro.TMP_Text TMPro.TMP_Dropdown::m_ItemText
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___m_ItemText_22;
// UnityEngine.UI.Image TMPro.TMP_Dropdown::m_ItemImage
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___m_ItemImage_23;
// System.Int32 TMPro.TMP_Dropdown::m_Value
int32_t ___m_Value_24;
// TMPro.TMP_Dropdown_OptionDataList TMPro.TMP_Dropdown::m_Options
OptionDataList_tE1F84C460AD8BBC55BC0842D607BA7822C656157 * ___m_Options_25;
// TMPro.TMP_Dropdown_DropdownEvent TMPro.TMP_Dropdown::m_OnValueChanged
DropdownEvent_t6F8FD8A7AAADDEA4E968F09D4F38BD29FE656E12 * ___m_OnValueChanged_26;
// UnityEngine.GameObject TMPro.TMP_Dropdown::m_Dropdown
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_Dropdown_27;
// UnityEngine.GameObject TMPro.TMP_Dropdown::m_Blocker
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_Blocker_28;
// System.Collections.Generic.List`1<TMPro.TMP_Dropdown_DropdownItem> TMPro.TMP_Dropdown::m_Items
List_1_t4293B940BDA4E640A925F22A73787C87633A9A9D * ___m_Items_29;
// TMPro.TweenRunner`1<TMPro.FloatTween> TMPro.TMP_Dropdown::m_AlphaTweenRunner
TweenRunner_1_tBE43F858F8A7966470A9B180B8224D0B8E99A217 * ___m_AlphaTweenRunner_30;
// System.Boolean TMPro.TMP_Dropdown::validTemplate
bool ___validTemplate_31;
public:
inline static int32_t get_offset_of_m_Template_19() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_Template_19)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_Template_19() const { return ___m_Template_19; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_Template_19() { return &___m_Template_19; }
inline void set_m_Template_19(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_Template_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Template_19), (void*)value);
}
inline static int32_t get_offset_of_m_CaptionText_20() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_CaptionText_20)); }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * get_m_CaptionText_20() const { return ___m_CaptionText_20; }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 ** get_address_of_m_CaptionText_20() { return &___m_CaptionText_20; }
inline void set_m_CaptionText_20(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * value)
{
___m_CaptionText_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CaptionText_20), (void*)value);
}
inline static int32_t get_offset_of_m_CaptionImage_21() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_CaptionImage_21)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_m_CaptionImage_21() const { return ___m_CaptionImage_21; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_m_CaptionImage_21() { return &___m_CaptionImage_21; }
inline void set_m_CaptionImage_21(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___m_CaptionImage_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CaptionImage_21), (void*)value);
}
inline static int32_t get_offset_of_m_ItemText_22() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_ItemText_22)); }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * get_m_ItemText_22() const { return ___m_ItemText_22; }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 ** get_address_of_m_ItemText_22() { return &___m_ItemText_22; }
inline void set_m_ItemText_22(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * value)
{
___m_ItemText_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemText_22), (void*)value);
}
inline static int32_t get_offset_of_m_ItemImage_23() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_ItemImage_23)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_m_ItemImage_23() const { return ___m_ItemImage_23; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_m_ItemImage_23() { return &___m_ItemImage_23; }
inline void set_m_ItemImage_23(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___m_ItemImage_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemImage_23), (void*)value);
}
inline static int32_t get_offset_of_m_Value_24() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_Value_24)); }
inline int32_t get_m_Value_24() const { return ___m_Value_24; }
inline int32_t* get_address_of_m_Value_24() { return &___m_Value_24; }
inline void set_m_Value_24(int32_t value)
{
___m_Value_24 = value;
}
inline static int32_t get_offset_of_m_Options_25() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_Options_25)); }
inline OptionDataList_tE1F84C460AD8BBC55BC0842D607BA7822C656157 * get_m_Options_25() const { return ___m_Options_25; }
inline OptionDataList_tE1F84C460AD8BBC55BC0842D607BA7822C656157 ** get_address_of_m_Options_25() { return &___m_Options_25; }
inline void set_m_Options_25(OptionDataList_tE1F84C460AD8BBC55BC0842D607BA7822C656157 * value)
{
___m_Options_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Options_25), (void*)value);
}
inline static int32_t get_offset_of_m_OnValueChanged_26() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_OnValueChanged_26)); }
inline DropdownEvent_t6F8FD8A7AAADDEA4E968F09D4F38BD29FE656E12 * get_m_OnValueChanged_26() const { return ___m_OnValueChanged_26; }
inline DropdownEvent_t6F8FD8A7AAADDEA4E968F09D4F38BD29FE656E12 ** get_address_of_m_OnValueChanged_26() { return &___m_OnValueChanged_26; }
inline void set_m_OnValueChanged_26(DropdownEvent_t6F8FD8A7AAADDEA4E968F09D4F38BD29FE656E12 * value)
{
___m_OnValueChanged_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_26), (void*)value);
}
inline static int32_t get_offset_of_m_Dropdown_27() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_Dropdown_27)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_Dropdown_27() const { return ___m_Dropdown_27; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_Dropdown_27() { return &___m_Dropdown_27; }
inline void set_m_Dropdown_27(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_Dropdown_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Dropdown_27), (void*)value);
}
inline static int32_t get_offset_of_m_Blocker_28() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_Blocker_28)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_Blocker_28() const { return ___m_Blocker_28; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_Blocker_28() { return &___m_Blocker_28; }
inline void set_m_Blocker_28(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_Blocker_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Blocker_28), (void*)value);
}
inline static int32_t get_offset_of_m_Items_29() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_Items_29)); }
inline List_1_t4293B940BDA4E640A925F22A73787C87633A9A9D * get_m_Items_29() const { return ___m_Items_29; }
inline List_1_t4293B940BDA4E640A925F22A73787C87633A9A9D ** get_address_of_m_Items_29() { return &___m_Items_29; }
inline void set_m_Items_29(List_1_t4293B940BDA4E640A925F22A73787C87633A9A9D * value)
{
___m_Items_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Items_29), (void*)value);
}
inline static int32_t get_offset_of_m_AlphaTweenRunner_30() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___m_AlphaTweenRunner_30)); }
inline TweenRunner_1_tBE43F858F8A7966470A9B180B8224D0B8E99A217 * get_m_AlphaTweenRunner_30() const { return ___m_AlphaTweenRunner_30; }
inline TweenRunner_1_tBE43F858F8A7966470A9B180B8224D0B8E99A217 ** get_address_of_m_AlphaTweenRunner_30() { return &___m_AlphaTweenRunner_30; }
inline void set_m_AlphaTweenRunner_30(TweenRunner_1_tBE43F858F8A7966470A9B180B8224D0B8E99A217 * value)
{
___m_AlphaTweenRunner_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AlphaTweenRunner_30), (void*)value);
}
inline static int32_t get_offset_of_validTemplate_31() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353, ___validTemplate_31)); }
inline bool get_validTemplate_31() const { return ___validTemplate_31; }
inline bool* get_address_of_validTemplate_31() { return &___validTemplate_31; }
inline void set_validTemplate_31(bool value)
{
___validTemplate_31 = value;
}
};
struct TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353_StaticFields
{
public:
// TMPro.TMP_Dropdown_OptionData TMPro.TMP_Dropdown::s_NoOptionData
OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B * ___s_NoOptionData_32;
public:
inline static int32_t get_offset_of_s_NoOptionData_32() { return static_cast<int32_t>(offsetof(TMP_Dropdown_t9FB6FD74CE2463D3A4C71A5A2A6FC29162B90353_StaticFields, ___s_NoOptionData_32)); }
inline OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B * get_s_NoOptionData_32() const { return ___s_NoOptionData_32; }
inline OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B ** get_address_of_s_NoOptionData_32() { return &___s_NoOptionData_32; }
inline void set_s_NoOptionData_32(OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B * value)
{
___s_NoOptionData_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_NoOptionData_32), (void*)value);
}
};
// UnityEngine.UI.Dropdown
struct Dropdown_tF6331401084B1213CAB10587A6EC81461501930F : public Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A
{
public:
// UnityEngine.RectTransform UnityEngine.UI.Dropdown::m_Template
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_Template_19;
// UnityEngine.UI.Text UnityEngine.UI.Dropdown::m_CaptionText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___m_CaptionText_20;
// UnityEngine.UI.Image UnityEngine.UI.Dropdown::m_CaptionImage
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___m_CaptionImage_21;
// UnityEngine.UI.Text UnityEngine.UI.Dropdown::m_ItemText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___m_ItemText_22;
// UnityEngine.UI.Image UnityEngine.UI.Dropdown::m_ItemImage
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___m_ItemImage_23;
// System.Int32 UnityEngine.UI.Dropdown::m_Value
int32_t ___m_Value_24;
// UnityEngine.UI.Dropdown_OptionDataList UnityEngine.UI.Dropdown::m_Options
OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * ___m_Options_25;
// UnityEngine.UI.Dropdown_DropdownEvent UnityEngine.UI.Dropdown::m_OnValueChanged
DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * ___m_OnValueChanged_26;
// System.Single UnityEngine.UI.Dropdown::m_AlphaFadeSpeed
float ___m_AlphaFadeSpeed_27;
// UnityEngine.GameObject UnityEngine.UI.Dropdown::m_Dropdown
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_Dropdown_28;
// UnityEngine.GameObject UnityEngine.UI.Dropdown::m_Blocker
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_Blocker_29;
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown_DropdownItem> UnityEngine.UI.Dropdown::m_Items
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * ___m_Items_30;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween> UnityEngine.UI.Dropdown::m_AlphaTweenRunner
TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * ___m_AlphaTweenRunner_31;
// System.Boolean UnityEngine.UI.Dropdown::validTemplate
bool ___validTemplate_32;
public:
inline static int32_t get_offset_of_m_Template_19() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Template_19)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_Template_19() const { return ___m_Template_19; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_Template_19() { return &___m_Template_19; }
inline void set_m_Template_19(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_Template_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Template_19), (void*)value);
}
inline static int32_t get_offset_of_m_CaptionText_20() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_CaptionText_20)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_m_CaptionText_20() const { return ___m_CaptionText_20; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_m_CaptionText_20() { return &___m_CaptionText_20; }
inline void set_m_CaptionText_20(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___m_CaptionText_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CaptionText_20), (void*)value);
}
inline static int32_t get_offset_of_m_CaptionImage_21() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_CaptionImage_21)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_m_CaptionImage_21() const { return ___m_CaptionImage_21; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_m_CaptionImage_21() { return &___m_CaptionImage_21; }
inline void set_m_CaptionImage_21(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___m_CaptionImage_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CaptionImage_21), (void*)value);
}
inline static int32_t get_offset_of_m_ItemText_22() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_ItemText_22)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_m_ItemText_22() const { return ___m_ItemText_22; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_m_ItemText_22() { return &___m_ItemText_22; }
inline void set_m_ItemText_22(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___m_ItemText_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemText_22), (void*)value);
}
inline static int32_t get_offset_of_m_ItemImage_23() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_ItemImage_23)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_m_ItemImage_23() const { return ___m_ItemImage_23; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_m_ItemImage_23() { return &___m_ItemImage_23; }
inline void set_m_ItemImage_23(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___m_ItemImage_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemImage_23), (void*)value);
}
inline static int32_t get_offset_of_m_Value_24() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Value_24)); }
inline int32_t get_m_Value_24() const { return ___m_Value_24; }
inline int32_t* get_address_of_m_Value_24() { return &___m_Value_24; }
inline void set_m_Value_24(int32_t value)
{
___m_Value_24 = value;
}
inline static int32_t get_offset_of_m_Options_25() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Options_25)); }
inline OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * get_m_Options_25() const { return ___m_Options_25; }
inline OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D ** get_address_of_m_Options_25() { return &___m_Options_25; }
inline void set_m_Options_25(OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * value)
{
___m_Options_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Options_25), (void*)value);
}
inline static int32_t get_offset_of_m_OnValueChanged_26() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_OnValueChanged_26)); }
inline DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * get_m_OnValueChanged_26() const { return ___m_OnValueChanged_26; }
inline DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 ** get_address_of_m_OnValueChanged_26() { return &___m_OnValueChanged_26; }
inline void set_m_OnValueChanged_26(DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * value)
{
___m_OnValueChanged_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_26), (void*)value);
}
inline static int32_t get_offset_of_m_AlphaFadeSpeed_27() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_AlphaFadeSpeed_27)); }
inline float get_m_AlphaFadeSpeed_27() const { return ___m_AlphaFadeSpeed_27; }
inline float* get_address_of_m_AlphaFadeSpeed_27() { return &___m_AlphaFadeSpeed_27; }
inline void set_m_AlphaFadeSpeed_27(float value)
{
___m_AlphaFadeSpeed_27 = value;
}
inline static int32_t get_offset_of_m_Dropdown_28() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Dropdown_28)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_Dropdown_28() const { return ___m_Dropdown_28; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_Dropdown_28() { return &___m_Dropdown_28; }
inline void set_m_Dropdown_28(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_Dropdown_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Dropdown_28), (void*)value);
}
inline static int32_t get_offset_of_m_Blocker_29() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Blocker_29)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_Blocker_29() const { return ___m_Blocker_29; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_Blocker_29() { return &___m_Blocker_29; }
inline void set_m_Blocker_29(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_Blocker_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Blocker_29), (void*)value);
}
inline static int32_t get_offset_of_m_Items_30() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Items_30)); }
inline List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * get_m_Items_30() const { return ___m_Items_30; }
inline List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 ** get_address_of_m_Items_30() { return &___m_Items_30; }
inline void set_m_Items_30(List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * value)
{
___m_Items_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Items_30), (void*)value);
}
inline static int32_t get_offset_of_m_AlphaTweenRunner_31() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_AlphaTweenRunner_31)); }
inline TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * get_m_AlphaTweenRunner_31() const { return ___m_AlphaTweenRunner_31; }
inline TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF ** get_address_of_m_AlphaTweenRunner_31() { return &___m_AlphaTweenRunner_31; }
inline void set_m_AlphaTweenRunner_31(TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * value)
{
___m_AlphaTweenRunner_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AlphaTweenRunner_31), (void*)value);
}
inline static int32_t get_offset_of_validTemplate_32() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___validTemplate_32)); }
inline bool get_validTemplate_32() const { return ___validTemplate_32; }
inline bool* get_address_of_validTemplate_32() { return &___validTemplate_32; }
inline void set_validTemplate_32(bool value)
{
___validTemplate_32 = value;
}
};
struct Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_StaticFields
{
public:
// UnityEngine.UI.Dropdown_OptionData UnityEngine.UI.Dropdown::s_NoOptionData
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * ___s_NoOptionData_33;
public:
inline static int32_t get_offset_of_s_NoOptionData_33() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_StaticFields, ___s_NoOptionData_33)); }
inline OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * get_s_NoOptionData_33() const { return ___s_NoOptionData_33; }
inline OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 ** get_address_of_s_NoOptionData_33() { return &___s_NoOptionData_33; }
inline void set_s_NoOptionData_33(OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * value)
{
___s_NoOptionData_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_NoOptionData_33), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B m_Items[1];
public:
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Diagnostics.Tracing.EventProvider_SessionInfo[]
struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A m_Items[1];
public:
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A value)
{
m_Items[index] = value;
}
};
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Int32Enum[]
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint32_t m_Items[1];
public:
inline uint32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value)
{
m_Items[index] = value;
}
};
// System.UInt64[]
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint64_t m_Items[1];
public:
inline uint64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint64_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value)
{
m_Items[index] = value;
}
};
// System.ValueTuple`2<System.Int32,System.Object>[]
struct ValueTuple_2U5BU5D_tAC07AC38451469F15186378560098CF775CDC0F9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 m_Items[1];
public:
inline ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item2_1), (void*)NULL);
}
inline ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item2_1), (void*)NULL);
}
};
// System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>[]
struct ValueTuple_2U5BU5D_t5511800D3E60CA16B64391D7229EE5438B48C305 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 m_Items[1];
public:
inline ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item1_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___Item2_1))->___Item1_0), (void*)NULL);
#endif
}
inline ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item1_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___Item2_1))->___Item1_0), (void*)NULL);
#endif
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteData[]
struct SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 m_Items[1];
public:
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___filename_0), (void*)NULL);
}
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___filename_0), (void*)NULL);
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>[]
struct NativeArray_1U5BU5D_t849C9A0D7F8881104AEB488E05B787DCE761B696 : public RuntimeArray
{
public:
ALIGN_FIELD (8) NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 m_Items[1];
public:
inline NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 value)
{
m_Items[index] = value;
}
};
// UnityEngine.BeforeRenderHelper_OrderBlock[]
struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101 : public RuntimeArray
{
public:
ALIGN_FIELD (8) OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 m_Items[1];
public:
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___callback_1), (void*)NULL);
}
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___callback_1), (void*)NULL);
}
};
// UnityEngine.Color32[]
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 m_Items[1];
public:
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Color[]
struct ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 m_Items[1];
public:
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
m_Items[index] = value;
}
};
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 m_Items[1];
public:
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource[]
struct RenderGraphMutableResourceU5BU5D_tC5DD0DF1CAE7DE95421B26158C9F5E24169156CA : public RuntimeArray
{
public:
ALIGN_FIELD (8) RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 m_Items[1];
public:
inline RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource[]
struct RenderGraphResourceU5BU5D_tB3A76B05D0BFF43192C3081E627196BF620A45B0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF m_Items[1];
public:
inline RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF value)
{
m_Items[index] = value;
}
};
// UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex[]
struct ContourVertexU5BU5D_t6A7626ED7D5846583F834C822C28220AFE0E396D : public RuntimeArray
{
public:
ALIGN_FIELD (8) ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE m_Items[1];
public:
inline ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Data_1), (void*)NULL);
}
inline ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Data_1), (void*)NULL);
}
};
// UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge[]
struct EdgeU5BU5D_t109E874E4BB26DA4C9ACBA09E19B95274DD805C1 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 m_Items[1];
public:
inline Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 value)
{
m_Items[index] = value;
}
};
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE m_Items[1];
public:
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE value)
{
m_Items[index] = value;
}
};
// UnityEngine.Rendering.ShaderTagId[]
struct ShaderTagIdU5BU5D_tFA48D4C6A2EF95AF0BF3EEB90B9719F0154CBEF0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 m_Items[1];
public:
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 value)
{
m_Items[index] = value;
}
};
// UnityEngine.TextCore.GlyphRect[]
struct GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C m_Items[1];
public:
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
m_Items[index] = value;
}
};
// UnityEngine.UICharInfo[]
struct UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482 : public RuntimeArray
{
public:
ALIGN_FIELD (8) UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A m_Items[1];
public:
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A value)
{
m_Items[index] = value;
}
};
// UnityEngine.UILineInfo[]
struct UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC : public RuntimeArray
{
public:
ALIGN_FIELD (8) UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 m_Items[1];
public:
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A : public RuntimeArray
{
public:
ALIGN_FIELD (8) UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 m_Items[1];
public:
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UnitySynchronizationContext_WorkRequest[]
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 m_Items[1];
public:
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateCallback_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateState_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_WaitHandle_2), (void*)NULL);
#endif
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateCallback_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateState_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_WaitHandle_2), (void*)NULL);
#endif
}
};
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector2_tA85D2DD88578276CA8A8796756458277E72D073D m_Items[1];
public:
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 m_Items[1];
public:
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector4[]
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E m_Items[1];
public:
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
m_Items[index] = value;
}
};
// UnityEngine.XR.ARFoundation.ARRaycastHit[]
struct ARRaycastHitU5BU5D_t2DDAC1FD38DF991C190FAEF8144A68AFBC541E94 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC m_Items[1];
public:
inline ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Transform_2), (void*)NULL);
}
inline ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Transform_2), (void*)NULL);
}
};
// UnityEngine.XR.ARFoundation.ARTextureInfo[]
struct ARTextureInfoU5BU5D_tE03D3DE5A9DF582C89ABC81434CB04B6ADDEBBFD : public RuntimeArray
{
public:
ALIGN_FIELD (8) ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 m_Items[1];
public:
inline ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Texture_2), (void*)NULL);
}
inline ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Texture_2), (void*)NULL);
}
};
// UnityEngine.XR.ARSubsystems.XRReferenceImage[]
struct XRReferenceImageU5BU5D_t1EEAB0EDA5828C38140B4D8D48E11247C4789BCE : public RuntimeArray
{
public:
ALIGN_FIELD (8) XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E m_Items[1];
public:
inline XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Texture_5), (void*)NULL);
#endif
}
inline XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Texture_5), (void*)NULL);
#endif
}
};
// UnityEngine.XR.ARSubsystems.XRReferenceObject[]
struct XRReferenceObjectU5BU5D_t0AF9158E0468305ABEAA331C8925977310FBD498 : public RuntimeArray
{
public:
ALIGN_FIELD (8) XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA m_Items[1];
public:
inline XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Entries_3), (void*)NULL);
#endif
}
inline XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Entries_3), (void*)NULL);
#endif
}
};
// UnityEngine.XR.MeshInfo[]
struct MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 m_Items[1];
public:
inline MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 value)
{
m_Items[index] = value;
}
};
// UnityEngine.XR.XRNodeState[]
struct XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06 : public RuntimeArray
{
public:
ALIGN_FIELD (8) XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A m_Items[1];
public:
inline XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>[]
struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 m_Items[1];
public:
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>[]
struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 m_Items[1];
public:
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE m_Items[1];
public:
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// UnityEngine.XR.ARSubsystems.TrackableId[]
struct TrackableIdU5BU5D_t43525AC6688EDA53AF5753025C44F8DC1B33EF6E : public RuntimeArray
{
public:
ALIGN_FIELD (8) TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 m_Items[1];
public:
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
m_Items[index] = value;
}
};
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E m_Items[1];
public:
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL);
#endif
}
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL);
#endif
}
};
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 m_Items[1];
public:
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// UnityEngine.Rendering.RenderTargetIdentifier[]
struct RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B m_Items[1];
public:
inline RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B value)
{
m_Items[index] = value;
}
};
// UnityEngine.Object[]
struct ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * m_Items[1];
public:
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(!0,!1&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Void System.Linq.Buffer`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_1__ctor_m0CE9121B518F16084DE99B4E1624BBBCEA0E1782_gshared (Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2 * __this, RuntimeObject* ___source0, const RuntimeMethod* method);
// TElement[] System.Linq.Buffer`1<System.Int32>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* Buffer_1_ToArray_mC5DCD85B5DC4FD7B6D5DC32954278313976AEF8A_gshared (Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2 * __this, const RuntimeMethod* method);
// System.Void System.Linq.Buffer`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_1__ctor_mFC593D644243CEC302C442E4AA893955A7EA307C_gshared (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * __this, RuntimeObject* ___source0, const RuntimeMethod* method);
// TElement[] System.Linq.Buffer`1<System.Object>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Buffer_1_ToArray_m8464C83D3CD990F32379CB62618CE2A9C9D1C656_gshared (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * __this, const RuntimeMethod* method);
// System.Void System.Linq.Buffer`1<System.UInt32>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_1__ctor_m15E14821150D72D98452426EA8B5871A1C607479_gshared (Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247 * __this, RuntimeObject* ___source0, const RuntimeMethod* method);
// TElement[] System.Linq.Buffer`1<System.UInt32>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* Buffer_1_ToArray_m042D0BD4FCB5FC3D9A162686844A6977062708EE_gshared (Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247 * __this, const RuntimeMethod* method);
// System.Void System.Linq.Buffer`1<UnityEngine.Color>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_1__ctor_mBD7D30EEA556E1D7EA71695808E1B0CC67145073_gshared (Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604 * __this, RuntimeObject* ___source0, const RuntimeMethod* method);
// TElement[] System.Linq.Buffer`1<UnityEngine.Color>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* Buffer_1_ToArray_m05F54031FC165D85EEB930D4B0ADB2E40F1F8AA1_gshared (Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604 * __this, const RuntimeMethod* method);
// System.Void System.Linq.Buffer`1<UnityEngine.Vector3>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_1__ctor_m1A858F2A4E5C2110A5907B30FE3A092F9665ADAA_gshared (Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169 * __this, RuntimeObject* ___source0, const RuntimeMethod* method);
// TElement[] System.Linq.Buffer`1<UnityEngine.Vector3>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* Buffer_1_ToArray_m68911852C50E5C3F9E73776BE908D0488CC8B01D_gshared (Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169 * __this, const RuntimeMethod* method);
// System.Void System.ValueTuple`2<System.Object,System.Int32>::.ctor(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mA278EF0809223335676C04C0859BB03C552D22A2_gshared (ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F * __this, RuntimeObject * ___item10, int32_t ___item21, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::TryGetValue(!0,!1&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD31FCDDCF2A1FCB97F9603969F8E5648567C3168_gshared (Dictionary_2_t3D0F521AB54A429DFB2CDCEC6D9F496FEC6C84D8 * __this, ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Stack`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m07A8AE55BA78A57D5BDC0271ED6AA646D69AA785_gshared (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::Add(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m123F743BCFDF56C9AC14F02AEF61EAB10A7151F3_gshared (Dictionary_2_t3D0F521AB54A429DFB2CDCEC6D9F496FEC6C84D8 * __this, ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.Stack`1<System.Object>::get_Count()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_m692E28BB74B2613597E407DDCCBA926306D8086A_gshared_inline (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.Stack`1<System.Object>::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Stack_1_Pop_m490CECEA5A2911DA732CD4D7612D04BD18E1DF12_gshared (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * __this, const RuntimeMethod* method);
// System.Void System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::.ctor(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m6FAA11B851F151283FF480600F0B198695C8946E_gshared (ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 * __this, RuntimeObject * ___item10, ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F ___item21, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m859CC861721274138078EA5E8F4981E50B78CBDE_gshared (List_1_tC865E14BB695393247CEFB631C575094B8701079 * __this, ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 ___item0, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<T> UnityEngine.Rendering.CullingResults::GetNativeArray<UnityEngine.Rendering.VisibleLight>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 CullingResults_GetNativeArray_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_mACDB0C7A85042F3D0146F419B66D8DE08B767163_gshared (CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B * __this, void* ___dataPointer0, int32_t ___length1, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.Int32>::get_IsCreated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_m03942F481D4D8775D5C39C177826D600D7089DDA_gshared (NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector2>::get_IsCreated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_m6B22098565FFCA3A112B3107B5ABEFA8F9C3B5CC_gshared (NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector3>::get_IsCreated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mA83E57BF410BDF5144D71C3C740F1BB04D255073_gshared (NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_mADC445CD821A933F7F3DF060145383EF6362D6A9_gshared (NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m5ECD2716F7A19ADBB6ED2DDC79B25A3D7983D06D_gshared (NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m717B5DF783F192540056AE7A5A94B6DBDB8F9F25_gshared (NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m87D45453553F68A516214FEABB8E004027B6F4EA_gshared (NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRFace>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m9DDFB3AC72B2DDA9252E82C7D045B360C34BCADF_gshared (NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_mF5A1714C6870A3DF6F61BB87B0700F0A8A67F9CC_gshared (NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m04C9732607058C6721B91A719DE872C3550D169C_gshared (NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m0A7431FE284605A389AB455AFBC44304CAE118CF_gshared (NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_mBA3667DFD2FA91C71C118ECA43EB22503D4FC2C8_gshared (NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_mEEF6B5C996FEF2597C318C267E2B6CFB88175518_gshared (NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m192CF93170B36E61ACE804945C3B18481D07B1C5_gshared (NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m16425BC62E9AC48C88E58870411D0D63CCE985A9_gshared (NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeSlice`1<System.Byte>::.ctor(Unity.Collections.NativeArray`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeSlice_1__ctor_m10629E73F4A5C8EFCF25200B0753B32740CE4241_gshared (NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E * __this, NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 ___array0, const RuntimeMethod* method);
// Unity.Collections.NativeSlice`1<U> Unity.Collections.NativeSlice`1<System.Byte>::SliceConvert<System.UInt32>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A NativeSlice_1_SliceConvert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m80E1CA48C3B8A9E51D8BE04FDCD3BF59BBF7034C_gshared (NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Attribute System.Reflection.CustomAttributeExtensions::GetCustomAttribute(System.Reflection.Assembly,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * CustomAttributeExtensions_GetCustomAttribute_m4F400BBA3D1EBE458C4CCEC26DF2A5F926AE3F34 (Assembly_t * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___exists0, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Void*)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline (intptr_t* __this, void* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Component::GetComponentFastPath(System.Type,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Component_GetComponentFastPath_mDEB49C6B56084E436C7FC3D555339FA16949937E (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, Type_t * ___type0, intptr_t ___oneFurtherThanResultValue1, const RuntimeMethod* method);
// UnityEngine.Component UnityEngine.Component::GetComponentInChildren(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * Component_GetComponentInChildren_mEF7890FAC10EA2F776464285B0DCC58B8C373D34 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, Type_t * ___t0, bool ___includeInactive1, const RuntimeMethod* method);
// UnityEngine.Component UnityEngine.Component::GetComponentInParent(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * Component_GetComponentInParent_mFD9A8F6311ABAF986CA0DA556662F89FD9234E7D (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, Type_t * ___t0, const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
// UnityEngine.Component UnityEngine.GameObject::AddComponent(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * GameObject_AddComponent_m489C9D5426F2050795FA696CD478BB49AAE4BD70 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, Type_t * ___componentType0, const RuntimeMethod* method);
// System.Void UnityEngine.GameObject::GetComponentFastPath(System.Type,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_GetComponentFastPath_m5B276335DD94F6B307E604272A26C15B997C3CD4 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, Type_t * ___type0, intptr_t ___oneFurtherThanResultValue1, const RuntimeMethod* method);
// UnityEngine.Component UnityEngine.GameObject::GetComponentInChildren(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * GameObject_GetComponentInChildren_mBC5C12CDA1749A827D136DABBF10498B1096A086 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, Type_t * ___type0, bool ___includeInactive1, const RuntimeMethod* method);
// UnityEngine.Object UnityEngine.Object::FindObjectOfType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * Object_FindObjectOfType_mCDF38E1667CF4502F60C59709D70B60EF7E408DA (Type_t * ___type0, const RuntimeMethod* method);
// System.Void UnityEngine.Object::CheckNullArgument(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_CheckNullArgument_m8D42F516655D770DFEEAA13CF86A2612214AAA9B (RuntimeObject * ___arg0, String_t* ___message1, const RuntimeMethod* method);
// UnityEngine.Object UnityEngine.Object::Internal_CloneSingle(UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * Object_Internal_CloneSingle_m4231A0B9138AC40B76655B772F687CC7E6160C06 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___data0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___x0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___y1, const RuntimeMethod* method);
// System.Void UnityEngine.UnityException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityException__ctor_mE42363D886E6DD7F075A6AEA689434C8E96722D9 (UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28 * __this, String_t* ___message0, const RuntimeMethod* method);
// UnityEngine.Object UnityEngine.Object::Instantiate(UnityEngine.Object,UnityEngine.Transform,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * Object_Instantiate_m674B3934708548332899CE953CA56BB696C1C887 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___original0, Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___parent1, bool ___instantiateInWorldSpace2, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07 (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method);
// UnityEngine.Rendering.VolumeComponent UnityEngine.Rendering.VolumeProfile::Add(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VolumeComponent_t333392A1EED68E0227F1B4E974B1AD591BB13753 * VolumeProfile_Add_mCA396DEDE94B39B936584D27B7329DE2789ED6C1 (VolumeProfile_t337A44A671E93CF2687335B64D6AB1C60EEA34EC * __this, Type_t * ___type0, bool ___overrides1, const RuntimeMethod* method);
// UnityEngine.Rendering.VolumeComponent UnityEngine.Rendering.VolumeStack::GetComponent(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VolumeComponent_t333392A1EED68E0227F1B4E974B1AD591BB13753 * VolumeStack_GetComponent_m1C22288708CFB375BD8F359C726EA915527D810F (VolumeStack_tF9EF843E5DD7B2E39CD76B2C63C26675A66D8E38 * __this, Type_t * ___type0, const RuntimeMethod* method);
// UnityEngine.Object UnityEngine.Resources::GetBuiltinResource(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * Resources_GetBuiltinResource_m73DDAC485E1E06C925628AA7285AC63D0797BD0A (Type_t * ___type0, String_t* ___path1, const RuntimeMethod* method);
// UnityEngine.Object UnityEngine.Resources::Load(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * Resources_Load_mF0FA033BF566CDDA6A0E69BB97283B44C40726E7 (String_t* ___path0, Type_t * ___systemTypeInstance1, const RuntimeMethod* method);
// UnityEngine.ScriptableObject UnityEngine.ScriptableObject::CreateInstance(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 * ScriptableObject_CreateInstance_mDC77B7257A5E276CB272D3475B9B473B23A7128D (Type_t * ___type0, const RuntimeMethod* method);
// System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method);
// System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.GCHandle::FromIntPtr(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 GCHandle_FromIntPtr_mB803C8ECA1D723F1C51A69F7A7E09E269488D36C (intptr_t ___value0, const RuntimeMethod* method);
// System.Object System.Runtime.InteropServices.GCHandle::get_Target()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GCHandle_get_Target_mDBDEA6883245CF1EF963D9FA945569B2D59DCCF8 (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,UnityEngine.ISubsystem>::TryGetValue(!0,!1&)
inline bool Dictionary_2_TryGetValue_m0145FEACBF5643445A468A312880F27CA4205396 (Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86 * __this, Type_t * ___key0, RuntimeObject** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86 *, Type_t *, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method);
}
// UnityEngine.XR.Management.XRLoader UnityEngine.XR.Management.XRManagerSettings::get_activeLoader()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR XRLoader_t2574091AF57F902BF504098AB113416E8D15186A * XRManagerSettings_get_activeLoader_m9371C31D367F55202EE948306D0C61A9D8725B67_inline (XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5 * __this, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Exception System.Linq.Error::ArgumentNull(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7 (String_t* ___s0, const RuntimeMethod* method);
// System.Exception System.Linq.Error::ArgumentOutOfRange(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_ArgumentOutOfRange_mACFCB068F4E0C4EEF9E6EDDD59E798901C32C6C9 (String_t* ___s0, const RuntimeMethod* method);
// System.Exception System.Linq.Error::NoElements()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_NoElements_m17188AC2CF25EB359A4E1DDE9518A98598791136 (const RuntimeMethod* method);
// System.Exception System.Linq.Error::MoreThanOneMatch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_MoreThanOneMatch_m85C3617F782E9F2333FC1FDF42821BE069F24623 (const RuntimeMethod* method);
// System.Void System.Linq.Buffer`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
inline void Buffer_1__ctor_m0CE9121B518F16084DE99B4E1624BBBCEA0E1782 (Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2 * __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
(( void (*) (Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2 *, RuntimeObject*, const RuntimeMethod*))Buffer_1__ctor_m0CE9121B518F16084DE99B4E1624BBBCEA0E1782_gshared)(__this, ___source0, method);
}
// TElement[] System.Linq.Buffer`1<System.Int32>::ToArray()
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* Buffer_1_ToArray_mC5DCD85B5DC4FD7B6D5DC32954278313976AEF8A (Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2 * __this, const RuntimeMethod* method)
{
return (( Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* (*) (Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2 *, const RuntimeMethod*))Buffer_1_ToArray_mC5DCD85B5DC4FD7B6D5DC32954278313976AEF8A_gshared)(__this, method);
}
// System.Void System.Linq.Buffer`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
inline void Buffer_1__ctor_mFC593D644243CEC302C442E4AA893955A7EA307C (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
(( void (*) (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C *, RuntimeObject*, const RuntimeMethod*))Buffer_1__ctor_mFC593D644243CEC302C442E4AA893955A7EA307C_gshared)(__this, ___source0, method);
}
// TElement[] System.Linq.Buffer`1<System.Object>::ToArray()
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Buffer_1_ToArray_m8464C83D3CD990F32379CB62618CE2A9C9D1C656 (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * __this, const RuntimeMethod* method)
{
return (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C *, const RuntimeMethod*))Buffer_1_ToArray_m8464C83D3CD990F32379CB62618CE2A9C9D1C656_gshared)(__this, method);
}
// System.Void System.Linq.Buffer`1<System.UInt32>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
inline void Buffer_1__ctor_m15E14821150D72D98452426EA8B5871A1C607479 (Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247 * __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
(( void (*) (Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247 *, RuntimeObject*, const RuntimeMethod*))Buffer_1__ctor_m15E14821150D72D98452426EA8B5871A1C607479_gshared)(__this, ___source0, method);
}
// TElement[] System.Linq.Buffer`1<System.UInt32>::ToArray()
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* Buffer_1_ToArray_m042D0BD4FCB5FC3D9A162686844A6977062708EE (Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247 * __this, const RuntimeMethod* method)
{
return (( UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* (*) (Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247 *, const RuntimeMethod*))Buffer_1_ToArray_m042D0BD4FCB5FC3D9A162686844A6977062708EE_gshared)(__this, method);
}
// System.Void System.Linq.Buffer`1<UnityEngine.Color>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
inline void Buffer_1__ctor_mBD7D30EEA556E1D7EA71695808E1B0CC67145073 (Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604 * __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
(( void (*) (Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604 *, RuntimeObject*, const RuntimeMethod*))Buffer_1__ctor_mBD7D30EEA556E1D7EA71695808E1B0CC67145073_gshared)(__this, ___source0, method);
}
// TElement[] System.Linq.Buffer`1<UnityEngine.Color>::ToArray()
inline ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* Buffer_1_ToArray_m05F54031FC165D85EEB930D4B0ADB2E40F1F8AA1 (Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604 * __this, const RuntimeMethod* method)
{
return (( ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* (*) (Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604 *, const RuntimeMethod*))Buffer_1_ToArray_m05F54031FC165D85EEB930D4B0ADB2E40F1F8AA1_gshared)(__this, method);
}
// System.Void System.Linq.Buffer`1<UnityEngine.Vector3>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
inline void Buffer_1__ctor_m1A858F2A4E5C2110A5907B30FE3A092F9665ADAA (Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169 * __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
(( void (*) (Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169 *, RuntimeObject*, const RuntimeMethod*))Buffer_1__ctor_m1A858F2A4E5C2110A5907B30FE3A092F9665ADAA_gshared)(__this, ___source0, method);
}
// TElement[] System.Linq.Buffer`1<UnityEngine.Vector3>::ToArray()
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* Buffer_1_ToArray_m68911852C50E5C3F9E73776BE908D0488CC8B01D (Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169 * __this, const RuntimeMethod* method)
{
return (( Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* (*) (Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169 *, const RuntimeMethod*))Buffer_1_ToArray_m68911852C50E5C3F9E73776BE908D0488CC8B01D_gshared)(__this, method);
}
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.Component::get_gameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method);
// System.Void System.ValueTuple`2<System.Type,System.Int32>::.ctor(!0,!1)
inline void ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3 (ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 * __this, Type_t * ___item10, int32_t ___item21, const RuntimeMethod* method)
{
(( void (*) (ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 *, Type_t *, int32_t, const RuntimeMethod*))ValueTuple_2__ctor_mA278EF0809223335676C04C0859BB03C552D22A2_gshared)(__this, ___item10, ___item21, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.ValueTuple`2<System.Type,System.Int32>,System.Collections.Generic.Stack`1<System.Object>>::TryGetValue(!0,!1&)
inline bool Dictionary_2_TryGetValue_m5A246BE1478D5AAF776C27C639FA7A2CFC99FCF7 (Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E * __this, ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 ___key0, Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *, ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 , Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 **, const RuntimeMethod*))Dictionary_2_TryGetValue_mD31FCDDCF2A1FCB97F9603969F8E5648567C3168_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Collections.Generic.Stack`1<System.Object>::.ctor()
inline void Stack_1__ctor_m07A8AE55BA78A57D5BDC0271ED6AA646D69AA785 (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * __this, const RuntimeMethod* method)
{
(( void (*) (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *, const RuntimeMethod*))Stack_1__ctor_m07A8AE55BA78A57D5BDC0271ED6AA646D69AA785_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.ValueTuple`2<System.Type,System.Int32>,System.Collections.Generic.Stack`1<System.Object>>::Add(!0,!1)
inline void Dictionary_2_Add_mB55E82A159A823B2EFD0951D81D9FFB2D1537AEC (Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E * __this, ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 ___key0, Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *, ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 , Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *, const RuntimeMethod*))Dictionary_2_Add_m123F743BCFDF56C9AC14F02AEF61EAB10A7151F3_gshared)(__this, ___key0, ___value1, method);
}
// System.Int32 System.Collections.Generic.Stack`1<System.Object>::get_Count()
inline int32_t Stack_1_get_Count_m692E28BB74B2613597E407DDCCBA926306D8086A_inline (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *, const RuntimeMethod*))Stack_1_get_Count_m692E28BB74B2613597E407DDCCBA926306D8086A_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.Stack`1<System.Object>::Pop()
inline RuntimeObject * Stack_1_Pop_m490CECEA5A2911DA732CD4D7612D04BD18E1DF12 (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *, const RuntimeMethod*))Stack_1_Pop_m490CECEA5A2911DA732CD4D7612D04BD18E1DF12_gshared)(__this, method);
}
// System.Void System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Type,System.Int32>>::.ctor(!0,!1)
inline void ValueTuple_2__ctor_m2608A054E27ECC5D65915B37E53803ADAA9A47BC (ValueTuple_2_tC1E4B764A22137F872FF33F434B43BE4B46D21F5 * __this, RuntimeObject * ___item10, ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 ___item21, const RuntimeMethod* method)
{
(( void (*) (ValueTuple_2_tC1E4B764A22137F872FF33F434B43BE4B46D21F5 *, RuntimeObject *, ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 , const RuntimeMethod*))ValueTuple_2__ctor_m6FAA11B851F151283FF480600F0B198695C8946E_gshared)(__this, ___item10, ___item21, method);
}
// System.Void System.Collections.Generic.List`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Type,System.Int32>>>::Add(!0)
inline void List_1_Add_mAAACAA53634A9E7D20D94B3333B23E6F6F5B2031 (List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 * __this, ValueTuple_2_tC1E4B764A22137F872FF33F434B43BE4B46D21F5 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 *, ValueTuple_2_tC1E4B764A22137F872FF33F434B43BE4B46D21F5 , const RuntimeMethod*))List_1_Add_m859CC861721274138078EA5E8F4981E50B78CBDE_gshared)(__this, ___item0, method);
}
// System.Array UnityEngine.GameObject::GetComponentsInternal(System.Type,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * GameObject_GetComponentsInternal_mAB759217A3AD0831ABD9387163126D391459E1B8 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, Type_t * ___type0, bool ___useSearchTypeAsArrayReturnType1, bool ___recursive2, bool ___includeInactive3, bool ___reverse4, RuntimeObject * ___resultList5, const RuntimeMethod* method);
// System.Int32 UnityEngine.Mesh::DefaultDimensionForChannel(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mesh_DefaultDimensionForChannel_mF943AF434BB9F54DBB3B3DE65F7B816E617A89C9 (int32_t ___channel0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Mesh::get_canAccess()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194 (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Mesh::HasVertexAttribute(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Mesh_HasVertexAttribute_m87C57B859ECB5224EEB77ED9BD3B6FF30F5A9B1C (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___attr0, const RuntimeMethod* method);
// System.Array UnityEngine.Mesh::GetAllocArrayFromChannelImpl(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Mesh_GetAllocArrayFromChannelImpl_mFDE324953466F6DBAC14CD4B48105B62181CC399 (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method);
// System.Void UnityEngine.Mesh::PrintErrorCantAccessChannel(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19 (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___ch0, const RuntimeMethod* method);
// UnityEngine.Object[] UnityEngine.Object::FindObjectsOfType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* Object_FindObjectsOfType_m3FC26FB3B36525BFBFCCCD1AEEE8A86712A12203 (Type_t * ___type0, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<T> UnityEngine.Rendering.CullingResults::GetNativeArray<UnityEngine.Rendering.VisibleLight>(System.Void*,System.Int32)
inline NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 CullingResults_GetNativeArray_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_mACDB0C7A85042F3D0146F419B66D8DE08B767163 (CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B * __this, void* ___dataPointer0, int32_t ___length1, const RuntimeMethod* method)
{
return (( NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 (*) (CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B *, void*, int32_t, const RuntimeMethod*))CullingResults_GetNativeArray_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_mACDB0C7A85042F3D0146F419B66D8DE08B767163_gshared)(__this, ___dataPointer0, ___length1, method);
}
// UnityEngine.UnityException UnityEngine.Texture::CreateNonReadableException(UnityEngine.Texture)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28 * Texture_CreateNonReadableException_m66E69BE853119A5A9FE2C27EA788B62BF7CFE34D (Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * __this, Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___t0, const RuntimeMethod* method);
// System.IntPtr UnityEngine.Texture2D::GetWritableImageData(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Texture2D_GetWritableImageData_m68888C2D5A3E017101E4C8DE6538D5031034DAFF (Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * __this, int32_t ___frame0, const RuntimeMethod* method);
// System.Void* System.IntPtr::op_Explicit(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027 (intptr_t ___value0, const RuntimeMethod* method);
// System.Int64 UnityEngine.Texture2D::GetRawImageDataSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Texture2D_GetRawImageDataSize_m1CA6CE6DF0120CD36211E07896448A4CD2DE7F10 (Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.Int32>::get_IsCreated()
inline bool NativeArray_1_get_IsCreated_m03942F481D4D8775D5C39C177826D600D7089DDA (NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF * __this, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF *, const RuntimeMethod*))NativeArray_1_get_IsCreated_m03942F481D4D8775D5C39C177826D600D7089DDA_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector2>::get_IsCreated()
inline bool NativeArray_1_get_IsCreated_m6B22098565FFCA3A112B3107B5ABEFA8F9C3B5CC (NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 * __this, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 *, const RuntimeMethod*))NativeArray_1_get_IsCreated_m6B22098565FFCA3A112B3107B5ABEFA8F9C3B5CC_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector3>::get_IsCreated()
inline bool NativeArray_1_get_IsCreated_mA83E57BF410BDF5144D71C3C740F1BB04D255073 (NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 * __this, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 *, const RuntimeMethod*))NativeArray_1_get_IsCreated_mA83E57BF410BDF5144D71C3C740F1BB04D255073_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_mADC445CD821A933F7F3DF060145383EF6362D6A9 (NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_mADC445CD821A933F7F3DF060145383EF6362D6A9_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_m5ECD2716F7A19ADBB6ED2DDC79B25A3D7983D06D (NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m5ECD2716F7A19ADBB6ED2DDC79B25A3D7983D06D_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_m717B5DF783F192540056AE7A5A94B6DBDB8F9F25 (NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m717B5DF783F192540056AE7A5A94B6DBDB8F9F25_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_m87D45453553F68A516214FEABB8E004027B6F4EA (NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m87D45453553F68A516214FEABB8E004027B6F4EA_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRFace>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_m9DDFB3AC72B2DDA9252E82C7D045B360C34BCADF (NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m9DDFB3AC72B2DDA9252E82C7D045B360C34BCADF_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_mF5A1714C6870A3DF6F61BB87B0700F0A8A67F9CC (NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_mF5A1714C6870A3DF6F61BB87B0700F0A8A67F9CC_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_m04C9732607058C6721B91A719DE872C3550D169C (NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m04C9732607058C6721B91A719DE872C3550D169C_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_m0A7431FE284605A389AB455AFBC44304CAE118CF (NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m0A7431FE284605A389AB455AFBC44304CAE118CF_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_mBA3667DFD2FA91C71C118ECA43EB22503D4FC2C8 (NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_mBA3667DFD2FA91C71C118ECA43EB22503D4FC2C8_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_mEEF6B5C996FEF2597C318C267E2B6CFB88175518 (NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_mEEF6B5C996FEF2597C318C267E2B6CFB88175518_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_m192CF93170B36E61ACE804945C3B18481D07B1C5 (NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m192CF93170B36E61ACE804945C3B18481D07B1C5_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_m16425BC62E9AC48C88E58870411D0D63CCE985A9 (NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m16425BC62E9AC48C88E58870411D0D63CCE985A9_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemCpyStride(System.Void*,System.Int32,System.Void*,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F (void* ___destination0, int32_t ___destinationStride1, void* ___source2, int32_t ___sourceStride3, int32_t ___elementSize4, int32_t ___count5, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeSlice`1<System.Byte>::.ctor(Unity.Collections.NativeArray`1<T>)
inline void NativeSlice_1__ctor_m10629E73F4A5C8EFCF25200B0753B32740CE4241 (NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E * __this, NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 ___array0, const RuntimeMethod* method)
{
(( void (*) (NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E *, NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 , const RuntimeMethod*))NativeSlice_1__ctor_m10629E73F4A5C8EFCF25200B0753B32740CE4241_gshared)(__this, ___array0, method);
}
// Unity.Collections.NativeSlice`1<U> Unity.Collections.NativeSlice`1<System.Byte>::SliceConvert<System.UInt32>()
inline NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A NativeSlice_1_SliceConvert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m80E1CA48C3B8A9E51D8BE04FDCD3BF59BBF7034C (NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E * __this, const RuntimeMethod* method)
{
return (( NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A (*) (NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E *, const RuntimeMethod*))NativeSlice_1_SliceConvert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m80E1CA48C3B8A9E51D8BE04FDCD3BF59BBF7034C_gshared)(__this, method);
}
// System.Void Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters::.ctor(System.Void*,System.IntPtr,Unity.Jobs.JobHandle,Unity.Jobs.LowLevel.Unsafe.ScheduleMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48 (JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F * __this, void* ___i_jobData0, intptr_t ___i_reflectionData1, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___i_dependency2, int32_t ___i_scheduleMode3, const RuntimeMethod* method);
// Unity.Jobs.JobHandle Unity.Jobs.LowLevel.Unsafe.JobsUtility::Schedule(Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 JobsUtility_Schedule_m544BE1DBAEFF069809AE5304FD6BBFEE2927D4C3 (JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F * ___parameters0, const RuntimeMethod* method);
// Unity.Jobs.JobHandle Unity.Jobs.LowLevel.Unsafe.JobsUtility::ScheduleParallelFor(Unity.Jobs.LowLevel.Unsafe.JobsUtility/JobScheduleParameters&,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 JobsUtility_ScheduleParallelFor_mD0B7FD9589FB242D9C4E21F93054C526FA6B1DBF (JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F * ___parameters0, int32_t ___arrayLength1, int32_t ___innerloopBatchCount2, const RuntimeMethod* method);
// System.Void UnityEngine.ComputeBuffer::.ctor(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputeBuffer__ctor_mDB6AADE63A5BF60A472D9FF9E533AF38D15C6B1E (ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * __this, int32_t ___count0, int32_t ___stride1, const RuntimeMethod* method);
// System.Int32 UnityEngine.ComputeBuffer::get_count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ComputeBuffer_get_count_m2D80EF2880723F6627924C0ABC642D8DB538D04D (ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.ComputeBuffer::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputeBuffer_Dispose_m002F431B0EBF0B24DF20C7EB8FC2F44B596A6FFE (ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph/RenderPass::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderPass_Clear_m216A695EE93282211427AFAE4876C742D5CBE627 (RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph/RenderPass>::get_Count()
inline int32_t List_1_get_Count_m0B6FAC22324A918CFA9E37637257E82823029437_inline (List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph/RenderPass>::Add(!0)
inline void List_1_Add_m011F5FA3CC5FBB00875D2C3615DED27D6CE38D60 (List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 * __this, RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 *, RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// System.Void UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphBuilder::.ctor(UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph/RenderPass,UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderGraphBuilder__ctor_m3EB345CC9E313C7C6EADFF534CA50FAF440D75CC (RenderGraphBuilder_t9026010D496B7D7D33BBFD0350D5014FAC7EF312 * __this, RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 * ___renderPass0, RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * ___resources1, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.ExecuteEvents::GetEventChain(UnityEngine.GameObject,System.Collections.Generic.IList`1<UnityEngine.Transform>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_GetEventChain_mD90FFC4A70E16AFA81AC6C9CFF174630F77C608C (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, RuntimeObject* ___eventChain1, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.Transform>::get_Item(System.Int32)
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * List_1_get_Item_m88FE4B6F43A2CD95BB9ECF8D801F206618FFFFB8_inline (List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * (*) (List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Transform>::get_Count()
inline int32_t List_1_get_Count_mFB4F65ABD2DD0845C2448493238223FB4079A90C_inline (List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// UnityEngine.Transform UnityEngine.GameObject::get_transform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method);
// UnityEngine.Transform UnityEngine.Transform::get_parent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___x0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___y1, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550 (const RuntimeMethod* method);
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 Array_InternalArray__IReadOnlyList_get_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mEB94F336D6DB8DC6CD7CD66E702CB85394B825A0_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mEB94F336D6DB8DC6CD7CD66E702CB85394B825A0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mEB94F336D6DB8DC6CD7CD66E702CB85394B825A0_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 *)(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 *)(&V_0));
GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C Array_InternalArray__IReadOnlyList_get_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m8A8482DAD756D06789C1145B2F3B3875513A6476_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m8A8482DAD756D06789C1145B2F3B3875513A6476_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m8A8482DAD756D06789C1145B2F3B3875513A6476_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C *)(GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C *)(&V_0));
GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UI.ColorBlock>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA Array_InternalArray__IReadOnlyList_get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m33630D6CDB958E870C4423D8B4B95B45B53E27B5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m33630D6CDB958E870C4423D8B4B95B45B53E27B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m33630D6CDB958E870C4423D8B4B95B45B53E27B5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_0));
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UI.Navigation>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 Array_InternalArray__IReadOnlyList_get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m98C80522DA18E643E4667969AD96DAE7B8727DF7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m98C80522DA18E643E4667969AD96DAE7B8727DF7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m98C80522DA18E643E4667969AD96DAE7B8727DF7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&V_0));
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UI.SpriteState>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A Array_InternalArray__IReadOnlyList_get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mD86C0C67E39FD2A6DE4E993195C85EAC1ED5100E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mD86C0C67E39FD2A6DE4E993195C85EAC1ED5100E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mD86C0C67E39FD2A6DE4E993195C85EAC1ED5100E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(&V_0));
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UICharInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m4BE02A176629CBDDC6AAE27051526963CEA5F348_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m4BE02A176629CBDDC6AAE27051526963CEA5F348_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m4BE02A176629CBDDC6AAE27051526963CEA5F348_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(&V_0));
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UILineInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m3B144C216D207DC5DD90C433988C7BD1D6D746F2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m3B144C216D207DC5DD90C433988C7BD1D6D746F2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m3B144C216D207DC5DD90C433988C7BD1D6D746F2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(&V_0));
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UIVertex>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m4A58F74CF983A715A77F5506B54B831D4609C2C3_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m4A58F74CF983A715A77F5506B54B831D4609C2C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m4A58F74CF983A715A77F5506B54B831D4609C2C3_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(&V_0));
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UnitySynchronizationContext_WorkRequest>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mC500BEBCAE65267ED127EE4EF03640ED52CB5A76_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mC500BEBCAE65267ED127EE4EF03640ED52CB5A76_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mC500BEBCAE65267ED127EE4EF03640ED52CB5A76_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(&V_0));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Vector2>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Array_InternalArray__IReadOnlyList_get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5CAED87CB0DBEE91B20FFA4AC49CE8295CC39888_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5CAED87CB0DBEE91B20FFA4AC49CE8295CC39888_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5CAED87CB0DBEE91B20FFA4AC49CE8295CC39888_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Vector3>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Array_InternalArray__IReadOnlyList_get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC022982B678F2CE77FE94F96EBFAFA37C557681E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC022982B678F2CE77FE94F96EBFAFA37C557681E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC022982B678F2CE77FE94F96EBFAFA37C557681E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&V_0));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Vector4>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E Array_InternalArray__IReadOnlyList_get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m1315FF1DB9DF79D3E27EC2FEC0AB27D883DE4FF5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m1315FF1DB9DF79D3E27EC2FEC0AB27D883DE4FF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m1315FF1DB9DF79D3E27EC2FEC0AB27D883DE4FF5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(&V_0));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 Array_InternalArray__IReadOnlyList_get_Item_TisPointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2_m0A167ED560C12B7154C97E7DE8190AC0CE1CFEA8_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisPointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2_m0A167ED560C12B7154C97E7DE8190AC0CE1CFEA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisPointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2_m0A167ED560C12B7154C97E7DE8190AC0CE1CFEA8_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 *)(PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 *)(&V_0));
PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARFoundation.ARRaycastHit>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC Array_InternalArray__IReadOnlyList_get_Item_TisARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_m1D5FC4484B82174100C66015637926CA0C342A19_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_m1D5FC4484B82174100C66015637926CA0C342A19_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_m1D5FC4484B82174100C66015637926CA0C342A19_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC *)(ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC *)(&V_0));
ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARFoundation.ARTextureInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 Array_InternalArray__IReadOnlyList_get_Item_TisARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_m3E32CC458F90AA13998F9D53991798C88DB5BA9A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_m3E32CC458F90AA13998F9D53991798C88DB5BA9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_m3E32CC458F90AA13998F9D53991798C88DB5BA9A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 *)(ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 *)(&V_0));
ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int16>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 Array_InternalArray__IReadOnlyList_get_Item_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_mC0D70F73394E57017E6C440A68E84A3E2D1DB3AF_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_mC0D70F73394E57017E6C440A68E84A3E2D1DB3AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_mC0D70F73394E57017E6C440A68E84A3E2D1DB3AF_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 *)(Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 *)(&V_0));
Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 Array_InternalArray__IReadOnlyList_get_Item_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_m93BF3C963A672E09F8D4EE00BA464F1751C37979_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_m93BF3C963A672E09F8D4EE00BA464F1751C37979_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_m93BF3C963A672E09F8D4EE00BA464F1751C37979_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 *)(Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 *)(&V_0));
Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARKit.ManagedReferenceImage>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 Array_InternalArray__IReadOnlyList_get_Item_TisManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789_mA31A04BBE67D42A31940E9FFB2226A22F8E07210_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789_mA31A04BBE67D42A31940E9FFB2226A22F8E07210_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789_mA31A04BBE67D42A31940E9FFB2226A22F8E07210_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 *)(ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 *)(&V_0));
ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.BoundedPlane>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 Array_InternalArray__IReadOnlyList_get_Item_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_m12BB38C9FE90C076B4AED29F2BB548E99A738BF7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_m12BB38C9FE90C076B4AED29F2BB548E99A738BF7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_m12BB38C9FE90C076B4AED29F2BB548E99A738BF7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 *)(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 *)(&V_0));
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.TrackableId>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 Array_InternalArray__IReadOnlyList_get_Item_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m361A70C130A6F0137D4EC737F426DB4C4BE2DB55_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m361A70C130A6F0137D4EC737F426DB4C4BE2DB55_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m361A70C130A6F0137D4EC737F426DB4C4BE2DB55_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 *)(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 *)(&V_0));
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRAnchor>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 Array_InternalArray__IReadOnlyList_get_Item_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m3E24CD3BB53AF97B90605B2999215E5F012806AF_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m3E24CD3BB53AF97B90605B2999215E5F012806AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m3E24CD3BB53AF97B90605B2999215E5F012806AF_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 *)(XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 *)(&V_0));
XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 Array_InternalArray__IReadOnlyList_get_Item_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_m388598D8CC5B10B61A517B61D9BBB5BB8AA87520_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_m388598D8CC5B10B61A517B61D9BBB5BB8AA87520_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_m388598D8CC5B10B61A517B61D9BBB5BB8AA87520_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 *)(XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 *)(&V_0));
XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 Array_InternalArray__IReadOnlyList_get_Item_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m2A2CAFC12F587CE2082194993978301CAA676B9F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m2A2CAFC12F587CE2082194993978301CAA676B9F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m2A2CAFC12F587CE2082194993978301CAA676B9F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 *)(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 *)(&V_0));
XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRFace>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 Array_InternalArray__IReadOnlyList_get_Item_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m9131E95B9226A5EB82C4FC233B98033A894804E9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m9131E95B9226A5EB82C4FC233B98033A894804E9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m9131E95B9226A5EB82C4FC233B98033A894804E9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 *)(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 *)(&V_0));
XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRHumanBody>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_mAF805501AEC8A3FB10E3DE80F328BCFB22FC600C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_mAF805501AEC8A3FB10E3DE80F328BCFB22FC600C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_mAF805501AEC8A3FB10E3DE80F328BCFB22FC600C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 *)(XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 *)(&V_0));
XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF_mC9B4E58FD3C91A54913B67C0AD936853E8E4E0F1_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF_mC9B4E58FD3C91A54913B67C0AD936853E8E4E0F1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF_mC9B4E58FD3C91A54913B67C0AD936853E8E4E0F1_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF *)(XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF *)(&V_0));
XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B_m8B49061CBAD105C1EFF833DB8F91E76C817EFE35_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B_m8B49061CBAD105C1EFF833DB8F91E76C817EFE35_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B_m8B49061CBAD105C1EFF833DB8F91E76C817EFE35_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B *)(XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B *)(&V_0));
XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRParticipant>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 Array_InternalArray__IReadOnlyList_get_Item_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_m06B3D619CB64A9D50358166F134D5A45712E3829_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_m06B3D619CB64A9D50358166F134D5A45712E3829_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_m06B3D619CB64A9D50358166F134D5A45712E3829_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 *)(XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 *)(&V_0));
XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRPointCloud>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 Array_InternalArray__IReadOnlyList_get_Item_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m6F07A8FF1ECC0108D0A2ED4780921A6DD518DC8E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m6F07A8FF1ECC0108D0A2ED4780921A6DD518DC8E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m6F07A8FF1ECC0108D0A2ED4780921A6DD518DC8E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 *)(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 *)(&V_0));
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRRaycastHit>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 Array_InternalArray__IReadOnlyList_get_Item_TisXRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_m2C53348B5E62D2E54C5BF495018DBE8B456DC71E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_m2C53348B5E62D2E54C5BF495018DBE8B456DC71E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_m2C53348B5E62D2E54C5BF495018DBE8B456DC71E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 *)(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 *)(&V_0));
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRReferenceImage>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E Array_InternalArray__IReadOnlyList_get_Item_TisXRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_mF628531CD2EB2C4422231135DC2A5318EF8EC661_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_mF628531CD2EB2C4422231135DC2A5318EF8EC661_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_mF628531CD2EB2C4422231135DC2A5318EF8EC661_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E *)(XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E *)(&V_0));
XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRReferenceObject>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA Array_InternalArray__IReadOnlyList_get_Item_TisXRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_mD37673404C0D1CBB8578C98A54734C077C74A541_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_mD37673404C0D1CBB8578C98A54734C077C74A541_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_mD37673404C0D1CBB8578C98A54734C077C74A541_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA *)(XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA *)(&V_0));
XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRReferencePoint>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 Array_InternalArray__IReadOnlyList_get_Item_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_m2405728A25300552EB9FB5697B72BEA592E5DBF9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_m2405728A25300552EB9FB5697B72BEA592E5DBF9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_m2405728A25300552EB9FB5697B72BEA592E5DBF9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 *)(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 *)(&V_0));
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD Array_InternalArray__IReadOnlyList_get_Item_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_mB97AE3FE8EC365A4E084AF4E4B9D83973D0BEC0C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_mB97AE3FE8EC365A4E084AF4E4B9D83973D0BEC0C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_mB97AE3FE8EC365A4E084AF4E4B9D83973D0BEC0C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD *)(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD *)(&V_0));
XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRTrackedImage>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 Array_InternalArray__IReadOnlyList_get_Item_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_mA96D32B22FC86EAFDD1A3747C1A5E93226F7B8EE_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_mA96D32B22FC86EAFDD1A3747C1A5E93226F7B8EE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_mA96D32B22FC86EAFDD1A3747C1A5E93226F7B8EE_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 *)(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 *)(&V_0));
XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.ARSubsystems.XRTrackedObject>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 Array_InternalArray__IReadOnlyList_get_Item_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_m6DFF9088BC663F5883B03776306CF81FE6FA2114_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_m6DFF9088BC663F5883B03776306CF81FE6FA2114_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_m6DFF9088BC663F5883B03776306CF81FE6FA2114_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 *)(XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 *)(&V_0));
XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.MeshId>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A Array_InternalArray__IReadOnlyList_get_Item_TisMeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_mBD6908263E1156DCE758B73289C14141E9DFCE99_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisMeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_mBD6908263E1156DCE758B73289C14141E9DFCE99_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisMeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_mBD6908263E1156DCE758B73289C14141E9DFCE99_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)(&V_0));
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.MeshInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 Array_InternalArray__IReadOnlyList_get_Item_TisMeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_m0F508E7D7FE310483F241CD20A52E1FD25F9DE45_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisMeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_m0F508E7D7FE310483F241CD20A52E1FD25F9DE45_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisMeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_m0F508E7D7FE310483F241CD20A52E1FD25F9DE45_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)(MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)(&V_0));
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.XR.XRNodeState>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A Array_InternalArray__IReadOnlyList_get_Item_TisXRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_m28FC9D8EAAE0D98CB1E101A8F1B0BF6586B62210_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_m28FC9D8EAAE0D98CB1E101A8F1B0BF6586B62210_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IReadOnlyList_get_Item_TisXRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_m28FC9D8EAAE0D98CB1E101A8F1B0BF6586B62210_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *)(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *)(&V_0));
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 Array_InternalArray__get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1CF557045E7E734993401587A6B95688A830C1C1_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1CF557045E7E734993401587A6B95688A830C1C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1CF557045E7E734993401587A6B95688A830C1C1_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(&V_0));
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Boolean>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_InternalArray__get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m629BA5846BCC1FB720C82F465DBEDC7CC35C9923_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m629BA5846BCC1FB720C82F465DBEDC7CC35C9923_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m629BA5846BCC1FB720C82F465DBEDC7CC35C9923_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (bool*)(bool*)(&V_0));
bool L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Byte>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Array_InternalArray__get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE0AC51BD7B42B61EADFED85793540510F5513D8E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE0AC51BD7B42B61EADFED85793540510F5513D8E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE0AC51BD7B42B61EADFED85793540510F5513D8E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint8_t*)(uint8_t*)(&V_0));
uint8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Char>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Array_InternalArray__get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m7910AF4B30BD106F78DE0F14393EA2FA9165302D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m7910AF4B30BD106F78DE0F14393EA2FA9165302D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m7910AF4B30BD106F78DE0F14393EA2FA9165302D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Il2CppChar*)(Il2CppChar*)(&V_0));
Il2CppChar L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.DictionaryEntry>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Array_InternalArray__get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mE027C77C0133B05655D10BE4BAB17CCBEA45C34E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mE027C77C0133B05655D10BE4BAB17CCBEA45C34E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mE027C77C0133B05655D10BE4BAB17CCBEA45C34E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_0));
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA Array_InternalArray__get_Item_TisEntry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA_mECD857771541823F1B586B83AA2E1802B28A0445_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA_mECD857771541823F1B586B83AA2E1802B28A0445_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA_mECD857771541823F1B586B83AA2E1802B28A0445_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA *)(Entry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA *)(&V_0));
Entry_tE7D9F95F37AC4F119475AAF070D1E8911CCED3CA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8 Array_InternalArray__get_Item_TisEntry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8_mFBC7707AC24FA2789DEA96AECB42D64FBC52D1B7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8_mFBC7707AC24FA2789DEA96AECB42D64FBC52D1B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8_mFBC7707AC24FA2789DEA96AECB42D64FBC52D1B7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8 *)(Entry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8 *)(&V_0));
Entry_tA7EA125B281989F05ECB8F949A8E401BBF7D27B8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 Array_InternalArray__get_Item_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_mCECCCAEA8DAEB22503C8AD324DB265B5B6186F75_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_mCECCCAEA8DAEB22503C8AD324DB265B5B6186F75_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_mCECCCAEA8DAEB22503C8AD324DB265B5B6186F75_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 *)(Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 *)(&V_0));
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Char>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A Array_InternalArray__get_Item_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_mF73CE007CD578AA6FDE3A9A25012AF1694E66CC4_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_mF73CE007CD578AA6FDE3A9A25012AF1694E66CC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_mF73CE007CD578AA6FDE3A9A25012AF1694E66CC4_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A *)(Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A *)(&V_0));
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 Array_InternalArray__get_Item_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_mD2552321463035DD3D2A7846ED93F09BCA217DF4_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_mD2552321463035DD3D2A7846ED93F09BCA217DF4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_mD2552321463035DD3D2A7846ED93F09BCA217DF4_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 *)(Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 *)(&V_0));
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A Array_InternalArray__get_Item_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mDB90DCD87707AA6497C517CEC27D8A84AD91B594_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mDB90DCD87707AA6497C517CEC27D8A84AD91B594_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mDB90DCD87707AA6497C517CEC27D8A84AD91B594_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A *)(Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A *)(&V_0));
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D Array_InternalArray__get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m5E18D1F3D75951F12CB606D6CEB7A156A5C6C8BD_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m5E18D1F3D75951F12CB606D6CEB7A156A5C6C8BD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m5E18D1F3D75951F12CB606D6CEB7A156A5C6C8BD_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(&V_0));
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,System.Boolean>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 Array_InternalArray__get_Item_TisEntry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9_mD576A096B552DA8A3F0EE39A772FA6A7D2228CF1_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9_mD576A096B552DA8A3F0EE39A772FA6A7D2228CF1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9_mD576A096B552DA8A3F0EE39A772FA6A7D2228CF1_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 *)(Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 *)(&V_0));
Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB Array_InternalArray__get_Item_TisEntry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB_m6F1DA561287511E4762366059D2A6D32075C2EC6_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB_m6F1DA561287511E4762366059D2A6D32075C2EC6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB_m6F1DA561287511E4762366059D2A6D32075C2EC6_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB *)(Entry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB *)(&V_0));
Entry_tF26C2CEDD5AB28304287A51E136FD99D9DC1E3BB L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE Array_InternalArray__get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8CC22EADB453439C66E587109B90CCA60E03233A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8CC22EADB453439C66E587109B90CCA60E03233A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8CC22EADB453439C66E587109B90CCA60E03233A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(&V_0));
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA Array_InternalArray__get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m61ECA245B1071FDB6DB79FE4A5AE6362A5381DF5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m61ECA245B1071FDB6DB79FE4A5AE6362A5381DF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m61ECA245B1071FDB6DB79FE4A5AE6362A5381DF5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(&V_0));
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D Array_InternalArray__get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m00CEFC0E6EB5C4E6286E76754603C701C01C8813_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m00CEFC0E6EB5C4E6286E76754603C701C01C8813_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m00CEFC0E6EB5C4E6286E76754603C701C01C8813_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(&V_0));
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 Array_InternalArray__get_Item_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mF6BF992ED2C31E71C6114E6BA2EE73A41708906D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mF6BF992ED2C31E71C6114E6BA2EE73A41708906D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mF6BF992ED2C31E71C6114E6BA2EE73A41708906D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 *)(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 *)(&V_0));
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A Array_InternalArray__get_Item_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m25FEA9EB39C841593DBEA7B877EA0B89A64239F3_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m25FEA9EB39C841593DBEA7B877EA0B89A64239F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m25FEA9EB39C841593DBEA7B877EA0B89A64239F3_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A *)(Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A *)(&V_0));
Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 Array_InternalArray__get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m4DC869A1E743F333DE9CC0C76B3CFC709F91A53A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m4DC869A1E743F333DE9CC0C76B3CFC709F91A53A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m4DC869A1E743F333DE9CC0C76B3CFC709F91A53A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(&V_0));
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 Array_InternalArray__get_Item_TisEntry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4_m3C496D236A535BE961084C29280455CFF6E35C71_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4_m3C496D236A535BE961084C29280455CFF6E35C71_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4_m3C496D236A535BE961084C29280455CFF6E35C71_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 *)(Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 *)(&V_0));
Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14 Array_InternalArray__get_Item_TisEntry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14_m979BB4C19B2EFB5F7925B468FC4A4E7FF00D9CBD_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14_m979BB4C19B2EFB5F7925B468FC4A4E7FF00D9CBD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14_m979BB4C19B2EFB5F7925B468FC4A4E7FF00D9CBD_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14 *)(Entry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14 *)(&V_0));
Entry_tBF2A5BB92F50FBAF14B581AF3752588B35950D14 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096 Array_InternalArray__get_Item_TisEntry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096_mC33F51BD2DA61D0126C7E45F795EAF634727CA33_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096_mC33F51BD2DA61D0126C7E45F795EAF634727CA33_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEntry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096_mC33F51BD2DA61D0126C7E45F795EAF634727CA33_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096 *)(Entry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096 *)(&V_0));
Entry_t3D2C52CF87C52CE90B57117ACA9DE757F26C0096 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.HashSet`1_Slot<System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 Array_InternalArray__get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m38844CFC22B83289886F6AD309D8861827A1A40F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m38844CFC22B83289886F6AD309D8861827A1A40F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m38844CFC22B83289886F6AD309D8861827A1A40F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(&V_0));
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.HashSet`1_Slot<UnityEngine.XR.MeshId>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tEECB296281FB9107F82A5761CB0999F4E653D61D Array_InternalArray__get_Item_TisSlot_tEECB296281FB9107F82A5761CB0999F4E653D61D_m84025D1166A5FFDB04954017927C86BC84408811_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSlot_tEECB296281FB9107F82A5761CB0999F4E653D61D_m84025D1166A5FFDB04954017927C86BC84408811_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Slot_tEECB296281FB9107F82A5761CB0999F4E653D61D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisSlot_tEECB296281FB9107F82A5761CB0999F4E653D61D_m84025D1166A5FFDB04954017927C86BC84408811_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Slot_tEECB296281FB9107F82A5761CB0999F4E653D61D *)(Slot_tEECB296281FB9107F82A5761CB0999F4E653D61D *)(&V_0));
Slot_tEECB296281FB9107F82A5761CB0999F4E653D61D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B Array_InternalArray__get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mCE796920ABC11A9902FC9F9D6160642A63D433FA_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mCE796920ABC11A9902FC9F9D6160642A63D433FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mCE796920ABC11A9902FC9F9D6160642A63D433FA_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(&V_0));
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 Array_InternalArray__get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m27C4C8AE0E9CB818A2F22B3E4A2C34C493DC1198_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m27C4C8AE0E9CB818A2F22B3E4A2C34C493DC1198_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m27C4C8AE0E9CB818A2F22B3E4A2C34C493DC1198_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(&V_0));
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 Array_InternalArray__get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mE46942032A5444788C9BD3E4B05C8A9BD2DCA803_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mE46942032A5444788C9BD3E4B05C8A9BD2DCA803_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mE46942032A5444788C9BD3E4B05C8A9BD2DCA803_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&V_0));
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F Array_InternalArray__get_Item_TisKeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F_m135D3E823F271BEE888695C8555A7BB26FD17F21_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F_m135D3E823F271BEE888695C8555A7BB26FD17F21_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F_m135D3E823F271BEE888695C8555A7BB26FD17F21_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F *)(KeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F *)(&V_0));
KeyValuePair_2_t1A474B7D9E69B2E69A2189C1375DBEF6657C0E5F L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87 Array_InternalArray__get_Item_TisKeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87_m789E279EEC4FB2F236C10459B23EC59B083223BD_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87_m789E279EEC4FB2F236C10459B23EC59B083223BD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87_m789E279EEC4FB2F236C10459B23EC59B083223BD_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87 *)(KeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87 *)(&V_0));
KeyValuePair_2_t6C0856706C76AFC9BC6C7A79A38F6DF3C04E0F87 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 Array_InternalArray__get_Item_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m57274F2DD11BBBF3668115EF583ADA6EB2A3D338_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m57274F2DD11BBBF3668115EF583ADA6EB2A3D338_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m57274F2DD11BBBF3668115EF583ADA6EB2A3D338_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 *)(KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 *)(&V_0));
KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F Array_InternalArray__get_Item_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_m14D25FA2BBBB92C0E91E23A191D4E81AEAA8AA32_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_m14D25FA2BBBB92C0E91E23A191D4E81AEAA8AA32_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_m14D25FA2BBBB92C0E91E23A191D4E81AEAA8AA32_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F *)(KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F *)(&V_0));
KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 Array_InternalArray__get_Item_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mE0B59A98E9750943F6876AB185628B86663BA495_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mE0B59A98E9750943F6876AB185628B86663BA495_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mE0B59A98E9750943F6876AB185628B86663BA495_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)(KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)(&V_0));
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 Array_InternalArray__get_Item_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mB7218FC07470AC18C202F363494421D6C1DF0714_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mB7218FC07470AC18C202F363494421D6C1DF0714_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mB7218FC07470AC18C202F363494421D6C1DF0714_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 *)(KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 *)(&V_0));
KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 Array_InternalArray__get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m9F18D534073EB714A33DD07BC19837F08129B5F7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m9F18D534073EB714A33DD07BC19837F08129B5F7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367_m9F18D534073EB714A33DD07BC19837F08129B5F7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(&V_0));
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 Array_InternalArray__get_Item_TisKeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04_m890B6422777D951E577EE4DED58F34D74897EBEA_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04_m890B6422777D951E577EE4DED58F34D74897EBEA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04_m890B6422777D951E577EE4DED58F34D74897EBEA_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 *)(KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 *)(&V_0));
KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA Array_InternalArray__get_Item_TisKeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA_m5CD11CB99F07C1817279B68D2C92C19ED407A1F9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA_m5CD11CB99F07C1817279B68D2C92C19ED407A1F9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA_m5CD11CB99F07C1817279B68D2C92C19ED407A1F9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA *)(KeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA *)(&V_0));
KeyValuePair_2_t5188B56466B1848E6B75FAD7F0A1A07DD95FD8BA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E Array_InternalArray__get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mBCE929EFD88213430B14BD2CF31A583723522143_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mBCE929EFD88213430B14BD2CF31A583723522143_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mBCE929EFD88213430B14BD2CF31A583723522143_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&V_0));
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE Array_InternalArray__get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m07DCF9692981AEACAD04D98EA58EC5727A57F24E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m07DCF9692981AEACAD04D98EA58EC5727A57F24E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m07DCF9692981AEACAD04D98EA58EC5727A57F24E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&V_0));
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 Array_InternalArray__get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m869CD39A2A3CBBF2661E51A2C3F817DDE806C357_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m869CD39A2A3CBBF2661E51A2C3F817DDE806C357_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m869CD39A2A3CBBF2661E51A2C3F817DDE806C357_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&V_0));
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C Array_InternalArray__get_Item_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m2FF531D45181DBED1BC8896F386DC1D1D986807B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m2FF531D45181DBED1BC8896F386DC1D1D986807B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m2FF531D45181DBED1BC8896F386DC1D1D986807B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C *)(KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C *)(&V_0));
KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 Array_InternalArray__get_Item_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m3DD0A9EC3298FEFB9F15B20760BC2A77A0A271F9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m3DD0A9EC3298FEFB9F15B20760BC2A77A0A271F9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m3DD0A9EC3298FEFB9F15B20760BC2A77A0A271F9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 *)(KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 *)(&V_0));
KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 Array_InternalArray__get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m4BF67E948E45ECF36FBD1F318CB1F443A173691F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m4BF67E948E45ECF36FBD1F318CB1F443A173691F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m4BF67E948E45ECF36FBD1F318CB1F443A173691F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(&V_0));
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 Array_InternalArray__get_Item_TisKeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71_m374FF9DE2C8ABF7808614B8E93BEF2D885E5E679_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71_m374FF9DE2C8ABF7808614B8E93BEF2D885E5E679_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71_m374FF9DE2C8ABF7808614B8E93BEF2D885E5E679_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 *)(KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 *)(&V_0));
KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA Array_InternalArray__get_Item_TisKeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA_m29B51453C3DF727ECC09B8B25E258ECB3A7C03D5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA_m29B51453C3DF727ECC09B8B25E258ECB3A7C03D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA_m29B51453C3DF727ECC09B8B25E258ECB3A7C03D5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA *)(KeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA *)(&V_0));
KeyValuePair_2_t9A2573A27EF4E0F718B4850FBA4E6B9113B0EACA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31 Array_InternalArray__get_Item_TisKeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31_m77779740213BC9A0B3C156647AE93815457C3E8C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31_m77779740213BC9A0B3C156647AE93815457C3E8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31_m77779740213BC9A0B3C156647AE93815457C3E8C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31 *)(KeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31 *)(&V_0));
KeyValuePair_2_tDCA9469E50591F61620B0E9EC20E356B20D59B31 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Hashtable_bucket>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 Array_InternalArray__get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mFBBF1D38CCDA2D13FFA16BC0CE1E5987639162FB_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mFBBF1D38CCDA2D13FFA16BC0CE1E5987639162FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mFBBF1D38CCDA2D13FFA16BC0CE1E5987639162FB_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(&V_0));
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.DateTime>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Array_InternalArray__get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAFF3D10D243FFDDEA2E5BE47A3D72269875C515D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAFF3D10D243FFDDEA2E5BE47A3D72269875C515D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAFF3D10D243FFDDEA2E5BE47A3D72269875C515D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0));
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Decimal>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Array_InternalArray__get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA29C644E6B30AA8FF56106A39C9E7530CE6AD04D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA29C644E6B30AA8FF56106A39C9E7530CE6AD04D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mA29C644E6B30AA8FF56106A39C9E7530CE6AD04D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&V_0));
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Diagnostics.Tracing.EventProvider_SessionInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A Array_InternalArray__get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m300EDE92997FDDF1F28D0F58BB0DCD2949366ADC_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m300EDE92997FDDF1F28D0F58BB0DCD2949366ADC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m300EDE92997FDDF1F28D0F58BB0DCD2949366ADC_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(&V_0));
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Diagnostics.Tracing.EventSource_EventMetadata>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B Array_InternalArray__get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mA7CBB7A3611EAF729E13A7C81382465897606032_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mA7CBB7A3611EAF729E13A7C81382465897606032_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mA7CBB7A3611EAF729E13A7C81382465897606032_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(&V_0));
EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Double>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Array_InternalArray__get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m91B1B86B2435BE0A25761F475691E825DDAD39A4_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m91B1B86B2435BE0A25761F475691E825DDAD39A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
double V_0 = 0.0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m91B1B86B2435BE0A25761F475691E825DDAD39A4_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (double*)(double*)(&V_0));
double L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Globalization.InternalCodePageDataItem>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 Array_InternalArray__get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m61D9DED5DD618D348B1BADD336B69E7902CC5424_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m61D9DED5DD618D348B1BADD336B69E7902CC5424_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m61D9DED5DD618D348B1BADD336B69E7902CC5424_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(&V_0));
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Globalization.InternalEncodingDataItem>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 Array_InternalArray__get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mDDF4AC156930E20611FCFB76DFC231AE7903FEE0_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mDDF4AC156930E20611FCFB76DFC231AE7903FEE0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mDDF4AC156930E20611FCFB76DFC231AE7903FEE0_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(&V_0));
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Guid>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Array_InternalArray__get_Item_TisGuid_t_m979DD807F084EEDE01F888F9957547DE23BCABBA_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGuid_t_m979DD807F084EEDE01F888F9957547DE23BCABBA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Guid_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisGuid_t_m979DD807F084EEDE01F888F9957547DE23BCABBA_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Guid_t *)(Guid_t *)(&V_0));
Guid_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Int16>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Array_InternalArray__get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m646E9CD2F8B82E5F35FBDE2A0EFD98A0F195D680_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m646E9CD2F8B82E5F35FBDE2A0EFD98A0F195D680_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m646E9CD2F8B82E5F35FBDE2A0EFD98A0F195D680_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int16_t*)(int16_t*)(&V_0));
int16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Int32>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC0D56DB29145576351D3144C0174C3DB3DFF9C84_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC0D56DB29145576351D3144C0174C3DB3DFF9C84_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC0D56DB29145576351D3144C0174C3DB3DFF9C84_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Int32Enum>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB47101014CAE26A07ACE2888ADF044342599F247_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB47101014CAE26A07ACE2888ADF044342599F247_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB47101014CAE26A07ACE2888ADF044342599F247_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Int64>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Array_InternalArray__get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m69766EC28E50BA89284F2D32C8684A401A19B346_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m69766EC28E50BA89284F2D32C8684A401A19B346_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m69766EC28E50BA89284F2D32C8684A401A19B346_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int64_t*)(int64_t*)(&V_0));
int64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.IntPtr>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Array_InternalArray__get_Item_TisIntPtr_t_mDAAED5E34FC82EC1CE912628ED6EFA3FD73BF68D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisIntPtr_t_mDAAED5E34FC82EC1CE912628ED6EFA3FD73BF68D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisIntPtr_t_mDAAED5E34FC82EC1CE912628ED6EFA3FD73BF68D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (intptr_t*)(intptr_t*)(&V_0));
intptr_t L_4 = V_0;
return (intptr_t)L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Linq.Set`1_Slot<System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 Array_InternalArray__get_Item_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_m78B8C6C9165FED6D3342F7372ACD13EF55AD9020_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_m78B8C6C9165FED6D3342F7372ACD13EF55AD9020_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_m78B8C6C9165FED6D3342F7372ACD13EF55AD9020_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 *)(Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 *)(&V_0));
Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Object>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_InternalArray__get_Item_TisRuntimeObject_m98D2A0CAA60FCDAD14B318032271D194A0FC463A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRuntimeObject_m98D2A0CAA60FCDAD14B318032271D194A0FC463A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisRuntimeObject_m98D2A0CAA60FCDAD14B318032271D194A0FC463A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RuntimeObject **)(RuntimeObject **)(&V_0));
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.ParameterizedStrings_FormatParam>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 Array_InternalArray__get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m47A9D1BA5A97752AF36397686537AB4612A836EB_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m47A9D1BA5A97752AF36397686537AB4612A836EB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m47A9D1BA5A97752AF36397686537AB4612A836EB_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(&V_0));
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m2FD87C18D9E6848633DF705BFFAFEB78D9396EA4_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m2FD87C18D9E6848633DF705BFFAFEB78D9396EA4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m2FD87C18D9E6848633DF705BFFAFEB78D9396EA4_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(&V_0));
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mB284F11FF6EAAF07725EE9EEECAAD865E149E9CD_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mB284F11FF6EAAF07725EE9EEECAAD865E149E9CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mB284F11FF6EAAF07725EE9EEECAAD865E149E9CD_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(&V_0));
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.ParameterModifier>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E Array_InternalArray__get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m83A26FF89E9009B96B3B82235BC9508BB8406D77_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m83A26FF89E9009B96B3B82235BC9508BB8406D77_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m83A26FF89E9009B96B3B82235BC9508BB8406D77_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(&V_0));
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Resources.ResourceLocator>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C Array_InternalArray__get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m6880A2B25322CD928A2218BAC463B0F9D7450BD2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m6880A2B25322CD928A2218BAC463B0F9D7450BD2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m6880A2B25322CD928A2218BAC463B0F9D7450BD2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(&V_0));
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA Array_InternalArray__get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m4277A55FF0F7CC43A28269EF99E761F3BA612EE3_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m4277A55FF0F7CC43A28269EF99E761F3BA612EE3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m4277A55FF0F7CC43A28269EF99E761F3BA612EE3_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(&V_0));
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Runtime.InteropServices.GCHandle>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 Array_InternalArray__get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mBB81776EBAE07C3F1598652B60A70D03C8C1B423_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mBB81776EBAE07C3F1598652B60A70D03C8C1B423_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mBB81776EBAE07C3F1598652B60A70D03C8C1B423_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_0));
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.SByte>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Array_InternalArray__get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m288F7FA25642BAF460C919173FFBACFF200256FE_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m288F7FA25642BAF460C919173FFBACFF200256FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int8_t V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m288F7FA25642BAF460C919173FFBACFF200256FE_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int8_t*)(int8_t*)(&V_0));
int8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Single>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Array_InternalArray__get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m77CE54A431B9137F71AE4EB8DD6BD6896CAD51D5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m77CE54A431B9137F71AE4EB8DD6BD6896CAD51D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m77CE54A431B9137F71AE4EB8DD6BD6896CAD51D5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (float*)(float*)(&V_0));
float L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B Array_InternalArray__get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mE5257779A8486E28FF4CE35150FACFDEF3E4C3A2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mE5257779A8486E28FF4CE35150FACFDEF3E4C3A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mE5257779A8486E28FF4CE35150FACFDEF3E4C3A2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(&V_0));
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Threading.CancellationTokenRegistration>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 Array_InternalArray__get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0318D47BE2AB57E53839293C15DD335B8B0583AA_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0318D47BE2AB57E53839293C15DD335B8B0583AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0318D47BE2AB57E53839293C15DD335B8B0583AA_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(&V_0));
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.TimeSpan>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 Array_InternalArray__get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m6F26E3B1889F792C114EA852B45C022258DDF5D4_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m6F26E3B1889F792C114EA852B45C022258DDF5D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m6F26E3B1889F792C114EA852B45C022258DDF5D4_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_0));
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UInt16>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Array_InternalArray__get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m92C7FC890AD3637D775B949E40AC58993090D84D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m92C7FC890AD3637D775B949E40AC58993090D84D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m92C7FC890AD3637D775B949E40AC58993090D84D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint16_t*)(uint16_t*)(&V_0));
uint16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UInt32>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Array_InternalArray__get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m92E8524E021B44BD9FBA8B7B532C1C1D1AE2591E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m92E8524E021B44BD9FBA8B7B532C1C1D1AE2591E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m92E8524E021B44BD9FBA8B7B532C1C1D1AE2591E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint32_t*)(uint32_t*)(&V_0));
uint32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UInt64>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Array_InternalArray__get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m67422E4BCD6185FCCC24C2E10B17354B5CA4881F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m67422E4BCD6185FCCC24C2E10B17354B5CA4881F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m67422E4BCD6185FCCC24C2E10B17354B5CA4881F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint64_t*)(uint64_t*)(&V_0));
uint64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UIntPtr>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uintptr_t Array_InternalArray__get_Item_TisUIntPtr_t_m8E6F5EA76515799BF3B9D4CF0338A24FA7585247_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUIntPtr_t_m8E6F5EA76515799BF3B9D4CF0338A24FA7585247_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uintptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisUIntPtr_t_m8E6F5EA76515799BF3B9D4CF0338A24FA7585247_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uintptr_t*)(uintptr_t*)(&V_0));
uintptr_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.ValueTuple`2<System.Int32,System.Object>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 Array_InternalArray__get_Item_TisValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6_m9872AA8CCDD16018FEF9FE89FE4940546B46865B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6_m9872AA8CCDD16018FEF9FE89FE4940546B46865B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6_m9872AA8CCDD16018FEF9FE89FE4940546B46865B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 *)(ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 *)(&V_0));
ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.ValueTuple`2<System.Object,System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F Array_InternalArray__get_Item_TisValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F_mC83D9DC89C64BF3E214A493D3EED0777EB67F01D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F_mC83D9DC89C64BF3E214A493D3EED0777EB67F01D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F_mC83D9DC89C64BF3E214A493D3EED0777EB67F01D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F *)(ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F *)(&V_0));
ValueTuple_2_t74D6CA9A08A6FCFF280CF9A4A5244FC0898C9E5F L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 Array_InternalArray__get_Item_TisValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331_mD7130BBF36965BDDF29ACF4C685B683521908194_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331_mD7130BBF36965BDDF29ACF4C685B683521908194_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331_mD7130BBF36965BDDF29ACF4C685B683521908194_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 *)(ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 *)(&V_0));
ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<TMPro.MaterialReference>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F Array_InternalArray__get_Item_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_mB6BC68ABAE55C3890D3CDC1CDC99BFE693198B58_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_mB6BC68ABAE55C3890D3CDC1CDC99BFE693198B58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_mB6BC68ABAE55C3890D3CDC1CDC99BFE693198B58_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F *)(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F *)(&V_0));
MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<TMPro.RichTextTagAttribute>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 Array_InternalArray__get_Item_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_m7FE585B00F087DB2A103141847954FEFD2027B3B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_m7FE585B00F087DB2A103141847954FEFD2027B3B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_m7FE585B00F087DB2A103141847954FEFD2027B3B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 *)(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 *)(&V_0));
RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<TMPro.SpriteAssetUtilities.TexturePacker_SpriteData>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 Array_InternalArray__get_Item_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0741875D61EDA3FE72ABFCF3424516D56C41127_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0741875D61EDA3FE72ABFCF3424516D56C41127_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC0741875D61EDA3FE72ABFCF3424516D56C41127_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 *)(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 *)(&V_0));
SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<TMPro.TMP_CharacterInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 Array_InternalArray__get_Item_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mDEF2CD3F3C0066505EDE06D45F620FC24948169F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mDEF2CD3F3C0066505EDE06D45F620FC24948169F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mDEF2CD3F3C0066505EDE06D45F620FC24948169F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 *)(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 *)(&V_0));
TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<TMPro.TMP_FontWeightPair>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 Array_InternalArray__get_Item_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_m002F133441D6DE8BB07920E2319CB499FC49C98B_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_m002F133441D6DE8BB07920E2319CB499FC49C98B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_m002F133441D6DE8BB07920E2319CB499FC49C98B_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 *)(TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 *)(&V_0));
TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<TMPro.TMP_LineInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 Array_InternalArray__get_Item_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m6F80687C3B1A28EE4C1473BBC2EB6516B2BABF64_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m6F80687C3B1A28EE4C1473BBC2EB6516B2BABF64_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m6F80687C3B1A28EE4C1473BBC2EB6516B2BABF64_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 *)(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 *)(&V_0));
TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<TMPro.TMP_LinkInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 Array_InternalArray__get_Item_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mBE9A4E8A6ED544B6CE8A2DB7F96336E5546F90EA_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mBE9A4E8A6ED544B6CE8A2DB7F96336E5546F90EA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mBE9A4E8A6ED544B6CE8A2DB7F96336E5546F90EA_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 *)(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 *)(&V_0));
TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<TMPro.TMP_MeshInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E Array_InternalArray__get_Item_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m38E01646A7A815E8F62DF7B5A4AC18829725EFA9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m38E01646A7A815E8F62DF7B5A4AC18829725EFA9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m38E01646A7A815E8F62DF7B5A4AC18829725EFA9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E *)(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E *)(&V_0));
TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<TMPro.TMP_PageInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 Array_InternalArray__get_Item_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m02E4EE34FDA4E301B32A29F46C04D7ACE4DD9EBE_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m02E4EE34FDA4E301B32A29F46C04D7ACE4DD9EBE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m02E4EE34FDA4E301B32A29F46C04D7ACE4DD9EBE_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 *)(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 *)(&V_0));
TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<TMPro.TMP_Text_UnicodeChar>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A Array_InternalArray__get_Item_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mEE2DE7114E1A12D049D8F3212C2C62B563B6D67D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mEE2DE7114E1A12D049D8F3212C2C62B563B6D67D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mEE2DE7114E1A12D049D8F3212C2C62B563B6D67D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A *)(UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A *)(&V_0));
UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<TMPro.TMP_WordInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 Array_InternalArray__get_Item_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m7E417C91EB384418F5E7145D7AE62FDA3841ADCC_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m7E417C91EB384418F5E7145D7AE62FDA3841ADCC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m7E417C91EB384418F5E7145D7AE62FDA3841ADCC_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 *)(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 *)(&V_0));
TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 Array_InternalArray__get_Item_TisNativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1_m4BABE9536B14830FB4155B504E17A73A5490A9E2_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisNativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1_m4BABE9536B14830FB4155B504E17A73A5490A9E2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisNativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1_m4BABE9536B14830FB4155B504E17A73A5490A9E2_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 *)(NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 *)(&V_0));
NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.BeforeRenderHelper_OrderBlock>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 Array_InternalArray__get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m3A94BC2B4F31DBA1005FB94913C3130C69A2E39F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m3A94BC2B4F31DBA1005FB94913C3130C69A2E39F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m3A94BC2B4F31DBA1005FB94913C3130C69A2E39F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(&V_0));
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.BoundingSphere>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3 Array_InternalArray__get_Item_TisBoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3_m2E9F2FFF952B100BF48C27EE0DE7DC4178E1DEA5_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisBoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3_m2E9F2FFF952B100BF48C27EE0DE7DC4178E1DEA5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisBoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3_m2E9F2FFF952B100BF48C27EE0DE7DC4178E1DEA5_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (BoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3 *)(BoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3 *)(&V_0));
BoundingSphere_t04428BAF34098F31DEA580ECC17EA0D616EB79C3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Color32>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 Array_InternalArray__get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m690637A6E30AAACC2D08D07F0107FFFE45B9AA25_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m690637A6E30AAACC2D08D07F0107FFFE45B9AA25_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m690637A6E30AAACC2D08D07F0107FFFE45B9AA25_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)(&V_0));
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Color>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Array_InternalArray__get_Item_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_m9C0BDF53905610F83940A5D6B6607B9E4029E024_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_m9C0BDF53905610F83940A5D6B6607B9E4029E024_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_m9C0BDF53905610F83940A5D6B6607B9E4029E024_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(&V_0));
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.ContactPoint2D>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 Array_InternalArray__get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mC0BA868364A2EC9CBE08EEE61C17C9909356B644_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mC0BA868364A2EC9CBE08EEE61C17C9909356B644_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mC0BA868364A2EC9CBE08EEE61C17C9909356B644_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)(&V_0));
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.ContactPoint>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 Array_InternalArray__get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m1A4B88B46CEC94307CF29224873D7CE4027C40C0_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m1A4B88B46CEC94307CF29224873D7CE4027C40C0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m1A4B88B46CEC94307CF29224873D7CE4027C40C0_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)(&V_0));
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.EventSystems.RaycastResult>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 Array_InternalArray__get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m38A53DF1F99A89D6300E7B7B184AD963AA80D865_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m38A53DF1F99A89D6300E7B7B184AD963AA80D865_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m38A53DF1F99A89D6300E7B7B184AD963AA80D865_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_0));
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Experimental.GlobalIllumination.LightDataGI>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 Array_InternalArray__get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m3B53EB9E61040DA92DCE1D4373F9ECFC85FE5651_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m3B53EB9E61040DA92DCE1D4373F9ECFC85FE5651_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m3B53EB9E61040DA92DCE1D4373F9ECFC85FE5651_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 *)(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 *)(&V_0));
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 Array_InternalArray__get_Item_TisRenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524_m490D7D519F61DF5BEAD60AC0B79764CCEAF64A4D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524_m490D7D519F61DF5BEAD60AC0B79764CCEAF64A4D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisRenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524_m490D7D519F61DF5BEAD60AC0B79764CCEAF64A4D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 *)(RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 *)(&V_0));
RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF Array_InternalArray__get_Item_TisRenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF_mB770F94D611196CA91536630F4FC1CA2C636AC17_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF_mB770F94D611196CA91536630F4FC1CA2C636AC17_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisRenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF_mB770F94D611196CA91536630F4FC1CA2C636AC17_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF *)(RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF *)(&V_0));
RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_RendererListResource>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2 Array_InternalArray__get_Item_TisRendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2_mE7B2F57A4FC047E00F290BA42231970A508C6076_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2_mE7B2F57A4FC047E00F290BA42231970A508C6076_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisRendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2_mE7B2F57A4FC047E00F290BA42231970A508C6076_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2 *)(RendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2 *)(&V_0));
RendererListResource_t99E2FF2BFAF20B9D3E719CF09424CEDF21E8C6E2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceRegistry_TextureResource>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60 Array_InternalArray__get_Item_TisTextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60_mF987FD0269CD0AA98D9B9CFE40F773A0319ABD23_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60_mF987FD0269CD0AA98D9B9CFE40F773A0319ABD23_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60_mF987FD0269CD0AA98D9B9CFE40F773A0319ABD23_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60 *)(TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60 *)(&V_0));
TextureResource_tEE1F7B2ADBAAB358BB88DF86A4D29E5548F92E60 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE Array_InternalArray__get_Item_TisContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_m9012ED281AD6C52440C6513495F97E7AABAEC442_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_m9012ED281AD6C52440C6513495F97E7AABAEC442_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_m9012ED281AD6C52440C6513495F97E7AABAEC442_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE *)(ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE *)(&V_0));
ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Experimental.Rendering.Universal.Light2DBlendStyle>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE Array_InternalArray__get_Item_TisLight2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE_m70A2304B8F491F9DDED036B965B2B0C584D41737_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisLight2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE_m70A2304B8F491F9DDED036B965B2B0C584D41737_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisLight2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE_m70A2304B8F491F9DDED036B965B2B0C584D41737_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE *)(Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE *)(&V_0));
Light2DBlendStyle_t5A87FBA73AF89E3872E9E9DD6110F58071F59ABE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 Array_InternalArray__get_Item_TisEdge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_mAF87C9D9EAB6DA06BF04FCEE12DC0DEA1CB48535_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEdge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_mAF87C9D9EAB6DA06BF04FCEE12DC0DEA1CB48535_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisEdge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_mAF87C9D9EAB6DA06BF04FCEE12DC0DEA1CB48535_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 *)(Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 *)(&V_0));
Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Keyframe>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 Array_InternalArray__get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mD6A0D9843EAA93E58C03D148C4944DA9AA85608A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mD6A0D9843EAA93E58C03D148C4944DA9AA85608A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_mD6A0D9843EAA93E58C03D148C4944DA9AA85608A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(&V_0));
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.LayerMask>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 Array_InternalArray__get_Item_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m1D999DAFF1704F47CCAF89A10D8E6035D21B6022_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m1D999DAFF1704F47CCAF89A10D8E6035D21B6022_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m1D999DAFF1704F47CCAF89A10D8E6035D21B6022_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 *)(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 *)(&V_0));
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.LowLevel.PlayerLoopSystem>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 Array_InternalArray__get_Item_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_mADFAEA14DF51FA2CBF3AE91F680FC1DDA4766E36_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_mADFAEA14DF51FA2CBF3AE91F680FC1DDA4766E36_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_mADFAEA14DF51FA2CBF3AE91F680FC1DDA4766E36_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 *)(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 *)(&V_0));
PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Matrix4x4>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA Array_InternalArray__get_Item_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_mDD19CAC68186909695744BD2BEBED272E06F3DC4_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_mDD19CAC68186909695744BD2BEBED272E06F3DC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_mDD19CAC68186909695744BD2BEBED272E06F3DC4_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)(&V_0));
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.ParticleSystem_Particle>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E Array_InternalArray__get_Item_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mC3F7477A2E7A7BA9FB7152143DC40F7E4FFF96BB_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mC3F7477A2E7A7BA9FB7152143DC40F7E4FFF96BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mC3F7477A2E7A7BA9FB7152143DC40F7E4FFF96BB_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E *)(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E *)(&V_0));
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Plane>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED Array_InternalArray__get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m3B2A6B15ACEDDD69DFC2A7B1F1549239040CC12D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m3B2A6B15ACEDDD69DFC2A7B1F1549239040CC12D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m3B2A6B15ACEDDD69DFC2A7B1F1549239040CC12D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)(&V_0));
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Playables.PlayableBinding>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 Array_InternalArray__get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m362D4C945930128AB5451EC5F1413FB6543D01C9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m362D4C945930128AB5451EC5F1413FB6543D01C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m362D4C945930128AB5451EC5F1413FB6543D01C9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(&V_0));
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Quaternion>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 Array_InternalArray__get_Item_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_mF6C7302CB1A59CBFD489974DC20A09E78E689557_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_mF6C7302CB1A59CBFD489974DC20A09E78E689557_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_mF6C7302CB1A59CBFD489974DC20A09E78E689557_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)(&V_0));
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.RaycastHit2D>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE Array_InternalArray__get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m343C0DB5D50F0936952CCACC386228F2ACC5A796_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m343C0DB5D50F0936952CCACC386228F2ACC5A796_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m343C0DB5D50F0936952CCACC386228F2ACC5A796_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)(&V_0));
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.RaycastHit>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 Array_InternalArray__get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mDCDC36064BB0FF4DC76546ED1CA3DDB6C303F4FE_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mDCDC36064BB0FF4DC76546ED1CA3DDB6C303F4FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mDCDC36064BB0FF4DC76546ED1CA3DDB6C303F4FE_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(&V_0));
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Rendering.BatchVisibility>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 Array_InternalArray__get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mBA598D1852E66122156731750BBF1D8EDFEBAC55_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mBA598D1852E66122156731750BBF1D8EDFEBAC55_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mBA598D1852E66122156731750BBF1D8EDFEBAC55_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)(&V_0));
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Rendering.RenderTargetIdentifier>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B Array_InternalArray__get_Item_TisRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_mE4480A896607D08555B4B2325B5358EA47A6D4E6_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_mE4480A896607D08555B4B2325B5358EA47A6D4E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_mE4480A896607D08555B4B2325B5358EA47A6D4E6_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)(&V_0));
RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Rendering.ShaderKeyword>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C Array_InternalArray__get_Item_TisShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C_m5AE240890349F0F37953E828BCC39CF1841ADEA8_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C_m5AE240890349F0F37953E828BCC39CF1841ADEA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C_m5AE240890349F0F37953E828BCC39CF1841ADEA8_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C *)(ShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C *)(&V_0));
ShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Rendering.ShaderTagId>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 Array_InternalArray__get_Item_TisShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_m73CBE61F84489D532E520694647B07B0B5D77EC7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_m73CBE61F84489D532E520694647B07B0B5D77EC7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_m73CBE61F84489D532E520694647B07B0B5D77EC7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 *)(ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 *)(&V_0));
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Rendering.Universal.RenderTargetHandle>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 Array_InternalArray__get_Item_TisRenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1_mE5B9AF7E514DA29756E7770E8105B572C6B3B748_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1_mE5B9AF7E514DA29756E7770E8105B572C6B3B748_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisRenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1_mE5B9AF7E514DA29756E7770E8105B572C6B3B748_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 *)(RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 *)(&V_0));
RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Rendering.Universal.ShaderInput_LightData>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF Array_InternalArray__get_Item_TisLightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF_mA0D8FC363ACD88F213AC65FC445F728500E9991A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisLightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF_mA0D8FC363ACD88F213AC65FC445F728500E9991A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisLightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF_mA0D8FC363ACD88F213AC65FC445F728500E9991A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF *)(LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF *)(&V_0));
LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Rendering.Universal.ShaderInput_ShadowData>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 Array_InternalArray__get_Item_TisShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571_m2C9F9BCAE6EE983E41B35E374EB549B300724114_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571_m2C9F9BCAE6EE983E41B35E374EB549B300724114_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571_m2C9F9BCAE6EE983E41B35E374EB549B300724114_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 *)(ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 *)(&V_0));
ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Rendering.Universal.ShadowSliceData>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7 Array_InternalArray__get_Item_TisShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7_m300F52B4AB3A9E47DFFEFBD4C5579C550A7711BF_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7_m300F52B4AB3A9E47DFFEFBD4C5579C550A7711BF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7_m300F52B4AB3A9E47DFFEFBD4C5579C550A7711BF_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7 *)(ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7 *)(&V_0));
ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Rendering.VisibleLight>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 Array_InternalArray__get_Item_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_m8E260EE4B6ED1EFCF0BEC679C2D1B49085B4890D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_m8E260EE4B6ED1EFCF0BEC679C2D1B49085B4890D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_m8E260EE4B6ED1EFCF0BEC679C2D1B49085B4890D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 *)(VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 *)(&V_0));
VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.SendMouseEvents_HitInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 Array_InternalArray__get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m02FDDCF30AEA5010D3F032AAD267FCB98051A142_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m02FDDCF30AEA5010D3F032AAD267FCB98051A142_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m02FDDCF30AEA5010D3F032AAD267FCB98051A142_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 *)(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 *)(&V_0));
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 Array_InternalArray__get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m9D0452CD1962BBA9DAE3FC2B0EC0429F65CF1103_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m9D0452CD1962BBA9DAE3FC2B0EC0429F65CF1103_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisGcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_m9D0452CD1962BBA9DAE3FC2B0EC0429F65CF1103_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 *)(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 *)(&V_0));
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A Array_InternalArray__get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD10502BEA559D905BB0619CB8D721895595CC9A7_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD10502BEA559D905BB0619CB8D721895595CC9A7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisGcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_mD10502BEA559D905BB0619CB8D721895595CC9A7_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A *)(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A *)(&V_0));
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.SortingLayer>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203 Array_InternalArray__get_Item_TisSortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203_m69C0DF8BE49FFBB45E626128967BAB021EEE7F1A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203_m69C0DF8BE49FFBB45E626128967BAB021EEE7F1A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisSortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203_m69C0DF8BE49FFBB45E626128967BAB021EEE7F1A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (SortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203 *)(SortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203 *)(&V_0));
SortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.TextCore.GlyphRect>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C Array_InternalArray__get_Item_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m7C206260F4126DFFB1A4F979B67C5F453C385197_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m7C206260F4126DFFB1A4F979B67C5F453C385197_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m7C206260F4126DFFB1A4F979B67C5F453C385197_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C *)(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C *)(&V_0));
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 Array_InternalArray__get_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m6D1AF0434CCDA15443D26F1C0CDFB41A2E0C6B40_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m6D1AF0434CCDA15443D26F1C0CDFB41A2E0C6B40_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m6D1AF0434CCDA15443D26F1C0CDFB41A2E0C6B40_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 *)(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 *)(&V_0));
GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C Array_InternalArray__get_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_mF68BF23D5873F3B436C6C116C3CED9D7E6DDAF9F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_mF68BF23D5873F3B436C6C116C3CED9D7E6DDAF9F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_mF68BF23D5873F3B436C6C116C3CED9D7E6DDAF9F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C *)(GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C *)(&V_0));
GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UI.ColorBlock>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA Array_InternalArray__get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m372F4A01E422405E0877577213525110F165CC72_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m372F4A01E422405E0877577213525110F165CC72_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m372F4A01E422405E0877577213525110F165CC72_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_0));
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UI.Navigation>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 Array_InternalArray__get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m8661006C340B2092AB2ECC60557630BCEB060F5C_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m8661006C340B2092AB2ECC60557630BCEB060F5C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m8661006C340B2092AB2ECC60557630BCEB060F5C_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&V_0));
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UI.SpriteState>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A Array_InternalArray__get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m7D69069E0004BED34CC1CBFC3FD7952524A8579D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m7D69069E0004BED34CC1CBFC3FD7952524A8579D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m7D69069E0004BED34CC1CBFC3FD7952524A8579D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(&V_0));
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UICharInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A Array_InternalArray__get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m9E313F8A2D13BED598479D435A4A24C96427C2AF_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m9E313F8A2D13BED598479D435A4A24C96427C2AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m9E313F8A2D13BED598479D435A4A24C96427C2AF_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(&V_0));
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UILineInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 Array_InternalArray__get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mEF125F16F3141B6C8C95062D9EB62DB34E311BB8_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mEF125F16F3141B6C8C95062D9EB62DB34E311BB8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mEF125F16F3141B6C8C95062D9EB62DB34E311BB8_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(&V_0));
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UIVertex>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 Array_InternalArray__get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF50C75640622E1227765A491D563BD148B3C0D95_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF50C75640622E1227765A491D563BD148B3C0D95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF50C75640622E1227765A491D563BD148B3C0D95_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(&V_0));
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UnitySynchronizationContext_WorkRequest>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 Array_InternalArray__get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mE136BEFAFFA4D20AC5F03D08E9E761773B432A66_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mE136BEFAFFA4D20AC5F03D08E9E761773B432A66_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mE136BEFAFFA4D20AC5F03D08E9E761773B432A66_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(&V_0));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Vector2>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Array_InternalArray__get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m838F955DD9621FF5361500D081CC22FE49049581_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m838F955DD9621FF5361500D081CC22FE49049581_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m838F955DD9621FF5361500D081CC22FE49049581_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Vector3>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Array_InternalArray__get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m526D0C17B58AAB83A25B74C2462E165995C9DE2A_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m526D0C17B58AAB83A25B74C2462E165995C9DE2A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m526D0C17B58AAB83A25B74C2462E165995C9DE2A_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&V_0));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Vector4>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E Array_InternalArray__get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mFB7A377E49F0D9217F0C8F3C4105B731581E20FA_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mFB7A377E49F0D9217F0C8F3C4105B731581E20FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mFB7A377E49F0D9217F0C8F3C4105B731581E20FA_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(&V_0));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 Array_InternalArray__get_Item_TisPointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2_mE6031CBF8CA1332DCCB01C93B4DCB846EAF27FA1_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2_mE6031CBF8CA1332DCCB01C93B4DCB846EAF27FA1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisPointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2_mE6031CBF8CA1332DCCB01C93B4DCB846EAF27FA1_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 *)(PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 *)(&V_0));
PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARFoundation.ARRaycastHit>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC Array_InternalArray__get_Item_TisARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_mE21EC3DAAFA56186F7CA00AB45695587C802642E_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_mE21EC3DAAFA56186F7CA00AB45695587C802642E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_mE21EC3DAAFA56186F7CA00AB45695587C802642E_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC *)(ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC *)(&V_0));
ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARFoundation.ARTextureInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 Array_InternalArray__get_Item_TisARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_mC340F8F3FA3A0592AD178F30FA4A331FACFB1905_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_mC340F8F3FA3A0592AD178F30FA4A331FACFB1905_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_mC340F8F3FA3A0592AD178F30FA4A331FACFB1905_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 *)(ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 *)(&V_0));
ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int16>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 Array_InternalArray__get_Item_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_mD5009004C0071661793B33CB1AB75CF2336E2A77_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_mD5009004C0071661793B33CB1AB75CF2336E2A77_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_mD5009004C0071661793B33CB1AB75CF2336E2A77_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 *)(Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 *)(&V_0));
Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int32>>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 Array_InternalArray__get_Item_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_mAD2485A8B808B4F25AEA4F3D2758C2A569A5FE8F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_mAD2485A8B808B4F25AEA4F3D2758C2A569A5FE8F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_mAD2485A8B808B4F25AEA4F3D2758C2A569A5FE8F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 *)(Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 *)(&V_0));
Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARKit.ManagedReferenceImage>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 Array_InternalArray__get_Item_TisManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789_m410E3868C80BF1BAEA82230B3F003E2BC30C4AAB_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789_m410E3868C80BF1BAEA82230B3F003E2BC30C4AAB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789_m410E3868C80BF1BAEA82230B3F003E2BC30C4AAB_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 *)(ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 *)(&V_0));
ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.BoundedPlane>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 Array_InternalArray__get_Item_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_m6EFB3FA6AB0C5795DF16619CC2D0BF92DCC4850D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_m6EFB3FA6AB0C5795DF16619CC2D0BF92DCC4850D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_m6EFB3FA6AB0C5795DF16619CC2D0BF92DCC4850D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 *)(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 *)(&V_0));
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.TrackableId>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 Array_InternalArray__get_Item_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m2036ED8B20851D9536B1AE4C27CD33E744526536_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m2036ED8B20851D9536B1AE4C27CD33E744526536_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m2036ED8B20851D9536B1AE4C27CD33E744526536_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 *)(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 *)(&V_0));
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRAnchor>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 Array_InternalArray__get_Item_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m8C4DA4C7ED5C1676764510E73EC8CA73232026F9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m8C4DA4C7ED5C1676764510E73EC8CA73232026F9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m8C4DA4C7ED5C1676764510E73EC8CA73232026F9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 *)(XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 *)(&V_0));
XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 Array_InternalArray__get_Item_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_mDD1AA924028290B9FCBE2796D51A4C012BDD3008_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_mDD1AA924028290B9FCBE2796D51A4C012BDD3008_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_mDD1AA924028290B9FCBE2796D51A4C012BDD3008_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 *)(XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 *)(&V_0));
XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 Array_InternalArray__get_Item_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m1111F23F534AA015C1AF82D85B8ABA1BF3E7C2AF_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m1111F23F534AA015C1AF82D85B8ABA1BF3E7C2AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m1111F23F534AA015C1AF82D85B8ABA1BF3E7C2AF_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 *)(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 *)(&V_0));
XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRFace>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 Array_InternalArray__get_Item_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m1064783D741BBE4BFC25821A45C41E2116630C05_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m1064783D741BBE4BFC25821A45C41E2116630C05_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m1064783D741BBE4BFC25821A45C41E2116630C05_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 *)(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 *)(&V_0));
XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRHumanBody>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 Array_InternalArray__get_Item_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_m5C620A410975466E646FA2F390AFAE0F39F75BA8_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_m5C620A410975466E646FA2F390AFAE0F39F75BA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_m5C620A410975466E646FA2F390AFAE0F39F75BA8_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 *)(XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 *)(&V_0));
XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF Array_InternalArray__get_Item_TisXRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF_m2C1270B705AF9896E7978976CF4992AA6459A06F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF_m2C1270B705AF9896E7978976CF4992AA6459A06F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF_m2C1270B705AF9896E7978976CF4992AA6459A06F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF *)(XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF *)(&V_0));
XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B Array_InternalArray__get_Item_TisXRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B_m4638D46950F764E50418FEB995EE29742C5B17C8_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B_m4638D46950F764E50418FEB995EE29742C5B17C8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B_m4638D46950F764E50418FEB995EE29742C5B17C8_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B *)(XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B *)(&V_0));
XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRParticipant>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 Array_InternalArray__get_Item_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_mD8236EFAEC3C78FAF72A659E8CEEADCD12BF4444_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_mD8236EFAEC3C78FAF72A659E8CEEADCD12BF4444_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_mD8236EFAEC3C78FAF72A659E8CEEADCD12BF4444_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 *)(XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 *)(&V_0));
XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRPointCloud>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 Array_InternalArray__get_Item_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m63A0A4CC25A7F77EB320B3CD8F1AAFA45AF72781_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m63A0A4CC25A7F77EB320B3CD8F1AAFA45AF72781_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m63A0A4CC25A7F77EB320B3CD8F1AAFA45AF72781_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 *)(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 *)(&V_0));
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRRaycastHit>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 Array_InternalArray__get_Item_TisXRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_m184A3AAE2B58BD178A9DCB7D86E275D609FD304F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_m184A3AAE2B58BD178A9DCB7D86E275D609FD304F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_m184A3AAE2B58BD178A9DCB7D86E275D609FD304F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 *)(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 *)(&V_0));
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRReferenceImage>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E Array_InternalArray__get_Item_TisXRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_mDC79BB386EDCE3494B7191DA53CEFC72FCBDE09D_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_mDC79BB386EDCE3494B7191DA53CEFC72FCBDE09D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_mDC79BB386EDCE3494B7191DA53CEFC72FCBDE09D_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E *)(XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E *)(&V_0));
XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRReferenceObject>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA Array_InternalArray__get_Item_TisXRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_m84C596008C9320FCDC3834D171AA87DA6F550EBB_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_m84C596008C9320FCDC3834D171AA87DA6F550EBB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_m84C596008C9320FCDC3834D171AA87DA6F550EBB_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA *)(XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA *)(&V_0));
XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRReferencePoint>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 Array_InternalArray__get_Item_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_mFFD1B01CF87C826F2228FDD0D8C27C4A547B3196_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_mFFD1B01CF87C826F2228FDD0D8C27C4A547B3196_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_mFFD1B01CF87C826F2228FDD0D8C27C4A547B3196_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 *)(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 *)(&V_0));
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD Array_InternalArray__get_Item_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_m1B78EA31ACB22F78148B362DD1EFF5700E0122B0_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_m1B78EA31ACB22F78148B362DD1EFF5700E0122B0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_m1B78EA31ACB22F78148B362DD1EFF5700E0122B0_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD *)(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD *)(&V_0));
XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRTrackedImage>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 Array_InternalArray__get_Item_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_m12DDF4F60DC9EE1E79D82525A989B51E5AADC9E9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_m12DDF4F60DC9EE1E79D82525A989B51E5AADC9E9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_m12DDF4F60DC9EE1E79D82525A989B51E5AADC9E9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 *)(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 *)(&V_0));
XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.ARSubsystems.XRTrackedObject>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 Array_InternalArray__get_Item_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_mEAB0F6AB160AB4D9AC4AFE14862C3C3ACD7F07F9_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_mEAB0F6AB160AB4D9AC4AFE14862C3C3ACD7F07F9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_mEAB0F6AB160AB4D9AC4AFE14862C3C3ACD7F07F9_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 *)(XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 *)(&V_0));
XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.MeshId>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A Array_InternalArray__get_Item_TisMeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_m60EAD2E6F90F1B72119F118D8FB3CB219F8F7DF0_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisMeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_m60EAD2E6F90F1B72119F118D8FB3CB219F8F7DF0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisMeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_m60EAD2E6F90F1B72119F118D8FB3CB219F8F7DF0_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)(&V_0));
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.MeshInfo>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 Array_InternalArray__get_Item_TisMeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_mB4F9F9E8E2929F558C09E9334F169ADCD9C4B16F_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisMeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_mB4F9F9E8E2929F558C09E9334F169ADCD9C4B16F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisMeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_mB4F9F9E8E2929F558C09E9334F169ADCD9C4B16F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)(MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)(&V_0));
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.XR.XRNodeState>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A Array_InternalArray__get_Item_TisXRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_m8C5E586FAD0BC5D6B3A4209F6FAB3807603CB6CF_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_m8C5E586FAD0BC5D6B3A4209F6FAB3807603CB6CF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__get_Item_TisXRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_m8C5E586FAD0BC5D6B3A4209F6FAB3807603CB6CF_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *)(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *)(&V_0));
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A L_4 = V_0;
return L_4;
}
}
// T System.Array::UnsafeLoad<System.Byte>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Array_UnsafeLoad_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m65E1EBE819B53BAF6D83A75BAFF9772F6A9FF3F1_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Char>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Array_UnsafeLoad_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE8784FED9A85F541F2437FE97F157474F40B52B1_gshared (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Il2CppChar L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B Array_UnsafeLoad_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m8882092DDF50416A52C0344EA23E22A421741486_gshared (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_3 = (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )(L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A Array_UnsafeLoad_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mCA45ECF519E7B1F4928F28F467980EC9B41E759F_gshared (SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Int32>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_UnsafeLoad_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mA280B8BD39968B72F8DC966D4912D8C4F892920F_gshared (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Int32Enum>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_UnsafeLoad_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mE7C3675ADBE9782510F7FC36BE298932CBDA1AB3_gshared (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Object>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_UnsafeLoad_TisRuntimeObject_mF7D8C97071DB474A614395C952930E9E3E249586_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
RuntimeObject * L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.UInt32>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Array_UnsafeLoad_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m814C5DC74BB2E72ABC3E8957D824669B2B7D2A80_gshared (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.UInt64>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Array_UnsafeLoad_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mFA35E154A4951AFC9D4743D10210E353CE1A298C_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint64_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.ValueTuple`2<System.Int32,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 Array_UnsafeLoad_TisValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6_mCBF91A6693A2BC3ACC6AAA1B14A76B9E9F6E2467_gshared (ValueTuple_2U5BU5D_tAC07AC38451469F15186378560098CF775CDC0F9* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ValueTuple_2U5BU5D_tAC07AC38451469F15186378560098CF775CDC0F9* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 L_3 = (ValueTuple_2_t1C8AEE3E1716A086402000F62A3D0B4C21BFB9D6 )(L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 Array_UnsafeLoad_TisValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331_m134C07AC43ACE1EBB9BEC4CB5B9107018DE8B3DF_gshared (ValueTuple_2U5BU5D_t5511800D3E60CA16B64391D7229EE5438B48C305* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ValueTuple_2U5BU5D_t5511800D3E60CA16B64391D7229EE5438B48C305* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 L_3 = (ValueTuple_2_t50705B2B5CEDC69B491D2335FB71C62CCFAD0331 )(L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<TMPro.SpriteAssetUtilities.TexturePacker_SpriteData>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 Array_UnsafeLoad_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_mC7BFAEEFB14395006AE805EE6DF7327B29AE90AF_gshared (SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 Array_UnsafeLoad_TisNativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1_mFDC6AA22B3053101A3A6F24BA1B13D90DE5FA9DA_gshared (NativeArray_1U5BU5D_t849C9A0D7F8881104AEB488E05B787DCE761B696* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
NativeArray_1U5BU5D_t849C9A0D7F8881104AEB488E05B787DCE761B696* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 L_3 = (NativeArray_1_t769CF3061467D3B5B0062090193576AD726411C1 )(L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.BeforeRenderHelper_OrderBlock>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 Array_UnsafeLoad_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mEED156545A2169401C6F00D1EDBE0DCBAFEEA27E_gshared (OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Color32>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 Array_UnsafeLoad_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mCD00D60874B01668A3283B9E8F85BD9375C34D8C_gshared (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Color>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Array_UnsafeLoad_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mC3B142AB79EADC75CA04D94238AD181607BF9350_gshared (ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.EventSystems.RaycastResult>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 Array_UnsafeLoad_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mA2B8606E9710A1B20FBF25EA96F6D7BF322488BC_gshared (RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 Array_UnsafeLoad_TisRenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524_m01B185633A977E7040C986D1435C0C1A90C73BAE_gshared (RenderGraphMutableResourceU5BU5D_tC5DD0DF1CAE7DE95421B26158C9F5E24169156CA* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RenderGraphMutableResourceU5BU5D_tC5DD0DF1CAE7DE95421B26158C9F5E24169156CA* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF Array_UnsafeLoad_TisRenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF_mEFF3FF6268A87CDDE9008EF24159BAA2D0CA8322_gshared (RenderGraphResourceU5BU5D_tB3A76B05D0BFF43192C3081E627196BF620A45B0* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RenderGraphResourceU5BU5D_tB3A76B05D0BFF43192C3081E627196BF620A45B0* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE Array_UnsafeLoad_TisContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_m77C639039DF5EFD671E0401A7A2D267AB1F62C82_gshared (ContourVertexU5BU5D_t6A7626ED7D5846583F834C822C28220AFE0E396D* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ContourVertexU5BU5D_t6A7626ED7D5846583F834C822C28220AFE0E396D* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 Array_UnsafeLoad_TisEdge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_mE81A63A50EFBBC7BDA12472C47F9FD84988E5792_gshared (EdgeU5BU5D_t109E874E4BB26DA4C9ACBA09E19B95274DD805C1* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
EdgeU5BU5D_t109E874E4BB26DA4C9ACBA09E19B95274DD805C1* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.RaycastHit2D>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE Array_UnsafeLoad_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_mBA784523C0FE77CCEBC358003A746EE175C7CBDF_gshared (RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Rendering.ShaderTagId>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 Array_UnsafeLoad_TisShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_m497F1B5F7472F8CEECFB88F59B9B00D7372D9959_gshared (ShaderTagIdU5BU5D_tFA48D4C6A2EF95AF0BF3EEB90B9719F0154CBEF0* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ShaderTagIdU5BU5D_tFA48D4C6A2EF95AF0BF3EEB90B9719F0154CBEF0* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.TextCore.GlyphRect>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C Array_UnsafeLoad_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m969DB2B6C95C4515868099C77F2E1926BB816A23_gshared (GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.UICharInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A Array_UnsafeLoad_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mA1702D26A47878803ED5772342CA30CA463184D8_gshared (UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.UILineInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 Array_UnsafeLoad_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m35D529B7A6D84100227F1EEDD75A0FE38227FA79_gshared (UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.UIVertex>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 Array_UnsafeLoad_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mECF35E4A0F83518BD95BAA7E99FD8587AA2B94E1_gshared (UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.UnitySynchronizationContext_WorkRequest>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 Array_UnsafeLoad_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mAB6878E92EDE4386DDE730A8BED98339AD1D2CB3_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Vector2>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Array_UnsafeLoad_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m81B2DA6102EA0C403B67FBCEDE53D91484AF6F53_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Vector3>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Array_UnsafeLoad_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m452323A17942B5BD2537FBBA753C38207C19CA95_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Vector4>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E Array_UnsafeLoad_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mB5A599D7D8DAB49D385122A9553F40592898A9EA_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.XR.ARFoundation.ARRaycastHit>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC Array_UnsafeLoad_TisARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC_m466E6B435A0D48E1B7D79BC92FE0CEC98A39C646_gshared (ARRaycastHitU5BU5D_t2DDAC1FD38DF991C190FAEF8144A68AFBC541E94* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ARRaycastHitU5BU5D_t2DDAC1FD38DF991C190FAEF8144A68AFBC541E94* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
ARRaycastHit_t509D3DB25CAC944ED3D3092C0A6096F85DDDD1BC L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.XR.ARFoundation.ARTextureInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 Array_UnsafeLoad_TisARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0_m871E5082194A2A58D0A8C338F4F48A042EC5F31B_gshared (ARTextureInfoU5BU5D_tE03D3DE5A9DF582C89ABC81434CB04B6ADDEBBFD* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ARTextureInfoU5BU5D_tE03D3DE5A9DF582C89ABC81434CB04B6ADDEBBFD* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
ARTextureInfo_tD8D9A987C9853BD3F681D727A202D2618A6CEEE0 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.XR.ARSubsystems.XRReferenceImage>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E Array_UnsafeLoad_TisXRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E_m63A9435C413E8F4AE2C3AE3538544ACE33A51D31_gshared (XRReferenceImageU5BU5D_t1EEAB0EDA5828C38140B4D8D48E11247C4789BCE* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
XRReferenceImageU5BU5D_t1EEAB0EDA5828C38140B4D8D48E11247C4789BCE* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
XRReferenceImage_t5A53387AC6253D5D3DFD62BC583A45BBDFC1347E L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.XR.ARSubsystems.XRReferenceObject>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA Array_UnsafeLoad_TisXRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA_m48E447116D29FD8ADE87F37A1B474926557C7A20_gshared (XRReferenceObjectU5BU5D_t0AF9158E0468305ABEAA331C8925977310FBD498* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
XRReferenceObjectU5BU5D_t0AF9158E0468305ABEAA331C8925977310FBD498* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
XRReferenceObject_t4DAB86DD7C1E4245ABD473120BD1625265465BAA L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.XR.MeshInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 Array_UnsafeLoad_TisMeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_m870833DE1F5943979BC52900578A026A57C745ED_gshared (MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.XR.XRNodeState>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A Array_UnsafeLoad_TisXRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_mF2AF38652F11D06362FCF8DF9882178D7367EA41_gshared (XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Reflection.CustomAttributeExtensions::GetCustomAttribute<System.Object>(System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mA75245E8BF9FAB8A58686B2B26E4FC342453E774_gshared (Assembly_t * ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mA75245E8BF9FAB8A58686B2B26E4FC342453E774_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Assembly_t * L_0 = ___element0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_1, /*hidden argument*/NULL);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_3 = CustomAttributeExtensions_GetCustomAttribute_m4F400BBA3D1EBE458C4CCEC26DF2A5F926AE3F34((Assembly_t *)L_0, (Type_t *)L_2, /*hidden argument*/NULL);
return ((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
}
}
// T System.Runtime.CompilerServices.JitHelpers::UnsafeCast<System.Object>(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JitHelpers_UnsafeCast_TisRuntimeObject_m73BCB2D74DD9491AC08870D92BE47CFF9731990C_gshared (RuntimeObject * ___o0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___o0;
RuntimeObject * L_1 = (( RuntimeObject * (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_1;
}
}
// T System.Threading.LazyInitializer::EnsureInitialized<System.Object>(T&,System.Func`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LazyInitializer_EnsureInitialized_TisRuntimeObject_m7B0E3E50F3847BD7E9A7254C24D6DAA8994F6CC7_gshared (RuntimeObject ** ___target0, Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___valueFactory1, const RuntimeMethod* method)
{
{
RuntimeObject ** L_0 = ___target0;
RuntimeObject * L_1 = VolatileRead((RuntimeObject **)(RuntimeObject **)L_0);
if (!L_1)
{
goto IL_0014;
}
}
{
RuntimeObject ** L_2 = ___target0;
RuntimeObject * L_3 = (*(RuntimeObject **)L_2);
return L_3;
}
IL_0014:
{
RuntimeObject ** L_4 = ___target0;
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_5 = ___valueFactory1;
RuntimeObject * L_6 = (( RuntimeObject * (*) (RuntimeObject **, Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((RuntimeObject **)(RuntimeObject **)L_4, (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
return L_6;
}
}
// T System.Threading.LazyInitializer::EnsureInitializedCore<System.Object>(T&,System.Func`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m4289829E8C0F3DA67A5B3E27721CF5D1C203CED2_gshared (RuntimeObject ** ___target0, Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___valueFactory1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m4289829E8C0F3DA67A5B3E27721CF5D1C203CED2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
{
Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_0 = ___valueFactory1;
NullCheck((Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)L_0);
RuntimeObject * L_1 = (( RuntimeObject * (*) (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (RuntimeObject *)L_1;
RuntimeObject * L_2 = V_0;
if (L_2)
{
goto IL_001f;
}
}
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral64358BBCCF8C380C05E774933982A64691BCEB28, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m4289829E8C0F3DA67A5B3E27721CF5D1C203CED2_RuntimeMethod_var);
}
IL_001f:
{
RuntimeObject ** L_5 = ___target0;
RuntimeObject * L_6 = V_0;
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *));
RuntimeObject * L_7 = V_1;
InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_5, (RuntimeObject *)L_6, (RuntimeObject *)L_7);
RuntimeObject ** L_8 = ___target0;
RuntimeObject * L_9 = (*(RuntimeObject **)L_8);
return L_9;
}
}
// T System.Threading.Volatile::Read<System.Object>(T&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Volatile_Read_TisRuntimeObject_mE1E5C9FEE7986D0DC142899647016794AD72FE41_gshared (RuntimeObject ** ___location0, const RuntimeMethod* method)
{
return VolatileRead(___location0);
}
// T TMPro.TMP_Dropdown::GetOrAddComponent<System.Object>(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TMP_Dropdown_GetOrAddComponent_TisRuntimeObject_m3ADA5D2CB7710C8B6FD9A8E85167E5B7F7E4D888_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___go0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TMP_Dropdown_GetOrAddComponent_TisRuntimeObject_m3ADA5D2CB7710C8B6FD9A8E85167E5B7F7E4D888_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
// T comp = go.GetComponent<T>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___go0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0);
RuntimeObject * L_1 = (( RuntimeObject * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (RuntimeObject *)L_1;
// if (!comp)
RuntimeObject * L_2 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_001b;
}
}
{
// comp = go.AddComponent<T>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = ___go0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_4);
RuntimeObject * L_5 = (( RuntimeObject * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
V_0 = (RuntimeObject *)L_5;
}
IL_001b:
{
// return comp;
RuntimeObject * L_6 = V_0;
return L_6;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<System.Byte>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t UnsafeUtility_ReadArrayElement_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mDF06AB711FBC60539DDB6B10F618FA665889118B_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(uint8_t);
uint8_t L_3 = (*(uint8_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<System.Int32>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeUtility_ReadArrayElement_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m71805AF2A4D8E3C50F0B99515E7753042BE380DE_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(int32_t);
int32_t L_3 = (*(int32_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<System.Int32Enum>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeUtility_ReadArrayElement_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m0B996F053AEA6CDC5296F6A0232981F94DD73A66_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(int32_t);
int32_t L_3 = (*(int32_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<System.Object>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * UnsafeUtility_ReadArrayElement_TisRuntimeObject_mEA464E7502775F297FD24174B32518004C16A032_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(RuntimeObject *);
RuntimeObject * L_3 = (*(RuntimeObject **)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<System.Single>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnsafeUtility_ReadArrayElement_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mFB5C9954F5B0C58A86DDD762F7CC3BCD09E95E83_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(float);
float L_3 = (*(float*)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<System.UInt32>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnsafeUtility_ReadArrayElement_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m58575BD64B35CAD3BB6C5C0EADE39A0312CB71E6_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(uint32_t);
uint32_t L_3 = (*(uint32_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<System.UInt64>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t UnsafeUtility_ReadArrayElement_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m6DB299DD3BA1526BAEF7ECFEB04606E8551FC51F_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(uint64_t);
uint64_t L_3 = (*(uint64_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Experimental.GlobalIllumination.LightDataGI>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 UnsafeUtility_ReadArrayElement_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m066AC8133B3E249008AEBBE6A0E9850D87EC154E_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 );
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 L_3 = (*(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Hash128>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hash128_tBB1E9B1041BFF6ED6E76F2066E2815ED04742151 UnsafeUtility_ReadArrayElement_TisHash128_tBB1E9B1041BFF6ED6E76F2066E2815ED04742151_mA47ECF923AE3FB6E972D5F43D13EE0610D0E7F8C_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(Hash128_tBB1E9B1041BFF6ED6E76F2066E2815ED04742151 );
Hash128_tBB1E9B1041BFF6ED6E76F2066E2815ED04742151 L_3 = (*(Hash128_tBB1E9B1041BFF6ED6E76F2066E2815ED04742151 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Plane>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED UnsafeUtility_ReadArrayElement_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mD81CD0DB631C7A002FB9464FD069992596794125_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED );
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_3 = (*(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Quaternion>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 UnsafeUtility_ReadArrayElement_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m32F38C708328D3B7D937971C2783D57AAADE4FA3_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 );
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_3 = (*(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Rendering.BatchVisibility>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 UnsafeUtility_ReadArrayElement_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m77A1347F6614ADCB969BC6ED40CBFA1A7BD3A2A8_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 );
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 L_3 = (*(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Rendering.Universal.ShaderInput_LightData>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF UnsafeUtility_ReadArrayElement_TisLightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF_mF1F3A90462F15E7D53BA227A1C77A194D01D1C76_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF );
LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF L_3 = (*(LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Rendering.Universal.ShaderInput_ShadowData>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 UnsafeUtility_ReadArrayElement_TisShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571_m634DEEAF5CC4DEEBDFD232C2BE6BC279E2C46235_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 );
ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 L_3 = (*(ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Rendering.VisibleLight>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 UnsafeUtility_ReadArrayElement_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_mC529B217A949016CFACE69AC1CD7BD9199F95BB4_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 );
VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 L_3 = (*(VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Vector2>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D UnsafeUtility_ReadArrayElement_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_mFDC1B603033BE1288E3B2F36DEAD36084C0BD033_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D );
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_3 = (*(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Vector3>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 UnsafeUtility_ReadArrayElement_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m8F2EA2A189460F5DD4AF1E99C58E813F73D326F4_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 );
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_3 = (*(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.Vector4>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E UnsafeUtility_ReadArrayElement_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m7220AA5DA4E211D9E51DF8A811E613B95D1BF751_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E );
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_3 = (*(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastInfo>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 UnsafeUtility_ReadArrayElement_TisPointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2_m4FBED54CB56D996BFD663E7956E615BE3CFF9CFC_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 );
PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 L_3 = (*(PointCloudRaycastInfo_t1F74D0F4600D1046A5D1AC6F9B9D15CE1054D5D2 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int16>>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 UnsafeUtility_ReadArrayElement_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_mDD6BD18D6E5D0E6A1C4C96C92E8DE1BA3E02B9CD_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 );
Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 L_3 = (*(Triangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int32>>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 UnsafeUtility_ReadArrayElement_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_m66AC11494C6FBBFA66F617209F33D028DA615C7A_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 );
Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 L_3 = (*(Triangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARKit.ManagedReferenceImage>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 UnsafeUtility_ReadArrayElement_TisManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789_m6D8F05D6CF71586D68AF70DE23E65DF13FAB361C_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 );
ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 L_3 = (*(ManagedReferenceImage_tEA2FA0180249C069693B51BC6AA10DBF0EDC3789 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.BoundedPlane>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 UnsafeUtility_ReadArrayElement_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_mAA1BFD3AE9D0D2DA42CC5056ECB16D85136FA0A0_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 );
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 L_3 = (*(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.TrackableId>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 UnsafeUtility_ReadArrayElement_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m4C29027034AB15C278E18E01C13488FC3722A450_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 );
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 L_3 = (*(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRAnchor>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 UnsafeUtility_ReadArrayElement_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m45BDC076A0C7B31E97E56F533E58421EFAB2C8F8_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 );
XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 L_3 = (*(XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 UnsafeUtility_ReadArrayElement_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_mD621498E137870B4C29703FCBBAE09604B9283DE_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 );
XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 L_3 = (*(XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 UnsafeUtility_ReadArrayElement_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m599EB904C734B2AC1C29E59D81B411109589DE04_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 );
XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 L_3 = (*(XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRFace>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 UnsafeUtility_ReadArrayElement_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m09370DA76B70DFC6F6BA6138BF183CA9BD8DB69B_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 );
XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 L_3 = (*(XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRHumanBody>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 UnsafeUtility_ReadArrayElement_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_m45901469EFDFE8C0EFAD098E53A9E8FA7988327B_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 );
XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 L_3 = (*(XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF UnsafeUtility_ReadArrayElement_TisXRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF_m64DABDE40D113B19ABBEB468B823188903366A06_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF );
XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF L_3 = (*(XRHumanBodyJoint_t25AFBF64748D0CE197DE5496B800AE53AF32C4DF *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B UnsafeUtility_ReadArrayElement_TisXRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B_m06FA071B5673C030AF16B6AFF60AAA7D56D3BE44_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B );
XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B L_3 = (*(XRHumanBodyPose2DJoint_t35FE1E25C24031BE3AA240F3ED8079954F315D9B *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRParticipant>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 UnsafeUtility_ReadArrayElement_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_m982ED9FA525AB293356D77B81570D0D146E9B0A9_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 );
XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 L_3 = (*(XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRPointCloud>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 UnsafeUtility_ReadArrayElement_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m03CCC43211A58E373583D31E63F4FF0050CB0C53_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 );
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 L_3 = (*(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRRaycastHit>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 UnsafeUtility_ReadArrayElement_TisXRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82_m4930088F6012BFA8E7D0C73E8AFC58244652C123_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 );
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 L_3 = (*(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRReferencePoint>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 UnsafeUtility_ReadArrayElement_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_mA5EA958003C2FD5F8005C63C5265A474E3A252AC_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 );
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 L_3 = (*(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD UnsafeUtility_ReadArrayElement_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_m21C378F1D6179A245E7D1545C6372D398264B20B_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD );
XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD L_3 = (*(XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRTrackedImage>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 UnsafeUtility_ReadArrayElement_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_m9A49B95A1EA461CEA4AE2117D3C52720D4A3F257_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 );
XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 L_3 = (*(XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElement<UnityEngine.XR.ARSubsystems.XRTrackedObject>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 UnsafeUtility_ReadArrayElement_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_mFB4E04A67EA2C15AA30AB9844FB5DD7ED8D6203B_gshared (void* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
uint32_t L_2 = sizeof(XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 );
XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 L_3 = (*(XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)L_2)))))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElementWithStride<System.Byte>(System.Void*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t UnsafeUtility_ReadArrayElementWithStride_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m3CC8DF7A60C3A15C2346D40122109788F00E4C08_gshared (void* ___source0, int32_t ___index1, int32_t ___stride2, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
int32_t L_2 = ___stride2;
uint8_t L_3 = (*(uint8_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)L_2))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElementWithStride<System.Object>(System.Void*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * UnsafeUtility_ReadArrayElementWithStride_TisRuntimeObject_m2D68259238EC67FE1F08376D8E1800544502F570_gshared (void* ___source0, int32_t ___index1, int32_t ___stride2, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
int32_t L_2 = ___stride2;
RuntimeObject * L_3 = (*(RuntimeObject **)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)L_2))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElementWithStride<System.UInt32>(System.Void*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnsafeUtility_ReadArrayElementWithStride_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mD14193F3F54A967F41682B22B4303E65439773F3_gshared (void* ___source0, int32_t ___index1, int32_t ___stride2, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
int32_t L_2 = ___stride2;
uint32_t L_3 = (*(uint32_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)L_2))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElementWithStride<System.UInt64>(System.Void*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t UnsafeUtility_ReadArrayElementWithStride_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m273A407C1CFFC5467CAFC36A4148084EF718A913_gshared (void* ___source0, int32_t ___index1, int32_t ___stride2, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
int32_t L_2 = ___stride2;
uint64_t L_3 = (*(uint64_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)L_2))))))))));
return L_3;
}
}
// T Unity.Collections.LowLevel.Unsafe.UnsafeUtility::ReadArrayElementWithStride<UnityEngine.Vector3>(System.Void*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 UnsafeUtility_ReadArrayElementWithStride_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mE9BA40AE91227C26BABFB892498D352B03401ABC_gshared (void* ___source0, int32_t ___index1, int32_t ___stride2, const RuntimeMethod* method)
{
{
void* L_0 = ___source0;
int32_t L_1 = ___index1;
int32_t L_2 = ___stride2;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_3 = (*(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)((void*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)L_2))))))))));
return L_3;
}
}
// T UnityEngine.AttributeHelperEngine::GetCustomAttributeOfType<System.Object>(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m7AEF0374A18EED15CB2B6318117FDC6364AC2F3B_gshared (Type_t * ___klass0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m7AEF0374A18EED15CB2B6318117FDC6364AC2F3B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
bool V_2 = false;
RuntimeObject * V_3 = NULL;
RuntimeObject * V_4 = NULL;
int32_t G_B3_0 = 0;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (Type_t *)L_1;
Type_t * L_2 = ___klass0;
Type_t * L_3 = V_0;
NullCheck((MemberInfo_t *)L_2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, (MemberInfo_t *)L_2, (Type_t *)L_3, (bool)1);
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_4;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = V_1;
if (!L_5)
{
goto IL_001f;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = V_1;
NullCheck(L_6);
G_B3_0 = ((!(((uint32_t)(((RuntimeArray*)L_6)->max_length)) <= ((uint32_t)0)))? 1 : 0);
goto IL_0020;
}
IL_001f:
{
G_B3_0 = 0;
}
IL_0020:
{
V_2 = (bool)G_B3_0;
bool L_7 = V_2;
if (!L_7)
{
goto IL_002f;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = V_1;
NullCheck(L_8);
int32_t L_9 = 0;
RuntimeObject * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_3 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_003c;
}
IL_002f:
{
il2cpp_codegen_initobj((&V_4), sizeof(RuntimeObject *));
RuntimeObject * L_11 = V_4;
V_3 = (RuntimeObject *)L_11;
goto IL_003c;
}
IL_003c:
{
RuntimeObject * L_12 = V_3;
return L_12;
}
}
// T UnityEngine.Component::GetComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponent_TisRuntimeObject_m129DEF8A66683189ED44B21496135824743EF617_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Component_GetComponent_TisRuntimeObject_m129DEF8A66683189ED44B21496135824743EF617_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeObject * V_1 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF ));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
intptr_t* L_2 = (intptr_t*)(&V_0)->get_address_of_onePointerFurtherThanT_1();
intptr_t L_3;
memset((&L_3), 0, sizeof(L_3));
IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline((&L_3), (void*)(void*)(((uintptr_t)L_2)), /*hidden argument*/NULL);
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
Component_GetComponentFastPath_mDEB49C6B56084E436C7FC3D555339FA16949937E((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, (Type_t *)L_1, (intptr_t)L_3, /*hidden argument*/NULL);
CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF L_4 = V_0;
RuntimeObject * L_5 = (RuntimeObject *)L_4.get_t_0();
V_1 = (RuntimeObject *)L_5;
goto IL_0030;
}
IL_0030:
{
RuntimeObject * L_6 = V_1;
return L_6;
}
}
// T UnityEngine.Component::GetComponentInChildren<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponentInChildren_TisRuntimeObject_m06B65DD1CC6DFB48DB4DEE2CC185788D42837D30_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Component_GetComponentInChildren_TisRuntimeObject_m06B65DD1CC6DFB48DB4DEE2CC185788D42837D30_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_2 = Component_GetComponentInChildren_mEF7890FAC10EA2F776464285B0DCC58B8C373D34((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, (Type_t *)L_1, (bool)0, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001a;
}
IL_001a:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.Component::GetComponentInChildren<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponentInChildren_TisRuntimeObject_m99FB85ED87B1E6C81048B22BEBBC8AB94CD028CD_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Component_GetComponentInChildren_TisRuntimeObject_m99FB85ED87B1E6C81048B22BEBBC8AB94CD028CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
bool L_2 = ___includeInactive0;
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_3 = Component_GetComponentInChildren_mEF7890FAC10EA2F776464285B0DCC58B8C373D34((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, (Type_t *)L_1, (bool)L_2, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001a;
}
IL_001a:
{
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T UnityEngine.Component::GetComponentInParent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponentInParent_TisRuntimeObject_m3D5E351D50C60522BD31D282D044F6527C382749_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Component_GetComponentInParent_TisRuntimeObject_m3D5E351D50C60522BD31D282D044F6527C382749_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_2 = Component_GetComponentInParent_mFD9A8F6311ABAF986CA0DA556662F89FD9234E7D((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, (Type_t *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_0019;
}
IL_0019:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.EventSystems.ExecuteEvents::ValidateEventData<System.Object>(UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_gshared (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if ((data as T) == null)
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_0 = ___data0;
if (((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))), IL2CPP_RGCTX_DATA(method->rgctx_data, 0))))
{
goto IL_0032;
}
}
{
// throw new ArgumentException(String.Format("Invalid type: {0} passed to event expecting {1}", data.GetType(), typeof(T)));
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___data0;
NullCheck((RuntimeObject *)L_1);
Type_t * L_2 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_1, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL);
String_t* L_5 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A((String_t*)_stringLiteral9E40BAB578BFD23D5BA188CEF4D4CE5EB5A78927, (RuntimeObject *)L_2, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, (String_t*)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_RuntimeMethod_var);
}
IL_0032:
{
// return data as T;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_7 = ___data0;
return ((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))), IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
}
}
// T UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool::Get<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RenderGraphObjectPool_Get_TisRuntimeObject_mA032F77CE2D8E4DBBCAD7BBB7DA07AC59166BB88_gshared (RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * __this, const RuntimeMethod* method)
{
{
// var toto = SharedObjectPool<T>.sharedPool;
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1));
SharedObjectPool_1_tF05B8FEBE31C6C7D078AB1AB533B5A030476E586 * L_0 = (( SharedObjectPool_1_tF05B8FEBE31C6C7D078AB1AB533B5A030476E586 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// return toto.Get();
NullCheck((SharedObjectPool_1_tF05B8FEBE31C6C7D078AB1AB533B5A030476E586 *)L_0);
RuntimeObject * L_1 = (( RuntimeObject * (*) (SharedObjectPool_1_tF05B8FEBE31C6C7D078AB1AB533B5A030476E586 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((SharedObjectPool_1_tF05B8FEBE31C6C7D078AB1AB533B5A030476E586 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
return L_1;
}
}
// T UnityEngine.GameObject::AddComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_2 = GameObject_AddComponent_m489C9D5426F2050795FA696CD478BB49AAE4BD70((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))), IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001e;
}
IL_001e:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.GameObject::GetComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeObject * V_1 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF ));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
intptr_t* L_2 = (intptr_t*)(&V_0)->get_address_of_onePointerFurtherThanT_1();
intptr_t L_3;
memset((&L_3), 0, sizeof(L_3));
IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline((&L_3), (void*)(void*)(((uintptr_t)L_2)), /*hidden argument*/NULL);
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
GameObject_GetComponentFastPath_m5B276335DD94F6B307E604272A26C15B997C3CD4((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, (intptr_t)L_3, /*hidden argument*/NULL);
CastHelper_1_t72B003D3B45B7A5BF4E96CDF11BC8BF1CB8467BF L_4 = V_0;
RuntimeObject * L_5 = (RuntimeObject *)L_4.get_t_0();
V_1 = (RuntimeObject *)L_5;
goto IL_0030;
}
IL_0030:
{
RuntimeObject * L_6 = V_1;
return L_6;
}
}
// T UnityEngine.GameObject::GetComponentInChildren<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponentInChildren_TisRuntimeObject_mF2869D54987BDCEE9F39FF2F62D1FB1016744718_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
bool V_0 = false;
RuntimeObject * V_1 = NULL;
{
V_0 = (bool)0;
bool L_0 = V_0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
RuntimeObject * L_1 = (( RuntimeObject * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_1 = (RuntimeObject *)L_1;
goto IL_000d;
}
IL_000d:
{
RuntimeObject * L_2 = V_1;
return L_2;
}
}
// T UnityEngine.GameObject::GetComponentInChildren<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponentInChildren_TisRuntimeObject_mA15208779D36FF60D56159BD6B74200FF125201E_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_GetComponentInChildren_TisRuntimeObject_mA15208779D36FF60D56159BD6B74200FF125201E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
bool L_2 = ___includeInactive0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_3 = GameObject_GetComponentInChildren_mBC5C12CDA1749A827D136DABBF10498B1096A086((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, (bool)L_2, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001a;
}
IL_001a:
{
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T UnityEngine.Object::FindObjectOfType<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_FindObjectOfType_TisRuntimeObject_mE3957366B74863C807E6E8A23D239A0CB079BB9C_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Object_FindObjectOfType_TisRuntimeObject_mE3957366B74863C807E6E8A23D239A0CB079BB9C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_2 = Object_FindObjectOfType_mCDF38E1667CF4502F60C59709D70B60EF7E408DA((Type_t *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_0018;
}
IL_0018:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.Object::Instantiate<System.Object>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_gshared (RuntimeObject * ___original0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
RuntimeObject * V_2 = NULL;
{
RuntimeObject * L_0 = ___original0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
Object_CheckNullArgument_m8D42F516655D770DFEEAA13CF86A2612214AAA9B((RuntimeObject *)L_0, (String_t*)_stringLiteral56EB1C433748E5EF9B4DB1C73820724497D429D3, /*hidden argument*/NULL);
RuntimeObject * L_1 = ___original0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_2 = Object_Internal_CloneSingle_m4231A0B9138AC40B76655B772F687CC7E6160C06((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
RuntimeObject * L_3 = V_0;
bool L_4 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_3, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
V_1 = (bool)L_4;
bool L_5 = V_1;
if (!L_5)
{
goto IL_003e;
}
}
{
UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28 * L_6 = (UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28 *)il2cpp_codegen_object_new(UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28_il2cpp_TypeInfo_var);
UnityException__ctor_mE42363D886E6DD7F075A6AEA689434C8E96722D9(L_6, (String_t*)_stringLiteralBF077A5DDDFA362E2EE48FEBBAD7CC35A4A6952D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_RuntimeMethod_var);
}
IL_003e:
{
RuntimeObject * L_7 = V_0;
V_2 = (RuntimeObject *)L_7;
goto IL_0042;
}
IL_0042:
{
RuntimeObject * L_8 = V_2;
return L_8;
}
}
// T UnityEngine.Object::Instantiate<System.Object>(T,UnityEngine.Transform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_Instantiate_TisRuntimeObject_m765EEDB3D86CE4EADC667B84C18E793D14144E1D_gshared (RuntimeObject * ___original0, Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___parent1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Object_Instantiate_TisRuntimeObject_m765EEDB3D86CE4EADC667B84C18E793D14144E1D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ___original0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_1 = ___parent1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
RuntimeObject * L_2 = (( RuntimeObject * (*) (RuntimeObject *, Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RuntimeObject *)L_0, (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (RuntimeObject *)L_2;
goto IL_000c;
}
IL_000c:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.Object::Instantiate<System.Object>(T,UnityEngine.Transform,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_Instantiate_TisRuntimeObject_m133EE84C9D759BD2861D99355649CDF50BB93AC1_gshared (RuntimeObject * ___original0, Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___parent1, bool ___worldPositionStays2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Object_Instantiate_TisRuntimeObject_m133EE84C9D759BD2861D99355649CDF50BB93AC1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ___original0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_1 = ___parent1;
bool L_2 = ___worldPositionStays2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_3 = Object_Instantiate_m674B3934708548332899CE953CA56BB696C1C887((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_0, (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_1, (bool)L_2, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_0016;
}
IL_0016:
{
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T UnityEngine.Rendering.UI.DebugUIHandlerWidget::CastWidget<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DebugUIHandlerWidget_CastWidget_TisRuntimeObject_m9F4B3A0C36146FE7F45468A27C8860A1CEFD16FA_gshared (DebugUIHandlerWidget_t07EF4C75C5D1289130896F49AF95DD7EA819A58B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DebugUIHandlerWidget_CastWidget_TisRuntimeObject_m9F4B3A0C36146FE7F45468A27C8860A1CEFD16FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
String_t* V_1 = NULL;
String_t* G_B3_0 = NULL;
{
// var casted = m_Widget as T;
Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1 * L_0 = (Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1 *)__this->get_m_Widget_9();
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))), IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
// string typeName = m_Widget == null ? "null" : m_Widget.GetType().ToString();
Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1 * L_1 = (Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1 *)__this->get_m_Widget_9();
if (!L_1)
{
goto IL_002b;
}
}
{
Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1 * L_2 = (Widget_t2F8CAB380BF8F8C9A0B38583C11B67F325D578C1 *)__this->get_m_Widget_9();
NullCheck((RuntimeObject *)L_2);
Type_t * L_3 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_2, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
G_B3_0 = L_4;
goto IL_0030;
}
IL_002b:
{
G_B3_0 = _stringLiteral2BE88CA4242C76E8253AC62474851065032D6833;
}
IL_0030:
{
V_1 = (String_t*)G_B3_0;
// if (casted == null)
RuntimeObject * L_5 = V_0;
if (L_5)
{
goto IL_006b;
}
}
{
// throw new InvalidOperationException("Can't cast " + typeName + " to " + typeof(T));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_6;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, _stringLiteral0296709B9F526B8563C52D24A330AF24B85AB9AC);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral0296709B9F526B8563C52D24A330AF24B85AB9AC);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_7;
String_t* L_9 = V_1;
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_9);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_8;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, _stringLiteral3A59C4EE70A9BD28671F1D01D0D6D049795CEF38);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral3A59C4EE70A9BD28671F1D01D0D6D049795CEF38);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_10;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_13);
String_t* L_14 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_11, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_15 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_15, (String_t*)L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, DebugUIHandlerWidget_CastWidget_TisRuntimeObject_m9F4B3A0C36146FE7F45468A27C8860A1CEFD16FA_RuntimeMethod_var);
}
IL_006b:
{
// return casted;
RuntimeObject * L_16 = V_0;
return L_16;
}
}
// T UnityEngine.Rendering.VolumeParameter::GetValue<System.Boolean>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VolumeParameter_GetValue_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m1B4CA19477B1181E2A969D517BEAD9199978E917_gshared (VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978 * __this, const RuntimeMethod* method)
{
{
// return ((VolumeParameter<T>) this).value;
NullCheck((VolumeParameter_1_tD727F51C448AAC91D25F1609ADD17F597E8D3377 *)((VolumeParameter_1_tD727F51C448AAC91D25F1609ADD17F597E8D3377 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
bool L_0 = VirtFuncInvoker0< bool >::Invoke(11 /* T UnityEngine.Rendering.VolumeParameter`1<System.Boolean>::get_value() */, (VolumeParameter_1_tD727F51C448AAC91D25F1609ADD17F597E8D3377 *)((VolumeParameter_1_tD727F51C448AAC91D25F1609ADD17F597E8D3377 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
return L_0;
}
}
// T UnityEngine.Rendering.VolumeParameter::GetValue<System.Int32>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VolumeParameter_GetValue_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m1ACDF68B4A7FC37F0F1C5B610D1197E37AE88F98_gshared (VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978 * __this, const RuntimeMethod* method)
{
{
// return ((VolumeParameter<T>) this).value;
NullCheck((VolumeParameter_1_t9036B485C45493700212A8CE33D588DD86F52033 *)((VolumeParameter_1_t9036B485C45493700212A8CE33D588DD86F52033 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(11 /* T UnityEngine.Rendering.VolumeParameter`1<System.Int32>::get_value() */, (VolumeParameter_1_t9036B485C45493700212A8CE33D588DD86F52033 *)((VolumeParameter_1_t9036B485C45493700212A8CE33D588DD86F52033 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
return L_0;
}
}
// T UnityEngine.Rendering.VolumeParameter::GetValue<System.Int32Enum>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VolumeParameter_GetValue_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mF0EB55CE0442EB9B76EA58173C69D7B50D237C0C_gshared (VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978 * __this, const RuntimeMethod* method)
{
{
// return ((VolumeParameter<T>) this).value;
NullCheck((VolumeParameter_1_t9BBACA16D59EEA84C3FF8B494907380317900093 *)((VolumeParameter_1_t9BBACA16D59EEA84C3FF8B494907380317900093 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(11 /* T UnityEngine.Rendering.VolumeParameter`1<System.Int32Enum>::get_value() */, (VolumeParameter_1_t9BBACA16D59EEA84C3FF8B494907380317900093 *)((VolumeParameter_1_t9BBACA16D59EEA84C3FF8B494907380317900093 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
return L_0;
}
}
// T UnityEngine.Rendering.VolumeParameter::GetValue<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * VolumeParameter_GetValue_TisRuntimeObject_mE61EC517F0ED10178CE80578EC4BD2C33AD5DF5F_gshared (VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978 * __this, const RuntimeMethod* method)
{
{
// return ((VolumeParameter<T>) this).value;
NullCheck((VolumeParameter_1_t0C531F16D9114D9347679EC817FCA2F931139E10 *)((VolumeParameter_1_t0C531F16D9114D9347679EC817FCA2F931139E10 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
RuntimeObject * L_0 = VirtFuncInvoker0< RuntimeObject * >::Invoke(11 /* T UnityEngine.Rendering.VolumeParameter`1<System.Object>::get_value() */, (VolumeParameter_1_t0C531F16D9114D9347679EC817FCA2F931139E10 *)((VolumeParameter_1_t0C531F16D9114D9347679EC817FCA2F931139E10 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
return L_0;
}
}
// T UnityEngine.Rendering.VolumeParameter::GetValue<System.Single>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float VolumeParameter_GetValue_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mD4145677999E19096FFD411AEC7DD49057CEF85D_gshared (VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978 * __this, const RuntimeMethod* method)
{
{
// return ((VolumeParameter<T>) this).value;
NullCheck((VolumeParameter_1_t17378A4CEB679A71C613697D8C8E13535D1E26E2 *)((VolumeParameter_1_t17378A4CEB679A71C613697D8C8E13535D1E26E2 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
float L_0 = VirtFuncInvoker0< float >::Invoke(11 /* T UnityEngine.Rendering.VolumeParameter`1<System.Single>::get_value() */, (VolumeParameter_1_t17378A4CEB679A71C613697D8C8E13535D1E26E2 *)((VolumeParameter_1_t17378A4CEB679A71C613697D8C8E13535D1E26E2 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
return L_0;
}
}
// T UnityEngine.Rendering.VolumeParameter::GetValue<UnityEngine.Color>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 VolumeParameter_GetValue_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_m9C63B7F2742FC8311F7A4800410DE5193D1B02D1_gshared (VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978 * __this, const RuntimeMethod* method)
{
{
// return ((VolumeParameter<T>) this).value;
NullCheck((VolumeParameter_1_t059451FC1519EE7A60C91C2D4FB0B146384E8EFF *)((VolumeParameter_1_t059451FC1519EE7A60C91C2D4FB0B146384E8EFF *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = VirtFuncInvoker0< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(11 /* T UnityEngine.Rendering.VolumeParameter`1<UnityEngine.Color>::get_value() */, (VolumeParameter_1_t059451FC1519EE7A60C91C2D4FB0B146384E8EFF *)((VolumeParameter_1_t059451FC1519EE7A60C91C2D4FB0B146384E8EFF *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
return L_0;
}
}
// T UnityEngine.Rendering.VolumeParameter::GetValue<UnityEngine.LayerMask>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 VolumeParameter_GetValue_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m2AEA62D3F6A8CDD603E3BB04E7495C0D1FD9A1CF_gshared (VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978 * __this, const RuntimeMethod* method)
{
{
// return ((VolumeParameter<T>) this).value;
NullCheck((VolumeParameter_1_t197079DE61D57F1377FDC4FA60C73D44F000C547 *)((VolumeParameter_1_t197079DE61D57F1377FDC4FA60C73D44F000C547 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 L_0 = VirtFuncInvoker0< LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 >::Invoke(11 /* T UnityEngine.Rendering.VolumeParameter`1<UnityEngine.LayerMask>::get_value() */, (VolumeParameter_1_t197079DE61D57F1377FDC4FA60C73D44F000C547 *)((VolumeParameter_1_t197079DE61D57F1377FDC4FA60C73D44F000C547 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
return L_0;
}
}
// T UnityEngine.Rendering.VolumeParameter::GetValue<UnityEngine.Vector2>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D VolumeParameter_GetValue_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_mFACF297DAB6BF7A33DFA38DDBCDB8027979BDE48_gshared (VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978 * __this, const RuntimeMethod* method)
{
{
// return ((VolumeParameter<T>) this).value;
NullCheck((VolumeParameter_1_tF58299DEEE2EF4D80FD77FC009ED2A4CE3D411ED *)((VolumeParameter_1_tF58299DEEE2EF4D80FD77FC009ED2A4CE3D411ED *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = VirtFuncInvoker0< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(11 /* T UnityEngine.Rendering.VolumeParameter`1<UnityEngine.Vector2>::get_value() */, (VolumeParameter_1_tF58299DEEE2EF4D80FD77FC009ED2A4CE3D411ED *)((VolumeParameter_1_tF58299DEEE2EF4D80FD77FC009ED2A4CE3D411ED *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
return L_0;
}
}
// T UnityEngine.Rendering.VolumeParameter::GetValue<UnityEngine.Vector3>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 VolumeParameter_GetValue_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mEC1A8F36135D592DDD0A746F4A505A989D33F911_gshared (VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978 * __this, const RuntimeMethod* method)
{
{
// return ((VolumeParameter<T>) this).value;
NullCheck((VolumeParameter_1_t410FFFF80FBCD4C465026DD7AFD1572D87E4F3E1 *)((VolumeParameter_1_t410FFFF80FBCD4C465026DD7AFD1572D87E4F3E1 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = VirtFuncInvoker0< Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 >::Invoke(11 /* T UnityEngine.Rendering.VolumeParameter`1<UnityEngine.Vector3>::get_value() */, (VolumeParameter_1_t410FFFF80FBCD4C465026DD7AFD1572D87E4F3E1 *)((VolumeParameter_1_t410FFFF80FBCD4C465026DD7AFD1572D87E4F3E1 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
return L_0;
}
}
// T UnityEngine.Rendering.VolumeParameter::GetValue<UnityEngine.Vector4>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E VolumeParameter_GetValue_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m37FE0052AF0DA49742D865A94C725619DD55DA23_gshared (VolumeParameter_tCDE6ED34C0CCAD13E50C7267DA667EB9F8E5D978 * __this, const RuntimeMethod* method)
{
{
// return ((VolumeParameter<T>) this).value;
NullCheck((VolumeParameter_1_t14EDC405CD6A3957BDB5B917DAB8AFA918F67431 *)((VolumeParameter_1_t14EDC405CD6A3957BDB5B917DAB8AFA918F67431 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_0 = VirtFuncInvoker0< Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E >::Invoke(11 /* T UnityEngine.Rendering.VolumeParameter`1<UnityEngine.Vector4>::get_value() */, (VolumeParameter_1_t14EDC405CD6A3957BDB5B917DAB8AFA918F67431 *)((VolumeParameter_1_t14EDC405CD6A3957BDB5B917DAB8AFA918F67431 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
return L_0;
}
}
// T UnityEngine.Rendering.VolumeProfile::Add<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * VolumeProfile_Add_TisRuntimeObject_m654A9CEC71DB0872FBF365088EE0061249B56E4B_gshared (VolumeProfile_t337A44A671E93CF2687335B64D6AB1C60EEA34EC * __this, bool ___overrides0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (VolumeProfile_Add_TisRuntimeObject_m654A9CEC71DB0872FBF365088EE0061249B56E4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return (T)Add(typeof(T), overrides);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
bool L_2 = ___overrides0;
NullCheck((VolumeProfile_t337A44A671E93CF2687335B64D6AB1C60EEA34EC *)__this);
VolumeComponent_t333392A1EED68E0227F1B4E974B1AD591BB13753 * L_3 = VolumeProfile_Add_mCA396DEDE94B39B936584D27B7329DE2789ED6C1((VolumeProfile_t337A44A671E93CF2687335B64D6AB1C60EEA34EC *)__this, (Type_t *)L_1, (bool)L_2, /*hidden argument*/NULL);
return ((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
}
}
// T UnityEngine.Rendering.VolumeStack::GetComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * VolumeStack_GetComponent_TisRuntimeObject_mC938E36188FBDDB1D9B702BF923C99029631E7CD_gshared (VolumeStack_tF9EF843E5DD7B2E39CD76B2C63C26675A66D8E38 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (VolumeStack_GetComponent_TisRuntimeObject_mC938E36188FBDDB1D9B702BF923C99029631E7CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// var comp = GetComponent(typeof(T));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
NullCheck((VolumeStack_tF9EF843E5DD7B2E39CD76B2C63C26675A66D8E38 *)__this);
VolumeComponent_t333392A1EED68E0227F1B4E974B1AD591BB13753 * L_2 = VolumeStack_GetComponent_m1C22288708CFB375BD8F359C726EA915527D810F((VolumeStack_tF9EF843E5DD7B2E39CD76B2C63C26675A66D8E38 *)__this, (Type_t *)L_1, /*hidden argument*/NULL);
// return (T)comp;
return ((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
}
}
// T UnityEngine.Resources::GetBuiltinResource<System.Object>(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Resources_GetBuiltinResource_TisRuntimeObject_m832F2383487D59D5D8B18FA4C1C689A1032669BE_gshared (String_t* ___path0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Resources_GetBuiltinResource_TisRuntimeObject_m832F2383487D59D5D8B18FA4C1C689A1032669BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
String_t* L_2 = ___path0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_3 = Resources_GetBuiltinResource_m73DDAC485E1E06C925628AA7285AC63D0797BD0A((Type_t *)L_1, (String_t*)L_2, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_0019;
}
IL_0019:
{
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T UnityEngine.Resources::Load<System.Object>(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Resources_Load_TisRuntimeObject_m312D167000593C478994C1F4C93930C5DAED66D3_gshared (String_t* ___path0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Resources_Load_TisRuntimeObject_m312D167000593C478994C1F4C93930C5DAED66D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
String_t* L_0 = ___path0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_1, /*hidden argument*/NULL);
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_3 = Resources_Load_mF0FA033BF566CDDA6A0E69BB97283B44C40726E7((String_t*)L_0, (Type_t *)L_2, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_0019;
}
IL_0019:
{
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T UnityEngine.ScriptableObject::CreateInstance<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ScriptableObject_CreateInstance_TisRuntimeObject_m7A8F75139352BA04C2EEC1D72D430FAC94C753DE_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ScriptableObject_CreateInstance_TisRuntimeObject_m7A8F75139352BA04C2EEC1D72D430FAC94C753DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 * L_2 = ScriptableObject_CreateInstance_mDC77B7257A5E276CB272D3475B9B473B23A7128D((Type_t *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_0018;
}
IL_0018:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.UI.Dropdown::GetOrAddComponent<System.Object>(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dropdown_GetOrAddComponent_TisRuntimeObject_mAEDB727D813C41FFCB6E8556119504E270F2E755_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___go0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_GetOrAddComponent_TisRuntimeObject_mAEDB727D813C41FFCB6E8556119504E270F2E755_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
// T comp = go.GetComponent<T>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___go0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0);
RuntimeObject * L_1 = (( RuntimeObject * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (RuntimeObject *)L_1;
// if (!comp)
RuntimeObject * L_2 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_001b;
}
}
{
// comp = go.AddComponent<T>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = ___go0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_4);
RuntimeObject * L_5 = (( RuntimeObject * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
V_0 = (RuntimeObject *)L_5;
}
IL_001b:
{
// return comp;
RuntimeObject * L_6 = V_0;
return L_6;
}
}
// T UnityEngine.XR.ARKit.ManagedReferenceImage::ResolveGCHandle<System.Object>(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ManagedReferenceImage_ResolveGCHandle_TisRuntimeObject_mE69FCDC0DC2CC3F8A89C25CD85559C6AE148E234_gshared (intptr_t ___ptr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ManagedReferenceImage_ResolveGCHandle_TisRuntimeObject_mE69FCDC0DC2CC3F8A89C25CD85559C6AE148E234_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeObject * V_1 = NULL;
{
// static T ResolveGCHandle<T>(IntPtr ptr) where T : class => (ptr == IntPtr.Zero) ? null : GCHandle.FromIntPtr(ptr).Target as T;
intptr_t L_0 = ___ptr0;
bool L_1 = IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
if (L_1)
{
goto IL_0026;
}
}
{
intptr_t L_2 = ___ptr0;
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_3 = GCHandle_FromIntPtr_mB803C8ECA1D723F1C51A69F7A7E09E269488D36C((intptr_t)L_2, /*hidden argument*/NULL);
V_0 = (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 )L_3;
RuntimeObject * L_4 = GCHandle_get_Target_mDBDEA6883245CF1EF963D9FA945569B2D59DCCF8((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_0), /*hidden argument*/NULL);
return ((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))), IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
}
IL_0026:
{
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *));
RuntimeObject * L_5 = V_1;
return L_5;
}
}
// T UnityEngine.XR.Management.XRLoaderHelper::GetLoadedSubsystem<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XRLoaderHelper_GetLoadedSubsystem_TisRuntimeObject_m8D18B6F86DF3BF0F0C2102EFAE7DF661C3A09931_gshared (XRLoaderHelper_tD0931FCDC2CEA47D2C4F81741FCC7EE65C8DB0C3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRLoaderHelper_GetLoadedSubsystem_TisRuntimeObject_m8D18B6F86DF3BF0F0C2102EFAE7DF661C3A09931_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
// Type subsystemType = typeof(T);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (Type_t *)L_1;
// m_SubsystemInstanceMap.TryGetValue(subsystemType, out subsystem);
Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86 * L_2 = (Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86 *)__this->get_m_SubsystemInstanceMap_4();
Type_t * L_3 = V_0;
NullCheck((Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86 *)L_2);
Dictionary_2_TryGetValue_m0145FEACBF5643445A468A312880F27CA4205396((Dictionary_2_tC06ADAF88DFDFFDB3CD31E5BD4C77FBB46281E86 *)L_2, (Type_t *)L_3, (RuntimeObject**)(RuntimeObject**)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m0145FEACBF5643445A468A312880F27CA4205396_RuntimeMethod_var);
// return subsystem as T;
RuntimeObject* L_4 = V_1;
return ((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))), IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
}
}
// T UnityEngine.XR.Management.XRManagerSettings::ActiveLoaderAs<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XRManagerSettings_ActiveLoaderAs_TisRuntimeObject_mBC795755F293A7193C0E8800895EA19FCC4AF067_gshared (XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5 * __this, const RuntimeMethod* method)
{
{
// return activeLoader as T;
NullCheck((XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5 *)__this);
XRLoader_t2574091AF57F902BF504098AB113416E8D15186A * L_0 = XRManagerSettings_get_activeLoader_m9371C31D367F55202EE948306D0C61A9D8725B67_inline((XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5 *)__this, /*hidden argument*/NULL);
return ((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))), IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
}
}
// TOutput[] System.Array::ConvertAll<System.Object,System.Object>(TInput[],System.Converter`2<TInput,TOutput>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 * ___converter1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_RuntimeMethod_var);
}
IL_000e:
{
Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 * L_2 = ___converter1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, (String_t*)_stringLiteral2C3199988097E4BB3103E8C34B8DFE8796545D8F, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m4EB6BCB9266D31902A76F2F846B438DDC3B6A79D_RuntimeMethod_var);
}
IL_001c:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_5;
V_1 = (int32_t)0;
goto IL_0041;
}
IL_0029:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = V_0;
int32_t L_7 = V_1;
Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 * L_8 = ___converter1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = ___array0;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
RuntimeObject * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck((Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 *)L_8);
RuntimeObject * L_13 = (( RuntimeObject * (*) (Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Converter_2_t2E64EC99491AE527ACFE8BC9D48EA74E27D7A979 *)L_8, (RuntimeObject *)L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject *)L_13);
int32_t L_14 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_0041:
{
int32_t L_15 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = ___array0;
NullCheck(L_16);
if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))))
{
goto IL_0029;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_0;
return L_17;
}
}
// TSource System.Linq.Enumerable::ElementAt<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_ElementAt_TisRuntimeObject_m2FA25011AB7D035EBA377E9C5FC051F91254B66F_gshared (RuntimeObject* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_ElementAt_TisRuntimeObject_m2FA25011AB7D035EBA377E9C5FC051F91254B66F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_ElementAt_TisRuntimeObject_m2FA25011AB7D035EBA377E9C5FC051F91254B66F_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___source0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_0020;
}
}
{
RuntimeObject* L_4 = V_0;
int32_t L_5 = ___index1;
NullCheck((RuntimeObject*)L_4);
RuntimeObject * L_6 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_4, (int32_t)L_5);
return L_6;
}
IL_0020:
{
int32_t L_7 = ___index1;
if ((((int32_t)L_7) >= ((int32_t)0)))
{
goto IL_002f;
}
}
{
Exception_t * L_8 = Error_ArgumentOutOfRange_mACFCB068F4E0C4EEF9E6EDDD59E798901C32C6C9((String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Enumerable_ElementAt_TisRuntimeObject_m2FA25011AB7D035EBA377E9C5FC051F91254B66F_RuntimeMethod_var);
}
IL_002f:
{
RuntimeObject* L_9 = ___source0;
NullCheck((RuntimeObject*)L_9);
RuntimeObject* L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_9);
V_1 = (RuntimeObject*)L_10;
}
IL_0036:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
if (L_12)
{
goto IL_0049;
}
}
IL_003e:
{
Exception_t * L_13 = Error_ArgumentOutOfRange_mACFCB068F4E0C4EEF9E6EDDD59E798901C32C6C9((String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, Enumerable_ElementAt_TisRuntimeObject_m2FA25011AB7D035EBA377E9C5FC051F91254B66F_RuntimeMethod_var);
}
IL_0049:
{
int32_t L_14 = ___index1;
if (L_14)
{
goto IL_0055;
}
}
IL_004c:
{
RuntimeObject* L_15 = V_1;
NullCheck((RuntimeObject*)L_15);
RuntimeObject * L_16 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (RuntimeObject*)L_15);
V_2 = (RuntimeObject *)L_16;
IL2CPP_LEAVE(0x66, FINALLY_005c);
}
IL_0055:
{
int32_t L_17 = ___index1;
___index1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
goto IL_0036;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_005c;
}
FINALLY_005c:
{ // begin finally (depth: 1)
{
RuntimeObject* L_18 = V_1;
if (!L_18)
{
goto IL_0065;
}
}
IL_005f:
{
RuntimeObject* L_19 = V_1;
NullCheck((RuntimeObject*)L_19);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_19);
}
IL_0065:
{
IL2CPP_END_FINALLY(92)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(92)
{
IL2CPP_JUMP_TBL(0x66, IL_0066)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0066:
{
RuntimeObject * L_20 = V_2;
return L_20;
}
}
// TSource System.Linq.Enumerable::ElementAt<System.UInt32>(System.Collections.Generic.IEnumerable`1<TSource>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Enumerable_ElementAt_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m697818150903A54E504EF08086D5B2C8CE100E8D_gshared (RuntimeObject* ___source0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_ElementAt_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m697818150903A54E504EF08086D5B2C8CE100E8D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
uint32_t V_2 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_ElementAt_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m697818150903A54E504EF08086D5B2C8CE100E8D_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___source0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_0020;
}
}
{
RuntimeObject* L_4 = V_0;
int32_t L_5 = ___index1;
NullCheck((RuntimeObject*)L_4);
uint32_t L_6 = InterfaceFuncInvoker1< uint32_t, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.UInt32>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_4, (int32_t)L_5);
return L_6;
}
IL_0020:
{
int32_t L_7 = ___index1;
if ((((int32_t)L_7) >= ((int32_t)0)))
{
goto IL_002f;
}
}
{
Exception_t * L_8 = Error_ArgumentOutOfRange_mACFCB068F4E0C4EEF9E6EDDD59E798901C32C6C9((String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Enumerable_ElementAt_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m697818150903A54E504EF08086D5B2C8CE100E8D_RuntimeMethod_var);
}
IL_002f:
{
RuntimeObject* L_9 = ___source0;
NullCheck((RuntimeObject*)L_9);
RuntimeObject* L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.UInt32>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_9);
V_1 = (RuntimeObject*)L_10;
}
IL_0036:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
if (L_12)
{
goto IL_0049;
}
}
IL_003e:
{
Exception_t * L_13 = Error_ArgumentOutOfRange_mACFCB068F4E0C4EEF9E6EDDD59E798901C32C6C9((String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, Enumerable_ElementAt_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m697818150903A54E504EF08086D5B2C8CE100E8D_RuntimeMethod_var);
}
IL_0049:
{
int32_t L_14 = ___index1;
if (L_14)
{
goto IL_0055;
}
}
IL_004c:
{
RuntimeObject* L_15 = V_1;
NullCheck((RuntimeObject*)L_15);
uint32_t L_16 = InterfaceFuncInvoker0< uint32_t >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.UInt32>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (RuntimeObject*)L_15);
V_2 = (uint32_t)L_16;
IL2CPP_LEAVE(0x66, FINALLY_005c);
}
IL_0055:
{
int32_t L_17 = ___index1;
___index1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
goto IL_0036;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_005c;
}
FINALLY_005c:
{ // begin finally (depth: 1)
{
RuntimeObject* L_18 = V_1;
if (!L_18)
{
goto IL_0065;
}
}
IL_005f:
{
RuntimeObject* L_19 = V_1;
NullCheck((RuntimeObject*)L_19);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_19);
}
IL_0065:
{
IL2CPP_END_FINALLY(92)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(92)
{
IL2CPP_JUMP_TBL(0x66, IL_0066)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0066:
{
uint32_t L_20 = V_2;
return L_20;
}
}
// TSource System.Linq.Enumerable::FirstOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_FirstOrDefault_TisRuntimeObject_m080A5CE50E989D99A8785C4DEDA7EBB21EC1B5A6_gshared (RuntimeObject* ___source0, Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * ___predicate1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_FirstOrDefault_TisRuntimeObject_m080A5CE50E989D99A8785C4DEDA7EBB21EC1B5A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject * V_1 = NULL;
RuntimeObject * V_2 = NULL;
RuntimeObject * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_FirstOrDefault_TisRuntimeObject_m080A5CE50E989D99A8785C4DEDA7EBB21EC1B5A6_RuntimeMethod_var);
}
IL_000e:
{
Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_2 = ___predicate1;
if (L_2)
{
goto IL_001c;
}
}
{
Exception_t * L_3 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral04444310B8C9D216A6BC1D1CC9542ECC75BC02DF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Enumerable_FirstOrDefault_TisRuntimeObject_m080A5CE50E989D99A8785C4DEDA7EBB21EC1B5A6_RuntimeMethod_var);
}
IL_001c:
{
RuntimeObject* L_4 = ___source0;
NullCheck((RuntimeObject*)L_4);
RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_4);
V_0 = (RuntimeObject*)L_5;
}
IL_0023:
try
{ // begin try (depth: 1)
{
goto IL_0039;
}
IL_0025:
{
RuntimeObject* L_6 = V_0;
NullCheck((RuntimeObject*)L_6);
RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_6);
V_1 = (RuntimeObject *)L_7;
Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_8 = ___predicate1;
RuntimeObject * L_9 = V_1;
NullCheck((Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *)L_8);
bool L_10 = (( bool (*) (Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
if (!L_10)
{
goto IL_0039;
}
}
IL_0035:
{
RuntimeObject * L_11 = V_1;
V_2 = (RuntimeObject *)L_11;
IL2CPP_LEAVE(0x57, FINALLY_0043);
}
IL_0039:
{
RuntimeObject* L_12 = V_0;
NullCheck((RuntimeObject*)L_12);
bool L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
if (L_13)
{
goto IL_0025;
}
}
IL_0041:
{
IL2CPP_LEAVE(0x4D, FINALLY_0043);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0043;
}
FINALLY_0043:
{ // begin finally (depth: 1)
{
RuntimeObject* L_14 = V_0;
if (!L_14)
{
goto IL_004c;
}
}
IL_0046:
{
RuntimeObject* L_15 = V_0;
NullCheck((RuntimeObject*)L_15);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
}
IL_004c:
{
IL2CPP_END_FINALLY(67)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(67)
{
IL2CPP_JUMP_TBL(0x57, IL_0057)
IL2CPP_JUMP_TBL(0x4D, IL_004d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_004d:
{
il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject *));
RuntimeObject * L_16 = V_3;
return L_16;
}
IL_0057:
{
RuntimeObject * L_17 = V_2;
return L_17;
}
}
// TSource System.Linq.Enumerable::Last<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_Last_TisRuntimeObject_m73CE8E049D24E75FE927A73A8611BC7D63F10F46_gshared (RuntimeObject* ___source0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_Last_TisRuntimeObject_m73CE8E049D24E75FE927A73A8611BC7D63F10F46_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
RuntimeObject * V_3 = NULL;
RuntimeObject * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_Last_TisRuntimeObject_m73CE8E049D24E75FE927A73A8611BC7D63F10F46_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___source0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_002d;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
int32_t L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Object>::get_Count() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_4);
V_1 = (int32_t)L_5;
int32_t L_6 = V_1;
if ((((int32_t)L_6) <= ((int32_t)0)))
{
goto IL_005c;
}
}
{
RuntimeObject* L_7 = V_0;
int32_t L_8 = V_1;
NullCheck((RuntimeObject*)L_7);
RuntimeObject * L_9 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_7, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)));
return L_9;
}
IL_002d:
{
RuntimeObject* L_10 = ___source0;
NullCheck((RuntimeObject*)L_10);
RuntimeObject* L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (RuntimeObject*)L_10);
V_2 = (RuntimeObject*)L_11;
}
IL_0034:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_12 = V_2;
NullCheck((RuntimeObject*)L_12);
bool L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
if (!L_13)
{
goto IL_0050;
}
}
IL_003c:
{
RuntimeObject* L_14 = V_2;
NullCheck((RuntimeObject*)L_14);
RuntimeObject * L_15 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 3), (RuntimeObject*)L_14);
V_3 = (RuntimeObject *)L_15;
RuntimeObject* L_16 = V_2;
NullCheck((RuntimeObject*)L_16);
bool L_17 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_16);
if (L_17)
{
goto IL_003c;
}
}
IL_004b:
{
RuntimeObject * L_18 = V_3;
V_4 = (RuntimeObject *)L_18;
IL2CPP_LEAVE(0x62, FINALLY_0052);
}
IL_0050:
{
IL2CPP_LEAVE(0x5C, FINALLY_0052);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0052;
}
FINALLY_0052:
{ // begin finally (depth: 1)
{
RuntimeObject* L_19 = V_2;
if (!L_19)
{
goto IL_005b;
}
}
IL_0055:
{
RuntimeObject* L_20 = V_2;
NullCheck((RuntimeObject*)L_20);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_20);
}
IL_005b:
{
IL2CPP_END_FINALLY(82)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(82)
{
IL2CPP_JUMP_TBL(0x62, IL_0062)
IL2CPP_JUMP_TBL(0x5C, IL_005c)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_005c:
{
Exception_t * L_21 = Error_NoElements_m17188AC2CF25EB359A4E1DDE9518A98598791136(/*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, Enumerable_Last_TisRuntimeObject_m73CE8E049D24E75FE927A73A8611BC7D63F10F46_RuntimeMethod_var);
}
IL_0062:
{
RuntimeObject * L_22 = V_4;
return L_22;
}
}
// TSource System.Linq.Enumerable::SingleOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_gshared (RuntimeObject* ___source0, Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * ___predicate1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
int64_t V_1 = 0;
RuntimeObject* V_2 = NULL;
RuntimeObject * V_3 = NULL;
RuntimeObject * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_RuntimeMethod_var);
}
IL_000e:
{
Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_2 = ___predicate1;
if (L_2)
{
goto IL_001c;
}
}
{
Exception_t * L_3 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral04444310B8C9D216A6BC1D1CC9542ECC75BC02DF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_RuntimeMethod_var);
}
IL_001c:
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
V_1 = (int64_t)(((int64_t)((int64_t)0)));
RuntimeObject* L_4 = ___source0;
NullCheck((RuntimeObject*)L_4);
RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_4);
V_2 = (RuntimeObject*)L_5;
}
IL_002e:
try
{ // begin try (depth: 1)
{
goto IL_0047;
}
IL_0030:
{
RuntimeObject* L_6 = V_2;
NullCheck((RuntimeObject*)L_6);
RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_6);
V_3 = (RuntimeObject *)L_7;
Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_8 = ___predicate1;
RuntimeObject * L_9 = V_3;
NullCheck((Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *)L_8);
bool L_10 = (( bool (*) (Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
if (!L_10)
{
goto IL_0047;
}
}
IL_0040:
{
RuntimeObject * L_11 = V_3;
V_0 = (RuntimeObject *)L_11;
int64_t L_12 = V_1;
if (il2cpp_codegen_check_add_overflow((int64_t)L_12, (int64_t)(((int64_t)((int64_t)1)))))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_RuntimeMethod_var);
V_1 = (int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_12, (int64_t)(((int64_t)((int64_t)1)))));
}
IL_0047:
{
RuntimeObject* L_13 = V_2;
NullCheck((RuntimeObject*)L_13);
bool L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
if (L_14)
{
goto IL_0030;
}
}
IL_004f:
{
IL2CPP_LEAVE(0x5B, FINALLY_0051);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0051;
}
FINALLY_0051:
{ // begin finally (depth: 1)
{
RuntimeObject* L_15 = V_2;
if (!L_15)
{
goto IL_005a;
}
}
IL_0054:
{
RuntimeObject* L_16 = V_2;
NullCheck((RuntimeObject*)L_16);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_16);
}
IL_005a:
{
IL2CPP_END_FINALLY(81)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(81)
{
IL2CPP_JUMP_TBL(0x5B, IL_005b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_005b:
{
int64_t L_17 = V_1;
if (!L_17)
{
goto IL_0065;
}
}
{
int64_t L_18 = V_1;
if ((((int64_t)L_18) == ((int64_t)(((int64_t)((int64_t)1))))))
{
goto IL_0070;
}
}
{
goto IL_0072;
}
IL_0065:
{
il2cpp_codegen_initobj((&V_4), sizeof(RuntimeObject *));
RuntimeObject * L_19 = V_4;
return L_19;
}
IL_0070:
{
RuntimeObject * L_20 = V_0;
return L_20;
}
IL_0072:
{
Exception_t * L_21 = Error_MoreThanOneMatch_m85C3617F782E9F2333FC1FDF42821BE069F24623(/*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, Enumerable_SingleOrDefault_TisRuntimeObject_m4C9F6C91DBB44BA8D94999E3EC7EF87729B81802_RuntimeMethod_var);
}
}
// TSource[] System.Linq.Enumerable::ToArray<System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* Enumerable_ToArray_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m4C50B687629E8BC754A03B182301CA7FC7B56967_gshared (RuntimeObject* ___source0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_ToArray_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m4C50B687629E8BC754A03B182301CA7FC7B56967_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_ToArray_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m4C50B687629E8BC754A03B182301CA7FC7B56967_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___source0;
Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2 L_3;
memset((&L_3), 0, sizeof(L_3));
Buffer_1__ctor_m0CE9121B518F16084DE99B4E1624BBBCEA0E1782((&L_3), (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_0 = (Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2 )L_3;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = Buffer_1_ToArray_mC5DCD85B5DC4FD7B6D5DC32954278313976AEF8A((Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2 *)(Buffer_1_tD44456F9E8EC1320F27AACE8C70545A71A5323A2 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
return L_4;
}
}
// TSource[] System.Linq.Enumerable::ToArray<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Enumerable_ToArray_TisRuntimeObject_m0343A227B31BEB205D569F05AEAE761094FB1B34_gshared (RuntimeObject* ___source0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_ToArray_TisRuntimeObject_m0343A227B31BEB205D569F05AEAE761094FB1B34_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_ToArray_TisRuntimeObject_m0343A227B31BEB205D569F05AEAE761094FB1B34_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___source0;
Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C L_3;
memset((&L_3), 0, sizeof(L_3));
Buffer_1__ctor_mFC593D644243CEC302C442E4AA893955A7EA307C((&L_3), (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_0 = (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C )L_3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = Buffer_1_ToArray_m8464C83D3CD990F32379CB62618CE2A9C9D1C656((Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C *)(Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
return L_4;
}
}
// TSource[] System.Linq.Enumerable::ToArray<System.UInt32>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* Enumerable_ToArray_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m3837BCAC4FBE264CE9D016D4C68BF973651E9A1C_gshared (RuntimeObject* ___source0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_ToArray_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m3837BCAC4FBE264CE9D016D4C68BF973651E9A1C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_ToArray_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m3837BCAC4FBE264CE9D016D4C68BF973651E9A1C_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___source0;
Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247 L_3;
memset((&L_3), 0, sizeof(L_3));
Buffer_1__ctor_m15E14821150D72D98452426EA8B5871A1C607479((&L_3), (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_0 = (Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247 )L_3;
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = Buffer_1_ToArray_m042D0BD4FCB5FC3D9A162686844A6977062708EE((Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247 *)(Buffer_1_tA44E75C0DCE7566508E761EF27C3DFFFC0ACC247 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
return L_4;
}
}
// TSource[] System.Linq.Enumerable::ToArray<UnityEngine.Color>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* Enumerable_ToArray_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE2CDF0B8B3C41F62C428BF69181B0D92E8250EDF_gshared (RuntimeObject* ___source0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_ToArray_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE2CDF0B8B3C41F62C428BF69181B0D92E8250EDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_ToArray_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mE2CDF0B8B3C41F62C428BF69181B0D92E8250EDF_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___source0;
Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604 L_3;
memset((&L_3), 0, sizeof(L_3));
Buffer_1__ctor_mBD7D30EEA556E1D7EA71695808E1B0CC67145073((&L_3), (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_0 = (Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604 )L_3;
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* L_4 = Buffer_1_ToArray_m05F54031FC165D85EEB930D4B0ADB2E40F1F8AA1((Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604 *)(Buffer_1_t194581F4CEF5134430D35C20171D44D53E546604 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
return L_4;
}
}
// TSource[] System.Linq.Enumerable::ToArray<UnityEngine.Vector3>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* Enumerable_ToArray_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC2832BB83AC3F04B94E13C7D0A19FF4C39600473_gshared (RuntimeObject* ___source0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_ToArray_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC2832BB83AC3F04B94E13C7D0A19FF4C39600473_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_ToArray_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mC2832BB83AC3F04B94E13C7D0A19FF4C39600473_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___source0;
Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169 L_3;
memset((&L_3), 0, sizeof(L_3));
Buffer_1__ctor_m1A858F2A4E5C2110A5907B30FE3A092F9665ADAA((&L_3), (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_0 = (Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169 )L_3;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_4 = Buffer_1_ToArray_m68911852C50E5C3F9E73776BE908D0488CC8B01D((Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169 *)(Buffer_1_t4126AFEF02B3F3BAE08E264538ED8A2436B56169 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
return L_4;
}
}
// TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m65245601C668347780A2F6D1A8D7EEC7D79AD673_gshared (RuntimeObject* ___dictionary0, RuntimeObject * ___key1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
RuntimeObject* L_0 = ___dictionary0;
RuntimeObject * L_1 = ___key1;
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_2 = V_0;
RuntimeObject * L_3 = (( RuntimeObject * (*) (RuntimeObject*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RuntimeObject*)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_3;
}
}
// TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m5D116C3383F95724C01C628C0D0069F3D7F65621_gshared (RuntimeObject* ___dictionary0, RuntimeObject * ___key1, RuntimeObject * ___defaultValue2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m5D116C3383F95724C01C628C0D0069F3D7F65621_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject* L_0 = ___dictionary0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m5D116C3383F95724C01C628C0D0069F3D7F65621_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___dictionary0;
RuntimeObject * L_3 = ___key1;
NullCheck((RuntimeObject*)L_2);
bool L_4 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject ** >::Invoke(1 /* System.Boolean System.Collections.Generic.IReadOnlyDictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_2, (RuntimeObject *)L_3, (RuntimeObject **)(RuntimeObject **)(&V_0));
if (L_4)
{
goto IL_001b;
}
}
{
RuntimeObject * L_5 = ___defaultValue2;
return L_5;
}
IL_001b:
{
RuntimeObject * L_6 = V_0;
return L_6;
}
}
// T[] System.Array::Empty<System.Char>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Array_Empty_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mB69B3E7C1276AE609F2B9FA977634893619F966D_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ((EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* Array_Empty_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m9EF9C1558CFFF96DB7596CA1EBBD30B5FCAB0538_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* L_0 = ((EmptyArray_1_t2F6E359A64FCAE440B259B477121A341730D73D3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* Array_Empty_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1A60190AB0E2A341E03194FC70B762E9A91708D5_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_0 = ((EmptyArray_1_tA835F9169F98551C5189EB04F9D45B0E331E6B98_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* Array_Empty_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m70299FD71AF4EBCB301FA4BE52FFC24ACB084846_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_0 = ((EmptyArray_1_t11B3969D38E2BF74B97BD01F02D6E2583FAA1D8F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Array_Empty_TisRuntimeObject_m9CF99326FAC8A01A4A25C90AA97F0799BA35ECAB_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ((EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<UnityEngine.XR.ARSubsystems.TrackableId>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableIdU5BU5D_t43525AC6688EDA53AF5753025C44F8DC1B33EF6E* Array_Empty_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m68195AFCC784022BA743E6B01D3026C15EF13FEE_gshared (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
TrackableIdU5BU5D_t43525AC6688EDA53AF5753025C44F8DC1B33EF6E* L_0 = ((EmptyArray_1_tFAC80D47380CF944C985C3DA42C121DB6B215319_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::FindAll<System.Object>(T[],System.Predicate`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Array_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___match1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** G_B9_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** G_B8_0 = NULL;
int32_t G_B10_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** G_B10_1 = NULL;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Array_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_RuntimeMethod_var);
}
IL_000e:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_2 = ___match1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, (String_t*)_stringLiteralEF5C844EAB88BCACA779BD2F3AD67B573BBBBFCA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Array_FindAll_TisRuntimeObject_mA98E5A13A8737A1E5CD968D85C81A5275D98270D_RuntimeMethod_var);
}
IL_001c:
{
V_0 = (int32_t)0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_4;
V_2 = (int32_t)0;
goto IL_006b;
}
IL_0028:
{
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * L_5 = ___match1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___array0;
int32_t L_7 = V_2;
NullCheck(L_6);
int32_t L_8 = L_7;
RuntimeObject * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
NullCheck((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_5);
bool L_10 = (( bool (*) (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 *)L_5, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
if (!L_10)
{
goto IL_0067;
}
}
{
int32_t L_11 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
NullCheck(L_12);
if ((!(((uint32_t)L_11) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))))
{
goto IL_0055;
}
}
{
int32_t L_13 = V_0;
G_B8_0 = (&V_1);
if (!L_13)
{
G_B9_0 = (&V_1);
goto IL_0047;
}
}
{
int32_t L_14 = V_0;
G_B10_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_14, (int32_t)2));
G_B10_1 = G_B8_0;
goto IL_0048;
}
IL_0047:
{
G_B10_0 = 4;
G_B10_1 = G_B9_0;
}
IL_0048:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = ___array0;
NullCheck(L_15);
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_16 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525((int32_t)G_B10_0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))), /*hidden argument*/NULL);
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)G_B10_1, (int32_t)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
}
IL_0055:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_1;
int32_t L_18 = V_0;
int32_t L_19 = (int32_t)L_18;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = ___array0;
int32_t L_21 = V_2;
NullCheck(L_20);
int32_t L_22 = L_21;
RuntimeObject * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (RuntimeObject *)L_23);
}
IL_0067:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_006b:
{
int32_t L_25 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = ___array0;
NullCheck(L_26);
if ((((int32_t)L_25) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))))
{
goto IL_0028;
}
}
{
int32_t L_27 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = V_1;
NullCheck(L_28);
if ((((int32_t)L_27) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))))
{
goto IL_007f;
}
}
{
int32_t L_29 = V_0;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(&V_1), (int32_t)L_29, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
}
IL_007f:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = V_1;
return L_30;
}
}
// T[] System.Reflection.CustomAttributeData::UnboxValues<System.Object>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* CustomAttributeData_UnboxValues_TisRuntimeObject_mFB1257FB7BD27255281B2111A20203E3A93E7050_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values0, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___values0;
NullCheck(L_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_1;
V_1 = (int32_t)0;
goto IL_0020;
}
IL_000d:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = V_0;
int32_t L_3 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___values0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0020:
{
int32_t L_9 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = ___values0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))))
{
goto IL_000d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = V_0;
return L_11;
}
}
// T[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeNamedArgument>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mC152FBD94252DA2417B7773AE16C51154C9F6A72_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values0, const RuntimeMethod* method)
{
CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___values0;
NullCheck(L_0);
CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* L_1 = (CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828*)(CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = (CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828*)L_1;
V_1 = (int32_t)0;
goto IL_0020;
}
IL_000d:
{
CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* L_2 = V_0;
int32_t L_3 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___values0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E )((*(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)((CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))))));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0020:
{
int32_t L_9 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = ___values0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))))
{
goto IL_000d;
}
}
{
CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* L_11 = V_0;
return L_11;
}
}
// T[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeTypedArgument>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m846F81B95C445180214406E0D355EBA8EC9644D1_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values0, const RuntimeMethod* method)
{
CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___values0;
NullCheck(L_0);
CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* L_1 = (CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05*)(CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = (CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05*)L_1;
V_1 = (int32_t)0;
goto IL_0020;
}
IL_000d:
{
CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* L_2 = V_0;
int32_t L_3 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___values0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 )((*(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)((CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))))));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0020:
{
int32_t L_9 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = ___values0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))))
{
goto IL_000d;
}
}
{
CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* L_11 = V_0;
return L_11;
}
}
// T[] UnityEngine.Component::GetComponents<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Component_GetComponents_TisRuntimeObject_mDC1D023FE07F73E1E8433D1E896D5F1250180C10_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, /*hidden argument*/NULL);
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_1;
goto IL_000f;
}
IL_000f:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = V_0;
return L_2;
}
}
// T[] UnityEngine.Component::GetComponentsInChildren<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Component_GetComponentsInChildren_TisRuntimeObject_m6D4C38C330FCFD3C323B34031A7E877A5E2D453A_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_0;
goto IL_000b;
}
IL_000b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = V_0;
return L_1;
}
}
// T[] UnityEngine.Component::GetComponentsInChildren<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Component_GetComponentsInChildren_TisRuntimeObject_m6BE45C9DF68BC115084E66CE010DA328C6ECEB1B_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, /*hidden argument*/NULL);
bool L_1 = ___includeInactive0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
goto IL_0010;
}
IL_0010:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
return L_3;
}
}
// T[] UnityEngine.Component::GetComponentsInParent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Component_GetComponentsInParent_TisRuntimeObject_m4C178287A7D9F411324F0D20D7214B40AC502A26_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_0;
goto IL_000b;
}
IL_000b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = V_0;
return L_1;
}
}
// T[] UnityEngine.Component::GetComponentsInParent<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Component_GetComponentsInParent_TisRuntimeObject_m56104E1DFC5F47D3DB51348DD3935EEE53DCB433_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)__this, /*hidden argument*/NULL);
bool L_1 = ___includeInactive0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
goto IL_0010;
}
IL_0010:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
return L_3;
}
}
// T[] UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool::GetTempArray<System.Object>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* RenderGraphObjectPool_GetTempArray_TisRuntimeObject_mC471A75084D3F4A44B2BF44122C160CD10CF104F_gshared (RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RenderGraphObjectPool_GetTempArray_TisRuntimeObject_mC471A75084D3F4A44B2BF44122C160CD10CF104F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_0 = NULL;
{
// if (!m_ArrayPool.TryGetValue((typeof(T), size), out var stack))
Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E * L_0 = (Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)__this->get_m_ArrayPool_0();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_1, /*hidden argument*/NULL);
int32_t L_3 = ___size0;
ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 L_4;
memset((&L_4), 0, sizeof(L_4));
ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3((&L_4), (Type_t *)L_2, (int32_t)L_3, /*hidden argument*/ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3_RuntimeMethod_var);
NullCheck((Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)L_0);
bool L_5 = Dictionary_2_TryGetValue_m5A246BE1478D5AAF776C27C639FA7A2CFC99FCF7((Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)L_0, (ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 )L_4, (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 **)(Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m5A246BE1478D5AAF776C27C639FA7A2CFC99FCF7_RuntimeMethod_var);
if (L_5)
{
goto IL_0041;
}
}
{
// stack = new Stack<object>();
Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * L_6 = (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)il2cpp_codegen_object_new(Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1_il2cpp_TypeInfo_var);
Stack_1__ctor_m07A8AE55BA78A57D5BDC0271ED6AA646D69AA785(L_6, /*hidden argument*/Stack_1__ctor_m07A8AE55BA78A57D5BDC0271ED6AA646D69AA785_RuntimeMethod_var);
V_0 = (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_6;
// m_ArrayPool.Add((typeof(T), size), stack);
Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E * L_7 = (Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)__this->get_m_ArrayPool_0();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL);
int32_t L_10 = ___size0;
ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 L_11;
memset((&L_11), 0, sizeof(L_11));
ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3((&L_11), (Type_t *)L_9, (int32_t)L_10, /*hidden argument*/ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3_RuntimeMethod_var);
Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * L_12 = V_0;
NullCheck((Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)L_7);
Dictionary_2_Add_mB55E82A159A823B2EFD0951D81D9FFB2D1537AEC((Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)L_7, (ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 )L_11, (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_12, /*hidden argument*/Dictionary_2_Add_mB55E82A159A823B2EFD0951D81D9FFB2D1537AEC_RuntimeMethod_var);
}
IL_0041:
{
// var result = stack.Count > 0 ? (T[])stack.Pop() : new T[size];
Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * L_13 = V_0;
NullCheck((Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_13);
int32_t L_14 = Stack_1_get_Count_m692E28BB74B2613597E407DDCCBA926306D8086A_inline((Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_13, /*hidden argument*/Stack_1_get_Count_m692E28BB74B2613597E407DDCCBA926306D8086A_RuntimeMethod_var);
if ((((int32_t)L_14) > ((int32_t)0)))
{
goto IL_0052;
}
}
{
int32_t L_15 = ___size0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)L_15);
G_B5_0 = L_16;
goto IL_005d;
}
IL_0052:
{
Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * L_17 = V_0;
NullCheck((Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_17);
RuntimeObject * L_18 = Stack_1_Pop_m490CECEA5A2911DA732CD4D7612D04BD18E1DF12((Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_17, /*hidden argument*/Stack_1_Pop_m490CECEA5A2911DA732CD4D7612D04BD18E1DF12_RuntimeMethod_var);
G_B5_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_18, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)));
}
IL_005d:
{
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)G_B5_0;
// m_AllocatedArrays.Add((result, (typeof(T), size)));
List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 * L_19 = (List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 *)__this->get_m_AllocatedArrays_1();
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
int32_t L_23 = ___size0;
ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 L_24;
memset((&L_24), 0, sizeof(L_24));
ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3((&L_24), (Type_t *)L_22, (int32_t)L_23, /*hidden argument*/ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3_RuntimeMethod_var);
ValueTuple_2_tC1E4B764A22137F872FF33F434B43BE4B46D21F5 L_25;
memset((&L_25), 0, sizeof(L_25));
ValueTuple_2__ctor_m2608A054E27ECC5D65915B37E53803ADAA9A47BC((&L_25), (RuntimeObject *)(RuntimeObject *)L_20, (ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 )L_24, /*hidden argument*/ValueTuple_2__ctor_m2608A054E27ECC5D65915B37E53803ADAA9A47BC_RuntimeMethod_var);
NullCheck((List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 *)L_19);
List_1_Add_mAAACAA53634A9E7D20D94B3333B23E6F6F5B2031((List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 *)L_19, (ValueTuple_2_tC1E4B764A22137F872FF33F434B43BE4B46D21F5 )L_25, /*hidden argument*/List_1_Add_mAAACAA53634A9E7D20D94B3333B23E6F6F5B2031_RuntimeMethod_var);
// return result;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = V_1;
return L_26;
}
}
// T[] UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphObjectPool::GetTempArray<UnityEngine.Rendering.RenderTargetIdentifier>(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4* RenderGraphObjectPool_GetTempArray_TisRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_m14E2E0F61B64B9019DB81D202FC1D17A12607910_gshared (RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RenderGraphObjectPool_GetTempArray_TisRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_m14E2E0F61B64B9019DB81D202FC1D17A12607910_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * V_0 = NULL;
RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4* V_1 = NULL;
RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4* G_B5_0 = NULL;
{
// if (!m_ArrayPool.TryGetValue((typeof(T), size), out var stack))
Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E * L_0 = (Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)__this->get_m_ArrayPool_0();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_1, /*hidden argument*/NULL);
int32_t L_3 = ___size0;
ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 L_4;
memset((&L_4), 0, sizeof(L_4));
ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3((&L_4), (Type_t *)L_2, (int32_t)L_3, /*hidden argument*/ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3_RuntimeMethod_var);
NullCheck((Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)L_0);
bool L_5 = Dictionary_2_TryGetValue_m5A246BE1478D5AAF776C27C639FA7A2CFC99FCF7((Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)L_0, (ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 )L_4, (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 **)(Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m5A246BE1478D5AAF776C27C639FA7A2CFC99FCF7_RuntimeMethod_var);
if (L_5)
{
goto IL_0041;
}
}
{
// stack = new Stack<object>();
Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * L_6 = (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)il2cpp_codegen_object_new(Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1_il2cpp_TypeInfo_var);
Stack_1__ctor_m07A8AE55BA78A57D5BDC0271ED6AA646D69AA785(L_6, /*hidden argument*/Stack_1__ctor_m07A8AE55BA78A57D5BDC0271ED6AA646D69AA785_RuntimeMethod_var);
V_0 = (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_6;
// m_ArrayPool.Add((typeof(T), size), stack);
Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E * L_7 = (Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)__this->get_m_ArrayPool_0();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL);
int32_t L_10 = ___size0;
ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 L_11;
memset((&L_11), 0, sizeof(L_11));
ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3((&L_11), (Type_t *)L_9, (int32_t)L_10, /*hidden argument*/ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3_RuntimeMethod_var);
Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * L_12 = V_0;
NullCheck((Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)L_7);
Dictionary_2_Add_mB55E82A159A823B2EFD0951D81D9FFB2D1537AEC((Dictionary_2_tDB0173F7367ADD8C863509F3869BC63705A9B63E *)L_7, (ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 )L_11, (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_12, /*hidden argument*/Dictionary_2_Add_mB55E82A159A823B2EFD0951D81D9FFB2D1537AEC_RuntimeMethod_var);
}
IL_0041:
{
// var result = stack.Count > 0 ? (T[])stack.Pop() : new T[size];
Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * L_13 = V_0;
NullCheck((Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_13);
int32_t L_14 = Stack_1_get_Count_m692E28BB74B2613597E407DDCCBA926306D8086A_inline((Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_13, /*hidden argument*/Stack_1_get_Count_m692E28BB74B2613597E407DDCCBA926306D8086A_RuntimeMethod_var);
if ((((int32_t)L_14) > ((int32_t)0)))
{
goto IL_0052;
}
}
{
int32_t L_15 = ___size0;
RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4* L_16 = (RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4*)(RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)L_15);
G_B5_0 = L_16;
goto IL_005d;
}
IL_0052:
{
Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * L_17 = V_0;
NullCheck((Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_17);
RuntimeObject * L_18 = Stack_1_Pop_m490CECEA5A2911DA732CD4D7612D04BD18E1DF12((Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 *)L_17, /*hidden argument*/Stack_1_Pop_m490CECEA5A2911DA732CD4D7612D04BD18E1DF12_RuntimeMethod_var);
G_B5_0 = ((RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4*)Castclass((RuntimeObject*)L_18, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)));
}
IL_005d:
{
V_1 = (RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4*)G_B5_0;
// m_AllocatedArrays.Add((result, (typeof(T), size)));
List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 * L_19 = (List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 *)__this->get_m_AllocatedArrays_1();
RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4* L_20 = V_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
int32_t L_23 = ___size0;
ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 L_24;
memset((&L_24), 0, sizeof(L_24));
ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3((&L_24), (Type_t *)L_22, (int32_t)L_23, /*hidden argument*/ValueTuple_2__ctor_m165066C301451137EF0B0A96B654B80E3D6328B3_RuntimeMethod_var);
ValueTuple_2_tC1E4B764A22137F872FF33F434B43BE4B46D21F5 L_25;
memset((&L_25), 0, sizeof(L_25));
ValueTuple_2__ctor_m2608A054E27ECC5D65915B37E53803ADAA9A47BC((&L_25), (RuntimeObject *)(RuntimeObject *)L_20, (ValueTuple_2_t01D88DEEA69CE75D3FE98CBE6DE18C434CCB6E88 )L_24, /*hidden argument*/ValueTuple_2__ctor_m2608A054E27ECC5D65915B37E53803ADAA9A47BC_RuntimeMethod_var);
NullCheck((List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 *)L_19);
List_1_Add_mAAACAA53634A9E7D20D94B3333B23E6F6F5B2031((List_1_tC6996D2CBDA52BAA8F08554F7E920E603DB33417 *)L_19, (ValueTuple_2_tC1E4B764A22137F872FF33F434B43BE4B46D21F5 )L_25, /*hidden argument*/List_1_Add_mAAACAA53634A9E7D20D94B3333B23E6F6F5B2031_RuntimeMethod_var);
// return result;
RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4* L_26 = V_1;
return L_26;
}
}
// T[] UnityEngine.GameObject::GetComponents<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* GameObject_GetComponents_TisRuntimeObject_m199B72A002ECBCA128D9490B3B1FBE35BA0E1181_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_GetComponents_TisRuntimeObject_m199B72A002ECBCA128D9490B3B1FBE35BA0E1181_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
RuntimeArray * L_2 = GameObject_GetComponentsInternal_mAB759217A3AD0831ABD9387163126D391459E1B8((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, (bool)1, (bool)0, (bool)1, (bool)0, (RuntimeObject *)NULL, /*hidden argument*/NULL);
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001e;
}
IL_001e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
return L_3;
}
}
// T[] UnityEngine.GameObject::GetComponentsInChildren<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* GameObject_GetComponentsInChildren_TisRuntimeObject_m480234581F731A03837A715CDD95230957255B5B_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_GetComponentsInChildren_TisRuntimeObject_m480234581F731A03837A715CDD95230957255B5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
bool L_2 = ___includeInactive0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
RuntimeArray * L_3 = GameObject_GetComponentsInternal_mAB759217A3AD0831ABD9387163126D391459E1B8((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, (bool)1, (bool)1, (bool)L_2, (bool)0, (RuntimeObject *)NULL, /*hidden argument*/NULL);
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001e;
}
IL_001e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.GameObject::GetComponentsInParent<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* GameObject_GetComponentsInParent_TisRuntimeObject_m80BC53BC6926863115F0039372F2CB123D4A44BE_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_GetComponentsInParent_TisRuntimeObject_m80BC53BC6926863115F0039372F2CB123D4A44BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
bool L_2 = ___includeInactive0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this);
RuntimeArray * L_3 = GameObject_GetComponentsInternal_mAB759217A3AD0831ABD9387163126D391459E1B8((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)__this, (Type_t *)L_1, (bool)1, (bool)1, (bool)L_2, (bool)1, (RuntimeObject *)NULL, /*hidden argument*/NULL);
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001e;
}
IL_001e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<System.Object>(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Mesh_GetAllocArrayFromChannel_TisRuntimeObject_mA5F18E3462F04632978FDE240F85E28A870C2B2F_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_mF943AF434BB9F54DBB3B3DE65F7B816E617A89C9((int32_t)L_1, /*hidden argument*/NULL);
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_3;
goto IL_0012;
}
IL_0012:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<System.Object>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Mesh_GetAllocArrayFromChannel_TisRuntimeObject_m72CF8BBE548B570F27C87B6900191B9BC58FCA73_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL;
{
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_0 = Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, /*hidden argument*/NULL);
V_0 = (bool)L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_002b;
}
}
{
int32_t L_2 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_3 = Mesh_HasVertexAttribute_m87C57B859ECB5224EEB77ED9BD3B6FF30F5A9B1C((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_2, /*hidden argument*/NULL);
V_1 = (bool)L_3;
bool L_4 = V_1;
if (!L_4)
{
goto IL_0028;
}
}
{
int32_t L_5 = ___channel0;
int32_t L_6 = ___format1;
int32_t L_7 = ___dim2;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
RuntimeArray * L_8 = Mesh_GetAllocArrayFromChannelImpl_mFDE324953466F6DBAC14CD4B48105B62181CC399((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/NULL);
V_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_003e;
}
IL_0028:
{
goto IL_0035;
}
IL_002b:
{
int32_t L_9 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_9, /*hidden argument*/NULL);
}
IL_0035:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)0);
V_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_10;
goto IL_003e;
}
IL_003e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = V_2;
return L_11;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Color32>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* Mesh_GetAllocArrayFromChannel_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m4B3891162A682BB637507D7D7529AFA4F0C80CE3_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* V_2 = NULL;
{
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_0 = Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, /*hidden argument*/NULL);
V_0 = (bool)L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_002b;
}
}
{
int32_t L_2 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_3 = Mesh_HasVertexAttribute_m87C57B859ECB5224EEB77ED9BD3B6FF30F5A9B1C((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_2, /*hidden argument*/NULL);
V_1 = (bool)L_3;
bool L_4 = V_1;
if (!L_4)
{
goto IL_0028;
}
}
{
int32_t L_5 = ___channel0;
int32_t L_6 = ___format1;
int32_t L_7 = ___dim2;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
RuntimeArray * L_8 = Mesh_GetAllocArrayFromChannelImpl_mFDE324953466F6DBAC14CD4B48105B62181CC399((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/NULL);
V_2 = (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)((Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_003e;
}
IL_0028:
{
goto IL_0035;
}
IL_002b:
{
int32_t L_9 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_9, /*hidden argument*/NULL);
}
IL_0035:
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_10 = (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)(Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)0);
V_2 = (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)L_10;
goto IL_003e;
}
IL_003e:
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_11 = V_2;
return L_11;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector2>(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* Mesh_GetAllocArrayFromChannel_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m5C40565F81077409CEBD6BB7B2C5ABC02A44F0A8_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, const RuntimeMethod* method)
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* V_0 = NULL;
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_mF943AF434BB9F54DBB3B3DE65F7B816E617A89C9((int32_t)L_1, /*hidden argument*/NULL);
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_3 = (( Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* (*) (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_3;
goto IL_0012;
}
IL_0012:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector2>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* Mesh_GetAllocArrayFromChannel_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m6D8AF77439E7F5AD3656075625D18D191068C09F_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* V_2 = NULL;
{
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_0 = Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, /*hidden argument*/NULL);
V_0 = (bool)L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_002b;
}
}
{
int32_t L_2 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_3 = Mesh_HasVertexAttribute_m87C57B859ECB5224EEB77ED9BD3B6FF30F5A9B1C((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_2, /*hidden argument*/NULL);
V_1 = (bool)L_3;
bool L_4 = V_1;
if (!L_4)
{
goto IL_0028;
}
}
{
int32_t L_5 = ___channel0;
int32_t L_6 = ___format1;
int32_t L_7 = ___dim2;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
RuntimeArray * L_8 = Mesh_GetAllocArrayFromChannelImpl_mFDE324953466F6DBAC14CD4B48105B62181CC399((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/NULL);
V_2 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_003e;
}
IL_0028:
{
goto IL_0035;
}
IL_002b:
{
int32_t L_9 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_9, /*hidden argument*/NULL);
}
IL_0035:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_10 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)0);
V_2 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_10;
goto IL_003e;
}
IL_003e:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_11 = V_2;
return L_11;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector3>(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* Mesh_GetAllocArrayFromChannel_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m2A198BF0F2DF179DF0C126C5A0BAFA1B75765F4E_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, const RuntimeMethod* method)
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* V_0 = NULL;
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_mF943AF434BB9F54DBB3B3DE65F7B816E617A89C9((int32_t)L_1, /*hidden argument*/NULL);
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_3 = (( Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* (*) (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_3;
goto IL_0012;
}
IL_0012:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector3>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* Mesh_GetAllocArrayFromChannel_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m083189084CF765FF8179220A926820E814D85F56_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* V_2 = NULL;
{
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_0 = Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, /*hidden argument*/NULL);
V_0 = (bool)L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_002b;
}
}
{
int32_t L_2 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_3 = Mesh_HasVertexAttribute_m87C57B859ECB5224EEB77ED9BD3B6FF30F5A9B1C((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_2, /*hidden argument*/NULL);
V_1 = (bool)L_3;
bool L_4 = V_1;
if (!L_4)
{
goto IL_0028;
}
}
{
int32_t L_5 = ___channel0;
int32_t L_6 = ___format1;
int32_t L_7 = ___dim2;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
RuntimeArray * L_8 = Mesh_GetAllocArrayFromChannelImpl_mFDE324953466F6DBAC14CD4B48105B62181CC399((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/NULL);
V_2 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_003e;
}
IL_0028:
{
goto IL_0035;
}
IL_002b:
{
int32_t L_9 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_9, /*hidden argument*/NULL);
}
IL_0035:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_10 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)0);
V_2 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_10;
goto IL_003e;
}
IL_003e:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_11 = V_2;
return L_11;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector4>(UnityEngine.Rendering.VertexAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* Mesh_GetAllocArrayFromChannel_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mBDD94A90E9F34CAC60C6B772992E35F66EF2D64D_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, const RuntimeMethod* method)
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* V_0 = NULL;
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_mF943AF434BB9F54DBB3B3DE65F7B816E617A89C9((int32_t)L_1, /*hidden argument*/NULL);
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_3 = (( Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* (*) (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_3;
goto IL_0012;
}
IL_0012:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector4>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Rendering.VertexAttributeFormat,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* Mesh_GetAllocArrayFromChannel_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mEADBC5B21EE5EA79F60D83CCD98B1BE0E5C03752_gshared (Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* V_2 = NULL;
{
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_0 = Mesh_get_canAccess_m1E0020EA7961227FBC0D90D851A49BCF7EB1E194((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, /*hidden argument*/NULL);
V_0 = (bool)L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_002b;
}
}
{
int32_t L_2 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
bool L_3 = Mesh_HasVertexAttribute_m87C57B859ECB5224EEB77ED9BD3B6FF30F5A9B1C((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_2, /*hidden argument*/NULL);
V_1 = (bool)L_3;
bool L_4 = V_1;
if (!L_4)
{
goto IL_0028;
}
}
{
int32_t L_5 = ___channel0;
int32_t L_6 = ___format1;
int32_t L_7 = ___dim2;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
RuntimeArray * L_8 = Mesh_GetAllocArrayFromChannelImpl_mFDE324953466F6DBAC14CD4B48105B62181CC399((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/NULL);
V_2 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_003e;
}
IL_0028:
{
goto IL_0035;
}
IL_002b:
{
int32_t L_9 = ___channel0;
NullCheck((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this);
Mesh_PrintErrorCantAccessChannel_m2E8A25959739B006557A94F7E460E8BE0B3ABB19((Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *)__this, (int32_t)L_9, /*hidden argument*/NULL);
}
IL_0035:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_10 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)(Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (uint32_t)0);
V_2 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_10;
goto IL_003e;
}
IL_003e:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_11 = V_2;
return L_11;
}
}
// T[] UnityEngine.Object::FindObjectsOfType<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Object_FindObjectsOfType_TisRuntimeObject_mE570B614F68E0A19BD5F65061CDA9BEE6EDBD159_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Object_FindObjectsOfType_TisRuntimeObject_mE570B614F68E0A19BD5F65061CDA9BEE6EDBD159_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* L_2 = Object_FindObjectsOfType_m3FC26FB3B36525BFBFCCCD1AEEE8A86712A12203((Type_t *)L_1, /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_3;
goto IL_0018;
}
IL_0018:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
return L_4;
}
}
// T[] UnityEngine.Resources::ConvertObjects<System.Object>(UnityEngine.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Resources_ConvertObjects_TisRuntimeObject_m94711E44E9B970084C63588FDEBE3D295D14A0DA_gshared (ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* ___rawObjects0, const RuntimeMethod* method)
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
bool V_1 = false;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL;
int32_t V_3 = 0;
bool V_4 = false;
{
ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* L_0 = ___rawObjects0;
V_1 = (bool)((((RuntimeObject*)(ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9*)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_000d;
}
}
{
V_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL;
goto IL_003d;
}
IL_000d:
{
ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* L_2 = ___rawObjects0;
NullCheck(L_2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))));
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_3;
V_3 = (int32_t)0;
goto IL_002d;
}
IL_001a:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = V_3;
ObjectU5BU5D_tE519E5BBCA48F8FEAE68926638261BD14A981AB9* L_6 = ___rawObjects0;
int32_t L_7 = V_3;
NullCheck(L_6);
int32_t L_8 = L_7;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))));
int32_t L_10 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002d:
{
int32_t L_11 = V_3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_0;
NullCheck(L_12);
V_4 = (bool)((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))? 1 : 0);
bool L_13 = V_4;
if (L_13)
{
goto IL_001a;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_0;
V_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_14;
goto IL_003d;
}
IL_003d:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = V_2;
return L_15;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m4703200E8457C0A92046ED760F00CE44005EF424_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 * L_0 = ((Caster_1_t1C42C521F7CF8631FF6985A641436B54CEE018E8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t19A7258583FA1642B75695805A3C675EA09C25E5 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39405AED72DA92F26E0172BAAE2234CAD45EBB81_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 * L_0 = ((Caster_1_tE0B5719D5D953F42A65E75E7D46BD8D7DD83D018_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEF5D2D9847B566056189D34781B028AAC143AE94 *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m98E56B5A92D022D027A74E25FDCC3D799EAB6804_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 * L_0 = ((Caster_1_tAFB70D9BBAD381451752BAEF28C81B52B2869977_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t324CE6226D2DB02125521E43B7578823697F11C9 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mB928A3EAFC85B48CA5F8746998096D6892171B3C_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A * L_0 = ((Caster_1_t09B5032BA61F81ADC8AEF23DEF9F301CE607AF7C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t986FAAB941679A366CE204DA40A2C414683DDE0A *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m67EC6A4FF20B881663660072CA639825FC347F8C_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 * L_0 = ((Caster_1_tB37D2514A59669003F7F156FB271151F0D11E5FB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tDA2EE3A4D871B443E8A28C71B0E0164A41D3DA02 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m3F6FD286745E992B6827D8C75772F7A3012CB51E_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 * L_0 = ((Caster_1_tAD8FA143928683B1E0B6BEB460980A8543022E9B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBE57A838EA9C265FA94567A0081AA9D93DDC74F8 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m27A19C22B04469C383D0777A361CC0504DBFF8ED_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD * L_0 = ((Caster_1_t58883F2D0ACC52F20C8978FC28C9C9D9CCFC69C2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA51CB05B3742EC3F46FA501481261EDEB730DABD *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_mFE62B63ADDBFC56BD3809BA6A7C01D084B593D37_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 * L_0 = ((Caster_1_tAFED591EF13E015162D8B2F6F629837E43482837_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4BE562A96C7C1F79332E47AAC9A46C3302AB47A2 *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2642AADE370AEBFF905A6B0DA0A6259F236F748C_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D * L_0 = ((Caster_1_tF3B99FF3BBCDEA3D042AAF9F41A16C7AD4A29ED2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t3D2772F81DACC0E761A22F7C74C18AD24C36D58D *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisGuid_t_m5A0AFEE2BF910E98D56D0880005B1DDD51FD939C_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B * L_0 = ((Caster_1_tD296AE417E6EE7ADB8DAF202B8BC3203CBE89300_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8542C56C05EB3E22016B2903F0EDCAC5D051355B *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m230E24E784CB02937D8335B389AEB021289B0A82_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 * L_0 = ((Caster_1_t699B4565B14DC3E4AAE69424E8CCCB8C5F5C84BF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t436942B036692C49C596B552368FD0D9AEB19996 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mB2ED9C3B935700D4BE55749949D58FE3B63B9B55_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 * L_0 = ((Caster_1_t847B65F78580B4C35C46212B37066290881E839D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD02BD295F6960A844F4E3D7D4CA9F0FBD4007780 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m8DCE839F3A6EA158B607CC83266509F8F1BE588F_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 * L_0 = ((Caster_1_tEE77AB8F884BD2579C99A38CFB1AAFEE0DCF07FA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4FF63122CA8338DDEE466FBA386674D90B0DA997 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisIntPtr_t_mABB7C010A235E7F7443E34811536985C56709032_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 * L_0 = ((Caster_1_t02312CA733627756FCC99C1ED8322D3A6C51FB60_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD37A651949FE156BFC86946E76F3BEA93F428054 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisRuntimeObject_mB6959F0D52C5FF6F05B485070A979E423C7C058C_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 * L_0 = ((Caster_1_t79B0C615C852AD755B10B324A903BD8ECE30C1D2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD19681DA49D4AA38D8D48CE42752CBE15718DB47 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m562963CD9F91D60E971EFA159959EF8A92E0C3AD_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 * L_0 = ((Caster_1_t27F1F99B9A4CEB186ECF7805145934EA77CB1257_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t664F7EECE18DF51BE5DD248D5B93731F8A23DCD4 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m0349C7393DD78A2B9EAFD91BBD31A83D1AEF0E06_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 * L_0 = ((Caster_1_t5908B8116E70EA9E946E9F5128B622E9063630CC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB28894046684B559EDC3DE1E3481E408A5BE3A89 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mA16C77DBC2AE7C44F2DD9EF81CB34C302590EBBB_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 * L_0 = ((Caster_1_t0B12755AB11A35CCF3F2B11D0A02101A3A325F45_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1AB12F230CAB2407D401317A65F9A5463404A073 *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m90785014402CE39C95C6A464FF15913865F0D20A_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 * L_0 = ((Caster_1_t408C47A521D832C453740F1E3F374FCCB5E32E8A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t9AB703D7D55E206EFFA2B0270C980C290C374E32 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m9BCA2BA360B336C8F1990736BDD2CD3C0532B5F9_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 * L_0 = ((Caster_1_t674C9A8AF3118A1ACC250CBE1B160B5287944451_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4FD7FB274F8A13E577B2C68C562542FB8BE19BF5 *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2C4DC528C0AE341726424A1F3F5856B320DD6B99_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 * L_0 = ((Caster_1_t80311815F1B7E9467CB0674AEC735F4E06AF50CA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF779A9DA86F954469CABF99E43E5D2126D6C7558 *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Byte>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EnumHelper_1_Cast_TisUIntPtr_t_m1E02775612B080FE1AF0FD5661569EDC66A781E0_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D * L_0 = ((Caster_1_t57C825D368DB63A6299B8DF204CDB497F51F538D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D *)L_0);
uint8_t L_2 = (( uint8_t (*) (Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1C9601B96FC325D98CD121FFF18A903AE06F926D *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m192073E98ADAA1A5F226CDF612C5F4A1EA326F04_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD * L_0 = ((Caster_1_tCAA6ACA318706EA3CFC28187859C80CD568A8943_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8ABB0411B7298DFBBC20B58387ECF4E74BFBDEDD *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mB151EF5C27C8C3E67DC8EF7612BB364AF5AE71CB_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 * L_0 = ((Caster_1_tCFD75E9DB3970A86144B6EFA3E793B6C12B52B33_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t65E3C27F47E4C586AEEB98C5F5F7EC12B7487F51 *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mA781CBF81CB566C5B97681482DDE49EE24BF2D39_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 * L_0 = ((Caster_1_tDE1C83FE3C48AB3782D0BCBC7ACD4EA1700DBF59_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t94FEFA2C1D7C52972E627FEFFA99284D0DDC25F3 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD2D22DC060CF312B9A3016DE6A971B06E2A060E7_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 * L_0 = ((Caster_1_t6B1DD3EE8B308447896C88A6A69138BC65A5FA40_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t240346D763F8BC997367E7F857B6F69D68360595 *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m25D70E9A31AFD54807927CE75E424595D55EE885_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 * L_0 = ((Caster_1_t502C258C3B6A03A1FD5B2E3254072F77EE89A675_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4CC0B6F21608AE009CB235BE9B1BF15A9B0E3431 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m3C1554928412F1AFB670D5FE501C29108FD1BE6A_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 * L_0 = ((Caster_1_t11F20427B499F3CD52E11D6A1AB7C931DCF96DB8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t92CEE2D0E9F82F259F4B10113D85847D8DE54757 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m5C13043D24E9A69C7DCB2C4FCEF55CF0AF1C2C5F_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C * L_0 = ((Caster_1_tB676512E7A350DB4ED01AA9C00F5621E3A8C7F0F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE3062CB768903660C5318F9D9B7DDE15A714588C *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_m4923214A4EAA4DAA4CEC11C2C911816FE1F47ABD_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C * L_0 = ((Caster_1_t8218635FFE52C666262AEEAEE207339F47173DFF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBD1BBF19FDEEE663FCCC49AC10AADA1B059D325C *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5FF48C2DBF5A36B8C7AAEBD55DA020E48AF83FB_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 * L_0 = ((Caster_1_t03D8E1F7D51ED3D2AE2677EDF3B6A0F0A4416AB5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tFA2CCE2417FF56944AD841B7ED04360314120497 *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisGuid_t_mB76EE32A727B7F98A0F65C59B00E43C0D8FB43A7_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 * L_0 = ((Caster_1_t5932849F6E79E1885331632BE0371A5087A6DD8C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t10C9C25A5618D14E4E001BDF9E20419A10A6DFB9 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m8F6C334DF8F1564AB5E45BA8211EE4456CBBB231_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 * L_0 = ((Caster_1_t1F87BBD03AF9272751C51F5D605EFEF43AB46FE1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF7F040CDF505A8BEF12BEBEAA31FFD9BD43FF8F8 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m1D6C095DECABD7ECA612CE50A9323CC7558CE492_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 * L_0 = ((Caster_1_tB23D3BA31E450FB0952F33E1D2DB4DBFCD754BE1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA741C25CF64E7496C977BB826C7D60FA98E8C970 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mA8667973E976E623362B3916BD0A01EEFB22FB84_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 * L_0 = ((Caster_1_tCA7F280780B937135FD0247CC90F5BCAD8963441_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t23A5C3116CBF683F9F68EE3DDFF0E12802831AC4 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisIntPtr_t_m5938B0521628AA9D2A57E92925B307C735673EDC_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 * L_0 = ((Caster_1_t33C636F2356154C6CDFA5421A2797B1F58F30BCC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tDEDEB8C2D8BA02B307B0EDD7EEC5D44DDFB05231 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisRuntimeObject_m8EE8133972CA40759750FDFE5701582530670348_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F * L_0 = ((Caster_1_tF7A61263020C72F89182A7A8527DE53779F6D045_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t026BF5A032AD1B2D3EEDA845C07E1202DFCBF82F *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m93E20FE7F1103F6F41FD560C2458DD73F85633A3_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 * L_0 = ((Caster_1_tE4ED47E76B44B007CC692D239C61ED53AE3DEC20_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1358C14103D206B57FA822096A13BEDC1A7A4048 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mD0181E906F9F43D543F29CE6062EB5408367D10C_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 * L_0 = ((Caster_1_tFFE1731A5A18D2FC62FB4FD0E140F893FEFCBFBC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t761E0F084572634E94674D7C1912B56771C73045 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m69F9C79C03AB361FF42EBA7B6B818AF9BC434D35_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A * L_0 = ((Caster_1_tE7B6AE02946C8C7D035775855D3F8667EECF49F0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD23E5E6A1A391F332A34AA4663D09426093C002A *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m98848A814468F001D1BAE2AC1382BB04F4B9A0FA_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 * L_0 = ((Caster_1_tAB8276A53DE8D0B71D0C922FBDC1EA643B4B0801_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD6009487878B22E34FDE5E3FBDC4B4E93CF5BC77 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mB30F83D8D6EF175B27FD93FA87B6997566BDC30E_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 * L_0 = ((Caster_1_t46C35E368FA9C3535F632F4A43107C8C0DECDF2D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t385ECD51AD4E2A1E86876F87BF89844FDE07DD32 *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m40973C82E1D5B4B70939CE0007C506D0AB05F808_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 * L_0 = ((Caster_1_t0DD4ACB69C178BCC9281945CB5322037FF50ACD4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0698CC99B4FA18A0050698BCB1D646E8C1C22984 *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int16>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EnumHelper_1_Cast_TisUIntPtr_t_mB8B15AA4089033746DB5FC9A7D782222FA37760A_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 * L_0 = ((Caster_1_tAB93366D39B91199FA6BB514B138640EEA06D826_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 *)L_0);
int16_t L_2 = (( int16_t (*) (Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t6585D4102CCBAE872252AC5E0732CC8EF79DBB20 *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mD87021825E28AB9152A64711E36E831AB5BC1A69_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B * L_0 = ((Caster_1_t48A24901856804183E97D899F37E2B095C3D3AD0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2DBEC8D0800B8F041E03F876ABF5AF7D3DFE5D7B *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m904BD89D0794EDD4BA1ECD63B007E98198FE842A_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C * L_0 = ((Caster_1_tB8F12CF62FE2B524624E09DCE78970BE6555258F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2EE6D7CD39A5C2027ECB941A3759A9EBA3F0BB0C *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m250DB1C0688ED8987DEA68C8B4005B4C94701E81_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 * L_0 = ((Caster_1_tD430240C674256CDF3116A5E5C05D32D14ADE25B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t79A0EA03C0758462B77611F0C5FF7EB4477F9D95 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE245467808C465EB51EE6E7A6D381E77C35886C1_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE * L_0 = ((Caster_1_tA4C9DBDB9984A7DBDBE1E328A1E6D32056B598D5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t3FB65B12F9B30A5AA121C6225ABBD98671D135DE *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mE31527D1BE35D2661853F15F4C0D708E9C0B8FD9_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A * L_0 = ((Caster_1_t910ED4892D830D9260544CCD5A5BA17D0EAAC5A7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t00DC76E5BE87873705F91E95AEF9B620DA10C64A *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m9DE76E933754179F978E8996F91230BAC513DE6D_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 * L_0 = ((Caster_1_t3B656E50540D77F8D98EC3723A33AD022BA02142_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE5EF3DB7DB9777B2A122766AB8A2227D1C094B79 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m6B23A7ADD84FEEFE2CF495A10C5F7F8A237F12F8_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 * L_0 = ((Caster_1_t37CFBE48D145A145182032241D4C96C7A9651872_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t25C83F04D27EBB3953BD3252D27F944B7081EFD4 *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_mE33D0543DFD396F129480CE6EBB5AB7ED4953C63_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 * L_0 = ((Caster_1_t6C69308FA9D7112A4603D39468BDA09974918F69_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0FBAD50C82E7A4C7D93A7E4DAE1B7765DEC256E8 *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m18B425A1BD292BF835CD978A840B2B0495672AB6_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B * L_0 = ((Caster_1_t667DCCFE8DA1234CBF65A5978B6D27BE63CD598A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t68826869D55A324A082EE643E06DFE0549C43F1B *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisGuid_t_m929A4D0FCC3C16092FBF35AB0C12A9A3C4ACA976_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 * L_0 = ((Caster_1_tB84AF4B31F4DAF0AB144E99A83CE997FB4C72D58_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tAE2C376EED3A46831CB52406C90F7FF43F1F9F05 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m79C33E1C8F36629007121977ACA4722E2BFB97A5_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 * L_0 = ((Caster_1_t10436C94D617CD0D6ABB2F7D073CFA27B74C1E30_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t09EADD81A9C2CA1C3043FA5CD6706CA1530666E0 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m3352690FD9B7810E53BD0226ABA15061DABC3861_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 * L_0 = ((Caster_1_t14BB827E485FED333B17154453079AE34F1F49AD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t9E7C8EB2E7DA583C3C11956C5E93F3D313CE08D6 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mCE856A4A6FA913D30106882D36D439389EBED04F_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 * L_0 = ((Caster_1_t7A312140662B26A86CC59C245C7C848163A49AB4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8B62B5B7F2FBA49FF26EC65A644535089EF385F2 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisIntPtr_t_mCFDB3D5473BAE1CBA9286BB2552E06C1C389121A_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A * L_0 = ((Caster_1_t9C36147697AE67003B8A0EF11EEF2516066D90C4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE65E26BDA2D86514F0E4F7DCA655FD6391C3498A *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisRuntimeObject_m5381A5A027D55D6BD1F5AFEFDEFA4F6045D163AE_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 * L_0 = ((Caster_1_t31EFD992543429652A6ED1652D545CCD372DB7C5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t65992AEC496277643CBC80A2F9BED723063EB848 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m60FDEFA18A26FD45A8D1668C7844B4EC02D525B0_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF * L_0 = ((Caster_1_t9347D88993875351431679E4107168C7CD28B825_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8A499D6FEF7443CA4CE5419B243505BB61DE7DEF *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m120DF6B1F211DE3BB1CB7D07FEF84C22A6704F3F_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B * L_0 = ((Caster_1_t3EA25BC7E67BA9A7DA94FB04B9939AA009AE1F2D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t69D9451801937FE2AFF99FCCE268AA878D643D9B *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m77E6D4B131D8064BC00515F25FC3D872D1F189D1_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 * L_0 = ((Caster_1_tFDA8B5B6F494CA32867BEDA1744607B9DE4AC7FD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE86E929A9B1ED9F0643091DE20F815B92553CA94 *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m76AE6217EF496F71CA44BF726149CA82CA98A851_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 * L_0 = ((Caster_1_t5A5C0360CA0AE23E50B74262E52C01F758755C97_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4021B15333DAA448023DFF6ED2E859037D86D3D9 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCF05B647DA52B81D78F7C1C9E805162DCC534EC0_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE * L_0 = ((Caster_1_t3A7D9F3C5EC2EF5D573D0A6E3F67BA58C73B050A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1D933EC313B2537F0734DE0A2C329C45BFC02BEE *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mD9ACCDE304740CCDD7DE5D3061FEBA4751A50AAD_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D * L_0 = ((Caster_1_t5606234865DF0152C73166D640BD2651AAC8D43E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB4F33CE42FA8CDA6C1AEB382F3C767D3D702427D *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int32>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumHelper_1_Cast_TisUIntPtr_t_mCF8F606BDF81C71855C4901A31FE3DDE2B41D07D_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A * L_0 = ((Caster_1_t0233A96550545D6F17A5141586520D492131F3AF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A *)L_0);
int32_t L_2 = (( int32_t (*) (Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t64BE2DF002F043C82C776B57E74B06CBF540475A *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB862CD59E18B5D6DE3975635D248445FC1DCFEDC_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 * L_0 = ((Caster_1_t78D880B4DED6A81AFFB3DA6D32BA8A0E295F3788_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEAC0B3C94575ECFC1F5F52CF95B8281D45B17E82 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m767C2FDFF9ED64B0241800DCD45D84B6C424BBAF_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 * L_0 = ((Caster_1_tF1E9F5ACC455E168230D60D0AE5E848A5DBE2930_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEE83BA38EF2ECC4720D526BBB03AD2D7847DC673 *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mCA8359EA41F7B4D4F0334509E5C772674870DF27_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 * L_0 = ((Caster_1_t95AC156F3D75823ABA3B6749B8E5DAAF8EB6AB25_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t9BA41A256E2DA69FF4771DEB014C7A916468BC66 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mDED6BE58F3B45FF48522331B6D37042116DC852B_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 * L_0 = ((Caster_1_t8B6EA4487FE31C415BCD954287C70DF849E09E08_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t522A3AB35D286FE6FF0D73E32E18AF9BA2C889B6 *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m7AF2CC9A88EF6C7BA7062CBC9E6671DCFDDDE6C4_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE * L_0 = ((Caster_1_t2314A24A7931390C6867F5AB59BCE7DF7875EDB6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tCA45FD544A9D029E08729452F32B044016B2F8EE *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mA79E752D231DF346C6FDB3DB95DC5E91D1E994D5_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 * L_0 = ((Caster_1_t39143C74EFB8AD6200EFEE9E31A9EBDC9718F1E5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t857CBA0AC2F70C8D74D8183C19537F7A692F21A7 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mF70A048030A6D511CFFA1F5C68CDF76AF0817985_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 * L_0 = ((Caster_1_t4B1D64CB72ED6461809D48568ECB009A92F781FE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE30A5AE1F549407B3087EBD3EC6E8DB713D78DC2 *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_m438A2CEB68A593F5B57AC0CC95CCBDF3E5746A53_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D * L_0 = ((Caster_1_t279DFE68F30E6659059D94B02BD5361A9BBE40D4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t41E828E06402D572E82833CAFA0E9727745F7A0D *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m576C2E63208E9FA2318899CD5A9E0CD526980673_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A * L_0 = ((Caster_1_tFFC10B3F233B81FE8D4EA64668FE2EA15A433C6D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD1B097B6BB34F0B4B3455970FC79E6A585DE5B8A *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisGuid_t_m0AB9E683843C5F8026B4BE353B704B9C0445562B_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 * L_0 = ((Caster_1_t7F15074A7BC9B5DA634F74067B2CAA3E4D8C7379_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t39D48650F87DB03E776EE44D5C8F156643CCD9A0 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mC7DC8A4161C7584AECE6AF041D57B381EE5A477F_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 * L_0 = ((Caster_1_tE25B230380E2CE54B9276690CD814DE511450833_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tC51C59F619800C8468ED4694D7779761A5403071 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m037FE224C3CFAAD3497F4B3F31C82178225B384B_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 * L_0 = ((Caster_1_t3B87E9C89959ABEE4F6F1172FFA2D99D20FEAF4D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tCB26A79652B363A8064BBAF43700A09A80610C91 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mECC8829C16BE4538050F0A94F292AB8BC5EEE745_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 * L_0 = ((Caster_1_t7D3ABA04133A298DFD0422ADFEBDEF3656AF0031_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB3B4F4C80F506532A9BC19E9995C82DE17840E96 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisIntPtr_t_mA69192E793A3C7BEE631D420533AFFBBEE0E6F70_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 * L_0 = ((Caster_1_t9E4D034C656C467484BBD42F5B9FF5B91F790BED_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t60B3D9EF53100FA49F00B43536652E9473B31171 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisRuntimeObject_m9841D59B401BD9CBB358259BD32F5CE8276474C0_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D * L_0 = ((Caster_1_t7F4B7F98CCD80CC0E1B52334B484C566B3772846_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t55A8AAC336D2E181D0CC38D11BD1B30145E6479D *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m053631F41BC7D2E505B1600D5DF0B87718AC9F26_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 * L_0 = ((Caster_1_tD1867CCD99C0E4D6779357AA6EAE58CA54AE0AF4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t01DCD4DD4A9D8250EDA7C3884A31ADCBC0CA2F31 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mD79C3D4ADCAC01009016633870F0F851B99BD7C7_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 * L_0 = ((Caster_1_tCADDC259BB0BC859D77522BE7660068F2B40F0FC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tDC0440FA1979CE8CAEE05E55C3F77B191B3864A5 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m5562E71891F3CD5A26093B67877C592DC57BF410_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 * L_0 = ((Caster_1_tB392A04593C4239456BD2F10286A27F0AE928679_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t5D03480C8430BB4B110B1A825293797FEA351E99 *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mD5B60AFDB1E022C0979DE3346D185C44D2022A2C_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 * L_0 = ((Caster_1_t9F5AB8620B99DD3C4BBDD28E6F5A78003016D254_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8A89FB68F46FF4353E966CC00B908CA34497EA95 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mB6D6836EC3E9686143CEF67C24015E934AFFF69D_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE * L_0 = ((Caster_1_t5F92169CA22878B796AF5109203D193F987A4A39_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0AFADFC854814929C26DD9D901BE57FF25AD0FAE *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m17B3592AA114BB4F62C43FBE77386893E6A81672_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B * L_0 = ((Caster_1_tF96225B214D9B7EE71FE55E75A65EBD3AFEFAB6C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1DABC0789361F050A97DCB9B0BF426488849447B *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Int64>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumHelper_1_Cast_TisUIntPtr_t_mBC233F334A4E586EC36F2284329A6B2E317ABF44_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 * L_0 = ((Caster_1_t02CDD619AF43E06FEDAB4F242EB5DAB284E98B19_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 *)L_0);
int64_t L_2 = (( int64_t (*) (Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB15772C7E9B7C5700966A8D43542601D4E3C1E66 *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.Object>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EnumHelper_1_Cast_TisRuntimeObject_m14B8662697DCB26B5CE66EFF6D0A9BA01937351F_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA * L_0 = ((Caster_1_t195DBA8A516B142DCC1ACA2DA98380583B5F1D8E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA *)L_0);
RuntimeObject * L_2 = (( RuntimeObject * (*) (Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t338D76BCAA91120B467D3111015F22FB4F0FD2FA *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mAE533483D2EB9736CA5036F45470ADB1E9F54524_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 * L_0 = ((Caster_1_t9548AD2802014C51CE95C2D167F4C5AFF00F7AB0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t79570F2F3007DB1835D814B8075FDC98BC3553A7 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m9C053DC9213280343424F5D4E6CA5412421EE9C1_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE * L_0 = ((Caster_1_t6D09AA62870A76ABA6E5E4D301AFCCF93F194424_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF8540D89C13FFD7703F79D80D228D878E23A3ADE *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m76E7947556939FCC5864462556D6EABBED1A2885_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E * L_0 = ((Caster_1_t7BED5C159FA7237F00FC5BF1362A67DD3DEE749A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA6C8CCCFAE41F969307DFD6B15049A2AC4E87B2E *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mFEFA14B14A9E77A4CE09CAE160CF3D675326177F_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D * L_0 = ((Caster_1_tFE5F9417466A4CB788D519C7878ECCB397E668A1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t42D4002780D07F2123783F0D69A304CD6984F13D *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m673C9F8CB81B95A3CB90E49ABBE57EF86259907F_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 * L_0 = ((Caster_1_tB027436891672D8E446545806D30A74D601A125F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t7B71FCE554A579C8F8EE31C925E7CC3A260F65B0 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mC26286A6D4E8B13D974E305ED759B60852346A79_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 * L_0 = ((Caster_1_tC50D5F2635E0A7DCD57C363B1CA71CFEA00F93EF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0C4CCE96CE8A1C5FA519A098E2CBD37BEC2CA324 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m740C047BDE43758747E4B36E049DC0AE266AFA60_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 * L_0 = ((Caster_1_tE749C798EEF25AA04DF0E56627917C360336EBA4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tC8E702F6B3A43AAD921E235014B8BEE380D6C8E6 *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_mECD8FBA0366809F56BB17362A9D59211AE7C3285_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 * L_0 = ((Caster_1_t70BCB30FF0C2DF9E545F34DEF21271408068477F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBEAC8A938CBDB8AAB69661EFA8EA0FB141525D53 *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m51A5D50B60E6833C3719179DAE4C745C4F72C18E_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 * L_0 = ((Caster_1_tC218F4859CF65473DA915EE5333EFDCFEE72392E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF0766B96906F251FDCA58F9C63D53C429A053601 *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisGuid_t_m0FE9A2031A026A598CD001010D084B0045B6A34D_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 * L_0 = ((Caster_1_t8409BE0ECE6FE2A29D79E7044752D251CB863421_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBBF50A3F30EEFDE66991F29F64E2D0A0455DE463 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF38F852ACA2D84A5A751E725A2BD6E8075EAF7BF_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 * L_0 = ((Caster_1_t62F9F0EA0D2CF70BE880EC5B4DB6C4E3BD191FF1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA87CAE242D2B98DEB22E378E1E67ABA48B2C74D4 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDC45B432580ACAEF29CFB6EAD130C43FD4EE2EE0_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 * L_0 = ((Caster_1_t12F7AE622EDC8B8147BB5162376EAEBD2A1A716D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD3A676069C04AAC638676241B25E06E84FEDDF60 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m02A2989AD15E5C61CC8170CC360AD7D12462E6B0_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 * L_0 = ((Caster_1_t9136EB8D74B86E14C4D0B7DE2699BB30FF62ADE0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE0C44E54BCD5DF5FF3AC9F52C13F1428FBBD4084 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisIntPtr_t_m10DFA878C4388DB28234BEDE38F5B5102467D111_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 * L_0 = ((Caster_1_t3AEE07159271C04282D4520F761455EA4BF25B90_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tAE4605051B411219A47F37FD57F817C772C5D831 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisRuntimeObject_mE1FDE0675779B26082666516C621FEC19B207148_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 * L_0 = ((Caster_1_tDE4AB1F4E3BD9C2B0BF368F239F02CD0D92D7D3B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2100917DAFFEBF22F25BC5382C00308AE7962D49 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m8ADF6B2EB361F9687FF8AD704E272E4CC73B65DD_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 * L_0 = ((Caster_1_tCC08F4371265D272EC5F5C61F06234FB4C49F905_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t745DB47A09FCB8577D6C816C1169CFECBB32F2C5 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC50E5A46276EEA9830E1DC4EE36D82C22F66C64A_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 * L_0 = ((Caster_1_tB1E0520D57EA2A38EB25F38157F7FAE2077D0519_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBF9E21F5E62125133BAE8AB29F7A5FF8368A8867 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m136ECC8F15796D07201EF82AB5087C8577204CE7_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 * L_0 = ((Caster_1_t063FFE54B6E834FCAADA9B98B6556AFEC0411632_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF26DF9ED555578458A4BEBCC536B42CFE02ACC80 *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mB9241B4372765DCC3E2FB1E580E530F582D1DC42_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC * L_0 = ((Caster_1_tA4C712C2F66B1CCA6198D56E9156B3ED627F7E7F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8D669EF524B3DA7294AF5ECC32689F786670F3BC *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mD1099AA921562AC8786F080BFFE193F342C52968_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 * L_0 = ((Caster_1_t4E01ADD98CF6A52B499B239DD79900153A6E8CB9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2C09253351F9C203CF31F34A19DE66BEA03581F3 *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2D0D20AC9F0E60DE8262A897B6FE18ED9D025C75_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 * L_0 = ((Caster_1_tA76F3CD44521225217CEE9D5E70655913B3652F6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tCF1372796CC314E10F8635C4972C44383BAC7023 *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.SByte>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EnumHelper_1_Cast_TisUIntPtr_t_mD2B5AC3EAE3E39B8293CD9DC72D51C837C0783F5_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 * L_0 = ((Caster_1_t27A7F78CA974CB9EB88650C0F7D4CCB345E0D6F0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 *)L_0);
int8_t L_2 = (( int8_t (*) (Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBE6DD3E5AECE0264800ECFE10CF373FC541893E1 *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3B872FF621B738CE1DF433FB14FE279F77DB875B_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 * L_0 = ((Caster_1_t2AC7FD1B9C92018FCD42D2FBB7DE1C15E7C6141D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t199C978828CCDD3DC4B333BD031B5DA73DE2C968 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mDA9B765AC14F77C923A7CDB3C0D706221CFD15E5_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F * L_0 = ((Caster_1_tA9F99D3DE3C2B79878574DA79394D40484CF909C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t6F5F45E771B014CBE6BC711CD4C78E85A692E83F *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m08A6E25B90A3E4623E4D4C20C9BDED75E046317C_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 * L_0 = ((Caster_1_t439110BADC840296B0301DC221E3742B2C8E8934_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBBFF9537117C5BC9379D753F5293135DB33DF769 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mC622F6D0E6E8E105E53938B01F21FBBE3929BE59_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 * L_0 = ((Caster_1_t9CF680A45E2713569B0D6E5DCD3ACE8E5CE11A5F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t43360C920C6CB99E177E7D0C21F4631EB7353195 *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC92B8CBBB0C4B10ED4E2450902EE2786DC858170_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 * L_0 = ((Caster_1_t45EEB8AA14910B5FE2FEA34EC88A9154085E86BC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tFF97AD2C8962456276364E309A52E6DE33100D56 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mA1D9F1862F772E31942176AD3F8CD00167E46851_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 * L_0 = ((Caster_1_t0AD7C98192FA0900645BFF7111DF2264C1F11843_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t43FCC452C755864725F9DF93DFBE108575461B01 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mCD324132C02011B0B32CCC47A4808A77236AED44_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC * L_0 = ((Caster_1_tB30E4B83744A2AB4B34E2140F09FF2DBAD9067A2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0FD280BFFA34F4D2822CCA89C0E579D1D039C6EC *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_m9B67538CB09A9BE23FFCE9BEC85E666C9A431017_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 * L_0 = ((Caster_1_t9F48A0F7F413295607FDDD8C95EAA2A8FB1BA77F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4E404370A1452595E3C5DB7882E5D8953D10E1A5 *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m47C7D923FD0FB3DB00E561558507770017AE9BCE_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 * L_0 = ((Caster_1_tFA61F79F888D97CEE77D5548328774BE7E4EB84A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t96993E76204149647596BB8B93F89AF01BBC2DA1 *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisGuid_t_m654610841B56D96AD377D93B265DFEA5BCCD849F_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 * L_0 = ((Caster_1_t62DA063BB7BB019FFBE6B9ED3A08D069E330FE87_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tC04472BECF0E4CEEAC0DD81250C1C45100A49760 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m68BD7EC0E8A27ABE7F05B6775C994BBF0AC9CF61_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 * L_0 = ((Caster_1_tF5CE3C0B8FDD93C834FC13D907003475F7844594_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t752D0C62D1A2E9A30D3F6E06FB35683298BACEE8 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mFD2ADB5D6FF91AD34628103AB08D7D69E52B3F80_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 * L_0 = ((Caster_1_t8F8BD84B7E2CC9232254A7A82FBEA7C1C7227E24_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA6B55D2D785634BAC127EF306F25AD47252837A5 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mDEB00F12BF02652DD353CC17480C93E61DAD532F_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 * L_0 = ((Caster_1_t7796DD6DA3A2E903A8337A4426EA117003E4FF07_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t634A2D481C50B029D59732E0A8E9D02DF66A0551 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisIntPtr_t_mA4FC52AC62D68943074BF8C0C5BFD283DBCC73D0_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 * L_0 = ((Caster_1_tF06869CDE05BEA07C45D10B5C27C152492D8F494_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t873B2E4C2418F756278367655E1C64D654382460 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisRuntimeObject_m33C8E0733764B34A5BCE1F2E6AFB8C155F39BEBF_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 * L_0 = ((Caster_1_t0E97020316A62558167F5F018A989125D28729AD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t892625DF88EAC62E91E8CCC189CB451B8DC38F37 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0E9A83FB710C70A26B0CCECD93E36054FD591BC6_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A * L_0 = ((Caster_1_t7194A004154AABF5CF224780C51648A67A6757A2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1996E09F6BED0E887AFBD3B5A3AE1C93DE6BF87A *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mCF0D075974C55087E231D074BC65919B184F61B0_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 * L_0 = ((Caster_1_t073650CFFC30F591C4E5B47753CBDF6EAEC9AA0D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t4E1FF663FF50350704657A112291CD7D7596CEF1 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m2B04CEE74D1BE3CF4EDB28113F73829B46C02053_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE * L_0 = ((Caster_1_tC9893BC43C67D8FE44500C545C7D0B22FBDFA338_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t91133D744423C020A19D0092C4FC03B6D3A4DFEE *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mD814412C42F9D58EA1FDD6CE78D85CD7912178EC_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 * L_0 = ((Caster_1_t97E30322734EE96D22D5EDDDA8A32D7F28BF9E0D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE9522CA0DE0A4BE7D2EC9C999D7BDD2F4344FE62 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m569864A50A8516B4ED140C81F5208CAF8ABE5054_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C * L_0 = ((Caster_1_tEAB5EDC98E125207E56614BEDA0E194CDB6A81D2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1438E2C5AF736F2BAA3201667918AA58BE8FA46C *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m10412A2B6C85347835984822C2FA20E792A40553_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD * L_0 = ((Caster_1_tE1468C16E0D935665BAFEAE58EC1DC80FEA18FD0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t9D893B0CF47F60B5A1B332F156AE7885A7FA04AD *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt16>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EnumHelper_1_Cast_TisUIntPtr_t_m4C89E4587F264A9DCAD1F7C77B9D279AA1CC44D1_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 * L_0 = ((Caster_1_t9DA7DEC0029E18FF11AF097849FFE2FD2B961C60_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 *)L_0);
uint16_t L_2 = (( uint16_t (*) (Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEF0B2B94C98E007D79F1E9A305F95F950D695A78 *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE45474D78C9C75421B50BA3B6F0D8A036086E3D4_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 * L_0 = ((Caster_1_t1B6BC63943ECA453AF4038A2F429DC89D1C88504_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF0E9BE6348CE010BB238AC31417785A08A6FB691 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mA021FB7B9377D61AD510EFEE22C14B074DE4A97C_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 * L_0 = ((Caster_1_t1E5C78F2324B0966F93815A21CF15C56A6D1D763_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB3723D31B530FDEAA4A1F13AA0708DA982630899 *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mCB509FD508A9096FD819CB976FCE17421E34AD79_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 * L_0 = ((Caster_1_tEED0D769437F89233D231DC79626AC0A6337593C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t5476CAC37A40442328D49FE071C30E88285071D4 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m3214E0BD22A7B25FE44C18CF248F52316E7BC735_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA * L_0 = ((Caster_1_t722135795C75F590A8BC1E4CE7DB7DDFFA14314A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t0FB7630995436BE02A2527779DBC4F2527867EEA *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mB9853A7D22563E8B8B771F5876882C9B092C5B20_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 * L_0 = ((Caster_1_t3F3455CCFC9311D353A7D8C4A42200408CA558BC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t5D7AABD550DAD91D1A5365F5D8EF54C4DA2D3C52 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7D5EB067A14234897ACF89E7DF83657410CC2A50_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 * L_0 = ((Caster_1_t2EE1EC204134DA58566A851DFA40A0B880948A86_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t928A4BC9752332E7976045EDA7D13F6580E95E62 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m31875099D68E21BE514D36A42DE21BFB3C26AB90_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC * L_0 = ((Caster_1_t0BBCE2A7CB1298EE3E1F92A4EE98EE1FEA34EC7F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tDCFCB89419FEE534E3F73EC59CE6765F40E3CDDC *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_m52991F9C4A2BAFC16B33C6A3C863FF0EECE550DE_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 * L_0 = ((Caster_1_tEB26AB756A5FFD5D46CEFADFD4354B569FE79E35_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tC99356A59E2E936732EB9B87073CB69F8D9A0E56 *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mE4FDEAE7059AF2D9FAFF04E2F28F252697F34DD3_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 * L_0 = ((Caster_1_t4EF5B9F285768775D3C068FAF5475BD3A7560098_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tBA40A0C65141CC06E9FE7E2B859F14B7B186F5D6 *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisGuid_t_m6635AF97CD8EFCDC822515F565C0503A6035A773_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E * L_0 = ((Caster_1_t82D455B6810AAD5E0FB1B33CBEAE2D7F6B1215C1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEB01E6A2E0B3756D68B5715EC212184D5FF1583E *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m3A03746E9FB5A67E1FAFBC546A726D7D461367CB_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 * L_0 = ((Caster_1_tFBB6815F7209EA2669845E4F5390708755B6A996_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2F0D48F97FB9DB755CBD7D8BD1063744902DD7D4 *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m817E92EDAC63A713BB5FC2374E08E7999D44CC40_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C * L_0 = ((Caster_1_t79F9BB0534172847D8A8840D22FEA3ACBF6E2E30_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEE904E877A0E7069658C31FC99833B17AC05794C *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m802F634F8484AA08CF5375C2FA35BFA704082BEC_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D * L_0 = ((Caster_1_t2E73FCE9B801A6C9D2357B69DB15EE7FF8CCDBD8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB77123930E8D4DBBDFEFB1F00D7ABD5F5862C41D *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisIntPtr_t_mB193F58608DFB76891B646A614E6FFA5CAF045AC_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 * L_0 = ((Caster_1_t7428F42D13DDC0C1A066BD1EE9BC521E66BA5BC1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tD21324C229A06C2679EF7ADBF30B4721FCE846A9 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisRuntimeObject_m2FF75954BEE32E7CBA81F696CFADEB32570A5295_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA * L_0 = ((Caster_1_tB69CF02AAB845E9B3DDB7E61DDA09AE13B6C05C2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t9591C03D292D1491DC84BED40FA4074B4BA228BA *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mB1165679FE03D30141CFB54B4E2BE302E9BA770A_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 * L_0 = ((Caster_1_t5B781D2583194FDAD58A1DEB85D1364FB241544E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tB8774B9E44E29CAB971A668FD6481EE169AB7512 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m70BC7C784870C55D1141CCE9A5418C9043782C55_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D * L_0 = ((Caster_1_tFB47F8B972002AEAC72800811486FA13E467A8BF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF0690E4E722BA56F3D7C83E9AEB806F0B61B361D *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m29031690307B405A095E8E3B3592FF735CA185CF_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 * L_0 = ((Caster_1_tC8767D376B189ACD381153C9C173514211A0FE0F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8B10503B337E6FE4E07A3B64D22B131931C9A9F4 *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m12942B34C5E83255DBD90AEB2A90B3E7951E8864_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 * L_0 = ((Caster_1_t42992A2C9D038623500C211031C77C7208D43273_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t047D5C4AD3C79057AB7D69ECC9D23F74520D09D6 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m71AFD836AA7C64489EEF9407F203B4EC27425961_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A * L_0 = ((Caster_1_t87A4B6548293C1368DDFCB40BA06CF49106148F9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t31C88D9234A257CF232D08C38BBC668EA052939A *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mE1C98F17A06AA92C3F21999A6E0FFE8EBEE7EC00_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 * L_0 = ((Caster_1_tFD458BDD72B070794987225E3DB7C380E3CC37D2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1C223741D12F9A057F5F088DE61B4E5D53913211 *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt32>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EnumHelper_1_Cast_TisUIntPtr_t_mE20967A9C6BCC22F95A0C0F33954E8F20C099B10_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD * L_0 = ((Caster_1_t941B28C129B116297C114C4519CDE8190AB5C2D9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD *)L_0);
uint32_t L_2 = (( uint32_t (*) (Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEB25E9328D7461EC15D82291238C49E2485032FD *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Boolean>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mA6D4DB9B4A0AEBFDB545206DD5F50F1B3B99E137_gshared (bool ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 * L_0 = ((Caster_1_tD2A776BD441B8E1E656DBDBEA29CE09F6370B01D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
bool L_1 = ___value0;
NullCheck((Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tE1D6D1C9A05B546D9C9CE23F63F38C39519B5CF5 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Byte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mBB6EBFF5DB5352C897AF4E4871D475088E798CE8_gshared (uint8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF * L_0 = ((Caster_1_t482CB7C00B7672BE86AB37B58803EDDA5253C159_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint8_t L_1 = ___value0;
NullCheck((Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tA04593391E3C9151CF09B88E7F0B95B6EED79BFF *)L_0, (uint8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Char>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m9A4AE5F28B661AB3608A08D4A008C6EFD59C8EF3_gshared (Il2CppChar ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 * L_0 = ((Caster_1_tC3C7676E4988AB84AD5D483DF6D6D51F652B8EAA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Il2CppChar L_1 = ___value0;
NullCheck((Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t6A70E5F51E34115D67058F5FBD3AD020056FE5F9 *)L_0, (Il2CppChar)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mBE29FD6567FF1B7F5CC17B11E8A50CBCB4E457F8_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA * L_0 = ((Caster_1_tAEB42C1C02AED929BC1BEC04D98C0DF0C1BEFFC8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = ___value0;
NullCheck((Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA *, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t68FC4FB75CD82563AB347351CEFAE5414DA6F5EA *)L_0, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.DateTime>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mAC44106BE1CC32C04B8323E028317909E16DE5D9_gshared (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 * L_0 = ((Caster_1_tCDE1BC83F41D1B9514A301F4F689ECD00B852E4B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___value0;
NullCheck((Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t3914ABAA4D6712C66DD4949F2BA84F3EC15B4FA3 *)L_0, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.DateTimeOffset>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_mA92902179E75C6237A1FAF1A93DBC8A54C3D9F1C_gshared (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 * L_0 = ((Caster_1_t648D614B6DE9FA1B879A571830C1B8BC23894BC0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_1 = ___value0;
NullCheck((Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 *, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF6A13C624CBEF022B6BF46EA8998763A1BCF8A60 *)L_0, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Decimal>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_mD190CF4C4FFCF5CF0B55A6551271A963D62BACB4_gshared (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 * L_0 = ((Caster_1_t4F5F7A38C557F7B9436C5C1F5FF63A6B645F482C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ___value0;
NullCheck((Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 *, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t1CCCD2A03706FE289179D42973958253711E1220 *)L_0, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Diagnostics.Tracing.EmptyStruct>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisEmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082_mD96A07754EB55396C0767DDFF0990FDE4642BA5C_gshared (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F * L_0 = ((Caster_1_t816F760E4CB91E8ED4749C51E1906DAA5FBFCBDD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 L_1 = ___value0;
NullCheck((Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F *, EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t26EAA5376E027613D84066BFDACD29135BC0417F *)L_0, (EmptyStruct_tA4DC90792FEDB6D602D5AF5FBA9B0B8FE7C3D082 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Double>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m89DE2BCD31E38F694C6C046DD591D93E6A4905BD_gshared (double ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 * L_0 = ((Caster_1_tCA85C27159D944B0FA3E9E3AF4E43F1301C0856A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
double L_1 = ___value0;
NullCheck((Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF7A377BD38E31E579BBB868F25B50E99BE887082 *)L_0, (double)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Guid>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisGuid_t_m6A79FE5AAC75B2E933B0F2DF4316BDA9E79E6848_gshared (Guid_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 * L_0 = ((Caster_1_t32E967508060A04E0F6F4A5A9E516B2751446098_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
Guid_t L_1 = ___value0;
NullCheck((Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t7A3CC6284B43CD7AE97F37A34B608ACB60C9BBF4 *)L_0, (Guid_t )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Int16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mED333DF6FD1DC9723DE9E7A47A894EF358196150_gshared (int16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C * L_0 = ((Caster_1_tF3538AE7B545B5E66C20C4C751A1EAEE76E82FEF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int16_t L_1 = ___value0;
NullCheck((Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t07F206606D946D6F7126E2639D2BA30EE77B275C *)L_0, (int16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Int32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC432022B01CCED53D1279F08CCAAB4DBB83FBB41_gshared (int32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 * L_0 = ((Caster_1_t053E7CA3C6B09080F453D7B9ADCED0B07B7355B2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int32_t L_1 = ___value0;
NullCheck((Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tF8885F335E1C8610DD2BC9AC39EF6912377CA731 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Int64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m51B47E785BA2597ABFBD0A9E7CAEBF2ECF1877AC_gshared (int64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 * L_0 = ((Caster_1_t3DD97367B1E8C9F032197273CF90E5919C74B518_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int64_t L_1 = ___value0;
NullCheck((Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tFC99DD5D67093DCEBB44F3A5BFDC47FDBBD7CF71 *)L_0, (int64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.IntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisIntPtr_t_m1BE5340DBEDC930432982B6738A5820A9A4FCD42_gshared (intptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 * L_0 = ((Caster_1_t3E5340F9C3D63DE7B3280B37BCD14B25362CC87E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
intptr_t L_1 = ___value0;
NullCheck((Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8E4B28C9AAE813C657018A0863EED6247E00BC14 *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Object>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisRuntimeObject_m24E9DBADCE63823F1FB2AA2A116982AD2BEA67FF_gshared (RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B * L_0 = ((Caster_1_t1C8C6FEDED1BBCC86BF7F183BAAA65A65E37F6B9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
RuntimeObject * L_1 = ___value0;
NullCheck((Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t402296E3476F5F09B16B675F17D3CDA6FCB34A9B *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.SByte>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m40171CC2B05F787A453D415B7B354C70FA91EB3C_gshared (int8_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 * L_0 = ((Caster_1_t261B67D54DDBEE2E45C594357E6132EBCFC20C43_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
int8_t L_1 = ___value0;
NullCheck((Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t2F20C0EB7F9357AF924B13ACE76627B27A3EE8C6 *)L_0, (int8_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.Single>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m08399F0F8C4F12BD2E29A845B2D5F7796C41B29E_gshared (float ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 * L_0 = ((Caster_1_t758D846F58655E22B936DD8A2DB64283EA3805A2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
float L_1 = ___value0;
NullCheck((Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t589CB07AE354480F71F892CCEF416B4B90FD20E1 *)L_0, (float)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.TimeSpan>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mBD8CF0C29D9F8046510C4F5872622EB351F706AE_gshared (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F * L_0 = ((Caster_1_t01551B272EDA007DB4640BBDA9745FCD8150E90F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___value0;
NullCheck((Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F *, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t92CD444E28392786C719A80E3BD6F19859C0F66F *)L_0, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.UInt16>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m663895C442194B5C317393C7D716656B08408CAE_gshared (uint16_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 * L_0 = ((Caster_1_t927662BF5FDD93421514AD6DFF5810834FC65437_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint16_t L_1 = ___value0;
NullCheck((Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_tEBBF3209CF2963A466018B425608A6F9A5DB0E30 *)L_0, (uint16_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.UInt32>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m3A2842E06D5905F6E685A3033ECE6BB76E8912CF_gshared (uint32_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 * L_0 = ((Caster_1_t4FBD60419DE1522A1D8D6D26E18CCE6C5CBE862C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint32_t L_1 = ___value0;
NullCheck((Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t8958FB9131F13E8258DE33FA6B69C3FF6197E880 *)L_0, (uint32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.UInt64>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m4F2C115C6D08D4097EC80756F75A08786FF84C9B_gshared (uint64_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE * L_0 = ((Caster_1_tCD382BFE18B540FD55BB3D1DE0739E2718F2B9F7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uint64_t L_1 = ___value0;
NullCheck((Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t3B28CAE7458C713C7593265008775661D4E2EBAE *)L_0, (uint64_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// UnderlyingType System.Diagnostics.Tracing.EnumHelper`1<System.UInt64>::Cast<System.UIntPtr>(ValueType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumHelper_1_Cast_TisUIntPtr_t_mF6BC18592D238BE188D32FDF0722A5D2882A7763_gshared (uintptr_t ___value0, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 * L_0 = ((Caster_1_tE9665C2AD78EA0AECF9AA50DC59E256EA789B56B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Instance_0();
uintptr_t L_1 = ___value0;
NullCheck((Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 *)L_0);
uint64_t L_2 = (( uint64_t (*) (Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 *, uintptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Transformer_1_t77F1FDC69827B944451ACE5D2F9AF2FF2BBE0913 *)L_0, (uintptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Byte>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m703A74A313FE9EA25911440A31960B0CCF2A3324_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 L_3 = V_1;
V_0 = (NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 )L_3;
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 L_4 = V_0;
V_2 = (NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Int32>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m79812A22661959D2B4F290958FD9C61E69528D28_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF L_3 = V_1;
V_0 = (NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF )L_3;
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF L_4 = V_0;
V_2 = (NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.UInt64>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m7C4E01CEB98A8E22A31B069C2AC8922A0FD565DA_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C L_3 = V_1;
V_0 = (NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C )L_3;
NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C L_4 = V_0;
V_2 = (NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_t910D4CAEE55F7F4F3664BD3DB14835AB6D8F5F3C L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.Experimental.GlobalIllumination.LightDataGI>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_mD7AFB293FDB633E3BAAE963C0F5DB9A4A25E9649_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE L_3 = V_1;
V_0 = (NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE )L_3;
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE L_4 = V_0;
V_2 = (NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_t8C7BA311FA83977B4520E39644CB5AD8F1E9E0FE L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.Plane>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m9610FDE0388D2A14248C97656170DC5B83C8BA88_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 L_3 = V_1;
V_0 = (NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 )L_3;
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 L_4 = V_0;
V_2 = (NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.Quaternion>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m5E90E07135964B330DD3BE2DF32CE88F5345D4E1_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 L_3 = V_1;
V_0 = (NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 )L_3;
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 L_4 = V_0;
V_2 = (NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.Rendering.BatchVisibility>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_mB397E70D8182B23E8F1F1F3D18CC3EF2290AC0D6_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 L_3 = V_1;
V_0 = (NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 )L_3;
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 L_4 = V_0;
V_2 = (NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.Rendering.VisibleLight>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_m3E7AB3E41E3D5A232EA0A04C753B0A12F03E3417_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 L_3 = V_1;
V_0 = (NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 )L_3;
NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 L_4 = V_0;
V_2 = (NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.Vector2>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_mAFBE7D772DDF7690DD8E11CE386ECC88DE85904E_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 L_3 = V_1;
V_0 = (NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 )L_3;
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 L_4 = V_0;
V_2 = (NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.Vector3>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m46D99BD9EF84B51362F99D0A6C23CC50A4071AFB_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 L_3 = V_1;
V_0 = (NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 )L_3;
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 L_4 = V_0;
V_2 = (NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.Vector4>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m232BEF2DF0ED0D4454BEA486B5A1DFCF985A283F_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 L_3 = V_1;
V_0 = (NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 )L_3;
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 L_4 = V_0;
V_2 = (NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int16>>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisTriangle_1_t8CE491A6245AC21EDB2211D28B04C6933CE9D127_m16F8198AFF1498FC6A81C68EB37606B8A4F73A5B_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 L_3 = V_1;
V_0 = (NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 )L_3;
NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 L_4 = V_0;
V_2 = (NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_t50D8F6DC4D2DBBA5CCA312B417BEEE3724AF8978 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_Triangle`1<System.Int32>>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisTriangle_1_t66B6090CD3B932D41D42362B58EE8D8260C4B462_m02D46A33420B81A4D370A47A85F5E2228D586851_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 L_3 = V_1;
V_0 = (NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 )L_3;
NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 L_4 = V_0;
V_2 = (NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_t8E461191EBA1780D8850B86C4A5FC16B9B9BF497 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<UnityEngine.XR.ARSubsystems.TrackableId>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisTrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_m8D7EEF45CE20EB27369597A33879F42E459F2D59_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6 V_1;
memset((&V_1), 0, sizeof(V_1));
NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6 V_2;
memset((&V_2), 0, sizeof(V_2));
{
il2cpp_codegen_initobj((&V_1), sizeof(NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6 ));
void* L_0 = ___dataPointer0;
(&V_1)->set_m_Buffer_0((void*)L_0);
int32_t L_1 = ___length1;
(&V_1)->set_m_Length_1(L_1);
int32_t L_2 = ___allocator2;
(&V_1)->set_m_AllocatorLabel_2(L_2);
NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6 L_3 = V_1;
V_0 = (NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6 )L_3;
NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6 L_4 = V_0;
V_2 = (NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6 )L_4;
goto IL_0027;
}
IL_0027:
{
NativeArray_1_tD7797CC5848BA9ECBD1172056474C8DD8022B1D6 L_5 = V_2;
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.Rendering.CullingResults::GetNativeArray<UnityEngine.Rendering.VisibleLight>(System.Void*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 CullingResults_GetNativeArray_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_mACDB0C7A85042F3D0146F419B66D8DE08B767163_gshared (CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B * __this, void* ___dataPointer0, int32_t ___length1, const RuntimeMethod* method)
{
NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = ___dataPointer0;
int32_t L_1 = ___length1;
NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 L_2 = (( NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 (*) (void*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((void*)(void*)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 )L_2;
NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 L_3 = V_0;
V_1 = (NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 )L_3;
goto IL_000e;
}
IL_000e:
{
NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C NativeArray_1_t89C3343A50E798CEF85D6412699D078CA79D1638 CullingResults_GetNativeArray_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_mACDB0C7A85042F3D0146F419B66D8DE08B767163_AdjustorThunk (RuntimeObject * __this, void* ___dataPointer0, int32_t ___length1, const RuntimeMethod* method)
{
int32_t _offset = 1;
CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B * _thisAdjusted = reinterpret_cast<CullingResults_tFCB058F194E02A190E4719CFE5BC2A5A1BB1C21B *>(__this + _offset);
return CullingResults_GetNativeArray_TisVisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4_mACDB0C7A85042F3D0146F419B66D8DE08B767163(_thisAdjusted, ___dataPointer0, ___length1, method);
}
// Unity.Collections.NativeArray`1<T> UnityEngine.Texture2D::GetRawTextureData<System.Byte>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 Texture2D_GetRawTextureData_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE453927FC6491AC23A63CD1174E492BC63409B2E_gshared (Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Texture2D_GetRawTextureData_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE453927FC6491AC23A63CD1174E492BC63409B2E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 V_1;
memset((&V_1), 0, sizeof(V_1));
bool V_2 = false;
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 V_3;
memset((&V_3), 0, sizeof(V_3));
{
NullCheck((Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 *)__this);
bool L_0 = VirtFuncInvoker0< bool >::Invoke(11 /* System.Boolean UnityEngine.Texture::get_isReadable() */, (Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 *)__this);
V_2 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_2;
if (!L_1)
{
goto IL_0016;
}
}
{
NullCheck((Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 *)__this);
UnityException_t513F7D97037DB40AE78D7C3AAA2F9E011D050C28 * L_2 = Texture_CreateNonReadableException_m66E69BE853119A5A9FE2C27EA788B62BF7CFE34D((Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 *)__this, (Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 *)__this, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Texture2D_GetRawTextureData_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mE453927FC6491AC23A63CD1174E492BC63409B2E_RuntimeMethod_var);
}
IL_0016:
{
int32_t L_3 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (int32_t)L_3;
NullCheck((Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C *)__this);
intptr_t L_4 = Texture2D_GetWritableImageData_m68888C2D5A3E017101E4C8DE6538D5031034DAFF((Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C *)__this, (int32_t)0, /*hidden argument*/NULL);
void* L_5 = IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027((intptr_t)L_4, /*hidden argument*/NULL);
NullCheck((Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C *)__this);
int64_t L_6 = Texture2D_GetRawImageDataSize_m1CA6CE6DF0120CD36211E07896448A4CD2DE7F10((Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C *)__this, /*hidden argument*/NULL);
int32_t L_7 = V_0;
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 L_8 = (( NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 (*) (void*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((void*)(void*)L_5, (int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)L_6/(int64_t)(((int64_t)((int64_t)L_7)))))))), (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_1 = (NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 )L_8;
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 L_9 = V_1;
V_3 = (NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 )L_9;
goto IL_003d;
}
IL_003d:
{
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 L_10 = V_3;
return L_10;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARFoundation.ARFace::GetUndisposable<System.Int32>(Unity.Collections.NativeArray`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ARFace_GetUndisposable_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m783E7E8C60E39BCDED0B8B437BDD5BB06242A9E0_gshared (ARFace_t6743D3C0C57B5B559B335F7EB6523211A4EA579F * __this, NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ___disposable0, const RuntimeMethod* method)
{
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (!disposable.IsCreated)
bool L_0 = NativeArray_1_get_IsCreated_m03942F481D4D8775D5C39C177826D600D7089DDA((NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF *)(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF *)(&___disposable0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (L_0)
{
goto IL_0013;
}
}
{
// return default(NativeArray<T>);
il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ));
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF L_1 = V_0;
return L_1;
}
IL_0013:
{
// return NativeArrayUnsafeUtility.ConvertExistingDataToNativeArray<T>(
// disposable.GetUnsafePtr(),
// disposable.Length,
// Allocator.None);
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF L_2 = ___disposable0;
void* L_3 = (( void* (*) (NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF )L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_4 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF *)(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF *)(&___disposable0))->___m_Length_1);
NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF L_5 = (( NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF (*) (void*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((void*)(void*)L_3, (int32_t)L_4, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3));
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARFoundation.ARFace::GetUndisposable<UnityEngine.Vector2>(Unity.Collections.NativeArray`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ARFace_GetUndisposable_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m0092B0DACA9BFF30512E53147335F664DCF50EE3_gshared (ARFace_t6743D3C0C57B5B559B335F7EB6523211A4EA579F * __this, NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___disposable0, const RuntimeMethod* method)
{
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (!disposable.IsCreated)
bool L_0 = NativeArray_1_get_IsCreated_m6B22098565FFCA3A112B3107B5ABEFA8F9C3B5CC((NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 *)(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 *)(&___disposable0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (L_0)
{
goto IL_0013;
}
}
{
// return default(NativeArray<T>);
il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ));
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 L_1 = V_0;
return L_1;
}
IL_0013:
{
// return NativeArrayUnsafeUtility.ConvertExistingDataToNativeArray<T>(
// disposable.GetUnsafePtr(),
// disposable.Length,
// Allocator.None);
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 L_2 = ___disposable0;
void* L_3 = (( void* (*) (NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 )L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_4 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 *)(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 *)(&___disposable0))->___m_Length_1);
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 L_5 = (( NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 (*) (void*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((void*)(void*)L_3, (int32_t)L_4, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3));
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARFoundation.ARFace::GetUndisposable<UnityEngine.Vector3>(Unity.Collections.NativeArray`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ARFace_GetUndisposable_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mCD4F8D1D4949B8A7E596CB5737D90762F48AF628_gshared (ARFace_t6743D3C0C57B5B559B335F7EB6523211A4EA579F * __this, NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___disposable0, const RuntimeMethod* method)
{
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (!disposable.IsCreated)
bool L_0 = NativeArray_1_get_IsCreated_mA83E57BF410BDF5144D71C3C740F1BB04D255073((NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 *)(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 *)(&___disposable0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (L_0)
{
goto IL_0013;
}
}
{
// return default(NativeArray<T>);
il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ));
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 L_1 = V_0;
return L_1;
}
IL_0013:
{
// return NativeArrayUnsafeUtility.ConvertExistingDataToNativeArray<T>(
// disposable.GetUnsafePtr(),
// disposable.Length,
// Allocator.None);
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 L_2 = ___disposable0;
void* L_3 = (( void* (*) (NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 )L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_4 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 *)(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 *)(&___disposable0))->___m_Length_1);
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 L_5 = (( NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 (*) (void*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((void*)(void*)L_3, (int32_t)L_4, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3));
return L_5;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.BoundedPlane>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 NativeCopyUtility_CreateArrayFilledWithValue_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_mCF444CF847CB7563802D15E28498D01C76792CA7_gshared (BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_mADC445CD821A933F7F3DF060145383EF6362D6A9((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 L_3 = (NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 )L_2;
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 L_4 = ___value0;
(( void (*) (NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 , BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 )L_3, (BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.XRAnchor>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C NativeCopyUtility_CreateArrayFilledWithValue_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m2DFCA29A0E8B41B11EB4F80DEA9812313976079A_gshared (XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_m5ECD2716F7A19ADBB6ED2DDC79B25A3D7983D06D((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C L_3 = (NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C )L_2;
XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 L_4 = ___value0;
(( void (*) (NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C , XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C )L_3, (XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 NativeCopyUtility_CreateArrayFilledWithValue_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_mDECF69140E7AAC575AADB08877E9D530635F899E_gshared (XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_m717B5DF783F192540056AE7A5A94B6DBDB8F9F25((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 L_3 = (NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 )L_2;
XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 L_4 = ___value0;
(( void (*) (NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 , XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 )L_3, (XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 NativeCopyUtility_CreateArrayFilledWithValue_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_m9A53D9D195B8A6DF68C37F5CCC1CFA28CF4B42CC_gshared (XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_m87D45453553F68A516214FEABB8E004027B6F4EA((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 L_3 = (NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 )L_2;
XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 L_4 = ___value0;
(( void (*) (NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 , XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 )L_3, (XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.XRFace>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 NativeCopyUtility_CreateArrayFilledWithValue_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_m9E046B33BC258163BBBB6A17D97E7637283CFE88_gshared (XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_m9DDFB3AC72B2DDA9252E82C7D045B360C34BCADF((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 L_3 = (NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 )L_2;
XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 L_4 = ___value0;
(( void (*) (NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 , XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 )L_3, (XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.XRHumanBody>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 NativeCopyUtility_CreateArrayFilledWithValue_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_mC21A90B76A382CD6B9DB8259C86F4107EC26AC31_gshared (XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_mF5A1714C6870A3DF6F61BB87B0700F0A8A67F9CC((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 L_3 = (NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 )L_2;
XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 L_4 = ___value0;
(( void (*) (NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 , XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 )L_3, (XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.XRParticipant>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 NativeCopyUtility_CreateArrayFilledWithValue_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_mDD66D9BD1B50F0719301EA1F26C9C9C968574BD1_gshared (XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_m04C9732607058C6721B91A719DE872C3550D169C((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 L_3 = (NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 )L_2;
XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 L_4 = ___value0;
(( void (*) (NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 , XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 )L_3, (XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.XRPointCloud>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 NativeCopyUtility_CreateArrayFilledWithValue_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m33D9CB8C49D6C1365A033D3D3CA4D6CFD1DF5FAB_gshared (XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_m0A7431FE284605A389AB455AFBC44304CAE118CF((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 L_3 = (NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 )L_2;
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 L_4 = ___value0;
(( void (*) (NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 , XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 )L_3, (XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.XRReferencePoint>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 NativeCopyUtility_CreateArrayFilledWithValue_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_mB083C5AFD7873C94296208C6D6AAF97C49E80478_gshared (XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_mBA3667DFD2FA91C71C118ECA43EB22503D4FC2C8((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 L_3 = (NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 )L_2;
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 L_4 = ___value0;
(( void (*) (NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 , XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 )L_3, (XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 NativeCopyUtility_CreateArrayFilledWithValue_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_mD5AD8AB967D7AD59F250499066D3B65425423BD1_gshared (XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_mEEF6B5C996FEF2597C318C267E2B6CFB88175518((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 L_3 = (NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 )L_2;
XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD L_4 = ___value0;
(( void (*) (NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 , XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 )L_3, (XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.XRTrackedImage>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 NativeCopyUtility_CreateArrayFilledWithValue_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_m6D8727E097D5EA0068F8F3EECE44F6D6E64B9821_gshared (XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_m192CF93170B36E61ACE804945C3B18481D07B1C5((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 L_3 = (NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 )L_2;
XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 L_4 = ___value0;
(( void (*) (NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 , XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 )L_3, (XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::CreateArrayFilledWithValue<UnityEngine.XR.ARSubsystems.XRTrackedObject>(T,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 NativeCopyUtility_CreateArrayFilledWithValue_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_m9EF9B5F475BE3CCC378A60A6F7C4B279FA21651E_gshared (XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 ___value0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
{
// var array = new NativeArray<T>(length, allocator, NativeArrayOptions.UninitializedMemory);
int32_t L_0 = ___length1;
int32_t L_1 = ___allocator2;
NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 L_2;
memset((&L_2), 0, sizeof(L_2));
NativeArray_1__ctor_m16425BC62E9AC48C88E58870411D0D63CCE985A9((&L_2), (int32_t)L_0, (int32_t)L_1, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
// FillArrayWithValue(array, value);
NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 L_3 = (NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 )L_2;
XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 L_4 = ___value0;
(( void (*) (NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 , XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 )L_3, (XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
// return array;
return L_3;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.BoundedPlane>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 NativeCopyUtility_PtrToNativeArrayWithDefault_TisBoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227_m5D340E17401EC897446CB63237976C2358132EB3_gshared (BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 L_3 = (( NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 (*) (BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 L_4 = (NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 )L_3;
void* L_5 = (( void* (*) (NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_tA6F096859415F695BE7D1C4788FFBE2BB3FEB7D5 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.XRAnchor>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C NativeCopyUtility_PtrToNativeArrayWithDefault_TisXRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29_m4F83A1D1BE3E9CF86E272CA7EFA1A02A312A5A0B_gshared (XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C L_3 = (( NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C (*) (XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((XRAnchor_tF8F3D332F0D694D2BDF802B8EF5010D4ECEBAB29 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C L_4 = (NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C )L_3;
void* L_5 = (( void* (*) (NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_tB25D2108AC3D7F9423783678FD37E3D5ACAF8E0C )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 NativeCopyUtility_PtrToNativeArrayWithDefault_TisXRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97_m6E35508831B85BC2F5F713370CB50A9F2A53406C_gshared (XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 L_3 = (( NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 (*) (XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((XRCameraConfiguration_t2D43C7394DAE2223CF48F09DF55076DE5B2A5E97 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 L_4 = (NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 )L_3;
void* L_5 = (( void* (*) (NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_tE5CEB105A05A940128DD35911654FAC07904E8D7 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 NativeCopyUtility_PtrToNativeArrayWithDefault_TisXREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2_mB5001154770AB89529E27FED293EE406729BD263_gshared (XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 L_3 = (( NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 (*) (XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((XREnvironmentProbe_tDB5526F4BBECB568A61BB4E0BD38612DE053C5A2 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 L_4 = (NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 )L_3;
void* L_5 = (( void* (*) (NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_t053AA43438F6D2A21608DBC7110B8063B3FB6EA3 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.XRFace>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 NativeCopyUtility_PtrToNativeArrayWithDefault_TisXRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7_mCA1BE1BE7614C08C2F5A77879B8F6C4C73E56D71_gshared (XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 L_3 = (( NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 (*) (XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((XRFace_tF2B2E9B06813BA74F5DAFD527FD249DD1002B7C7 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 L_4 = (NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 )L_3;
void* L_5 = (( void* (*) (NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_tAA72EF264612AEC585CFAA055B86F6B65CA4E2E5 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.XRHumanBody>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 NativeCopyUtility_PtrToNativeArrayWithDefault_TisXRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1_m418CE0C581DD16C233AB05E6477408931C583BF7_gshared (XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 L_3 = (( NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 (*) (XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((XRHumanBody_t64938399EB40376E99745517E15D42FFC4604BC1 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 L_4 = (NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 )L_3;
void* L_5 = (( void* (*) (NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_t140FCB442630D549508192A9E3737425E84D15F8 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.XRParticipant>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 NativeCopyUtility_PtrToNativeArrayWithDefault_TisXRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062_mB4B02E5BAE5CB5F188C9315F3434A545E7AAA387_gshared (XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 L_3 = (( NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 (*) (XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((XRParticipant_t851D63496AD2945027531CD8ECA527E63F7AC062 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 L_4 = (NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 )L_3;
void* L_5 = (( void* (*) (NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_t6D63EE174652E6706D62F78177F0A2C25DD14839 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.XRPointCloud>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 NativeCopyUtility_PtrToNativeArrayWithDefault_TisXRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0_m08B1FFAECA8B6F75C969F7DC53A4F8CFCFAB18C4_gshared (XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 L_3 = (( NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 (*) (XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 L_4 = (NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 )L_3;
void* L_5 = (( void* (*) (NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_t5F0698DD293100E2FECB8BC55FCBC3A3F6FEA582 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.XRReferencePoint>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 NativeCopyUtility_PtrToNativeArrayWithDefault_TisXRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9_mF1C0B59F654B4DA6C118008C603CC5D8EBDA4976_gshared (XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 L_3 = (( NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 (*) (XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 L_4 = (NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 )L_3;
void* L_5 = (( void* (*) (NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_t5AADFB4C72573FE3017795F15B8CBC88625A8876 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 NativeCopyUtility_PtrToNativeArrayWithDefault_TisXRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD_mCC0BDC0BC676BB82A0A9839B2A59C975EA9A3ADA_gshared (XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 L_3 = (( NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 (*) (XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((XRTextureDescriptor_t56503F48CEBC183AF26EE86935E918F31D09E9FD )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 L_4 = (NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 )L_3;
void* L_5 = (( void* (*) (NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_tDAF0F4880AF8B000465CDA62C8389E82D86A9BC4 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.XRTrackedImage>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 NativeCopyUtility_PtrToNativeArrayWithDefault_TisXRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8_mEA9D2F67734282CFBD346D3FD4FA53F4D392FC78_gshared (XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 L_3 = (( NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 (*) (XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((XRTrackedImage_t178EACF5BFA4228DF4EB1899685C533F3F296AA8 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 L_4 = (NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 )L_3;
void* L_5 = (( void* (*) (NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_t70F653CBE89924503B639B2438D6FF5973388AC1 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.NativeCopyUtility::PtrToNativeArrayWithDefault<UnityEngine.XR.ARSubsystems.XRTrackedObject>(T,System.Void*,System.Int32,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 NativeCopyUtility_PtrToNativeArrayWithDefault_TisXRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260_mD083DB6D403D0BBA833B3B770388D016E262EC0F_gshared (XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 ___defaultT0, void* ___source1, int32_t ___sourceElementSize2, int32_t ___length3, int32_t ___allocator4, const RuntimeMethod* method)
{
{
// var array = CreateArrayFilledWithValue(defaultT, length, allocator);
XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 L_0 = ___defaultT0;
int32_t L_1 = ___length3;
int32_t L_2 = ___allocator4;
NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 L_3 = (( NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 (*) (XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((XRTrackedObject_tF08D3523D17E214EC3D7DBE8ED5BFE220BAAE260 )L_0, (int32_t)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
// UnsafeUtility.MemCpyStride(
// array.GetUnsafePtr(),
// UnsafeUtility.SizeOf<T>(),
// source,
// sourceElementSize,
// sourceElementSize, length);
NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 L_4 = (NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 )L_3;
void* L_5 = (( void* (*) (NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((NativeArray_1_t738892D030F76D319525B8C000F49D41505DD529 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
int32_t L_6 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
void* L_7 = ___source1;
int32_t L_8 = ___sourceElementSize2;
int32_t L_9 = ___sourceElementSize2;
int32_t L_10 = ___length3;
UnsafeUtility_MemCpyStride_m9B2594714412AEAD04CA5B4392D30E8DD252CC6F((void*)(void*)L_5, (int32_t)L_6, (void*)(void*)L_7, (int32_t)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/NULL);
// return array;
return L_4;
}
}
// Unity.Collections.NativeSlice`1<T> Unity.Collections.LowLevel.Unsafe.NativeSliceUnsafeUtility::ConvertExistingDataToNativeSlice<System.Byte>(System.Void*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E NativeSliceUnsafeUtility_ConvertExistingDataToNativeSlice_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mDB8BD60EC7BFC7BD5673CF765B549FABE56B3736_gshared (void* ___dataPointer0, int32_t ___stride1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NativeSliceUnsafeUtility_ConvertExistingDataToNativeSlice_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mDB8BD60EC7BFC7BD5673CF765B549FABE56B3736_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
bool V_2 = false;
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E V_3;
memset((&V_3), 0, sizeof(V_3));
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E V_4;
memset((&V_4), 0, sizeof(V_4));
{
int32_t L_0 = ___length2;
V_1 = (bool)((((int32_t)L_0) < ((int32_t)0))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0024;
}
}
{
int32_t L_2 = ___length2;
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_3);
String_t* L_5 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral5332787A355F6C7E2C752D24323C8EB3E69C380D, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, (String_t*)L_5, (String_t*)_stringLiteral3D54973F528B01019A58A52D34D518405A01B891, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NativeSliceUnsafeUtility_ConvertExistingDataToNativeSlice_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mDB8BD60EC7BFC7BD5673CF765B549FABE56B3736_RuntimeMethod_var);
}
IL_0024:
{
int32_t L_7 = ___stride1;
V_2 = (bool)((((int32_t)L_7) < ((int32_t)0))? 1 : 0);
bool L_8 = V_2;
if (!L_8)
{
goto IL_0047;
}
}
{
int32_t L_9 = ___stride1;
int32_t L_10 = L_9;
RuntimeObject * L_11 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_10);
String_t* L_12 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral5D8C4EB43E44C7CAE91B24474164F33B3D962841, (RuntimeObject *)L_11, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_13, (String_t*)L_12, (String_t*)_stringLiteral0DC89F85B619068818F6FFC8B793A74773A52F83, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NativeSliceUnsafeUtility_ConvertExistingDataToNativeSlice_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mDB8BD60EC7BFC7BD5673CF765B549FABE56B3736_RuntimeMethod_var);
}
IL_0047:
{
il2cpp_codegen_initobj((&V_3), sizeof(NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E ));
int32_t L_14 = ___stride1;
(&V_3)->set_m_Stride_1(L_14);
void* L_15 = ___dataPointer0;
(&V_3)->set_m_Buffer_0((uint8_t*)L_15);
int32_t L_16 = ___length2;
(&V_3)->set_m_Length_2(L_16);
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E L_17 = V_3;
V_0 = (NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E )L_17;
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E L_18 = V_0;
V_4 = (NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E )L_18;
goto IL_006e;
}
IL_006e:
{
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E L_19 = V_4;
return L_19;
}
}
// Unity.Collections.NativeSlice`1<T> Unity.Collections.NativeSliceExtensions::Slice<System.Byte>(Unity.Collections.NativeArray`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E NativeSliceExtensions_Slice_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m9B190E82775941D0B3EB762E1BA409301413196D_gshared (NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 ___thisArray0, const RuntimeMethod* method)
{
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E V_0;
memset((&V_0), 0, sizeof(V_0));
{
NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 L_0 = ___thisArray0;
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E L_1;
memset((&L_1), 0, sizeof(L_1));
NativeSlice_1__ctor_m10629E73F4A5C8EFCF25200B0753B32740CE4241((&L_1), (NativeArray_1_tB942A78CFAC276F95E8B08EBB94DF670FFAA0405 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_0 = (NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E )L_1;
goto IL_000a;
}
IL_000a:
{
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E L_2 = V_0;
return L_2;
}
}
// Unity.Collections.NativeSlice`1<U> Unity.Collections.NativeSlice`1<System.Byte>::SliceConvert<System.UInt32>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A NativeSlice_1_SliceConvert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m80E1CA48C3B8A9E51D8BE04FDCD3BF59BBF7034C_gshared (NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A V_1;
memset((&V_1), 0, sizeof(V_1));
NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A V_2;
memset((&V_2), 0, sizeof(V_2));
{
int32_t L_0 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (int32_t)L_0;
uint8_t* L_1 = (uint8_t*)__this->get_m_Buffer_0();
(&V_1)->set_m_Buffer_0((uint8_t*)L_1);
int32_t L_2 = V_0;
(&V_1)->set_m_Stride_1(L_2);
int32_t L_3 = (int32_t)__this->get_m_Length_2();
int32_t L_4 = (int32_t)__this->get_m_Stride_1();
int32_t L_5 = V_0;
(&V_1)->set_m_Length_2(((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)L_4))/(int32_t)L_5)));
NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A L_6 = V_1;
V_2 = (NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A )L_6;
goto IL_0036;
}
IL_0036:
{
NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A L_7 = V_2;
return L_7;
}
}
IL2CPP_EXTERN_C NativeSlice_1_t5A391A20CD036E6DDA16E7B725B6103A1509785A NativeSlice_1_SliceConvert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m80E1CA48C3B8A9E51D8BE04FDCD3BF59BBF7034C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E * _thisAdjusted = reinterpret_cast<NativeSlice_1_t78EFBF8E09E93928E76B220A7F73CAA90271B58E *>(__this + _offset);
return NativeSlice_1_SliceConvert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m80E1CA48C3B8A9E51D8BE04FDCD3BF59BBF7034C(_thisAdjusted, method);
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobExtensions::Schedule<UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastCollectResultsJob>(T,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobExtensions_Schedule_TisPointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800_m0286FF888581D28D21A20A00505CFFDF05490673_gshared (PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800 ___jobData0, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn1, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800 *)(PointCloudRaycastCollectResultsJob_t0898DECFBDC188E531D8165749BA923FAD97F800 *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn1;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_3 = JobsUtility_Schedule_m544BE1DBAEFF069809AE5304FD6BBFEE2927D4C3((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_3;
goto IL_0020;
}
IL_0020:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_4 = V_1;
return L_4;
}
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobExtensions::Schedule<UnityEngine.XR.ARFoundation.MutableRuntimeReferenceImageLibraryExtensions_DeallocateJob>(T,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobExtensions_Schedule_TisDeallocateJob_t5CF23E1E3DFFAC4FD7D519CCB7359342BC3F607C_m1C6B1D1315E1E683F652D87D157983FE69A588E5_gshared (DeallocateJob_t5CF23E1E3DFFAC4FD7D519CCB7359342BC3F607C ___jobData0, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn1, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (DeallocateJob_t5CF23E1E3DFFAC4FD7D519CCB7359342BC3F607C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((DeallocateJob_t5CF23E1E3DFFAC4FD7D519CCB7359342BC3F607C *)(DeallocateJob_t5CF23E1E3DFFAC4FD7D519CCB7359342BC3F607C *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn1;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_3 = JobsUtility_Schedule_m544BE1DBAEFF069809AE5304FD6BBFEE2927D4C3((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_3;
goto IL_0020;
}
IL_0020:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_4 = V_1;
return L_4;
}
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobExtensions::Schedule<UnityEngine.XR.ARKit.ARKitImageDatabase_AddImageJob>(T,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobExtensions_Schedule_TisAddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B_m12CD1FBAE67BF46B4440804B77E1F15C406C97AD_gshared (AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B ___jobData0, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn1, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B *)(AddImageJob_t6881DFF5CA052839DF708884504DD6FD4335AC7B *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn1;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_3 = JobsUtility_Schedule_m544BE1DBAEFF069809AE5304FD6BBFEE2927D4C3((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_3;
goto IL_0020;
}
IL_0020:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_4 = V_1;
return L_4;
}
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobExtensions::Schedule<UnityEngine.XR.ARKit.ARKitImageDatabase_DeallocateNativeArrayJob`1<System.Byte>>(T,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobExtensions_Schedule_TisDeallocateNativeArrayJob_1_t59DBA0C9BBC893D25CDD20316BE2D44BCF0BEE5A_m5BB3622F3280861D656C58F16B7CA59F9CCA03C5_gshared (DeallocateNativeArrayJob_1_t59DBA0C9BBC893D25CDD20316BE2D44BCF0BEE5A ___jobData0, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn1, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (DeallocateNativeArrayJob_1_t59DBA0C9BBC893D25CDD20316BE2D44BCF0BEE5A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((DeallocateNativeArrayJob_1_t59DBA0C9BBC893D25CDD20316BE2D44BCF0BEE5A *)(DeallocateNativeArrayJob_1_t59DBA0C9BBC893D25CDD20316BE2D44BCF0BEE5A *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn1;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_3 = JobsUtility_Schedule_m544BE1DBAEFF069809AE5304FD6BBFEE2927D4C3((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_3;
goto IL_0020;
}
IL_0020:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_4 = V_1;
return L_4;
}
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobExtensions::Schedule<UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_ARKitProvider_FlipBoundaryWindingJob>(T,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobExtensions_Schedule_TisFlipBoundaryWindingJob_t5FB548E1D853A28EE666EC1E24E5D3D213B7247B_m605C8197A937A1468D3F3F7FA0C969B2D8A9A04D_gshared (FlipBoundaryWindingJob_t5FB548E1D853A28EE666EC1E24E5D3D213B7247B ___jobData0, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn1, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (FlipBoundaryWindingJob_t5FB548E1D853A28EE666EC1E24E5D3D213B7247B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((FlipBoundaryWindingJob_t5FB548E1D853A28EE666EC1E24E5D3D213B7247B *)(FlipBoundaryWindingJob_t5FB548E1D853A28EE666EC1E24E5D3D213B7247B *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn1;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_3 = JobsUtility_Schedule_m544BE1DBAEFF069809AE5304FD6BBFEE2927D4C3((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_3;
goto IL_0020;
}
IL_0020:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_4 = V_1;
return L_4;
}
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobParallelForExtensions::Schedule<UnityEngine.XR.ARFoundation.ARPointCloudManager_PointCloudRaycastJob>(T,System.Int32,System.Int32,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobParallelForExtensions_Schedule_TisPointCloudRaycastJob_t8187276FD1BF0C2443AC32E527990C1975442A8C_m0727B8954A8F5FA414885CCBBD5D42EFED4278CD_gshared (PointCloudRaycastJob_t8187276FD1BF0C2443AC32E527990C1975442A8C ___jobData0, int32_t ___arrayLength1, int32_t ___innerloopBatchCount2, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn3, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (PointCloudRaycastJob_t8187276FD1BF0C2443AC32E527990C1975442A8C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((PointCloudRaycastJob_t8187276FD1BF0C2443AC32E527990C1975442A8C *)(PointCloudRaycastJob_t8187276FD1BF0C2443AC32E527990C1975442A8C *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn3;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
int32_t L_3 = ___arrayLength1;
int32_t L_4 = ___innerloopBatchCount2;
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_5 = JobsUtility_ScheduleParallelFor_mD0B7FD9589FB242D9C4E21F93054C526FA6B1DBF((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (int32_t)L_3, (int32_t)L_4, /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_5;
goto IL_0022;
}
IL_0022:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_6 = V_1;
return L_6;
}
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobParallelForExtensions::Schedule<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformIndicesJob>(T,System.Int32,System.Int32,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobParallelForExtensions_Schedule_TisTransformIndicesJob_t0343F44C820BAF8CDDD88CE9973ED6C7E041FD81_m692DEBC0803E2FB85C1EC2EABC2C8068791FFDA0_gshared (TransformIndicesJob_t0343F44C820BAF8CDDD88CE9973ED6C7E041FD81 ___jobData0, int32_t ___arrayLength1, int32_t ___innerloopBatchCount2, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn3, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (TransformIndicesJob_t0343F44C820BAF8CDDD88CE9973ED6C7E041FD81 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((TransformIndicesJob_t0343F44C820BAF8CDDD88CE9973ED6C7E041FD81 *)(TransformIndicesJob_t0343F44C820BAF8CDDD88CE9973ED6C7E041FD81 *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn3;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
int32_t L_3 = ___arrayLength1;
int32_t L_4 = ___innerloopBatchCount2;
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_5 = JobsUtility_ScheduleParallelFor_mD0B7FD9589FB242D9C4E21F93054C526FA6B1DBF((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (int32_t)L_3, (int32_t)L_4, /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_5;
goto IL_0022;
}
IL_0022:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_6 = V_1;
return L_6;
}
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobParallelForExtensions::Schedule<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformUVsJob>(T,System.Int32,System.Int32,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobParallelForExtensions_Schedule_TisTransformUVsJob_t6DE90A3353456307A60BDF9A28C6FD37ED0C003A_m249C48B4B0B184BA8A765C02DEBFCB8F237E7B2B_gshared (TransformUVsJob_t6DE90A3353456307A60BDF9A28C6FD37ED0C003A ___jobData0, int32_t ___arrayLength1, int32_t ___innerloopBatchCount2, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn3, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (TransformUVsJob_t6DE90A3353456307A60BDF9A28C6FD37ED0C003A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((TransformUVsJob_t6DE90A3353456307A60BDF9A28C6FD37ED0C003A *)(TransformUVsJob_t6DE90A3353456307A60BDF9A28C6FD37ED0C003A *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn3;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
int32_t L_3 = ___arrayLength1;
int32_t L_4 = ___innerloopBatchCount2;
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_5 = JobsUtility_ScheduleParallelFor_mD0B7FD9589FB242D9C4E21F93054C526FA6B1DBF((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (int32_t)L_3, (int32_t)L_4, /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_5;
goto IL_0022;
}
IL_0022:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_6 = V_1;
return L_6;
}
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobParallelForExtensions::Schedule<UnityEngine.XR.ARKit.ARKitFaceSubsystem_ARKitProvider_TransformVerticesJob>(T,System.Int32,System.Int32,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobParallelForExtensions_Schedule_TisTransformVerticesJob_t9465EFCD14CC37F13A15C0055F4B76E027A6319D_m348982552B0BF254FC245A5D170D42AD02FCC253_gshared (TransformVerticesJob_t9465EFCD14CC37F13A15C0055F4B76E027A6319D ___jobData0, int32_t ___arrayLength1, int32_t ___innerloopBatchCount2, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn3, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (TransformVerticesJob_t9465EFCD14CC37F13A15C0055F4B76E027A6319D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((TransformVerticesJob_t9465EFCD14CC37F13A15C0055F4B76E027A6319D *)(TransformVerticesJob_t9465EFCD14CC37F13A15C0055F4B76E027A6319D *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn3;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
int32_t L_3 = ___arrayLength1;
int32_t L_4 = ___innerloopBatchCount2;
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_5 = JobsUtility_ScheduleParallelFor_mD0B7FD9589FB242D9C4E21F93054C526FA6B1DBF((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (int32_t)L_3, (int32_t)L_4, /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_5;
goto IL_0022;
}
IL_0022:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_6 = V_1;
return L_6;
}
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobParallelForExtensions::Schedule<UnityEngine.XR.ARKit.ARKitImageDatabase_ConvertRGBA32ToARGB32Job>(T,System.Int32,System.Int32,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobParallelForExtensions_Schedule_TisConvertRGBA32ToARGB32Job_t81AAD60557C255D4A08CBD6789644DCA20D61AA0_mFBDC2947FE6DFF1FDED917907B380A70820B035A_gshared (ConvertRGBA32ToARGB32Job_t81AAD60557C255D4A08CBD6789644DCA20D61AA0 ___jobData0, int32_t ___arrayLength1, int32_t ___innerloopBatchCount2, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn3, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (ConvertRGBA32ToARGB32Job_t81AAD60557C255D4A08CBD6789644DCA20D61AA0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ConvertRGBA32ToARGB32Job_t81AAD60557C255D4A08CBD6789644DCA20D61AA0 *)(ConvertRGBA32ToARGB32Job_t81AAD60557C255D4A08CBD6789644DCA20D61AA0 *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn3;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
int32_t L_3 = ___arrayLength1;
int32_t L_4 = ___innerloopBatchCount2;
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_5 = JobsUtility_ScheduleParallelFor_mD0B7FD9589FB242D9C4E21F93054C526FA6B1DBF((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (int32_t)L_3, (int32_t)L_4, /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_5;
goto IL_0022;
}
IL_0022:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_6 = V_1;
return L_6;
}
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobParallelForExtensions::Schedule<UnityEngine.XR.ARKit.ARKitXRDepthSubsystem_TransformPositionsJob>(T,System.Int32,System.Int32,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobParallelForExtensions_Schedule_TisTransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283_mC9224B9B04CFAD8D88AE139FA6C5A527E1AEC6DB_gshared (TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283 ___jobData0, int32_t ___arrayLength1, int32_t ___innerloopBatchCount2, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn3, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283 *)(TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283 *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn3;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
int32_t L_3 = ___arrayLength1;
int32_t L_4 = ___innerloopBatchCount2;
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_5 = JobsUtility_ScheduleParallelFor_mD0B7FD9589FB242D9C4E21F93054C526FA6B1DBF((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (int32_t)L_3, (int32_t)L_4, /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_5;
goto IL_0022;
}
IL_0022:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_6 = V_1;
return L_6;
}
}
// Unity.Jobs.JobHandle Unity.Jobs.IJobParallelForExtensions::Schedule<UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_ARKitProvider_TransformBoundaryPositionsJob>(T,System.Int32,System.Int32,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 IJobParallelForExtensions_Schedule_TisTransformBoundaryPositionsJob_t1AEFA76DC77740E7CA334DC8C60612BF6D6FA872_mEFD98E2FA8598E542B584F49614EEA56224DDDC8_gshared (TransformBoundaryPositionsJob_t1AEFA76DC77740E7CA334DC8C60612BF6D6FA872 ___jobData0, int32_t ___arrayLength1, int32_t ___innerloopBatchCount2, JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ___dependsOn3, const RuntimeMethod* method)
{
JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F V_0;
memset((&V_0), 0, sizeof(V_0));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 V_1;
memset((&V_1), 0, sizeof(V_1));
{
void* L_0 = (( void* (*) (TransformBoundaryPositionsJob_t1AEFA76DC77740E7CA334DC8C60612BF6D6FA872 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((TransformBoundaryPositionsJob_t1AEFA76DC77740E7CA334DC8C60612BF6D6FA872 *)(TransformBoundaryPositionsJob_t1AEFA76DC77740E7CA334DC8C60612BF6D6FA872 *)(&___jobData0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
intptr_t L_1 = (( intptr_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_2 = ___dependsOn3;
JobScheduleParameters__ctor_m09A522B620ED79BDFD86DE2544175159B6179E48((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (void*)(void*)L_0, (intptr_t)L_1, (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_2, (int32_t)1, /*hidden argument*/NULL);
int32_t L_3 = ___arrayLength1;
int32_t L_4 = ___innerloopBatchCount2;
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_5 = JobsUtility_ScheduleParallelFor_mD0B7FD9589FB242D9C4E21F93054C526FA6B1DBF((JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(JobScheduleParameters_t55DC8564D72859191CE4E81639EFD25F6C6A698F *)(&V_0), (int32_t)L_3, (int32_t)L_4, /*hidden argument*/NULL);
V_1 = (JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 )L_5;
goto IL_0022;
}
IL_0022:
{
JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 L_6 = V_1;
return L_6;
}
}
// UnityEngine.ComputeBuffer UnityEngine.Rendering.Universal.ShaderData::GetOrUpdateBuffer<System.Int32>(UnityEngine.ComputeBuffer&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * ShaderData_GetOrUpdateBuffer_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m47ABD988F1069D0101E4D475C03716FC2FC1353D_gshared (ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8 * __this, ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** ___buffer0, int32_t ___size1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ShaderData_GetOrUpdateBuffer_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m47ABD988F1069D0101E4D475C03716FC2FC1353D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (buffer == null)
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_0 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_1 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_0);
if (L_1)
{
goto IL_0013;
}
}
{
// buffer = new ComputeBuffer(size, Marshal.SizeOf<T>());
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_2 = ___buffer0;
int32_t L_3 = ___size1;
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
int32_t L_4 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_5 = (ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)il2cpp_codegen_object_new(ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5_il2cpp_TypeInfo_var);
ComputeBuffer__ctor_mDB6AADE63A5BF60A472D9FF9E533AF38D15C6B1E(L_5, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/NULL);
*((RuntimeObject **)L_2) = (RuntimeObject *)L_5;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_5);
// }
goto IL_0031;
}
IL_0013:
{
// else if (size > buffer.count)
int32_t L_6 = ___size1;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_7 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_8 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_7);
NullCheck((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_8);
int32_t L_9 = ComputeBuffer_get_count_m2D80EF2880723F6627924C0ABC642D8DB538D04D((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_8, /*hidden argument*/NULL);
if ((((int32_t)L_6) <= ((int32_t)L_9)))
{
goto IL_0031;
}
}
{
// buffer.Dispose();
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_10 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_11 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_10);
NullCheck((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_11);
ComputeBuffer_Dispose_m002F431B0EBF0B24DF20C7EB8FC2F44B596A6FFE((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_11, /*hidden argument*/NULL);
// buffer = new ComputeBuffer(size, Marshal.SizeOf<T>());
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_12 = ___buffer0;
int32_t L_13 = ___size1;
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
int32_t L_14 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_15 = (ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)il2cpp_codegen_object_new(ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5_il2cpp_TypeInfo_var);
ComputeBuffer__ctor_mDB6AADE63A5BF60A472D9FF9E533AF38D15C6B1E(L_15, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/NULL);
*((RuntimeObject **)L_12) = (RuntimeObject *)L_15;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_12, (void*)(RuntimeObject *)L_15);
}
IL_0031:
{
// return buffer;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_16 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_17 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_16);
return L_17;
}
}
// UnityEngine.ComputeBuffer UnityEngine.Rendering.Universal.ShaderData::GetOrUpdateBuffer<UnityEngine.Rendering.Universal.ShaderInput_LightData>(UnityEngine.ComputeBuffer&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * ShaderData_GetOrUpdateBuffer_TisLightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF_m770AEDAE9D77147FC5B189805A6984AA530448FB_gshared (ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8 * __this, ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** ___buffer0, int32_t ___size1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ShaderData_GetOrUpdateBuffer_TisLightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF_m770AEDAE9D77147FC5B189805A6984AA530448FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (buffer == null)
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_0 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_1 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_0);
if (L_1)
{
goto IL_0013;
}
}
{
// buffer = new ComputeBuffer(size, Marshal.SizeOf<T>());
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_2 = ___buffer0;
int32_t L_3 = ___size1;
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
int32_t L_4 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_5 = (ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)il2cpp_codegen_object_new(ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5_il2cpp_TypeInfo_var);
ComputeBuffer__ctor_mDB6AADE63A5BF60A472D9FF9E533AF38D15C6B1E(L_5, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/NULL);
*((RuntimeObject **)L_2) = (RuntimeObject *)L_5;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_5);
// }
goto IL_0031;
}
IL_0013:
{
// else if (size > buffer.count)
int32_t L_6 = ___size1;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_7 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_8 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_7);
NullCheck((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_8);
int32_t L_9 = ComputeBuffer_get_count_m2D80EF2880723F6627924C0ABC642D8DB538D04D((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_8, /*hidden argument*/NULL);
if ((((int32_t)L_6) <= ((int32_t)L_9)))
{
goto IL_0031;
}
}
{
// buffer.Dispose();
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_10 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_11 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_10);
NullCheck((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_11);
ComputeBuffer_Dispose_m002F431B0EBF0B24DF20C7EB8FC2F44B596A6FFE((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_11, /*hidden argument*/NULL);
// buffer = new ComputeBuffer(size, Marshal.SizeOf<T>());
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_12 = ___buffer0;
int32_t L_13 = ___size1;
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
int32_t L_14 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_15 = (ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)il2cpp_codegen_object_new(ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5_il2cpp_TypeInfo_var);
ComputeBuffer__ctor_mDB6AADE63A5BF60A472D9FF9E533AF38D15C6B1E(L_15, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/NULL);
*((RuntimeObject **)L_12) = (RuntimeObject *)L_15;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_12, (void*)(RuntimeObject *)L_15);
}
IL_0031:
{
// return buffer;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_16 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_17 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_16);
return L_17;
}
}
// UnityEngine.ComputeBuffer UnityEngine.Rendering.Universal.ShaderData::GetOrUpdateBuffer<UnityEngine.Rendering.Universal.ShaderInput_ShadowData>(UnityEngine.ComputeBuffer&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * ShaderData_GetOrUpdateBuffer_TisShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571_mC05E30362C21A637E76FFF4CB0C87D5E88F8F77A_gshared (ShaderData_t8C36923EF9D66B7EA521E82B026A0B957A82A1F8 * __this, ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** ___buffer0, int32_t ___size1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ShaderData_GetOrUpdateBuffer_TisShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571_mC05E30362C21A637E76FFF4CB0C87D5E88F8F77A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (buffer == null)
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_0 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_1 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_0);
if (L_1)
{
goto IL_0013;
}
}
{
// buffer = new ComputeBuffer(size, Marshal.SizeOf<T>());
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_2 = ___buffer0;
int32_t L_3 = ___size1;
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
int32_t L_4 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_5 = (ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)il2cpp_codegen_object_new(ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5_il2cpp_TypeInfo_var);
ComputeBuffer__ctor_mDB6AADE63A5BF60A472D9FF9E533AF38D15C6B1E(L_5, (int32_t)L_3, (int32_t)L_4, /*hidden argument*/NULL);
*((RuntimeObject **)L_2) = (RuntimeObject *)L_5;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_5);
// }
goto IL_0031;
}
IL_0013:
{
// else if (size > buffer.count)
int32_t L_6 = ___size1;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_7 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_8 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_7);
NullCheck((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_8);
int32_t L_9 = ComputeBuffer_get_count_m2D80EF2880723F6627924C0ABC642D8DB538D04D((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_8, /*hidden argument*/NULL);
if ((((int32_t)L_6) <= ((int32_t)L_9)))
{
goto IL_0031;
}
}
{
// buffer.Dispose();
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_10 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_11 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_10);
NullCheck((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_11);
ComputeBuffer_Dispose_m002F431B0EBF0B24DF20C7EB8FC2F44B596A6FFE((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)L_11, /*hidden argument*/NULL);
// buffer = new ComputeBuffer(size, Marshal.SizeOf<T>());
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_12 = ___buffer0;
int32_t L_13 = ___size1;
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
int32_t L_14 = (( int32_t (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_15 = (ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 *)il2cpp_codegen_object_new(ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5_il2cpp_TypeInfo_var);
ComputeBuffer__ctor_mDB6AADE63A5BF60A472D9FF9E533AF38D15C6B1E(L_15, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/NULL);
*((RuntimeObject **)L_12) = (RuntimeObject *)L_15;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_12, (void*)(RuntimeObject *)L_15);
}
IL_0031:
{
// return buffer;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 ** L_16 = ___buffer0;
ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 * L_17 = *((ComputeBuffer_t52D8926E1D54293AD28F4C29FE3F5363749B0FE5 **)L_16);
return L_17;
}
}
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderFunc`1<PassData> UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph_RenderPass::GetExecuteDelegate<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderFunc_1_t6963E4F494F441886F42D47BFB357196C662DDB7 * RenderPass_GetExecuteDelegate_TisRuntimeObject_m23FB2C238E4C2C60FF27713DF813A667926D00F5_gshared (RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 * __this, const RuntimeMethod* method)
{
{
// where PassData : class, new() => ((RenderPass<PassData>)this).renderFunc;
NullCheck(((RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
RenderFunc_1_t6963E4F494F441886F42D47BFB357196C662DDB7 * L_0 = (RenderFunc_1_t6963E4F494F441886F42D47BFB357196C662DDB7 *)((RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 *)Castclass((RuntimeObject*)__this, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_renderFunc_11();
return L_0;
}
}
// UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphBuilder UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraph::AddRenderPass<System.Object>(System.String,PassData&,UnityEngine.Profiling.CustomSampler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderGraphBuilder_t9026010D496B7D7D33BBFD0350D5014FAC7EF312 RenderGraph_AddRenderPass_TisRuntimeObject_m8320D7103DB3A67B148A96D5E3C2748DB9256A59_gshared (RenderGraph_t658E15F42351EE5E92398FC4EF9B25E75AC71042 * __this, String_t* ___passName0, RuntimeObject ** ___passData1, CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8 * ___customSampler2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RenderGraph_AddRenderPass_TisRuntimeObject_m8320D7103DB3A67B148A96D5E3C2748DB9256A59_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 * V_0 = NULL;
{
// var renderPass = m_RenderGraphPool.Get<RenderPass<PassData>>();
RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * L_0 = (RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 *)__this->get_m_RenderGraphPool_2();
NullCheck((RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 *)L_0);
RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 * L_1 = (( RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 * (*) (RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 *)L_1;
// renderPass.Clear();
RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 * L_2 = V_0;
NullCheck((RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 *)L_2);
RenderPass_Clear_m216A695EE93282211427AFAE4876C742D5CBE627((RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 *)L_2, /*hidden argument*/NULL);
// renderPass.index = m_RenderPasses.Count;
RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 * L_3 = V_0;
List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 * L_4 = (List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 *)__this->get_m_RenderPasses_3();
NullCheck((List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 *)L_4);
int32_t L_5 = List_1_get_Count_m0B6FAC22324A918CFA9E37637257E82823029437_inline((List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 *)L_4, /*hidden argument*/List_1_get_Count_m0B6FAC22324A918CFA9E37637257E82823029437_RuntimeMethod_var);
NullCheck(L_3);
((RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 *)L_3)->set_index_1(L_5);
// renderPass.data = m_RenderGraphPool.Get<PassData>();
RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 * L_6 = V_0;
RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 * L_7 = (RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 *)__this->get_m_RenderGraphPool_2();
NullCheck((RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 *)L_7);
RuntimeObject * L_8 = (( RuntimeObject * (*) (RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((RenderGraphObjectPool_t0CBE32C9B6C34B9244AACFE6F1F6F5C27495A735 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
NullCheck(L_6);
L_6->set_data_10(L_8);
// renderPass.name = passName;
RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 * L_9 = V_0;
String_t* L_10 = ___passName0;
NullCheck(L_9);
((RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 *)L_9)->set_name_0(L_10);
// renderPass.customSampler = customSampler;
RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 * L_11 = V_0;
CustomSampler_tD50B25148FC97E173885F9C379C8F89F067343C8 * L_12 = ___customSampler2;
NullCheck(L_11);
((RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 *)L_11)->set_customSampler_2(L_12);
// passData = renderPass.data;
RuntimeObject ** L_13 = ___passData1;
RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 * L_14 = V_0;
NullCheck(L_14);
RuntimeObject * L_15 = (RuntimeObject *)L_14->get_data_10();
*(RuntimeObject **)L_13 = L_15;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_13, (void*)L_15);
// m_RenderPasses.Add(renderPass);
List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 * L_16 = (List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 *)__this->get_m_RenderPasses_3();
RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 * L_17 = V_0;
NullCheck((List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 *)L_16);
List_1_Add_m011F5FA3CC5FBB00875D2C3615DED27D6CE38D60((List_1_t7BE901F61F1A406FC143D643C9923B05DE767845 *)L_16, (RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 *)L_17, /*hidden argument*/List_1_Add_m011F5FA3CC5FBB00875D2C3615DED27D6CE38D60_RuntimeMethod_var);
// return new RenderGraphBuilder(renderPass, m_Resources);
RenderPass_1_t8E26DF96C7D796453D4050436A62B01576E92BA8 * L_18 = V_0;
RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 * L_19 = (RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 *)__this->get_m_Resources_1();
RenderGraphBuilder_t9026010D496B7D7D33BBFD0350D5014FAC7EF312 L_20;
memset((&L_20), 0, sizeof(L_20));
RenderGraphBuilder__ctor_m3EB345CC9E313C7C6EADFF534CA50FAF440D75CC((&L_20), (RenderPass_t76E9609EEAA24A42AC708764A04208023FA56035 *)L_18, (RenderGraphResourceRegistry_t7092B2DF44BF627E78727614199E685876593F82 *)L_19, /*hidden argument*/NULL);
return L_20;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mB2DEEAF3F86ED5BECA570432FD5440948D5CB3B8_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C * ___callbackFunction2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mB2DEEAF3F86ED5BECA570432FD5440948D5CB3B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_1 = NULL;
{
// GetEventChain(root, s_InternalTransformList);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___root0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * L_1 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_InternalTransformList_18();
ExecuteEvents_GetEventChain_mD90FFC4A70E16AFA81AC6C9CFF174630F77C608C((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_0, (RuntimeObject*)L_1, /*hidden argument*/NULL);
// for (var i = 0; i < s_InternalTransformList.Count; i++)
V_0 = (int32_t)0;
goto IL_0035;
}
IL_000f:
{
// var transform = s_InternalTransformList[i];
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * L_2 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_InternalTransformList_18();
int32_t L_3 = V_0;
NullCheck((List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *)L_2);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_4 = List_1_get_Item_m88FE4B6F43A2CD95BB9ECF8D801F206618FFFFB8_inline((List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *)L_2, (int32_t)L_3, /*hidden argument*/List_1_get_Item_m88FE4B6F43A2CD95BB9ECF8D801F206618FFFFB8_RuntimeMethod_var);
V_1 = (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_4;
// if (Execute(transform.gameObject, eventData, callbackFunction))
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_5 = V_1;
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_5);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_6 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_5, /*hidden argument*/NULL);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_7 = ___eventData1;
EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C * L_8 = ___callbackFunction2;
bool L_9 = (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_6, (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *)L_7, (EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (!L_9)
{
goto IL_0031;
}
}
{
// return transform.gameObject;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_10 = V_1;
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_10);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_11 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0031:
{
// for (var i = 0; i < s_InternalTransformList.Count; i++)
int32_t L_12 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_0035:
{
// for (var i = 0; i < s_InternalTransformList.Count; i++)
int32_t L_13 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * L_14 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_InternalTransformList_18();
NullCheck((List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *)L_14);
int32_t L_15 = List_1_get_Count_mFB4F65ABD2DD0845C2448493238223FB4079A90C_inline((List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *)L_14, /*hidden argument*/List_1_get_Count_mFB4F65ABD2DD0845C2448493238223FB4079A90C_RuntimeMethod_var);
if ((((int32_t)L_13) < ((int32_t)L_15)))
{
goto IL_000f;
}
}
{
// return null;
return (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<System.Object>(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_GetEventHandler_TisRuntimeObject_m4A0A387AEA9C47C3DB85EAB3FE49C0689C0FFFA8_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_GetEventHandler_TisRuntimeObject_m4A0A387AEA9C47C3DB85EAB3FE49C0689C0FFFA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_0 = NULL;
{
// if (root == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___root0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000b;
}
}
{
// return null;
return (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL;
}
IL_000b:
{
// Transform t = root.transform;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = ___root0;
NullCheck((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_2);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_3 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_2, /*hidden argument*/NULL);
V_0 = (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_3;
goto IL_002f;
}
IL_0014:
{
// if (CanHandleEvent<T>(t.gameObject))
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_4 = V_0;
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_4);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
bool L_6 = (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (!L_6)
{
goto IL_0028;
}
}
{
// return t.gameObject;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_7 = V_0;
NullCheck((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_7);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C((Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *)L_7, /*hidden argument*/NULL);
return L_8;
}
IL_0028:
{
// t = t.parent;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_9 = V_0;
NullCheck((Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_9);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_10 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403((Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_9, /*hidden argument*/NULL);
V_0 = (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA *)L_10;
}
IL_002f:
{
// while (t != null)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_11 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_12 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_11, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_12)
{
goto IL_0014;
}
}
{
// return null;
return (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void IntPtr__ctor_m6360250F4B87C6AE2F0389DA0DEE1983EED73FB6_inline (intptr_t* __this, void* ___value0, const RuntimeMethod* method)
{
{
void* L_0 = ___value0;
*__this = ((intptr_t)L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR XRLoader_t2574091AF57F902BF504098AB113416E8D15186A * XRManagerSettings_get_activeLoader_m9371C31D367F55202EE948306D0C61A9D8725B67_inline (XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRManagerSettings_get_activeLoader_m9371C31D367F55202EE948306D0C61A9D8725B67GenericMethods6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public XRLoader activeLoader { get { return s_ActiveLoader; } private set { s_ActiveLoader = value; } }
IL2CPP_RUNTIME_CLASS_INIT(XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5_il2cpp_TypeInfo_var);
XRLoader_t2574091AF57F902BF504098AB113416E8D15186A * L_0 = ((XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5_StaticFields*)il2cpp_codegen_static_fields_for(XRManagerSettings_tD2A1CF858A60A10772C3000CA28388DA7F7510B5_il2cpp_TypeInfo_var))->get_s_ActiveLoader_9();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_m692E28BB74B2613597E407DDCCBA926306D8086A_gshared_inline (Stack_1_t947D54C9BD69273E99283B7CF077307923B3D8B1 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_1();
int32_t L_3 = ___index0;
RuntimeObject * L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3);
return L_4;
}
}
| [
"formed9doppio@gmail.com"
] | formed9doppio@gmail.com |
285b1bd08ea9bd61055a5a7e2384a9b0c8d46216 | 1df72d91ba15695320045c68b2d45676fbd6b88b | /Elevator/mymainwindow.cpp | 441c8b26a460a62ddb9dbf69d71777a5e44fbe57 | [
"Apache-2.0"
] | permissive | YuhanLiui/Elevator | d057494cf3cd1fad0dbdc1017d6cb9b7c275cb24 | 44d76ffc751e1bbb2ce7cf36a03c0884fbb6143b | refs/heads/main | 2023-07-12T04:14:18.473125 | 2021-08-19T07:36:43 | 2021-08-19T07:36:43 | 397,854,894 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 190,448 | cpp | #include "mymainwindow.h"
#include "ui_mymainwindow.h"
#include <iostream>
#include <stdlib.h>
#include <QDebug>
#include "elevator.h"
#include <QDateTime>
#include <QMessageBox>
#include <QTextStream>
#include <QDateTime>
#include <QFile>
myMainWindow::myMainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::myMainWindow)
{
ui->setupUi(this);
connect(ui->diable1,&QPushButton::clicked,this,&myMainWindow::on_diable1clicked);
connect(ui->disable2,&QPushButton::clicked,this,&myMainWindow::on_disable2clicked);
connect(ui->disable3,&QPushButton::clicked,this,&myMainWindow::on_disable3clicked);
connect(ui->disable4,&QPushButton::clicked,this,&myMainWindow::on_disable4clicked);
connect(ui->disable5,&QPushButton::clicked,this,&myMainWindow::on_disable5clicked);
connect(ui->disable6,&QPushButton::clicked,this,&myMainWindow::on_disable6clicked);
connect(ui->isbusy,&QPushButton::clicked,this,&myMainWindow::setIsbusy);
}
myMainWindow::myMainWindow(elevator* ele,QWidget *parent) :
QMainWindow(parent),
ui(new Ui::myMainWindow)
{
ui->setupUi(this);
el=ele;
connect(ui->emergency,&QPushButton::clicked,this,&myMainWindow::on_emergencyclicked);
connect(ui->diable1,&QPushButton::clicked,this,&myMainWindow::on_diable1clicked);
connect(ui->disable2,&QPushButton::clicked,this,&myMainWindow::on_disable2clicked);
connect(ui->disable3,&QPushButton::clicked,this,&myMainWindow::on_disable3clicked);
connect(ui->disable4,&QPushButton::clicked,this,&myMainWindow::on_disable4clicked);
connect(ui->disable5,&QPushButton::clicked,this,&myMainWindow::on_disable5clicked);
connect(ui->disable6,&QPushButton::clicked,this,&myMainWindow::on_disable6clicked);
connect(ui->isbusy,&QPushButton::clicked,this,&myMainWindow::setIsbusy);
}
Ui::myMainWindow* myMainWindow::getUi(){
return ui;
}
myMainWindow::~myMainWindow()
{
delete ui;
}
elevator* myMainWindow::getele(){
return el;
}
/***************************************************************************************************/
/*
* 功能:初始化控制端类(请求屏蔽位为false,故障为为false,特殊情况为false,忙闲为闲,请求全为无请求);
* 输入参数:无
* 输出参数:无
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
controller::controller(){
//elevotar_ui.show();
for(int i=0;i<6;i++){//初始化屏蔽位和故障位
shielding[i]=false;
fault[i]=false;
}
for (int i=0;i<56;++i) {//初始化请求位
for (int j=0;j<6;j++) {
re[i][j].floor=i+1;
//qDebug()<<re[i][j].floor;
re[i][j].direction=0;
}
}
emergency=false;//初始化紧急位
isbusy=false;//初始化忙闲位
}
/*
* 功能:释放类资源;
* 输入参数:无
* 输出参数:无
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
controller::~controller(){
}
/*
* 功能:返回控制对象屏蔽位数组;
* 输入参数:无
* 输出参数:控制对象的屏蔽位数组的地址
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
bool* controller::getShielding(){
return shielding;
}
/*
* 功能:返回控制对象故障位数组;
* 输入参数:无
* 输出参数:控制对象的故障位数组的地址
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
bool* controller::getFault(){
return fault;
}
/*
* 功能:返回控制对象紧急位;
* 输入参数:无
* 输出参数:控制对象的紧急位地址
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
bool* controller::getEmergen(){
return &emergency;
}
/*
* 功能:返回控制对象忙闲;
* 输入参数:无
* 输出参数:控制对象的忙闲的地址
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
bool* controller::getIsbusy(){
return &isbusy;
}
/*
* 功能:返回控制对象请求数组;
* 输入参数:请求所在楼层数
* 输出参数:控制对象的该层请求的数组首地址
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
request* controller::getRequest(int i){
return re[i];
}
/*
* 功能:如果有电梯发送故障,对相应的电梯进行故障处理(发出某某电梯发生故障警告,调用当前楼层数次下楼函数,然后开门,
* 并对外呈现故障状态,并屏蔽请求,直到复位函数将对外呈现故障位进行取消);
* 输入参数:故障位数组,界面的引用
* 输出参数:无
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
void controller::faultAct(bool* fault,myMainWindow& eui){
//int i;
//Test w;
for (int j=0;j<6;j++) {
if(fault[j]){
eui.getShielding()[j]=true;//将相应电梯的请求屏蔽掉
while(eui.getele()->getCurrFloor()!=1){
eui.getele()->decrementFloor();
qDebug()<<"调用电梯对象的下楼函数直到底楼";
}
qDebug()<<"第"<<j+1<<"部电梯发生故障";
QString str="第"+QString::number(j+1)+"部电梯发生故障";
QMessageBox::warning(&eui,"warning",str);
if(0==j){//在相应故障显示屏处显示故障
eui.getUi()->elevator1->setText("故障");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::warning(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯1发生故障"<<"\n";
file.close();
}
else if(1==j){//在相应故障显示屏处显示故障
eui.getUi()->elevotar2->setText("故障");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯2发生故障"<<"\n";
file.close();
}
else if(2==j){//在相应故障显示屏处显示故障
eui.getUi()->elevotar3->setText("故障");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯3发生故障"<<"\n";
file.close();
}
else if(3==j){//在相应故障显示屏处显示故障
eui.getUi()->elevotar4->setText("故障");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯4发生故障"<<"\n";
file.close();
}
else if(4==j){//在相应故障显示屏处显示故障
eui.getUi()->elevotar5->setText("故障");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::warning(this,"warning","error","ok");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯5发生故障"<<"\n";
file.close();
}
else if(5==j){//在相应故障显示屏处显示故障
eui.getUi()->elevator6->setText("故障");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯6发生故障"<<"\n";
file.close();
}
}
else if(!(fault[j])){
eui.getShielding()[j]=false;//将相应电梯的请求屏蔽解除
if(0==j){//在相应故障显示屏处显示故障
eui.getUi()->elevator1->setText(" ");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯1无故障"<<"\n";
file.close();
}
else if(1==j){//在相应故障显示屏处显示故障
eui.getUi()->elevotar2->setText(" ");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯2无故障"<<"\n";
file.close();
}
else if(2==j){//在相应故障显示屏处显示故障
eui.getUi()->elevotar3->setText(" ");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯3无故障"<<"\n";
file.close();
}
else if(3==j){//在相应故障显示屏处显示故障
eui.getUi()->elevotar4->setText(" ");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯4无故障"<<"\n";
file.close();
}
else if(4==j){//在相应故障显示屏处显示故障
eui.getUi()->elevotar5->setText(" ");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯5无故障"<<"\n";
file.close();
}
else if(5==j){//在相应故障显示屏处显示故障
eui.getUi()->elevator6->setText(" ");
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
//QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯6无故障"<<"\n";
file.close();
}
}
}
return;
}
/*
* 功能:指派相应的电梯响应相应的请求(先判断当前是闲还是忙,如果是闲,就判断该请求上下五层楼内是否有同向电梯,如果有,就将该请求写入同向最近电梯
* 内,如果上下五层内,电梯都是异向或上下五层楼内没有电梯则将该请求写入同向最近的电梯中或者最先到达该楼层的异向电梯中,如果忙,就看按规则(第一台1,2
* 7.....以此类推,第六台可以到达所有楼层)看前五台中可以到达该楼层的电梯以及第六台,看那台同向近,那台近就分配给那台(当第六台满载时就算它近也不分配给它)
* 如果两台中有一台异向,就分配给同向,如果两个都异向,就分配给最先到达该楼层的电梯中);
* 输入参数:请求数组
* 输出参数:无
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
void controller::assignAct(controller& con/*in*/,myMainWindow& eui,elevator* ele){
for(int a=0;a<6;a++){
ele[a].setT(ele[a].getT()+1);
if(ele[a].getT()==2){
ele[a].setT(0);
}
ele[a].setT1(ele[a].getT1()+1);
if(ele[a].getT1()==2){
ele[a].setT1(0);
}
}
for (int i=0;i<56;i++) {//找到请求位置
for (int j=0;j<6;j++) {
if(con.getRequest(i)[j].direction!=0){
if((*(eui.getIsbusy()))&&(!(eui.getShielding()[j]))){//电梯此时为忙,且该部电梯的请求没有被屏蔽
if((((i)==1)||((i)==2)||((i)==7)||((i)==12)||((i)==17)||((i)==22)||((i)==27)||((i+1)==32)||((i)==37)||((i)==42)||((i)==47)||((i)==52))&&((!(eui.getShielding()[0]))||(!(eui.getShielding()[5])))){
/*如果该请求按规则是在第一台电梯和第六台电梯*/
if(con.getRequest(i)[j].direction==1){//请求向上
if(eui.getShielding()[0]){
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();
return;
}
else if(eui.getShielding()[5]){
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();
return;
}
else if(((i+1)>=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==1)||(ele[0].getMoveStatus()==0))&&(ele[0].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动且第两部电梯没有满载
if(((i+1)-ele[0].getCurrFloor())>((i+1)-ele[5].getCurrFloor())){
//第一部比第六部离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//将请求写入第六部电梯内
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//将请求写入第一部电梯中
return;
}
}
else if(((i+1)>=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==1)||(ele[0].getMoveStatus()==0))&&(ele[0].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()==1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第六部电梯满载
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//将请求写入第一部电梯
return;
}
else if(((i+1)>=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==1)||(ele[0].getMoveStatus()==0))&&(ele[0].ifFull()==1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第一部电梯满载
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//将请求写入第六部电梯
return;
}
else if(((i+1)>=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==1)||(ele[0].getMoveStatus()==0))&&((i+1)>=(ele[5].getCurrFloor()))&&(ele[5].getMoveDirection()==-1)){
//第一和第六部电梯都在请求下,但电梯六的运动方向是向下
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//将请求写到第一部电梯内
return;
}
else if(((i+1)>=(ele[0].getCurrFloor()))&&(ele[0].getMoveDirection()==-1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))){
//第一和第六部电梯都在请求下,但电梯一的运动方向是向下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//将请求写到第六部电梯内
return;
}
else if(((i+1)>=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==1)||(ele[0].getMoveStatus()==0))&&(ele[0].ifFull()!=1)&&((i+1)<(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()!=0))) {
//第一部电梯在请求下且向上运动或者不运动,但第六部电梯在请求上
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//将请求写入第一部电梯内
return;
}
else if(((i+1)<(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()!=0))&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,但第一部电梯在请求上
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//将请求写入第六部电梯内
return;
}
else if(((i+1)>=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==1)||(ele[0].getMoveStatus()==0))&&(ele[0].ifFull()!=1)&&((i+1)<(ele[5].getCurrFloor()))&&((ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第一部电梯在请求下且向上运动或者不运动,第六部电梯在请求上但不运动
if(((i+1)-ele[0].getCurrFloor())>(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//请求写入第六部电梯内
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//电梯写入第一部电梯内
}
}
else if(((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)&&((i+1)<(ele[0].getCurrFloor()))&&((ele[0].getMoveStatus()==0))&&(ele[0].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,第一部电梯在请求上但不运动
if(((i+1)-ele[0].getCurrFloor())>(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//请求写入第六部电梯内
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//电梯写入第一部电梯内
return;
}
}
/********************************************************************************************************************/
else if(((i+1)<ele[0].getCurrFloor())&&(ele[0].getMoveStatus()==0)&&((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)){
//电梯1,6都在请求上,但是都不运动
if((ele[0].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//写入电梯六
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//写入电梯1
return;
}
}
else if(((i+1)<ele[0].getCurrFloor())&&(ele[0].getMoveStatus()==0)&&((i+1)<ele[5].getCurrFloor())){
//都在上面,但只有电梯1在不运动
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//写入电梯一
return;
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)&&((i+1)<ele[0].getCurrFloor())){
//都在上面,但只有电梯6在不运动
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//写入电梯6
return;
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()!=0)&&((i+1)<ele[0].getCurrFloor())&&(ele[0].getMoveStatus()!=0)){
//都在上且都在运动
if((ele[5].getMoveStatus()==1)&&(ele[0].getMoveStatus()==1)){
//都在向上运动
if((ele[0].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//写入电梯六
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//写入电梯1
return;
}
}
else if((ele[5].getMoveStatus()==-1)&&(ele[0].getMoveStatus()==-1)){
//都在向下运动
if((ele[0].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//写入电梯一
return;
}
else {
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//写入电梯六
return;
}
}
else if((ele[5].getMoveStatus()==1)&&(ele[0].getMoveStatus()==-1)){
//六上一下
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//写入电梯1
return;
}
else{
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//写入电梯6
return;
}
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==-1)&&((i+1)>ele[0].getCurrFloor())&&(ele[0].getMoveStatus()==-1)){
//都在下且都在向下运动
if(((i+1)-ele[0].getCurrFloor())<((i+1)-ele[5].getCurrFloor())){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//写入电梯6
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();//写入电梯1
return;
}
}
else if(((i+1)<ele[0].getCurrFloor())&&(ele[0].getMoveStatus()==1)&&((i+1)>ele[5].getCurrFloor())){
//1在上向上运动,6在下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();//写入6
return;
}
else{
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();
return;
}
}
if(re[i][j].direction==-1){//请求向下
if(eui.getShielding()[0]){
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();
return;
}
else if(eui.getShielding()[5]){
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct();
return;
}
else if(((i+1)<=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==-1)||(ele[0].getMoveStatus()==0))&&(ele[0].ifFull()!=1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼的电梯没有运动且第两部电梯没有满载
if(((i+1)-ele[0].getCurrFloor())<((i+1)-ele[5].getCurrFloor())){
//第一部比第六部离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯内
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//将请求写入第一部电梯中
return;
}
}
else if(((i+1)<=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==-1)||(ele[0].getMoveStatus()==0))&&(ele[0].ifFull()!=1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()==1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第六部电梯满载
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//将请求写入第一部电梯
return;
}
else if(((i+1)<=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==-1)||(ele[0].getMoveStatus()==0))&&(ele[0].ifFull()==1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第一部电梯满载
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯
return;
}
else if(((i+1)<=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==-1)||(ele[0].getMoveStatus()==0))&&((i+1)<=(ele[5].getCurrFloor()))&&(ele[5].getMoveDirection()==1)){
//第一和第六部电梯都在请求下,但电梯六的运动方向是向下
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//将请求写到第一部电梯内
return;
}
else if(((i+1)<=(ele[0].getCurrFloor()))&&(ele[0].getMoveDirection()==1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))){
//第一和第六部电梯都在请求下,但电梯一的运动方向是向下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写到第六部电梯内
return;
}
else if(((i+1)<=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==-1)||(ele[0].getMoveStatus()==0))&&(ele[0].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()!=0))) {
//第一部电梯在请求下且向上运动或者不运动,但第六部电梯在请求上
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//将请求写入第一部电梯内
return;
}
else if(((i+1)>(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()!=0))&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,但第一部电梯在请求上
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯内
return;
}
else if(((i+1)<=(ele[0].getCurrFloor()))&&((ele[0].getMoveDirection()==-1)||(ele[0].getMoveStatus()==0))&&(ele[0].ifFull()!=1)&&((i+1)>(ele[5].getCurrFloor()))&&((ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第一部电梯在请求下且向上运动或者不运动,第六部电梯在请求上但不运动
if(((i+1)-ele[0].getCurrFloor())<(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//请求写入第六部电梯内
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//电梯写入第一部电梯内
}
}
else if(((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)&&((i+1)>(ele[0].getCurrFloor()))&&((ele[0].getMoveStatus()==0))&&(ele[0].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,第一部电梯在请求上但不运动
if(((i+1)-ele[0].getCurrFloor())<(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//请求写入第六部电梯内
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//电梯写入第一部电梯内
return;
}
}
/********************************************************************************************************************/
else if(((i+1)>ele[0].getCurrFloor())&&(ele[0].getMoveStatus()==0)&&((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)){
//电梯1,6都在请求上,但是都不运动
if((ele[0].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//写入电梯1
return;
}
}
else if(((i+1)>ele[0].getCurrFloor())&&(ele[0].getMoveStatus()==0)&&((i+1)>ele[5].getCurrFloor())){
//都在上面,但只有电梯1在不运动
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//写入电梯一
return;
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)&&((i+1)>ele[0].getCurrFloor())){
//都在上面,但只有电梯6在不运动
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()!=0)&&((i+1)>ele[0].getCurrFloor())&&(ele[0].getMoveStatus()!=0)){
//都在上且都在运动
if((ele[5].getMoveStatus()==-1)&&(ele[0].getMoveStatus()==-1)){
//都在向上运动
if((ele[0].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//写入电梯1
return;
}
}
else if((ele[5].getMoveStatus()==1)&&(ele[0].getMoveStatus()==1)){
//都在向下运动
if((ele[0].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//写入电梯一
return;
}
else {
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
}
else if((ele[5].getMoveStatus()==-1)&&(ele[0].getMoveStatus()==1)){
//六上一下
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//写入电梯1
return;
}
else{
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==1)&&((i+1)<ele[0].getCurrFloor())&&(ele[0].getMoveStatus()==1)){
//都在下且都在向下运动
if(((i+1)-ele[0].getCurrFloor())>((i+1)-ele[5].getCurrFloor())){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
else {
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();//写入电梯1
return;
}
}
else if(((i+1)>ele[0].getCurrFloor())&&(ele[0].getMoveStatus()==-1)&&((i+1)<ele[5].getCurrFloor())){
//1在上向上运动,6在下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入6
return;
}
else{
ele[0].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[0].EleAct2();
return;
}
}
}
else if((((i)==1)||((i)==3)||((i)==8)||((i)==13)||((i)==18)||((i)==23)||((i)==28)||((i)==33)||((i)==38)||((i)==43)||((i)==48)||((i)==53))&&((!(eui.getShielding()[1]))||(!(eui.getShielding()[5])))){
/*如果该请求按规则是在第一台电梯和第六台电梯*/
if(con.getRequest(i)[j].direction==1){//请求向上
if(eui.getShielding()[1]){
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();
return;
}
else if(eui.getShielding()[5]){
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();
return;
}
else if(((i+1)>=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==1)||(ele[1].getMoveStatus()==0))&&(ele[1].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动且第两部电梯没有满载
if(((i+1)-ele[1].getCurrFloor())>((i+1)-ele[5].getCurrFloor())){
//第一部比第六部离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//将请求写入第六部电梯内
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//将请求写入第一部电梯中
return;
}
}
else if(((i+1)>=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==1)||(ele[1].getMoveStatus()==0))&&(ele[1].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()==1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第六部电梯满载
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//将请求写入第一部电梯
return;
}
else if(((i+1)>=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==1)||(ele[1].getMoveStatus()==0))&&(ele[1].ifFull()==1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第一部电梯满载
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//将请求写入第六部电梯
return;
}
else if(((i+1)>=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==1)||(ele[1].getMoveStatus()==0))&&((i+1)>=(ele[5].getCurrFloor()))&&(ele[5].getMoveDirection()==-1)){
//第一和第六部电梯都在请求下,但电梯六的运动方向是向下
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//将请求写到第一部电梯内
return;
}
else if(((i+1)>=(ele[1].getCurrFloor()))&&(ele[1].getMoveDirection()==-1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))){
//第一和第六部电梯都在请求下,但电梯一的运动方向是向下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//将请求写到第六部电梯内
return;
}
else if(((i+1)>=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==1)||(ele[1].getMoveStatus()==0))&&(ele[1].ifFull()!=1)&&((i+1)<(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()!=0))) {
//第一部电梯在请求下且向上运动或者不运动,但第六部电梯在请求上
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//将请求写入第一部电梯内
return;
}
else if(((i+1)<(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()!=0))&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,但第一部电梯在请求上
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//将请求写入第六部电梯内
return;
}
else if(((i+1)>=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==1)||(ele[1].getMoveStatus()==0))&&(ele[1].ifFull()!=1)&&((i+1)<(ele[5].getCurrFloor()))&&((ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第一部电梯在请求下且向上运动或者不运动,第六部电梯在请求上但不运动
if(((i+1)-ele[1].getCurrFloor())>(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//请求写入第六部电梯内
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//电梯写入第一部电梯内
}
}
else if(((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)&&((i+1)<(ele[1].getCurrFloor()))&&((ele[1].getMoveStatus()==0))&&(ele[1].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,第一部电梯在请求上但不运动
if(((i+1)-ele[1].getCurrFloor())>(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//请求写入第六部电梯内
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//电梯写入第一部电梯内
return;
}
}
/********************************************************************************************************************/
else if(((i+1)<ele[1].getCurrFloor())&&(ele[1].getMoveStatus()==0)&&((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)){
//电梯1,6都在请求上,但是都不运动
if((ele[1].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯六
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯1
return;
}
}
else if(((i+1)<ele[1].getCurrFloor())&&(ele[1].getMoveStatus()==0)&&((i+1)<ele[5].getCurrFloor())){
//都在上面,但只有电梯1在不运动
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯一
return;
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)&&((i+1)<ele[1].getCurrFloor())){
//都在上面,但只有电梯6在不运动
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯6
return;
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()!=0)&&((i+1)<ele[1].getCurrFloor())&&(ele[1].getMoveStatus()!=0)){
//都在上且都在运动
if((ele[5].getMoveStatus()==1)&&(ele[1].getMoveStatus()==1)){
//都在向上运动
if((ele[1].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯六
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯1
return;
}
}
else if((ele[5].getMoveStatus()==-1)&&(ele[1].getMoveStatus()==-1)){
//都在向下运动
if((ele[1].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯一
return;
}
else {
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯六
return;
}
}
else if((ele[5].getMoveStatus()==1)&&(ele[1].getMoveStatus()==-1)){
//六上一下
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯1
return;
}
else{
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯6
return;
}
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==-1)&&((i+1)>ele[1].getCurrFloor())&&(ele[1].getMoveStatus()==-1)){
//都在下且都在向下运动
if(((i+1)-ele[1].getCurrFloor())<((i+1)-ele[5].getCurrFloor())){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯6
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入电梯1
return;
}
}
else if(((i+1)<ele[1].getCurrFloor())&&(ele[1].getMoveStatus()==1)&&((i+1)>ele[5].getCurrFloor())){
//1在上向上运动,6在下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();//写入6
return;
}
else{
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();
return;
}
}
if(re[i][j].direction==-1){//请求向下
if(eui.getShielding()[1]){
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();
return;
}
else if(eui.getShielding()[5]){
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct();
return;
}
else if(((i+1)<=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==-1)||(ele[1].getMoveStatus()==0))&&(ele[1].ifFull()!=1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼的电梯没有运动且第两部电梯没有满载
if(((i+1)-ele[1].getCurrFloor())<((i+1)-ele[5].getCurrFloor())){
//第一部比第六部离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯内
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//将请求写入第一部电梯中
return;
}
}
else if(((i+1)<=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==-1)||(ele[1].getMoveStatus()==0))&&(ele[1].ifFull()!=1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()==1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第六部电梯满载
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//将请求写入第一部电梯
return;
}
else if(((i+1)<=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==-1)||(ele[1].getMoveStatus()==0))&&(ele[1].ifFull()==1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第一部电梯满载
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯
return;
}
else if(((i+1)<=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==-1)||(ele[1].getMoveStatus()==0))&&((i+1)<=(ele[5].getCurrFloor()))&&(ele[5].getMoveDirection()==1)){
//第一和第六部电梯都在请求下,但电梯六的运动方向是向下
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//将请求写到第一部电梯内
return;
}
else if(((i+1)<=(ele[1].getCurrFloor()))&&(ele[1].getMoveDirection()==1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))){
//第一和第六部电梯都在请求下,但电梯一的运动方向是向下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写到第六部电梯内
return;
}
else if(((i+1)<=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==-1)||(ele[1].getMoveStatus()==0))&&(ele[1].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()!=0))) {
//第一部电梯在请求下且向上运动或者不运动,但第六部电梯在请求上
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//将请求写入第一部电梯内
return;
}
else if(((i+1)>(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()!=0))&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,但第一部电梯在请求上
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯内
return;
}
else if(((i+1)<=(ele[1].getCurrFloor()))&&((ele[1].getMoveDirection()==-1)||(ele[1].getMoveStatus()==0))&&(ele[1].ifFull()!=1)&&((i+1)>(ele[5].getCurrFloor()))&&((ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第一部电梯在请求下且向上运动或者不运动,第六部电梯在请求上但不运动
if(((i+1)-ele[1].getCurrFloor())<(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//请求写入第六部电梯内
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//电梯写入第一部电梯内
}
}
else if(((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)&&((i+1)>(ele[1].getCurrFloor()))&&((ele[1].getMoveStatus()==0))&&(ele[1].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,第一部电梯在请求上但不运动
if(((i+1)-ele[1].getCurrFloor())<(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//请求写入第六部电梯内
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//电梯写入第一部电梯内
return;
}
}
/********************************************************************************************************************/
else if(((i+1)>ele[1].getCurrFloor())&&(ele[1].getMoveStatus()==0)&&((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)){
//电梯1,6都在请求上,但是都不运动
if((ele[1].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//写入电梯1
return;
}
}
else if(((i+1)>ele[1].getCurrFloor())&&(ele[1].getMoveStatus()==0)&&((i+1)>ele[5].getCurrFloor())){
//都在上面,但只有电梯1在不运动
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//写入电梯一
return;
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)&&((i+1)>ele[1].getCurrFloor())){
//都在上面,但只有电梯6在不运动
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()!=0)&&((i+1)>ele[1].getCurrFloor())&&(ele[1].getMoveStatus()!=0)){
//都在上且都在运动
if((ele[5].getMoveStatus()==-1)&&(ele[1].getMoveStatus()==-1)){
//都在向上运动
if((ele[1].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//写入电梯1
return;
}
}
else if((ele[5].getMoveStatus()==1)&&(ele[1].getMoveStatus()==1)){
//都在向下运动
if((ele[1].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//写入电梯一
return;
}
else {
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
}
else if((ele[5].getMoveStatus()==-1)&&(ele[1].getMoveStatus()==1)){
//六上一下
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//写入电梯1
return;
}
else{
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==1)&&((i+1)<ele[1].getCurrFloor())&&(ele[1].getMoveStatus()==1)){
//都在下且都在向下运动
if(((i+1)-ele[1].getCurrFloor())>((i+1)-ele[5].getCurrFloor())){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
else {
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();//写入电梯1
return;
}
}
else if(((i+1)>ele[1].getCurrFloor())&&(ele[1].getMoveStatus()==-1)&&((i+1)<ele[5].getCurrFloor())){
//1在上向上运动,6在下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入6
return;
}
else{
ele[1].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[1].EleAct2();
return;
}
}
}
else if((((i)==1)||((i)==4)||((i)==9)||((i)==14)||((i)==19)||((i)==24)||((i)==29)||((i)==34)||((i)==39)||((i)==44)||((i)==49)||((i)==54))&&((!(eui.getShielding()[2]))||(!(eui.getShielding()[5])))){
/*如果该请求按规则是在第一台电梯和第六台电梯*/
if(con.getRequest(i)[j].direction==1){//请求向上
if(eui.getShielding()[2]){
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();
return;
}
else if(eui.getShielding()[5]){
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();
return;
}
else if(((i+1)>=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==1)||(ele[2].getMoveStatus()==0))&&(ele[2].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动且第两部电梯没有满载
if(((i+1)-ele[2].getCurrFloor())>((i+1)-ele[5].getCurrFloor())){
//第一部比第六部离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//将请求写入第六部电梯内
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//将请求写入第一部电梯中
return;
}
}
else if(((i+1)>=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==1)||(ele[2].getMoveStatus()==0))&&(ele[2].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()==1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第六部电梯满载
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//将请求写入第一部电梯
return;
}
else if(((i+1)>=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==1)||(ele[2].getMoveStatus()==0))&&(ele[2].ifFull()==1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第一部电梯满载
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//将请求写入第六部电梯
return;
}
else if(((i+1)>=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==1)||(ele[2].getMoveStatus()==0))&&((i+1)>=(ele[5].getCurrFloor()))&&(ele[5].getMoveDirection()==-1)){
//第一和第六部电梯都在请求下,但电梯六的运动方向是向下
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//将请求写到第一部电梯内
return;
}
else if(((i+1)>=(ele[2].getCurrFloor()))&&(ele[2].getMoveDirection()==-1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))){
//第一和第六部电梯都在请求下,但电梯一的运动方向是向下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//将请求写到第六部电梯内
return;
}
else if(((i+1)>=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==1)||(ele[2].getMoveStatus()==0))&&(ele[2].ifFull()!=1)&&((i+1)<(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()!=0))) {
//第一部电梯在请求下且向上运动或者不运动,但第六部电梯在请求上
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//将请求写入第一部电梯内
return;
}
else if(((i+1)<(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()!=0))&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,但第一部电梯在请求上
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//将请求写入第六部电梯内
return;
}
else if(((i+1)>=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==1)||(ele[2].getMoveStatus()==0))&&(ele[2].ifFull()!=1)&&((i+1)<(ele[5].getCurrFloor()))&&((ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第一部电梯在请求下且向上运动或者不运动,第六部电梯在请求上但不运动
if(((i+1)-ele[2].getCurrFloor())>(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//请求写入第六部电梯内
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//电梯写入第一部电梯内
}
}
else if(((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)&&((i+1)<(ele[2].getCurrFloor()))&&((ele[2].getMoveStatus()==0))&&(ele[2].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,第一部电梯在请求上但不运动
if(((i+1)-ele[2].getCurrFloor())>(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//请求写入第六部电梯内
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//电梯写入第一部电梯内
return;
}
}
/********************************************************************************************************************/
else if(((i+1)<ele[2].getCurrFloor())&&(ele[2].getMoveStatus()==0)&&((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)){
//电梯1,6都在请求上,但是都不运动
if((ele[2].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯六
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯1
return;
}
}
else if(((i+1)<ele[2].getCurrFloor())&&(ele[2].getMoveStatus()==0)&&((i+1)<ele[5].getCurrFloor())){
//都在上面,但只有电梯1在不运动
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯一
return;
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)&&((i+1)<ele[2].getCurrFloor())){
//都在上面,但只有电梯6在不运动
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯6
return;
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()!=0)&&((i+1)<ele[2].getCurrFloor())&&(ele[2].getMoveStatus()!=0)){
//都在上且都在运动
if((ele[5].getMoveStatus()==1)&&(ele[2].getMoveStatus()==1)){
//都在向上运动
if((ele[2].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯六
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯1
return;
}
}
else if((ele[5].getMoveStatus()==-1)&&(ele[2].getMoveStatus()==-1)){
//都在向下运动
if((ele[2].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯一
return;
}
else {
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯六
return;
}
}
else if((ele[5].getMoveStatus()==1)&&(ele[2].getMoveStatus()==-1)){
//六上一下
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯1
return;
}
else{
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯6
return;
}
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==-1)&&((i+1)>ele[2].getCurrFloor())&&(ele[2].getMoveStatus()==-1)){
//都在下且都在向下运动
if(((i+1)-ele[2].getCurrFloor())<((i+1)-ele[5].getCurrFloor())){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯6
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入电梯1
return;
}
}
else if(((i+1)<ele[2].getCurrFloor())&&(ele[2].getMoveStatus()==1)&&((i+1)>ele[5].getCurrFloor())){
//1在上向上运动,6在下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();//写入6
return;
}
else{
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();
return;
}
}
if(re[i][j].direction==-1){//请求向下
if(eui.getShielding()[2]){
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();
return;
}
else if(eui.getShielding()[5]){
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct();
return;
}
else if(((i+1)<=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==-1)||(ele[2].getMoveStatus()==0))&&(ele[2].ifFull()!=1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼的电梯没有运动且第两部电梯没有满载
if(((i+1)-ele[2].getCurrFloor())<((i+1)-ele[5].getCurrFloor())){
//第一部比第六部离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯内
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//将请求写入第一部电梯中
return;
}
}
else if(((i+1)<=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==-1)||(ele[2].getMoveStatus()==0))&&(ele[2].ifFull()!=1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()==1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第六部电梯满载
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//将请求写入第一部电梯
return;
}
else if(((i+1)<=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==-1)||(ele[2].getMoveStatus()==0))&&(ele[2].ifFull()==1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第一部电梯满载
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯
return;
}
else if(((i+1)<=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==-1)||(ele[2].getMoveStatus()==0))&&((i+1)<=(ele[5].getCurrFloor()))&&(ele[5].getMoveDirection()==1)){
//第一和第六部电梯都在请求下,但电梯六的运动方向是向下
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//将请求写到第一部电梯内
return;
}
else if(((i+1)<=(ele[2].getCurrFloor()))&&(ele[2].getMoveDirection()==1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))){
//第一和第六部电梯都在请求下,但电梯一的运动方向是向下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写到第六部电梯内
return;
}
else if(((i+1)<=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==-1)||(ele[2].getMoveStatus()==0))&&(ele[2].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()!=0))) {
//第一部电梯在请求下且向上运动或者不运动,但第六部电梯在请求上
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//将请求写入第一部电梯内
return;
}
else if(((i+1)>(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()!=0))&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,但第一部电梯在请求上
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯内
return;
}
else if(((i+1)<=(ele[2].getCurrFloor()))&&((ele[2].getMoveDirection()==-1)||(ele[2].getMoveStatus()==0))&&(ele[2].ifFull()!=1)&&((i+1)>(ele[5].getCurrFloor()))&&((ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第一部电梯在请求下且向上运动或者不运动,第六部电梯在请求上但不运动
if(((i+1)-ele[2].getCurrFloor())<(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//请求写入第六部电梯内
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//电梯写入第一部电梯内
}
}
else if(((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)&&((i+1)>(ele[2].getCurrFloor()))&&((ele[2].getMoveStatus()==0))&&(ele[2].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,第一部电梯在请求上但不运动
if(((i+1)-ele[2].getCurrFloor())<(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//请求写入第六部电梯内
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//电梯写入第一部电梯内
return;
}
}
/********************************************************************************************************************/
else if(((i+1)>ele[2].getCurrFloor())&&(ele[2].getMoveStatus()==0)&&((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)){
//电梯1,6都在请求上,但是都不运动
if((ele[2].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//写入电梯1
return;
}
}
else if(((i+1)>ele[2].getCurrFloor())&&(ele[2].getMoveStatus()==0)&&((i+1)>ele[5].getCurrFloor())){
//都在上面,但只有电梯1在不运动
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//写入电梯一
return;
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)&&((i+1)>ele[2].getCurrFloor())){
//都在上面,但只有电梯6在不运动
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()!=0)&&((i+1)>ele[2].getCurrFloor())&&(ele[2].getMoveStatus()!=0)){
//都在上且都在运动
if((ele[5].getMoveStatus()==-1)&&(ele[2].getMoveStatus()==-1)){
//都在向上运动
if((ele[2].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//写入电梯1
return;
}
}
else if((ele[5].getMoveStatus()==1)&&(ele[2].getMoveStatus()==1)){
//都在向下运动
if((ele[2].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//写入电梯一
return;
}
else {
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
}
else if((ele[5].getMoveStatus()==-1)&&(ele[2].getMoveStatus()==1)){
//六上一下
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//写入电梯1
return;
}
else{
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==1)&&((i+1)<ele[2].getCurrFloor())&&(ele[2].getMoveStatus()==1)){
//都在下且都在向下运动
if(((i+1)-ele[2].getCurrFloor())>((i+1)-ele[5].getCurrFloor())){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
else {
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();//写入电梯1
return;
}
}
else if(((i+1)>ele[2].getCurrFloor())&&(ele[2].getMoveStatus()==-1)&&((i+1)<ele[5].getCurrFloor())){
//1在上向上运动,6在下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入6
return;
}
else{
ele[2].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[2].EleAct2();
return;
}
}
}
else if((((i)==1)||((i)==5)||((i)==10)||((i)==15)||((i)==20)||((i)==25)||((i)==30)||((i)==35)||((i)==40)||((i)==45)||((i)==50)||((i)==55))&&((!(eui.getShielding()[3]))||(!(eui.getShielding()[5])))){
/*如果该请求按规则是在第一台电梯和第六台电梯*/
if(con.getRequest(i)[j].direction==1){//请求向上
if(eui.getShielding()[3]){
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();
return;
}
else if(eui.getShielding()[5]){
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();
return;
}
else if(((i+1)>=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==1)||(ele[3].getMoveStatus()==0))&&(ele[3].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动且第两部电梯没有满载
if(((i+1)-ele[3].getCurrFloor())>((i+1)-ele[5].getCurrFloor())){
//第一部比第六部离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//将请求写入第六部电梯内
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//将请求写入第一部电梯中
return;
}
}
else if(((i+1)>=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==1)||(ele[3].getMoveStatus()==0))&&(ele[3].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()==1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第六部电梯满载
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//将请求写入第一部电梯
return;
}
else if(((i+1)>=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==1)||(ele[3].getMoveStatus()==0))&&(ele[3].ifFull()==1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第一部电梯满载
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//将请求写入第六部电梯
return;
}
else if(((i+1)>=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==1)||(ele[3].getMoveStatus()==0))&&((i+1)>=(ele[5].getCurrFloor()))&&(ele[5].getMoveDirection()==-1)){
//第一和第六部电梯都在请求下,但电梯六的运动方向是向下
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//将请求写到第一部电梯内
return;
}
else if(((i+1)>=(ele[3].getCurrFloor()))&&(ele[3].getMoveDirection()==-1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))){
//第一和第六部电梯都在请求下,但电梯一的运动方向是向下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//将请求写到第六部电梯内
return;
}
else if(((i+1)>=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==1)||(ele[3].getMoveStatus()==0))&&(ele[3].ifFull()!=1)&&((i+1)<(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()!=0))) {
//第一部电梯在请求下且向上运动或者不运动,但第六部电梯在请求上
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//将请求写入第一部电梯内
return;
}
else if(((i+1)<(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()!=0))&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,但第一部电梯在请求上
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//将请求写入第六部电梯内
return;
}
else if(((i+1)>=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==1)||(ele[3].getMoveStatus()==0))&&(ele[3].ifFull()!=1)&&((i+1)<(ele[5].getCurrFloor()))&&((ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第一部电梯在请求下且向上运动或者不运动,第六部电梯在请求上但不运动
if(((i+1)-ele[3].getCurrFloor())>(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//请求写入第六部电梯内
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//电梯写入第一部电梯内
}
}
else if(((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)&&((i+1)<(ele[3].getCurrFloor()))&&((ele[3].getMoveStatus()==0))&&(ele[3].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,第一部电梯在请求上但不运动
if(((i+1)-ele[3].getCurrFloor())>(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//请求写入第六部电梯内
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//电梯写入第一部电梯内
return;
}
}
/********************************************************************************************************************/
else if(((i+1)<ele[3].getCurrFloor())&&(ele[3].getMoveStatus()==0)&&((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)){
//电梯1,6都在请求上,但是都不运动
if((ele[3].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯六
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯1
return;
}
}
else if(((i+1)<ele[3].getCurrFloor())&&(ele[3].getMoveStatus()==0)&&((i+1)<ele[5].getCurrFloor())){
//都在上面,但只有电梯1在不运动
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯一
return;
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)&&((i+1)<ele[3].getCurrFloor())){
//都在上面,但只有电梯6在不运动
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯6
return;
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()!=0)&&((i+1)<ele[3].getCurrFloor())&&(ele[3].getMoveStatus()!=0)){
//都在上且都在运动
if((ele[5].getMoveStatus()==1)&&(ele[3].getMoveStatus()==1)){
//都在向上运动
if((ele[3].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯六
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯1
return;
}
}
else if((ele[5].getMoveStatus()==-1)&&(ele[3].getMoveStatus()==-1)){
//都在向下运动
if((ele[3].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯一
return;
}
else {
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯六
return;
}
}
else if((ele[5].getMoveStatus()==1)&&(ele[3].getMoveStatus()==-1)){
//六上一下
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯1
return;
}
else{
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯6
return;
}
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==-1)&&((i+1)>ele[3].getCurrFloor())&&(ele[3].getMoveStatus()==-1)){
//都在下且都在向下运动
if(((i+1)-ele[3].getCurrFloor())<((i+1)-ele[5].getCurrFloor())){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯6
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入电梯1
return;
}
}
else if(((i+1)<ele[3].getCurrFloor())&&(ele[3].getMoveStatus()==1)&&((i+1)>ele[5].getCurrFloor())){
//1在上向上运动,6在下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();//写入6
return;
}
else{
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();
return;
}
}
if(re[i][j].direction==-1){//请求向下
if(eui.getShielding()[3]){
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();
return;
}
else if(eui.getShielding()[5]){
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct();
return;
}
else if(((i+1)<=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==-1)||(ele[3].getMoveStatus()==0))&&(ele[3].ifFull()!=1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼的电梯没有运动且第两部电梯没有满载
if(((i+1)-ele[3].getCurrFloor())<((i+1)-ele[5].getCurrFloor())){
//第一部比第六部离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯内
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//将请求写入第一部电梯中
return;
}
}
else if(((i+1)<=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==-1)||(ele[3].getMoveStatus()==0))&&(ele[3].ifFull()!=1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()==1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第六部电梯满载
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//将请求写入第一部电梯
return;
}
else if(((i+1)<=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==-1)||(ele[3].getMoveStatus()==0))&&(ele[3].ifFull()==1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第一部电梯满载
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯
return;
}
else if(((i+1)<=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==-1)||(ele[3].getMoveStatus()==0))&&((i+1)<=(ele[5].getCurrFloor()))&&(ele[5].getMoveDirection()==1)){
//第一和第六部电梯都在请求下,但电梯六的运动方向是向下
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//将请求写到第一部电梯内
return;
}
else if(((i+1)<=(ele[3].getCurrFloor()))&&(ele[3].getMoveDirection()==1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))){
//第一和第六部电梯都在请求下,但电梯一的运动方向是向下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写到第六部电梯内
return;
}
else if(((i+1)<=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==-1)||(ele[3].getMoveStatus()==0))&&(ele[3].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()!=0))) {
//第一部电梯在请求下且向上运动或者不运动,但第六部电梯在请求上
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//将请求写入第一部电梯内
return;
}
else if(((i+1)>(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()!=0))&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,但第一部电梯在请求上
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯内
return;
}
else if(((i+1)<=(ele[3].getCurrFloor()))&&((ele[3].getMoveDirection()==-1)||(ele[3].getMoveStatus()==0))&&(ele[3].ifFull()!=1)&&((i+1)>(ele[5].getCurrFloor()))&&((ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第一部电梯在请求下且向上运动或者不运动,第六部电梯在请求上但不运动
if(((i+1)-ele[3].getCurrFloor())<(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//请求写入第六部电梯内
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//电梯写入第一部电梯内
}
}
else if(((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)&&((i+1)>(ele[3].getCurrFloor()))&&((ele[3].getMoveStatus()==0))&&(ele[3].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,第一部电梯在请求上但不运动
if(((i+1)-ele[3].getCurrFloor())<(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//请求写入第六部电梯内
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//电梯写入第一部电梯内
return;
}
}
/********************************************************************************************************************/
else if(((i+1)>ele[3].getCurrFloor())&&(ele[3].getMoveStatus()==0)&&((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)){
//电梯1,6都在请求上,但是都不运动
if((ele[3].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//写入电梯1
return;
}
}
else if(((i+1)>ele[3].getCurrFloor())&&(ele[3].getMoveStatus()==0)&&((i+1)>ele[5].getCurrFloor())){
//都在上面,但只有电梯1在不运动
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//写入电梯一
return;
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)&&((i+1)>ele[3].getCurrFloor())){
//都在上面,但只有电梯6在不运动
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()!=0)&&((i+1)>ele[3].getCurrFloor())&&(ele[3].getMoveStatus()!=0)){
//都在上且都在运动
if((ele[5].getMoveStatus()==-1)&&(ele[3].getMoveStatus()==-1)){
//都在向上运动
if((ele[3].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//写入电梯1
return;
}
}
else if((ele[5].getMoveStatus()==1)&&(ele[3].getMoveStatus()==1)){
//都在向下运动
if((ele[3].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//写入电梯一
return;
}
else {
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
}
else if((ele[5].getMoveStatus()==-1)&&(ele[3].getMoveStatus()==1)){
//六上一下
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//写入电梯1
return;
}
else{
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==1)&&((i+1)<ele[3].getCurrFloor())&&(ele[3].getMoveStatus()==1)){
//都在下且都在向下运动
if(((i+1)-ele[3].getCurrFloor())>((i+1)-ele[5].getCurrFloor())){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
else {
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();//写入电梯1
return;
}
}
else if(((i+1)>ele[3].getCurrFloor())&&(ele[3].getMoveStatus()==-1)&&((i+1)<ele[5].getCurrFloor())){
//1在上向上运动,6在下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入6
return;
}
else{
ele[3].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[3].EleAct2();
return;
}
}
}
else if((((i)==1)||((i)==6)||((i)==11)||((i)==16)||((i)==21)||((i)==26)||((i)==31)||((i)==36)||((i)==41)||((i)==46)||((i)==51)||((i)==56))&&((!(eui.getShielding()[4]))||(!(eui.getShielding()[5])))){
/*如果该请求按规则是在第一台电梯和第六台电梯*/
if(con.getRequest(i)[j].direction==1){//请求向上
if(eui.getShielding()[4]){
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();
return;
}
else if(eui.getShielding()[5]){
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();
return;
}
else if(((i+1)>=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==1)||(ele[4].getMoveStatus()==0))&&(ele[4].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动且第两部电梯没有满载
if(((i+1)-ele[4].getCurrFloor())>((i+1)-ele[5].getCurrFloor())){
//第一部比第六部离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//将请求写入第六部电梯内
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//将请求写入第一部电梯中
return;
}
}
else if(((i+1)>=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==1)||(ele[4].getMoveStatus()==0))&&(ele[4].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()==1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第六部电梯满载
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//将请求写入第一部电梯
return;
}
else if(((i+1)>=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==1)||(ele[4].getMoveStatus()==0))&&(ele[4].ifFull()==1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第一部电梯满载
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//将请求写入第六部电梯
return;
}
else if(((i+1)>=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==1)||(ele[4].getMoveStatus()==0))&&((i+1)>=(ele[5].getCurrFloor()))&&(ele[5].getMoveDirection()==-1)){
//第一和第六部电梯都在请求下,但电梯六的运动方向是向下
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//将请求写到第一部电梯内
return;
}
else if(((i+1)>=(ele[4].getCurrFloor()))&&(ele[4].getMoveDirection()==-1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))){
//第一和第六部电梯都在请求下,但电梯一的运动方向是向下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//将请求写到第六部电梯内
return;
}
else if(((i+1)>=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==1)||(ele[4].getMoveStatus()==0))&&(ele[4].ifFull()!=1)&&((i+1)<(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()!=0))) {
//第一部电梯在请求下且向上运动或者不运动,但第六部电梯在请求上
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//将请求写入第一部电梯内
return;
}
else if(((i+1)<(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()!=0))&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,但第一部电梯在请求上
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//将请求写入第六部电梯内
return;
}
else if(((i+1)>=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==1)||(ele[4].getMoveStatus()==0))&&(ele[4].ifFull()!=1)&&((i+1)<(ele[5].getCurrFloor()))&&((ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第一部电梯在请求下且向上运动或者不运动,第六部电梯在请求上但不运动
if(((i+1)-ele[4].getCurrFloor())>(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//请求写入第六部电梯内
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//电梯写入第一部电梯内
}
}
else if(((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)&&((i+1)<(ele[4].getCurrFloor()))&&((ele[4].getMoveStatus()==0))&&(ele[4].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,第一部电梯在请求上但不运动
if(((i+1)-ele[4].getCurrFloor())>(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//请求写入第六部电梯内
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//电梯写入第一部电梯内
return;
}
}
/********************************************************************************************************************/
else if(((i+1)<ele[4].getCurrFloor())&&(ele[4].getMoveStatus()==0)&&((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)){
//电梯1,6都在请求上,但是都不运动
if((ele[4].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯六
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯1
return;
}
}
else if(((i+1)<ele[4].getCurrFloor())&&(ele[4].getMoveStatus()==0)&&((i+1)<ele[5].getCurrFloor())){
//都在上面,但只有电梯1在不运动
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯一
return;
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)&&((i+1)<ele[4].getCurrFloor())){
//都在上面,但只有电梯6在不运动
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯6
return;
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()!=0)&&((i+1)<ele[4].getCurrFloor())&&(ele[4].getMoveStatus()!=0)){
//都在上且都在运动
if((ele[5].getMoveStatus()==1)&&(ele[4].getMoveStatus()==1)){
//都在向上运动
if((ele[4].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯六
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯1
return;
}
}
else if((ele[5].getMoveStatus()==-1)&&(ele[4].getMoveStatus()==-1)){
//都在向下运动
if((ele[4].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯一
return;
}
else {
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯六
return;
}
}
else if((ele[5].getMoveStatus()==1)&&(ele[4].getMoveStatus()==-1)){
//六上一下
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯1
return;
}
else{
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯6
return;
}
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==-1)&&((i+1)>ele[4].getCurrFloor())&&(ele[4].getMoveStatus()==-1)){
//都在下且都在向下运动
if(((i+1)-ele[4].getCurrFloor())<((i+1)-ele[5].getCurrFloor())){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯6
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入电梯1
return;
}
}
else if(((i+1)<ele[4].getCurrFloor())&&(ele[4].getMoveStatus()==1)&&((i+1)>ele[5].getCurrFloor())){
//1在上向上运动,6在下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();//写入6
return;
}
else{
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();
return;
}
}
if(re[i][j].direction==-1){//请求向下
if(eui.getShielding()[4]){
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct();
return;
}
else if(eui.getShielding()[5]){
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct();
return;
}
else if(((i+1)<=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==-1)||(ele[4].getMoveStatus()==0))&&(ele[4].ifFull()!=1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼的电梯没有运动且第两部电梯没有满载
if(((i+1)-ele[4].getCurrFloor())<((i+1)-ele[5].getCurrFloor())){
//第一部比第六部离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯内
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//将请求写入第一部电梯中
return;
}
}
else if(((i+1)<=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==-1)||(ele[4].getMoveStatus()==0))&&(ele[4].ifFull()!=1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()==1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第六部电梯满载
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//将请求写入第一部电梯
return;
}
else if(((i+1)<=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==-1)||(ele[4].getMoveStatus()==0))&&(ele[4].ifFull()==1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)){
//第一部和第六部电梯都和请求同向或者在请求楼下的电梯没有运动但第一部电梯满载
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯
return;
}
else if(((i+1)<=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==-1)||(ele[4].getMoveStatus()==0))&&((i+1)<=(ele[5].getCurrFloor()))&&(ele[5].getMoveDirection()==1)){
//第一和第六部电梯都在请求下,但电梯六的运动方向是向下
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//将请求写到第一部电梯内
return;
}
else if(((i+1)<=(ele[4].getCurrFloor()))&&(ele[4].getMoveDirection()==1)&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))){
//第一和第六部电梯都在请求下,但电梯一的运动方向是向下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写到第六部电梯内
return;
}
else if(((i+1)<=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==-1)||(ele[4].getMoveStatus()==0))&&(ele[4].ifFull()!=1)&&((i+1)>=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()!=0))) {
//第一部电梯在请求下且向上运动或者不运动,但第六部电梯在请求上
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//将请求写入第一部电梯内
return;
}
else if(((i+1)>(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()!=0))&&((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,但第一部电梯在请求上
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//将请求写入第六部电梯内
return;
}
else if(((i+1)<=(ele[4].getCurrFloor()))&&((ele[4].getMoveDirection()==-1)||(ele[4].getMoveStatus()==0))&&(ele[4].ifFull()!=1)&&((i+1)>(ele[5].getCurrFloor()))&&((ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)) {
//第一部电梯在请求下且向上运动或者不运动,第六部电梯在请求上但不运动
if(((i+1)-ele[4].getCurrFloor())<(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//请求写入第六部电梯内
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//电梯写入第一部电梯内
}
}
else if(((i+1)<=(ele[5].getCurrFloor()))&&((ele[5].getMoveDirection()==-1)||(ele[5].getMoveStatus()==0))&&(ele[5].ifFull()!=1)&&((i+1)>(ele[4].getCurrFloor()))&&((ele[4].getMoveStatus()==0))&&(ele[4].ifFull()!=1)) {
//第六部电梯在请求下且向上运动或者不运动,第一部电梯在请求上但不运动
if(((i+1)-ele[4].getCurrFloor())<(ele[5].getCurrFloor()-(i+1))){
//第一部电梯离得更远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//请求写入第六部电梯内
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//电梯写入第一部电梯内
return;
}
}
/********************************************************************************************************************/
else if(((i+1)>ele[4].getCurrFloor())&&(ele[4].getMoveStatus()==0)&&((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)){
//电梯1,6都在请求上,但是都不运动
if((ele[4].getCurrFloor()-(i+1))<(ele[5].getCurrFloor()-(i+1))){
//电梯1离得远
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//写入电梯1
return;
}
}
else if(((i+1)>ele[4].getCurrFloor())&&(ele[4].getMoveStatus()==0)&&((i+1)>ele[5].getCurrFloor())){
//都在上面,但只有电梯1在不运动
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//写入电梯一
return;
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==0)&&((i+1)>ele[4].getCurrFloor())){
//都在上面,但只有电梯6在不运动
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
else if(((i+1)>ele[5].getCurrFloor())&&(ele[5].getMoveStatus()!=0)&&((i+1)>ele[4].getCurrFloor())&&(ele[4].getMoveStatus()!=0)){
//都在上且都在运动
if((ele[5].getMoveStatus()==-1)&&(ele[4].getMoveStatus()==-1)){
//都在向上运动
if((ele[4].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//写入电梯1
return;
}
}
else if((ele[5].getMoveStatus()==1)&&(ele[4].getMoveStatus()==1)){
//都在向下运动
if((ele[4].getCurrFloor()-(i+1))>(ele[5].getCurrFloor()-(i+1))){
//电梯1离得近
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//写入电梯一
return;
}
else {
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯六
return;
}
}
else if((ele[5].getMoveStatus()==-1)&&(ele[4].getMoveStatus()==1)){
//六上一下
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//写入电梯1
return;
}
else{
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
}
else if(((i+1)<ele[5].getCurrFloor())&&(ele[5].getMoveStatus()==1)&&((i+1)<ele[4].getCurrFloor())&&(ele[4].getMoveStatus()==1)){
//都在下且都在向下运动
if(((i+1)-ele[4].getCurrFloor())>((i+1)-ele[5].getCurrFloor())){
//电梯1离得近
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入电梯6
return;
}
else {
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();//写入电梯1
return;
}
}
else if(((i+1)>ele[4].getCurrFloor())&&(ele[4].getMoveStatus()==-1)&&((i+1)<ele[5].getCurrFloor())){
//1在上向上运动,6在下
ele[5].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[5].EleAct2();//写入6
return;
}
else{
ele[4].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[4].EleAct2();
return;
}
}
}
}
else if ((!(*(eui.getIsbusy())))&&(!(eui.getShielding()[j]))) {//电梯此时为闲,且该部电梯没有被屏蔽
int temp[6]={0},min=-1;
if(con.getRequest(i)[j].direction==1){//请求方向向上
for (int k=0;k<6;k++) {
if(((i+1)>=(ele[k].getCurrFloor()))&&((ele[k].getMoveDirection()==1)||(ele[k].getMoveDirection()==0))&&((((i+1)-ele[k].getCurrFloor())<6))&&(!(eui.getShielding()[k]))){//有与请求同向且在五层以内的电梯或在请求下的电梯
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())<((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct();
return;//写入最近的电梯
}
for (int k=0;k<6;k++) {
if((i+1)>=(ele[k].getCurrFloor())&&((ele[k].getMoveDirection()==1)||(ele[k].getMoveDirection()==0))&&(!(eui.getShielding()[k]))){//有与请求同向的电梯或在请求下的电梯
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())<((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct();//写入最近的电梯
return;
}
for (int k=0;k<6;k++) {
if((i+1)<(ele[k].getCurrFloor())&&((ele[k].getMoveDirection()==0))&&(((ele[k].getCurrFloor()-(i+1))<6))&&(!(eui.getShielding()[k]))){//有电梯在请求上且在5楼内但没有运动的
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())>((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct();//写入最近的电梯
return;
}
for (int k=0;k<6;k++) {
if((i+1)<(ele[k].getCurrFloor())&&((ele[k].getMoveDirection()==0))&&(!(eui.getShielding()[k]))){//有电梯在请求上但没有运动的
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())>((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct();//写入最近的电梯
return;
}
for (int k=0;k<6;k++) {
if(((ele[k].getMoveDirection()==-1))&&(!(eui.getShielding()[k]))){//有电梯向下运动
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())>((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct();//写入最先到达底楼的电梯
return;
}
for (int k=0;k<6;k++) {
if(((ele[k].getMoveDirection()==1))&&(!(eui.getShielding()[k]))){//所有电梯向上运动
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())<((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct();//写入最先到达顶楼的电梯
return;
}
}
else if(con.getRequest(i)[j].direction==-1){//请求方向向下
for (int k=0;k<6;k++) {
if((i+1)<=(ele[k].getCurrFloor())&&((ele[k].getMoveDirection()==-1)||(ele[k].getMoveDirection()==0))&&((((i+1)-ele[k].getCurrFloor())>-6))&&(!(eui.getShielding()[k]))){//有与请求同向且在五层以内的电梯或在请求下的电梯
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())>((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct2();//写入最近的电梯
return;
}
for (int k=0;k<6;k++) {
if((i+1)<=(ele[k].getCurrFloor())&&((ele[k].getMoveDirection()==-1)||(ele[k].getMoveDirection()==0))&&(!(eui.getShielding()[k]))){//有与请求同向的电梯或在请求下的电梯
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())>((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct2();//写入最近的电梯
return;
}
for (int k=0;k<6;k++) {
if((i+1)>(ele[k].getCurrFloor())&&((ele[k].getMoveDirection()==0))&&(((ele[k].getCurrFloor()-(i+1))<-6))&&(!(eui.getShielding()[k]))){//有电梯在请求上且在5楼内但没有运动的
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())<((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct2();//写入最近的电梯
return;
}
for (int k=0;k<6;k++) {
if((i+1)>(ele[k].getCurrFloor())&&((ele[k].getMoveDirection()==0))&&(!(eui.getShielding()[k]))){//有电梯在请求上但没有运动的
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())<((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct2();//写入最近的电梯
return;
}
for (int k=0;k<6;k++) {
if(((ele[k].getMoveDirection()==-1))&&(!(eui.getShielding()[k]))){//有电梯向下运动
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())<((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct2();//写入最先到达底楼的电梯
return;
}
for (int k=0;k<6;k++) {
if(((ele[k].getMoveDirection()==1))&&(!(eui.getShielding()[k]))){//所有电梯向上运动
temp[k]=1;
if(min==-1){
min=k;
}
}
}
for (int k=0;k<6;k++) {
if(temp[k]==1){
if(((i+1)-ele[k].getCurrFloor())>((i+1)-ele[min].getCurrFloor())){
min=k;
}
}
}
if(min!=-1){
ele[min].setPassCurrFloor(i);con.getRequest(i)[j].direction=0;ele[min].EleAct2();//写入最先到达顶楼的电梯
return;
}
}
}
}
}
}
}
/*
* 功能:返回控制对象特殊位;
* 输入参数:无
* 输出参数:控制对象的特殊位地址
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
bool* myMainWindow::getEmergen(){
return &emergency;
}
/*
* 功能:返回控制对象屏蔽位数组;
* 输入参数:无
* 输出参数:控制对象的屏蔽位数组的地址
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
bool* myMainWindow::getShielding(){
return shielding;
}
/*
* 功能:返回控制对象忙闲;
* 输入参数:无
* 输出参数:控制对象的忙闲的地址
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/15
*/
bool* myMainWindow::getIsbusy(){
return &isbusy;
}
/*
* 功能:出现特殊情况时,对所有电梯进行操作(如果电梯没有运作,对该电梯的所有请求进行屏蔽,如果该电梯在运行,则控制电梯运动
* 到同向最近楼层,然后开门,然后关门,并屏蔽请求);
* 输入参数:无
* 输出参数:无
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/18; 2021/7/23
*/
void myMainWindow::on_emergencyclicked()
{
int m=1;
if(!(emergency)){//如果特殊情况按钮被按下
emergency=true;
for (int i=0;i<6;i++) {//对所有电梯进行操作
if(el[i].getMoveStatus()){//如果电梯在运作
if(el[i].getMoveDirection()){//如果电梯在向上运动
el[i].incrementFloor();//电梯上一次楼层
el[i].door(m);//开门,让电梯内乘客下电梯
el[i].setMoveStatus(0);
shielding[i]=true;//屏蔽掉电梯的请求
if(i==0){
ui->elevator1->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==1) {
ui->elevotar2->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==2) {
ui->elevotar3->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==3) {
ui->elevotar4->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==4) {
ui->elevotar5->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==5) {
ui->elevator6->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
}
else if(!(el[i].getMoveDirection())){//如果电梯在向下运动
el[i].decrementFloor();//电梯下一次楼层
el[i].door(m);//开门,让电梯内乘客下电梯
shielding[i]=true;//屏蔽掉电梯的请求
if(i==0){
ui->elevator1->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==1) {
ui->elevotar2->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==2) {
ui->elevotar3->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==3) {
ui->elevotar4->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==4) {
ui->elevotar5->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==5) {
ui->elevator6->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
}
}
else if(!(el[i].getMoveStatus())){//如果电梯没有运作
shielding[i]=true;//屏蔽掉电梯的请求
if(i==0){
ui->elevator1->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==1) {
ui->elevotar2->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==2) {
ui->elevotar3->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==3) {
ui->elevotar4->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==4) {
ui->elevotar5->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
else if (i==5) {
ui->elevator6->setText("特殊情况,禁止使用");//在界面上显示禁用信息
}
}
}
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "发生特殊情况,电梯全部不运行"<<"\n";
file.close();
}
else if (emergency) {//特殊情况过去了,管理员再次点击按钮,使特殊情况解除
emergency=false;
for (int i=0;i<6;i++) {
shielding[i]=false;//请求不再被屏蔽
if(i==0){
ui->elevator1->setText(" ");//在界面上显示禁用信息取消
}
else if (i==1) {
ui->elevotar2->setText(" ");//在界面上显示禁用信息取消
}
else if (i==2) {
ui->elevotar3->setText(" ");//在界面上显示禁用信息取消
}
else if (i==3) {
ui->elevotar4->setText(" ");//在界面上显示禁用信息取消
}
else if (i==4) {
ui->elevotar5->setText(" ");//在界面上显示禁用信息取消
}
else if (i==5) {
ui->elevator6->setText(" ");//在界面上显示禁用信息取消
}
}
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "特殊情况解除,电梯恢复运行"<<"\n";
file.close();
}
}
/*
* 功能:管理人员根据需求点击电梯1的停用按钮后,判断停用位,是真就将其设置为false,是假将其设为true,并调用停用函数。
* 输入参数:无
* 输出参数:无
* 作者:冯相汉 Update:刘宇涵 Update:刘宇涵
* 时间:2021/7/18; 2021/7/23
*/
void myMainWindow::on_diable1clicked()
{
if(shielding[0]){//如果停用时间已过,管理人员再次按下停用按钮,就取消请用
shielding[0]=false;//请求屏蔽解除
getUi()->diable1->setText(" ");//界面显示停用信息取消
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯1停用解除"<<"\n";
file.close();
return;
}
else if(!(shielding[0])){//管理人员按下停用按钮,就停用相应的电梯
shielding[0]=true;//请求屏蔽
getUi()->diable1->setText("电梯1已经被停用");//界面显示停用信息
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯1被停用"<<"\n";
file.close();
return;
}
}
/*
* 功能:管理人员根据需求点击电梯2的停用按钮后,判断停用位,是真就将其设置为false,是假将其设为true,并调用停用函数。
* 输入参数:无
* 输出参数:无
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/18; 2021/7/23
*/
void myMainWindow::on_disable2clicked()
{
if(shielding[1]){//如果停用时间已过,管理人员再次按下停用按钮,就取消请用
shielding[1]=false;//请求屏蔽解除
getUi()->disable2->setText(" ");//界面显示停用信息取消
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯2停用解除"<<"\n";
file.close();
}
else if(!(shielding[1])){//管理人员按下停用按钮,就停用相应的电梯
shielding[1]=true;//请求屏蔽
getUi()->disable2->setText("电梯2已经被停用");//界面显示停用信息
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯2被停用"<<"\n";
file.close();
}
}
/*
* 功能:管理人员根据需求点击电梯3的停用按钮后,判断停用位,是真就将其设置为false,是假将其设为true,并调用停用函数。
* 输入参数:无
* 输出参数:无
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/18; 2021/7/23
*/
void myMainWindow::on_disable3clicked()
{
if(shielding[2]){//如果停用时间已过,管理人员再次按下停用按钮,就取消请用
shielding[2]=false;//请求屏蔽解除
getUi()->disable3->setText(" ");//界面显示停用信息取消
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯3停用解除"<<"\n";
file.close();
}
else if(!(shielding[2])){//管理人员按下停用按钮,就停用相应的电梯
shielding[2]=true;//请求屏蔽
getUi()->disable3->setText("电梯3已经被停用");//界面显示停用信息
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯3被停用"<<"\n";
file.close();
}
}
/*
* 功能:管理人员根据需求点击电梯4的停用按钮后,判断停用位,是真就将其设置为false,是假将其设为true,并调用停用函数。
* 输入参数:无
* 输出参数:无
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/18; 2021/7/23
*/
void myMainWindow::on_disable4clicked()
{
if(shielding[3]){//如果停用时间已过,管理人员再次按下停用按钮,就取消请用
shielding[3]=false;//请求屏蔽解除
getUi()->disable4->setText(" ");//界面显示停用信息取消
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯4停用解除"<<"\n";
file.close();
}
else if(!(shielding[3])){//管理人员按下停用按钮,就停用相应的电梯
shielding[3]=true;//请求屏蔽
getUi()->disable4->setText("电梯4已经被停用");//界面显示停用信息
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯4被停用"<<"\n";
file.close();
}
}
/*
* 功能:管理人员根据需求点击电梯5的停用按钮后,判断停用位,是真就将其设置为false,是假将其设为true,并调用停用函数。
* 输入参数:无
* 输出参数:无
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/18; 2021/7/23
*/
void myMainWindow::on_disable5clicked()
{
if(shielding[4]){//如果停用时间已过,管理人员再次按下停用按钮,就取消请用
shielding[4]=false;//请求屏蔽解除
getUi()->disable5->setText(" ");//界面显示停用信息取消
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯5停用解除"<<"\n";
file.close();
}
else if(!(shielding[4])){//管理人员按下停用按钮,就停用相应的电梯
shielding[4]=true;//请求屏蔽
getUi()->disable5->setText("电梯5已经被停用");//界面显示停用信息
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯5被停用"<<"\n";
file.close();
}
}
/*
* 功能:管理人员根据需求点击电梯6的停用按钮后,判断停用位,是真就将其设置为false,是假将其设为true,并调用停用函数。
* 输入参数:无
* 输出参数:无
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/18; 2021/7/23
*/
void myMainWindow::on_disable6clicked()
{
if(shielding[5]){//如果停用时间已过,管理人员再次按下停用按钮,就取消请用
shielding[5]=false;//请求屏蔽解除
getUi()->disable6->setText(" ");//界面显示停用信息取消
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯6停用解除"<<"\n";
file.close();
}
else if(!(shielding[5])){//管理人员按下停用按钮,就停用相应的电梯
shielding[5]=true;//请求屏蔽
getUi()->disable6->setText("电梯6已经被停用");//界面显示停用信息
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯6被停用"<<"\n";
file.close();
}
}
/*
* 功能:设置忙闲位
* 输入输出参数:无
* 作者:冯相汉 Update:刘宇涵
* 时间:2021/7/18
*/
void myMainWindow::setIsbusy(){
if(isbusy){//忙时间已过,管理员再次点击按钮,变到闲状态
isbusy=false;
getUi()->isbusy->setText("闲");//界面显示现在的忙闲状态
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯由忙变闲"<<"\n";
file.close();
return;
}
else if(!isbusy){//管理员点击按钮,变到忙状态
isbusy=true;
getUi()->isbusy->setText("忙");//界面显示现在的忙闲状态
QDateTime da_time;
QString time_str = da_time.currentDateTime().toString("yyyy-MM-dd HH-mm-ss");
QFile file("../Elevator/Log.txt");
if(!file.open(QIODevice::Append|QIODevice::Text)) //append追加,不会覆盖之前的文件
{
QMessageBox::critical(this,"错误","文件打开失败,信息没有保存!","确定");
return;
}
QTextStream out(&file);//写入
out <<time_str+":"+ "电梯由闲变忙"<<"\n";
file.close();
return;
}
}
| [
"1458799311@qq.com"
] | 1458799311@qq.com |
2604070961c2e01d0ecdd435047be66d70298f22 | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/printscan/ui/uicommon/sysprops.cpp | 2023e79ab7ffd25f10c83474ccd3294027ca1eaf | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 9,488 | cpp | /*******************************************************************************
*
* (C) COPYRIGHT MICROSOFT CORPORATION, 1998
*
* TITLE: sysprops.cpp
*
* VERSION: 1.0
*
* AUTHOR: ShaunIv
*
* DATE: 9/24/1999
*
* DESCRIPTION: Implementation of property sheet helpers. Removed from miscutil,
* because it required clients to link to comctl32.dll
*
*******************************************************************************/
#include "precomp.h"
#pragma hdrstop
#include <shellext.h> // for property page functions
#include "devlist.h" // for property page functions
#include <initguid.h>
#include "wiapropui.h"
DEFINE_GUID (CLSID_WiaPropHelp, 0x83bbcbf3,0xb28a,0x4919,0xa5, 0xaa, 0x73, 0x02, 0x74, 0x45, 0xd6, 0x72);
DEFINE_GUID (IID_IWiaPropUI, /* 7eed2e9b-acda-11d2-8080-00805f6596d2 */
0x7eed2e9b,
0xacda,
0x11d2,
0x80, 0x80, 0x00, 0x80, 0x5f, 0x65, 0x96, 0xd2
);
namespace WiaUiUtil
{
HRESULT SystemPropertySheet( HINSTANCE hInstance, HWND hwndParent, IWiaItem *pWiaItem, LPCTSTR pszCaption )
{
CWaitCursor wc;
CComPtr<IWiaPropUI> pWiaPropUI;
HRESULT hr = CoCreateInstance (CLSID_WiaPropHelp, NULL, CLSCTX_INPROC_SERVER, IID_IWiaPropUI, reinterpret_cast<LPVOID*>(&pWiaPropUI));
if (SUCCEEDED(hr))
{
PROPSHEETHEADER PropSheetHeader = {0};
PropSheetHeader.dwSize = sizeof(PropSheetHeader);
PropSheetHeader.hwndParent = hwndParent;
PropSheetHeader.hInstance = hInstance;
PropSheetHeader.pszCaption = pszCaption;
hr = pWiaPropUI->GetItemPropertyPages( pWiaItem, &PropSheetHeader );
if (SUCCEEDED(hr))
{
if (PropSheetHeader.nPages)
{
//
// Modal property sheets really don't need an apply button...
//
PropSheetHeader.dwFlags |= PSH_NOAPPLYNOW;
INT_PTR nResult = PropertySheet(&PropSheetHeader);
if (PropSheetHeader.phpage)
{
LocalFree(PropSheetHeader.phpage);
}
if (nResult < 0)
{
hr = E_FAIL;
}
else if (IDOK == nResult)
{
hr = S_OK;
}
else hr = S_FALSE;
}
else
{
hr = PROP_SHEET_ERROR_NO_PAGES;
}
}
}
return hr;
}
// Be careful calling this function. It is hideously slow...
HRESULT GetDeviceInfoFromId( LPCWSTR pwszDeviceId, IWiaPropertyStorage **ppWiaPropertyStorage )
{
// Check parameters
if (!pwszDeviceId || !*pwszDeviceId)
{
return E_INVALIDARG;
}
if (!ppWiaPropertyStorage)
{
return E_POINTER;
}
// Initialize the return value
*ppWiaPropertyStorage = NULL;
CSimpleString strDeviceId = CSimpleStringConvert::NaturalString(CSimpleStringWide(pwszDeviceId));
CComPtr<IWiaDevMgr> pWiaDevMgr;
HRESULT hr = CoCreateInstance(CLSID_WiaDevMgr, NULL, CLSCTX_INPROC_SERVER|CLSCTX_LOCAL_SERVER, IID_IWiaDevMgr, (void**)&pWiaDevMgr );
if (SUCCEEDED(hr))
{
// Assume we are going to fail. This will also cover the case where there are no devices.
hr = E_FAIL;
CDeviceList deviceList( pWiaDevMgr );
for (int i=0;i<deviceList.Size();i++)
{
CSimpleStringWide strwCurrDeviceId;
if (PropStorageHelpers::GetProperty(deviceList[i],WIA_DIP_DEV_ID,strwCurrDeviceId))
{
CSimpleString strCurrDeviceId = CSimpleStringConvert::NaturalString(strwCurrDeviceId);
if (strCurrDeviceId == strDeviceId)
{
*ppWiaPropertyStorage = deviceList[i];
if (*ppWiaPropertyStorage)
(*ppWiaPropertyStorage)->AddRef();
hr = S_OK;
break;
}
}
}
}
return hr;
}
// Be careful calling this function. It is hideously slow...
HRESULT GetDeviceTypeFromId( LPCWSTR pwszDeviceId, LONG *pnDeviceType )
{
// Check parameters
if (!pwszDeviceId || !*pwszDeviceId)
{
return E_INVALIDARG;
}
if (!pnDeviceType)
{
return E_POINTER;
}
CComPtr<IWiaPropertyStorage> pWiaPropertyStorage;
HRESULT hr = GetDeviceInfoFromId( pwszDeviceId, &pWiaPropertyStorage );
if (SUCCEEDED(hr))
{
LONG nDeviceType;
if (PropStorageHelpers::GetProperty(pWiaPropertyStorage,WIA_DIP_DEV_TYPE,nDeviceType))
{
*pnDeviceType = nDeviceType;
hr = S_OK;
}
else
{
hr = E_FAIL;
}
}
return hr;
}
// Ask WIA for the default event handler for the device
HRESULT GetDefaultEventHandler (IWiaItem *pItem, const GUID &guidEvent, WIA_EVENT_HANDLER *pwehHandler)
{
HRESULT hr;
IEnumWIA_DEV_CAPS *pEnum;
WIA_EVENT_HANDLER weh;
ZeroMemory (pwehHandler, sizeof(WIA_EVENT_HANDLER));
hr = pItem->EnumRegisterEventInfo (0,
&guidEvent,
&pEnum);
if (SUCCEEDED(hr))
{
ULONG ul;
bool bFound = false;
while (!bFound && NOERROR == pEnum->Next (1, &weh, &ul))
{
if (weh.ulFlags & WIA_IS_DEFAULT_HANDLER)
{
bFound = true;
CopyMemory (pwehHandler, &weh, sizeof(weh));
}
else
{
if (weh.bstrDescription)
{
SysFreeString (weh.bstrDescription);
}
if (weh.bstrIcon)
{
SysFreeString (weh.bstrIcon);
}
if (weh.bstrName)
{
SysFreeString (weh.bstrName);
}
}
}
if (!bFound)
{
hr = E_FAIL;
}
pEnum->Release ();
}
return hr;
}
/******************************************************************************
ItemAndChildrenCount
Returns the number of items, including root + children
******************************************************************************/
LONG
ItemAndChildrenCount (IWiaItem *pRoot)
{
LONG count = 0;
HRESULT hr = S_OK;
IEnumWiaItem *pEnum;
LONG lType;
if (pRoot)
{
if (SUCCEEDED(pRoot->EnumChildItems(&pEnum)))
{
IWiaItem *pChild;
while (NOERROR == pEnum->Next(1, &pChild, NULL))
{
count++;
pChild->Release ();
}
pEnum->Release ();
}
//
// See if we should count the root item
//
pRoot->GetItemType(&lType);
if (!(lType & WiaItemTypeRoot))
{
count++;
}
}
return count;
}
/******************************************************************************
DeleteItemAndChildren
Deletes all items in the tree under pRoot
******************************************************************************/
HRESULT
DeleteItemAndChildren (IWiaItem *pRoot)
{
HRESULT hr = S_OK;
IEnumWiaItem *pEnum;
if (pRoot)
{
// Recurse down til we reach a leaf item
if (SUCCEEDED(pRoot->EnumChildItems(&pEnum)))
{
IWiaItem *pChild;
while (SUCCEEDED(hr) && NOERROR == pEnum->Next(1, &pChild, NULL))
{
hr = DeleteItemAndChildren (pChild);
pChild->Release ();
}
pEnum->Release ();
}
// now delete the item itself
// if a delete on a child item failed, stop trying
// to delete because chances are any subsequent delete
// is going to fail as well.
if (SUCCEEDED(hr))
{
// don't delete the very root item
LONG lType;
pRoot->GetItemType(&lType);
if (!(lType & WiaItemTypeRoot))
{
hr = pRoot->DeleteItem(0);
}
}
}
return hr;
}
} // End namespace WiaUiUtil
| [
"seta7D5@protonmail.com"
] | seta7D5@protonmail.com |
7f236960bf44cba005870f7711f53303114a43f4 | ac10d63bf38efe5a43517ca314878ed05e1c3871 | /차선 프로젝트/ComputerVision/Input_Mask.h | a2ef46d8536d6602b13af4b1a9f40b34a47144f8 | [] | no_license | ksinuk/computerVision | 662f1c8140c1146ab6bb9c3608c17dfe3f1a0cb9 | 883cd0c3555056ffde467e634476c04583c27d17 | refs/heads/master | 2020-07-24T15:12:53.922415 | 2019-09-12T05:13:00 | 2019-09-12T05:13:00 | 207,964,687 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 472 | h | #pragma once
// Input_Mask 대화 상자입니다.
class Input_Mask : public CDialogEx
{
DECLARE_DYNAMIC(Input_Mask)
public:
Input_Mask(CWnd* pParent = NULL); // 표준 생성자입니다.
virtual ~Input_Mask();
// 대화 상자 데이터입니다.
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_DIALOG1 };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
DECLARE_MESSAGE_MAP()
public:
int mask_h;
int mask_w;
};
| [
"ghttttgu@naver.com"
] | ghttttgu@naver.com |
f39dd3aaf33a0bc2a10e9fd1949512529b78234c | c4c662b253ce9324e475adbf359252df64bdfead | /test_sum_of_n_matrices.cpp | b56441af5435601eb290cf0b8f94f8d179be8453 | [] | no_license | snbarko/cpp_test_programs | cd5150e95e6392c2605870de22471853e13ffc6b | ac79e3402bdef856abd1486fe4ab92e5fa149344 | refs/heads/master | 2021-06-13T19:47:28.291408 | 2021-02-18T06:30:55 | 2021-02-18T06:31:09 | 138,689,549 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,025 | cpp | #include <iostream>
#include <vector>
using namespace std;
class MyMatrix
{
public:
MyMatrix():row(0), column(0)
{
}
MyMatrix(int _row, int _column): row(_row), column(_column)
{
cout << "row " << row << " column " << column << " " << __LINE__ << endl;
if ((_row == 0) || (_column == 0))
{
cout << "Welcome to matrix constructor" << endl;
cout << "Enter number of rows: ";
cin >> row;
cout << "Enter number of columns: ";
cin >> column;
}
data = new int*[row];
for (int i = 0; i < row; i++)
{
data[i] = new int[column];
if ((_row == 0) || (_column == 0))
{
for (int j = 0; j < column; j++)
{
cout << "Enter data for row " << i << " column " << j << std::endl;
cin >> data[i][j];
}
}
}
}
public:
MyMatrix& operator+(std::vector<MyMatrix>& vec)
{
for (int i = 0;i < vec.size(); i++)
{
(*this) = (*this) + vec[i];
}
return (*this);
}
MyMatrix& operator+(MyMatrix& _matrix)
{
if ((this->getRow() == 0) || (this->getColumn() == 0))
{
allocateData(_matrix.getRow(), _matrix.getColumn());
}
if ((this->getRow() != _matrix.getRow()) ||
(this->getColumn() != _matrix.getColumn()))
{
cout << "Matrices has different orders. Addition not possible" << this->getRow() << this->getColumn() << endl;
return (*this);
}
for (int i = 0; i < row; i++)
{
for (int j = 0; j < column; j++)
{
data[i][j]+= *(*(_matrix.data + i) + j);
}
}
return (*this);
}
friend ostream& operator<<(ostream& os, MyMatrix& _matrix)
{
os << "Printing matrix: " << "row " << _matrix.getRow() << " " << _matrix.getColumn() << endl;
for (int i = 0; i < _matrix.getRow(); i++)
{
for (int j = 0; j < _matrix.getColumn(); j++)
{
os << *(*(_matrix.getData() + i) + j) << " ";
}
os << std::endl;
}
return os;
}
MyMatrix& operator+(int data)
{
for (int i = 0; i < this->getRow(); i++)
{
for (int j = 0; j < this->getColumn(); j++)
{
*(*(this->data + i) + j) = *(*(this->data + i) + j) + data;
}
}
return (*this);
}
friend MyMatrix& operator+(int data, MyMatrix& inmatrix)
{
for (int i = 0; i < inmatrix.getRow(); i++)
{
for (int j = 0; j < inmatrix.getColumn(); j++)
{
*(*(inmatrix.data + i) + j) = *(*(inmatrix.data + i) + j) + data;
}
}
return inmatrix;
}
int** getData() { return data; }
int getRow() { return row; }
int getColumn() { return column; }
private:
void allocateData(int _row, int _column)
{
row = _row;
column = _column;
data = new int*[row];
for (int i = 0; i < row; i++)
{
data[i] = new int[column];
}
}
int row;
int column;
int **data;
};
int main()
{
int num = 0;
std::cout << "How many matrices ? ";
std::cin >> num;
{
std::vector<MyMatrix> myMatrixArray;
MyMatrix sumMatrix;
for (int i = 0;i < num; i++)
{
myMatrixArray.push_back(MyMatrix(0,0));
cout << myMatrixArray[i];
}
sumMatrix = sumMatrix + myMatrixArray;
// sumMatrix = myMatrixArray + sumMatrix;
cout << sumMatrix;
sumMatrix = 5 + sumMatrix;
cout << sumMatrix;
sumMatrix = sumMatrix + 7;
cout << sumMatrix;
sumMatrix = 10 + sumMatrix + 100;
cout << sumMatrix;
}
return 0;
}
| [
"snehasish.banerjee@hpe.com"
] | snehasish.banerjee@hpe.com |
374efb2adf5bcc0d9e9f334cd6bafe05614076f4 | eb68fbeb9de5a08cdf1a843a7d11ac8a83686f58 | /_submissions/19UCS111_Jay Vanidani/DAY 1/PROBLEM 3.cpp | 1afb21e44c54b2742f86c6f598ce681108f89683 | [] | no_license | WinterSoldier13/snapCode | 9da541cc1aa8efeec0c8261109979e946d5809e9 | d01b8d5476f15593fd2f64ca3ea6e1f113ebc7f8 | refs/heads/main | 2023-05-27T22:36:19.055319 | 2021-06-11T09:14:09 | 2021-06-11T09:14:09 | 368,158,994 | 1 | 0 | null | 2021-05-17T11:21:53 | 2021-05-17T11:21:52 | null | UTF-8 | C++ | false | false | 566 | cpp | /*
DAY-1:
PROBLEM 3:MATRIX MEDIAN
LINK:https://www.interviewbit.com/problems/matrix-median/
*/
int Solution::findMedian(vector<vector<int> > &A)
{
vector<int> temp;
int a,b,n;
int result;
a=A.size();
b=A[0].size();
for(int i=0;i<a;i++)
{
for(int j=0;j<b;j++)
{
temp.push_back(A[i][j]);
}
}
sort(temp.begin(),temp.end());
result=0;
n=temp.size();
if(!(n&1))
{
result=(temp[n/2]+temp[(n/2)-1])/2;
}
else
{
result=temp[n/2];
}
return result;
}
| [
"jayvanidani2001@gmail.com"
] | jayvanidani2001@gmail.com |
e6ab817af4daebf0f9caf8794994b7add094dac1 | 701ab75dcfcc6203a1a43b2a11fce1a973d3dddd | /src/ctransactionlock.cpp | 786a074b9116957819581d6638db4749ff584c0c | [
"MIT"
] | permissive | githubber/DigitalNote-2 | 831c10624c96fba9f3a7197d8bd5227a8d1dd26b | 75720ac399d9701871398b644dad50e69e454775 | refs/heads/master | 2023-08-25T15:02:48.137210 | 2021-10-19T11:10:33 | 2021-10-19T11:10:33 | 445,522,969 | 1 | 0 | MIT | 2022-01-07T13:02:20 | 2022-01-07T13:02:19 | null | UTF-8 | C++ | false | false | 1,576 | cpp | #include "compat.h"
#include "util.h"
#include "cconsensusvote.h"
#include "cmasternodeman.h"
#include "masternode_extern.h"
#include "blockparams.h"
#include "net/cnetaddr.h"
#include "version.h"
#include "ctransactionlock.h"
bool CTransactionLock::SignaturesValid()
{
for(CConsensusVote vote : vecConsensusVotes)
{
int n = mnodeman.GetMasternodeRank(vote.vinMasternode, vote.nBlockHeight, MIN_INSTANTX_PROTO_VERSION);
if(n == -1)
{
LogPrintf("CTransactionLock::SignaturesValid() - Unknown Masternode\n");
return false;
}
if(n > INSTANTX_SIGNATURES_TOTAL)
{
LogPrintf("CTransactionLock::SignaturesValid() - Masternode not in the top %s\n", INSTANTX_SIGNATURES_TOTAL);
return false;
}
if(!vote.SignatureValid())
{
LogPrintf("CTransactionLock::SignaturesValid() - Signature not valid\n");
return false;
}
}
return true;
}
void CTransactionLock::AddSignature(CConsensusVote& cv)
{
vecConsensusVotes.push_back(cv);
}
int CTransactionLock::CountSignatures()
{
/*
Only count signatures where the BlockHeight matches the transaction's blockheight.
The votes have no proof it's the correct blockheight
*/
if(nBlockHeight == 0)
{
return -1;
}
int n = 0;
for(CConsensusVote v : vecConsensusVotes)
{
if(v.nBlockHeight == nBlockHeight)
{
n++;
}
}
return n;
}
uint256 CTransactionLock::GetHash()
{
return txHash;
}
| [
"admin@ludoruisch.nl"
] | admin@ludoruisch.nl |
a35524865e6d4c8c18af7b1ee38181cd3934efc7 | 192d42b6663ae3cf572563aea7e9e366213b561c | /pangram.cpp | be7eb54e959ab42f164e864ce2c0fa0a3fa7d77e | [] | no_license | cheapcoder007/competitve_programming_codes | 32df90b5df7c6c95ecc95c394ee7f71f3b4de039 | fc23816201cc65b9bf9b462717a98ec713dad761 | refs/heads/master | 2020-06-14T10:50:38.590470 | 2019-07-03T06:06:14 | 2019-07-03T06:06:14 | 194,986,131 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 539 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int n, find1, find2, i;
cin >> n;
string str;
if(n < 26) {
cout << "NO" << endl;
return 0;
}
vector < int > visited[26];
cin >> str;
for(i = 65; i < 91; i++) {
find1 = str.find(i);
find2 = str.find(i + 32);
if(find1 == -1 && find2 == -1) {
cout << "NO" << endl;
return 0;
}
}
cout << "YES" << endl;
return 0;
}
| [
"cheapcoder@predator"
] | cheapcoder@predator |
8cb6b9c10e0418dc37f76edbed138db76aadc83f | 5f218b1c5815ce577917cf65ef59ef5a778fa4ff | /Bab 2/belajar_tipedata.cpp | fbba1224df7781e3807e5212a3cedc70f5879441 | [] | no_license | MochHudda-TI-A-A2-1900106/UTS_DASAR_PEMROGRAMAN | a88e3f9a7d908316dc314c7697da97aab257bed9 | 4061de9c993c3a97b1a6dcf728adddcf68bb2370 | refs/heads/master | 2020-08-27T01:31:47.648808 | 2019-10-31T03:19:21 | 2019-10-31T03:19:21 | 217,205,971 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 605 | cpp | #include <iostream>
using namespace std;
int main()
{
cout<<"==================================== \n";
cout<<" BELAJAR TIPEDATA \n";
cout<<"==================================== \n";
int x;
x = 100;
cout <<"Contoh Nilai Tipedata Bilanagan Bulat = " << x << endl;
double y;
y = 123.456789098;
cout <<"Contoh Nilai Tipedata Bilanagan Rill = " << y << endl;
char Kar = 'A';
string Teks = "Kata-kata";
char TEKS[39] = "Teks dengan 39 karakter";
cout << Kar << endl;
cout << Teks << endl;
cout << TEKS << endl;
return 0;
} | [
"huddamoch21@gmail.com"
] | huddamoch21@gmail.com |
165df3bed77519b907b8d2f15a11998cfe75b836 | f7f3ec0482a3468085b230d11986ff8aa9253df3 | /soda_vmware_plugin_for_sra/source/sra/discover_arrays.h | a29838392481e39233e01fd74f8dcfd8a6baca3f | [] | no_license | Huawei/soda_vmware_plugin | 5e106b5ca5bccad13fe9d28c40faf05325c1622c | 026ae5b34ea10f17cd83da4755746949c8a73e89 | refs/heads/master | 2022-12-21T14:18:35.168015 | 2021-08-16T11:31:17 | 2021-08-16T11:31:17 | 199,126,762 | 3 | 3 | null | 2022-12-16T04:54:02 | 2019-07-27T06:36:48 | Java | UTF-8 | C++ | false | false | 1,170 | h | // Copyright 2019 The OpenSDS Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
#ifndef DISCOVER_ARRAYS
#define DISCOVER_ARRAYS
#include "sra_basic.h"
int discover_arrays(XmlReader &reader);
class DiscoverArrays : public SraBasic
{
public:
DiscoverArrays() : SraBasic() {};
virtual ~DiscoverArrays() {};
protected:
virtual void _write_response(XmlWriter &writer);
virtual int _outband_process();
private:
int _get_sysinfo(CCmdOperate& cmdOperate);
int _get_peer_array(CCmdOperate& cmdOperate);
private:
list<string> peer_arrays;
list<string> peer_stretched;
string array_name;
string system_type;
};
#endif
| [
"chenxicqu@163.com"
] | chenxicqu@163.com |
22deac548781f711a3995e18f1785034c81db3e6 | a57811d53f8e7d0a5ffc49a28a56d944a3bed9cd | /App/Il2CppOutputProject/Source/il2cppOutput/Bulk_Generics_9.cpp | f877257e29bc7c8ca5d8f17bcf4d594c6b92101b | [] | no_license | eirikvaa/TPG4850-VR-Gruppe-1 | e28475fa82d509a084175d4a3adc3b7efa3428a6 | f344184cb775b8e0783114d57deb47d6d12bd087 | refs/heads/master | 2020-04-18T03:01:33.142503 | 2019-03-20T13:05:20 | 2019-03-20T13:05:20 | 167,184,565 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,528,329 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct VirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct VirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct VirtActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericVirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct GenericVirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct GenericVirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct GenericVirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct GenericVirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct GenericVirtActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct GenericVirtActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct InterfaceActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct InterfaceActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericInterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct GenericInterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct GenericInterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct GenericInterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct GenericInterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct GenericInterfaceActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct GenericInterfaceActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
// System.Predicate`1<System.SByte>
struct Predicate_1_t2494871786;
// System.Delegate
struct Delegate_t1188392813;
// System.IAsyncResult
struct IAsyncResult_t767004451;
// System.AsyncCallback
struct AsyncCallback_t3962456242;
// System.Predicate`1<System.Single>
struct Predicate_1_t2222560898;
// System.Predicate`1<System.Text.RegularExpressions.RegexOptions>
struct Predicate_1_t918139719;
// System.Predicate`1<System.TimeSpan>
struct Predicate_1_t1706453373;
// System.Predicate`1<System.UInt16>
struct Predicate_1_t3003019082;
// System.Predicate`1<System.UInt32>
struct Predicate_1_t3385356102;
// System.Predicate`1<System.UInt64>
struct Predicate_1_t664366920;
// System.Predicate`1<System.Xml.Schema.RangePositionInfo>
struct Predicate_1_t1415263060;
// System.Predicate`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>
struct Predicate_1_t4169971095;
// System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct Predicate_1_t2411271955;
// System.Predicate`1<UnityEngine.Color32>
struct Predicate_1_t3425795416;
// System.Predicate`1<UnityEngine.EventSystems.RaycastResult>
struct Predicate_1_t4185600973;
// System.Predicate`1<UnityEngine.UICharInfo>
struct Predicate_1_t900795230;
// System.Predicate`1<UnityEngine.UILineInfo>
struct Predicate_1_t725593638;
// System.Predicate`1<UnityEngine.UIVertex>
struct Predicate_1_t587824433;
// System.Predicate`1<UnityEngine.Vector2>
struct Predicate_1_t2981523647;
// System.Predicate`1<UnityEngine.Vector3>
struct Predicate_1_t252640292;
// System.Predicate`1<UnityEngine.Vector4>
struct Predicate_1_t4144323061;
// System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>
struct Getter_2_t2063956538;
// System.Reflection.MonoProperty/StaticGetter`1<System.Object>
struct StaticGetter_1_t3872988374;
// System.Runtime.CompilerServices.IAsyncStateMachine
struct IAsyncStateMachine_t923100567;
// System.Threading.Tasks.Task`1<System.Boolean>
struct Task_1_t1502828140;
// System.Threading.Tasks.Task
struct Task_t3187275312;
// System.String
struct String_t;
// System.InvalidOperationException
struct InvalidOperationException_t56020091;
// System.Exception
struct Exception_t;
// System.ArgumentNullException
struct ArgumentNullException_t1615371798;
// System.OperationCanceledException
struct OperationCanceledException_t926488448;
// System.Type
struct Type_t;
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t61518632;
// System.Threading.Tasks.Task`1<System.Object>
struct Task_1_t190679043;
// System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>
struct Task_1_t4022128754;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>
struct ConditionalWeakTable_2_t3582039290;
// System.Runtime.CompilerServices.Ephemeron[]
struct EphemeronU5BU5D_t1564620431;
// System.ArgumentException
struct ArgumentException_t132251570;
// System.Action
struct Action_t1264377477;
// System.Object[]
struct ObjectU5BU5D_t2843939325;
// System.Threading.AsyncLocal`1<System.Object>
struct AsyncLocal_1_t1349483261;
// System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>
struct Action_1_t588642880;
// System.Threading.IAsyncLocal
struct IAsyncLocal_t658054594;
// System.Threading.SparselyPopulatedArray`1<System.Object>
struct SparselyPopulatedArray_1_t3787047113;
// System.Threading.SparselyPopulatedArrayFragment`1<System.Object>
struct SparselyPopulatedArrayFragment_1_t2623668647;
// System.Threading.Tasks.Shared`1<System.Object>
struct Shared_1_t712168394;
// System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration>
struct Shared_1_t445487134;
// System.Threading.Tasks.Task`1/<>c<System.Boolean>
struct U3CU3Ec_t2052824854;
// System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>
struct Task_1_t297848191;
// System.Threading.Tasks.Task`1/<>c<System.Int32>
struct U3CU3Ec_t611515346;
// System.Threading.Tasks.Task`1/<>c<System.Object>
struct U3CU3Ec_t740675757;
// System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>
struct U3CU3Ec_t277158172;
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t3759279471;
// System.Func`1<System.Boolean>
struct Func_1_t3822001908;
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t1196198384;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t777629997;
// System.Threading.Tasks.Task/ContingentProperties
struct ContingentProperties_t2170468915;
// System.Threading.Tasks.TaskFactory`1<System.Boolean>
struct TaskFactory_1_t156716511;
// System.Func`2<System.Object,System.Int32>
struct Func_2_t2317969963;
// System.Func`1<System.Int32>
struct Func_1_t2380692400;
// System.Threading.Tasks.TaskFactory`1<System.Int32>
struct TaskFactory_1_t3010374299;
// System.Func`2<System.Object,System.Object>
struct Func_2_t2447130374;
// System.Func`1<System.Object>
struct Func_1_t2509852811;
// System.Threading.Tasks.TaskFactory`1<System.Object>
struct TaskFactory_1_t3139534710;
// System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>
struct Func_2_t1983612789;
// System.Func`1<System.Threading.Tasks.VoidTaskResult>
struct Func_1_t2046335226;
// System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>
struct TaskFactory_1_t2676017125;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Boolean>
struct U3CU3Ec__DisplayClass35_0_t293768410;
// System.Threading.AtomicBoolean
struct AtomicBoolean_t2634115295;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Int32>
struct U3CU3Ec__DisplayClass35_0_t3147426198;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Object>
struct U3CU3Ec__DisplayClass35_0_t3276586609;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Threading.Tasks.VoidTaskResult>
struct U3CU3Ec__DisplayClass35_0_t2813069024;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Boolean>
struct U3CU3Ec__DisplayClass35_1_t707366106;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Int32>
struct U3CU3Ec__DisplayClass35_1_t3561023894;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Object>
struct U3CU3Ec__DisplayClass35_1_t3690184305;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Threading.Tasks.VoidTaskResult>
struct U3CU3Ec__DisplayClass35_1_t3226666720;
// System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>
struct FromAsyncTrimPromise_1_t1479234185;
// System.Func`3<System.Object,System.IAsyncResult,System.Int32>
struct Func_3_t4196817919;
// System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>
struct FromAsyncTrimPromise_1_t3937927138;
// System.Func`3<System.Object,System.IAsyncResult,System.Object>
struct Func_3_t31011034;
// System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>
struct FromAsyncTrimPromise_1_t1953969367;
// System.Func`3<System.Object,System.IAsyncResult,System.Threading.Tasks.VoidTaskResult>
struct Func_3_t3862460745;
// System.Func`2<System.IAsyncResult,System.Boolean>
struct Func_2_t391681124;
// System.Action`1<System.IAsyncResult>
struct Action_1_t939472046;
// System.Action`1<System.Object>
struct Action_1_t3252573759;
// System.Threading.Tasks.TaskExceptionHolder
struct TaskExceptionHolder_t1800584989;
// System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>
struct Func_3_t82022818;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Func`3<System.Object,System.Object,System.Object>
struct Func_3_t3398609381;
// System.Func`2<System.IAsyncResult,System.Int32>
struct Func_2_t3245338912;
// System.Func`2<System.IAsyncResult,System.Object>
struct Func_2_t3374499323;
// System.Func`2<System.IAsyncResult,System.Threading.Tasks.VoidTaskResult>
struct Func_2_t2910981738;
// System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>
struct SparseArray_1_t396411150;
// System.Tuple`2<System.Object,System.Char>
struct Tuple_2_t3267548213;
// System.Collections.IEqualityComparer
struct IEqualityComparer_t1493878338;
// System.Collections.IComparer
struct IComparer_t1540313114;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Tuple`2<System.Object,System.Object>
struct Tuple_2_t2713193907;
// System.Tuple`3<System.Object,System.Object,System.Object>
struct Tuple_3_t3230838485;
// System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>
struct Tuple_4_t280230887;
// System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>
struct Tuple_4_t10520759;
// System.Tuple`4<System.Object,System.Object,System.Object,System.Object>
struct Tuple_4_t2598374123;
// UnityEngine.Events.CachedInvokableCall`1<System.Boolean>
struct CachedInvokableCall_1_t2423483305;
// UnityEngine.Object
struct Object_t631007953;
// UnityEngine.Events.CachedInvokableCall`1<System.Int32>
struct CachedInvokableCall_1_t982173797;
// UnityEngine.Events.CachedInvokableCall`1<System.Object>
struct CachedInvokableCall_1_t1111334208;
// UnityEngine.Events.CachedInvokableCall`1<System.Single>
struct CachedInvokableCall_1_t3723462114;
// UnityEngine.Events.InvokableCall`1<System.Boolean>
struct InvokableCall_1_t214452203;
// UnityEngine.Events.BaseInvokableCall
struct BaseInvokableCall_t2703961024;
// UnityEngine.Events.UnityAction`1<System.Boolean>
struct UnityAction_1_t682124106;
// UnityEngine.Events.InvokableCall`1<System.Int32>
struct InvokableCall_1_t3068109991;
// UnityEngine.Events.UnityAction`1<System.Int32>
struct UnityAction_1_t3535781894;
// UnityEngine.Events.InvokableCall`1<System.Object>
struct InvokableCall_1_t3197270402;
// UnityEngine.Events.UnityAction`1<System.Object>
struct UnityAction_1_t3664942305;
// UnityEngine.Events.InvokableCall`1<System.Single>
struct InvokableCall_1_t1514431012;
// UnityEngine.Events.UnityAction`1<System.Single>
struct UnityAction_1_t1982102915;
// UnityEngine.Events.InvokableCall`1<UnityEngine.Color>
struct InvokableCall_1_t2672850562;
// UnityEngine.Events.UnityAction`1<UnityEngine.Color>
struct UnityAction_1_t3140522465;
// UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>
struct InvokableCall_1_t2273393761;
// UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>
struct UnityAction_1_t2741065664;
// UnityEngine.Events.InvokableCall`2<System.Object,System.Object>
struct InvokableCall_2_t362407658;
// UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>
struct InvokableCall_3_t4059188962;
// UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>
struct InvokableCall_4_t2756980746;
// UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>
struct UnityAction_1_t2933211702;
// UnityEngine.Events.UnityAction`2<System.Object,System.Object>
struct UnityAction_2_t3283971887;
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>
struct UnityAction_2_t2165061829;
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>
struct UnityAction_2_t1262235195;
// UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>
struct UnityAction_3_t1557236713;
// UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>
struct UnityAction_4_t682480391;
// UnityEngine.Events.UnityEvent`1<System.Boolean>
struct UnityEvent_1_t978947469;
// UnityEngine.Events.UnityEventBase
struct UnityEventBase_t3960448221;
// System.Type[]
struct TypeU5BU5D_t3940880105;
// System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>
struct List_1_t4176035766;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t257213610;
// UnityEngine.Events.InvokableCall
struct InvokableCall_t832123510;
// UnityEngine.Events.UnityEvent`1<System.Int32>
struct UnityEvent_1_t3832605257;
// UnityEngine.Events.UnityEvent`1<System.Object>
struct UnityEvent_1_t3961765668;
// UnityEngine.Events.UnityEvent`1<System.Single>
struct UnityEvent_1_t2278926278;
// UnityEngine.Events.UnityEvent`1<UnityEngine.Color>
struct UnityEvent_1_t3437345828;
// UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>
struct UnityEvent_1_t3037889027;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object>
struct ConditionalWeakTable_2_t2384618318;
// System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs>
struct EventHandler_1_t3366404161;
// System.Threading.Tasks.Task`1<System.Int32>[]
struct Task_1U5BU5D_t2104922937;
// System.Collections.IDictionary
struct IDictionary_t1363984059;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t2481557153;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t1169129676;
// System.IntPtr[]
struct IntPtrU5BU5D_t4013366056;
// System.Char[]
struct CharU5BU5D_t3528271667;
// UnityEngine.Events.BaseInvokableCall[]
struct BaseInvokableCallU5BU5D_t3944607041;
// UnityEngine.Events.InvokableCallList
struct InvokableCallList_t2498835369;
// UnityEngine.Events.PersistentCallGroup
struct PersistentCallGroup_t3050769227;
// System.Xml.XmlQualifiedName
struct XmlQualifiedName_t2760654312;
// System.Xml.Schema.XmlSchemaObject
struct XmlSchemaObject_t1315720168;
// System.Xml.Schema.BitSet
struct BitSet_t1154229585;
// System.Decimal[]
struct DecimalU5BU5D_t1145110141;
// UnityEngine.Events.UnityAction
struct UnityAction_t3245792599;
// System.Void
struct Void_t1185182177;
// System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayFragment_1_t4161250538;
// System.UInt32[]
struct UInt32U5BU5D_t2770800703;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_t540272775;
// System.Byte[]
struct ByteU5BU5D_t4116647657;
// System.DelegateData
struct DelegateData_t1677132599;
// System.EventHandler
struct EventHandler_t1348719766;
// System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>
struct List_1_t928104815;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
struct ExceptionDispatchInfo_t3750997369;
// System.Threading.ExecutionContext
struct ExecutionContext_t1748372627;
// System.Threading.ManualResetEventSlim
struct ManualResetEventSlim_t3596722525;
// System.Collections.Generic.List`1<System.Threading.Tasks.Task>
struct List_1_t364382758;
// System.Threading.CancellationCallbackInfo
struct CancellationCallbackInfo_t322720759;
// UnityEngine.GameObject
struct GameObject_t1113636619;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_t4150874583;
// System.Threading.Tasks.StackGuard
struct StackGuard_t1472778820;
// System.Threading.Tasks.TaskFactory
struct TaskFactory_t2660013028;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>
struct Dictionary_2_t2075988643;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties>
struct Func_1_t1600215562;
// System.Predicate`1<System.Threading.Tasks.Task>
struct Predicate_1_t4012569436;
// System.Threading.ContextCallback
struct ContextCallback_t3823316192;
// System.Predicate`1<System.Object>
struct Predicate_1_t3905400288;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Int32>>
struct Func_2_t4167915811;
// System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.Task>
struct TaskFactory_1_t3246703858;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>>
struct Func_2_t109278074;
// System.Delegate[]
struct DelegateU5BU5D_t1703627840;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Boolean>>
struct Func_2_t1314258023;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Object>>
struct Func_2_t2108926;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>>
struct Func_2_t3833558637;
// System.Reflection.MemberFilter
struct MemberFilter_t426314064;
// System.Reflection.Binder
struct Binder_t2999457153;
extern RuntimeClass* SByte_t1669577662_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m2047764670_MetadataUsageId;
extern RuntimeClass* Single_t1397266774_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m3036530003_MetadataUsageId;
extern RuntimeClass* RegexOptions_t92845595_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m1424414618_MetadataUsageId;
extern RuntimeClass* TimeSpan_t881159249_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m1328455528_MetadataUsageId;
extern RuntimeClass* UInt16_t2177724958_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m512406760_MetadataUsageId;
extern RuntimeClass* UInt32_t2560061978_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m590569724_MetadataUsageId;
extern RuntimeClass* UInt64_t4134040092_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m9087083_MetadataUsageId;
extern RuntimeClass* RangePositionInfo_t589968936_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m4289563046_MetadataUsageId;
extern RuntimeClass* XmlSchemaObjectEntry_t3344676971_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m1680620975_MetadataUsageId;
extern RuntimeClass* OrderBlock_t1585977831_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m2845045805_MetadataUsageId;
extern RuntimeClass* Color32_t2600501292_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m265405911_MetadataUsageId;
extern RuntimeClass* RaycastResult_t3360306849_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m3823292596_MetadataUsageId;
extern RuntimeClass* UICharInfo_t75501106_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m3768208683_MetadataUsageId;
extern RuntimeClass* UILineInfo_t4195266810_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m3719399882_MetadataUsageId;
extern RuntimeClass* UIVertex_t4057497605_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m3323348752_MetadataUsageId;
extern RuntimeClass* Vector2_t2156229523_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m2800560563_MetadataUsageId;
extern RuntimeClass* Vector3_t3722313464_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m1281248445_MetadataUsageId;
extern RuntimeClass* Vector4_t3319028937_il2cpp_TypeInfo_var;
extern const uint32_t Predicate_1_BeginInvoke_m1096326034_MetadataUsageId;
extern RuntimeClass* Task_t3187275312_il2cpp_TypeInfo_var;
extern RuntimeClass* InvalidOperationException_t56020091_il2cpp_TypeInfo_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_m772896578_RuntimeMethod_var;
extern String_t* _stringLiteral4180560538;
extern const uint32_t AsyncTaskMethodBuilder_1_SetResult_m772896578_MetadataUsageId;
extern RuntimeClass* ArgumentNullException_t1615371798_il2cpp_TypeInfo_var;
extern RuntimeClass* OperationCanceledException_t926488448_il2cpp_TypeInfo_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m3066925186_RuntimeMethod_var;
extern String_t* _stringLiteral2618865335;
extern const uint32_t AsyncTaskMethodBuilder_1_SetException_m3066925186_MetadataUsageId;
extern const RuntimeType* Boolean_t97287965_0_0_0_var;
extern const RuntimeType* Int32_t2950945753_0_0_0_var;
extern const RuntimeType* UInt32_t2560061978_0_0_0_var;
extern const RuntimeType* Byte_t1134296376_0_0_0_var;
extern const RuntimeType* SByte_t1669577662_0_0_0_var;
extern const RuntimeType* Char_t3634460470_0_0_0_var;
extern const RuntimeType* Decimal_t2948259380_0_0_0_var;
extern const RuntimeType* Int64_t3736567304_0_0_0_var;
extern const RuntimeType* UInt64_t4134040092_0_0_0_var;
extern const RuntimeType* Int16_t2552820387_0_0_0_var;
extern const RuntimeType* UInt16_t2177724958_0_0_0_var;
extern const RuntimeType* IntPtr_t_0_0_0_var;
extern const RuntimeType* UIntPtr_t_0_0_0_var;
extern RuntimeClass* Type_t_il2cpp_TypeInfo_var;
extern RuntimeClass* Boolean_t97287965_il2cpp_TypeInfo_var;
extern RuntimeClass* AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var;
extern RuntimeClass* Int32_t2950945753_il2cpp_TypeInfo_var;
extern RuntimeClass* Byte_t1134296376_il2cpp_TypeInfo_var;
extern RuntimeClass* Char_t3634460470_il2cpp_TypeInfo_var;
extern RuntimeClass* Decimal_t2948259380_il2cpp_TypeInfo_var;
extern RuntimeClass* Int64_t3736567304_il2cpp_TypeInfo_var;
extern RuntimeClass* Int16_t2552820387_il2cpp_TypeInfo_var;
extern RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
extern RuntimeClass* UIntPtr_t_il2cpp_TypeInfo_var;
extern const uint32_t AsyncTaskMethodBuilder_1_GetTaskForResult_m3290519007_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1__cctor_m3976578223_MetadataUsageId;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_m341489268_RuntimeMethod_var;
extern const uint32_t AsyncTaskMethodBuilder_1_SetResult_m341489268_MetadataUsageId;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m1162352611_RuntimeMethod_var;
extern const uint32_t AsyncTaskMethodBuilder_1_SetException_m1162352611_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_GetTaskForResult_m390966504_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1__cctor_m427407111_MetadataUsageId;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_m1633157453_RuntimeMethod_var;
extern const uint32_t AsyncTaskMethodBuilder_1_SetResult_m1633157453_MetadataUsageId;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m131199109_RuntimeMethod_var;
extern const uint32_t AsyncTaskMethodBuilder_1_SetException_m131199109_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_GetTaskForResult_m1893715023_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1__cctor_m2570198661_MetadataUsageId;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_m3905043534_RuntimeMethod_var;
extern const uint32_t AsyncTaskMethodBuilder_1_SetResult_m3905043534_MetadataUsageId;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m2740982526_RuntimeMethod_var;
extern const uint32_t AsyncTaskMethodBuilder_1_SetException_m2740982526_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_GetTaskForResult_m1878921445_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1__cctor_m958513466_MetadataUsageId;
extern RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
extern RuntimeClass* EphemeronU5BU5D_t1564620431_il2cpp_TypeInfo_var;
extern RuntimeClass* GC_t959872083_il2cpp_TypeInfo_var;
extern const uint32_t ConditionalWeakTable_2__ctor_m4235261096_MetadataUsageId;
extern const uint32_t ConditionalWeakTable_2_RehashWithoutResize_m2617471687_MetadataUsageId;
extern RuntimeClass* HashHelpers_t3497540039_il2cpp_TypeInfo_var;
extern const uint32_t ConditionalWeakTable_2_Rehash_m1268790630_MetadataUsageId;
extern RuntimeClass* ArgumentException_t132251570_il2cpp_TypeInfo_var;
extern const RuntimeMethod* ConditionalWeakTable_2_Add_m789045879_RuntimeMethod_var;
extern String_t* _stringLiteral2340373683;
extern String_t* _stringLiteral2600271970;
extern String_t* _stringLiteral3808374780;
extern const uint32_t ConditionalWeakTable_2_Add_m789045879_MetadataUsageId;
extern const RuntimeMethod* ConditionalWeakTable_2_Remove_m4015541508_RuntimeMethod_var;
extern const uint32_t ConditionalWeakTable_2_Remove_m4015541508_MetadataUsageId;
extern const RuntimeMethod* ConditionalWeakTable_2_TryGetValue_m2005289596_RuntimeMethod_var;
extern const uint32_t ConditionalWeakTable_2_TryGetValue_m2005289596_MetadataUsageId;
extern RuntimeClass* ExecutionContext_t1748372627_il2cpp_TypeInfo_var;
extern const uint32_t AsyncLocal_1_set_Value_m1031767235_MetadataUsageId;
extern const RuntimeMethod* Task_1_get_Result_m1431118879_RuntimeMethod_var;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__64_0_m1575919760_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__64_0_m2214559452_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__64_0_m3933151630_MetadataUsageId;
extern const uint32_t U3CU3Ec_U3C_cctorU3Eb__64_0_m1854667377_MetadataUsageId;
extern const uint32_t Task_1__ctor_m3610702888_MetadataUsageId;
extern const uint32_t Task_1__ctor_m334560660_MetadataUsageId;
extern const uint32_t Task_1__ctor_m890104204_MetadataUsageId;
extern const uint32_t Task_1__ctor_m996240956_MetadataUsageId;
extern const uint32_t Task_1__ctor_m4015352135_MetadataUsageId;
extern const uint32_t Task_1__ctor_m2374924913_MetadataUsageId;
extern RuntimeClass* ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Task_1__ctor_m4178786727_RuntimeMethod_var;
extern String_t* _stringLiteral2086526269;
extern String_t* _stringLiteral3860971233;
extern const uint32_t Task_1__ctor_m4178786727_MetadataUsageId;
extern const RuntimeMethod* Task_1__ctor_m2865206581_RuntimeMethod_var;
extern const uint32_t Task_1__ctor_m2865206581_MetadataUsageId;
extern const RuntimeMethod* Task_1_StartNew_m3672650448_RuntimeMethod_var;
extern String_t* _stringLiteral3941509395;
extern String_t* _stringLiteral3453924054;
extern const uint32_t Task_1_StartNew_m3672650448_MetadataUsageId;
extern const uint32_t Task_1__ctor_m444141246_MetadataUsageId;
extern const uint32_t Task_1__ctor_m1531810756_MetadataUsageId;
extern const uint32_t Task_1__ctor_m2621095337_MetadataUsageId;
extern const uint32_t Task_1__ctor_m3190153900_MetadataUsageId;
extern const uint32_t Task_1__ctor_m3838407800_MetadataUsageId;
extern const uint32_t Task_1__ctor_m3822389707_MetadataUsageId;
extern const RuntimeMethod* Task_1__ctor_m1493792860_RuntimeMethod_var;
extern const uint32_t Task_1__ctor_m1493792860_MetadataUsageId;
extern const RuntimeMethod* Task_1__ctor_m965163921_RuntimeMethod_var;
extern const uint32_t Task_1__ctor_m965163921_MetadataUsageId;
extern const RuntimeMethod* Task_1_StartNew_m931933459_RuntimeMethod_var;
extern const uint32_t Task_1_StartNew_m931933459_MetadataUsageId;
extern const uint32_t Task_1__ctor_m1775205562_MetadataUsageId;
extern const uint32_t Task_1__ctor_m3883996075_MetadataUsageId;
extern const uint32_t Task_1__ctor_m1903312075_MetadataUsageId;
extern const uint32_t Task_1__ctor_m4018142183_MetadataUsageId;
extern const uint32_t Task_1__ctor_m2534605143_MetadataUsageId;
extern const uint32_t Task_1__ctor_m3234348895_MetadataUsageId;
extern const RuntimeMethod* Task_1__ctor_m631286152_RuntimeMethod_var;
extern const uint32_t Task_1__ctor_m631286152_MetadataUsageId;
extern const RuntimeMethod* Task_1__ctor_m244026664_RuntimeMethod_var;
extern const uint32_t Task_1__ctor_m244026664_MetadataUsageId;
extern const RuntimeMethod* Task_1_StartNew_m3099410454_RuntimeMethod_var;
extern const uint32_t Task_1_StartNew_m3099410454_MetadataUsageId;
extern const uint32_t Task_1__ctor_m2030236653_MetadataUsageId;
extern const uint32_t Task_1__ctor_m2616143098_MetadataUsageId;
extern const uint32_t Task_1__ctor_m1191158001_MetadataUsageId;
extern const uint32_t Task_1__ctor_m3537226067_MetadataUsageId;
extern const uint32_t Task_1__ctor_m1363854870_MetadataUsageId;
extern const uint32_t Task_1__ctor_m2364468312_MetadataUsageId;
extern const RuntimeMethod* Task_1__ctor_m591947948_RuntimeMethod_var;
extern const uint32_t Task_1__ctor_m591947948_MetadataUsageId;
extern const RuntimeMethod* Task_1__ctor_m3400751269_RuntimeMethod_var;
extern const uint32_t Task_1__ctor_m3400751269_MetadataUsageId;
extern const RuntimeMethod* Task_1_StartNew_m3580749969_RuntimeMethod_var;
extern const uint32_t Task_1_StartNew_m3580749969_MetadataUsageId;
extern RuntimeClass* IAsyncResult_t767004451_il2cpp_TypeInfo_var;
extern const RuntimeMethod* FromAsyncTrimPromise_1_CompleteFromAsyncResult_m3465491676_RuntimeMethod_var;
extern String_t* _stringLiteral844061258;
extern String_t* _stringLiteral457728032;
extern const uint32_t FromAsyncTrimPromise_1_CompleteFromAsyncResult_m3465491676_MetadataUsageId;
extern RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
extern const uint32_t FromAsyncTrimPromise_1_Complete_m3947771803_MetadataUsageId;
extern RuntimeClass* AsyncCallback_t3962456242_il2cpp_TypeInfo_var;
extern const uint32_t FromAsyncTrimPromise_1__cctor_m3606345977_MetadataUsageId;
extern const RuntimeMethod* FromAsyncTrimPromise_1_CompleteFromAsyncResult_m919975746_RuntimeMethod_var;
extern const uint32_t FromAsyncTrimPromise_1_CompleteFromAsyncResult_m919975746_MetadataUsageId;
extern const uint32_t FromAsyncTrimPromise_1_Complete_m1864304702_MetadataUsageId;
extern const uint32_t FromAsyncTrimPromise_1__cctor_m1081384427_MetadataUsageId;
extern const RuntimeMethod* FromAsyncTrimPromise_1_CompleteFromAsyncResult_m1307441291_RuntimeMethod_var;
extern const uint32_t FromAsyncTrimPromise_1_CompleteFromAsyncResult_m1307441291_MetadataUsageId;
extern const uint32_t FromAsyncTrimPromise_1_Complete_m470245923_MetadataUsageId;
extern const uint32_t FromAsyncTrimPromise_1__cctor_m1687729421_MetadataUsageId;
extern RuntimeClass* ThreadAbortException_t4074510458_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Action_1_Invoke_m2928931602_RuntimeMethod_var;
extern const uint32_t TaskFactory_1_FromAsyncCoreLogic_m1183001924_MetadataUsageId;
extern RuntimeClass* BinaryCompatibility_t3378813580_il2cpp_TypeInfo_var;
extern RuntimeClass* AtomicBoolean_t2634115295_il2cpp_TypeInfo_var;
extern const RuntimeMethod* TaskFactory_1_FromAsyncImpl_m1082666411_RuntimeMethod_var;
extern const RuntimeMethod* Func_3_Invoke_m528074778_RuntimeMethod_var;
extern String_t* _stringLiteral1969460926;
extern String_t* _stringLiteral153292483;
extern String_t* _stringLiteral3179058573;
extern const uint32_t TaskFactory_1_FromAsyncImpl_m1082666411_MetadataUsageId;
extern const uint32_t TaskFactory_1_FromAsyncCoreLogic_m2119495785_MetadataUsageId;
extern const RuntimeMethod* TaskFactory_1_FromAsyncImpl_m1422716247_RuntimeMethod_var;
extern const uint32_t TaskFactory_1_FromAsyncImpl_m1422716247_MetadataUsageId;
extern const uint32_t TaskFactory_1_FromAsyncCoreLogic_m385455661_MetadataUsageId;
extern const RuntimeMethod* TaskFactory_1_FromAsyncImpl_m3898819863_RuntimeMethod_var;
extern const uint32_t TaskFactory_1_FromAsyncImpl_m3898819863_MetadataUsageId;
extern const uint32_t TaskFactory_1_FromAsyncCoreLogic_m3891675747_MetadataUsageId;
extern const RuntimeMethod* TaskFactory_1_FromAsyncImpl_m196723106_RuntimeMethod_var;
extern const uint32_t TaskFactory_1_FromAsyncImpl_m196723106_MetadataUsageId;
extern RuntimeClass* ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var;
extern RuntimeClass* IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var;
extern const uint32_t Tuple_2_Equals_m3225610105_MetadataUsageId;
extern RuntimeClass* IEqualityComparer_t1493878338_il2cpp_TypeInfo_var;
extern const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_m3652816150_MetadataUsageId;
extern RuntimeClass* LowLevelComparer_t611013387_il2cpp_TypeInfo_var;
extern RuntimeClass* IStructuralComparable_t3450588467_il2cpp_TypeInfo_var;
extern const uint32_t Tuple_2_System_IComparable_CompareTo_m1373145262_MetadataUsageId;
extern RuntimeClass* IComparer_t1540313114_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_m1351464050_RuntimeMethod_var;
extern String_t* _stringLiteral4055290125;
extern String_t* _stringLiteral2432405111;
extern const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m1351464050_MetadataUsageId;
extern const uint32_t Tuple_2_GetHashCode_m2036918928_MetadataUsageId;
extern const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m3110436094_MetadataUsageId;
extern RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
extern RuntimeClass* ITupleInternal_t3655233963_il2cpp_TypeInfo_var;
extern String_t* _stringLiteral3452614536;
extern const uint32_t Tuple_2_ToString_m715163863_MetadataUsageId;
extern String_t* _stringLiteral3450517380;
extern const uint32_t Tuple_2_System_ITupleInternal_ToString_m103424758_MetadataUsageId;
extern const uint32_t Tuple_2_Equals_m1782812392_MetadataUsageId;
extern const uint32_t Tuple_2_System_Collections_IStructuralEquatable_Equals_m1604241532_MetadataUsageId;
extern const uint32_t Tuple_2_System_IComparable_CompareTo_m2490824222_MetadataUsageId;
extern const RuntimeMethod* Tuple_2_System_Collections_IStructuralComparable_CompareTo_m3897890118_RuntimeMethod_var;
extern const uint32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m3897890118_MetadataUsageId;
extern const uint32_t Tuple_2_GetHashCode_m2612735482_MetadataUsageId;
extern const uint32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m1400802334_MetadataUsageId;
extern const uint32_t Tuple_2_ToString_m2595279462_MetadataUsageId;
extern const uint32_t Tuple_2_System_ITupleInternal_ToString_m3531129415_MetadataUsageId;
extern const uint32_t Tuple_3_Equals_m2987443164_MetadataUsageId;
extern const uint32_t Tuple_3_System_Collections_IStructuralEquatable_Equals_m3742707436_MetadataUsageId;
extern const uint32_t Tuple_3_System_IComparable_CompareTo_m1424558715_MetadataUsageId;
extern const RuntimeMethod* Tuple_3_System_Collections_IStructuralComparable_CompareTo_m2718412939_RuntimeMethod_var;
extern const uint32_t Tuple_3_System_Collections_IStructuralComparable_CompareTo_m2718412939_MetadataUsageId;
extern const uint32_t Tuple_3_GetHashCode_m659657982_MetadataUsageId;
extern const uint32_t Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m3372596419_MetadataUsageId;
extern const uint32_t Tuple_3_ToString_m464080828_MetadataUsageId;
extern const uint32_t Tuple_3_System_ITupleInternal_ToString_m3664369537_MetadataUsageId;
extern const uint32_t Tuple_4_Equals_m60921435_MetadataUsageId;
extern const uint32_t Tuple_4_System_Collections_IStructuralEquatable_Equals_m1615368747_MetadataUsageId;
extern const uint32_t Tuple_4_System_IComparable_CompareTo_m2230556958_MetadataUsageId;
extern const RuntimeMethod* Tuple_4_System_Collections_IStructuralComparable_CompareTo_m245883596_RuntimeMethod_var;
extern const uint32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m245883596_MetadataUsageId;
extern const uint32_t Tuple_4_GetHashCode_m4200754752_MetadataUsageId;
extern const uint32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m3673523563_MetadataUsageId;
extern const uint32_t Tuple_4_ToString_m3507888759_MetadataUsageId;
extern const uint32_t Tuple_4_System_ITupleInternal_ToString_m1199886910_MetadataUsageId;
extern const uint32_t Tuple_4_Equals_m2233486523_MetadataUsageId;
extern const uint32_t Tuple_4_System_Collections_IStructuralEquatable_Equals_m3835351674_MetadataUsageId;
extern const uint32_t Tuple_4_System_IComparable_CompareTo_m1306698847_MetadataUsageId;
extern const RuntimeMethod* Tuple_4_System_Collections_IStructuralComparable_CompareTo_m110849818_RuntimeMethod_var;
extern const uint32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m110849818_MetadataUsageId;
extern const uint32_t Tuple_4_GetHashCode_m3496458865_MetadataUsageId;
extern const uint32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m2076237339_MetadataUsageId;
extern const uint32_t Tuple_4_ToString_m3336041503_MetadataUsageId;
extern const uint32_t Tuple_4_System_ITupleInternal_ToString_m1635418709_MetadataUsageId;
extern const uint32_t Tuple_4_Equals_m618710271_MetadataUsageId;
extern const uint32_t Tuple_4_System_Collections_IStructuralEquatable_Equals_m3337480863_MetadataUsageId;
extern const uint32_t Tuple_4_System_IComparable_CompareTo_m864434890_MetadataUsageId;
extern const RuntimeMethod* Tuple_4_System_Collections_IStructuralComparable_CompareTo_m991048049_RuntimeMethod_var;
extern const uint32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m991048049_MetadataUsageId;
extern const uint32_t Tuple_4_GetHashCode_m839529646_MetadataUsageId;
extern const uint32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m1331059486_MetadataUsageId;
extern const uint32_t Tuple_4_ToString_m2434313778_MetadataUsageId;
extern const uint32_t Tuple_4_System_ITupleInternal_ToString_m1031679431_MetadataUsageId;
extern const uint32_t InvokableCall_1__ctor_m337513891_MetadataUsageId;
extern const RuntimeMethod* InvokableCall_1_Invoke_m3497872319_RuntimeMethod_var;
extern String_t* _stringLiteral1864861238;
extern const uint32_t InvokableCall_1_Invoke_m3497872319_MetadataUsageId;
extern const uint32_t InvokableCall_1__ctor_m854286695_MetadataUsageId;
extern const RuntimeMethod* InvokableCall_1_Invoke_m891112188_RuntimeMethod_var;
extern const uint32_t InvokableCall_1_Invoke_m891112188_MetadataUsageId;
extern const uint32_t InvokableCall_1__ctor_m974734014_MetadataUsageId;
extern const RuntimeMethod* InvokableCall_1_Invoke_m4071643321_RuntimeMethod_var;
extern const uint32_t InvokableCall_1_Invoke_m4071643321_MetadataUsageId;
extern const uint32_t InvokableCall_1__ctor_m4147324340_MetadataUsageId;
extern const RuntimeMethod* InvokableCall_1_Invoke_m4150391468_RuntimeMethod_var;
extern const uint32_t InvokableCall_1_Invoke_m4150391468_MetadataUsageId;
extern const uint32_t InvokableCall_1__ctor_m3910153236_MetadataUsageId;
extern const RuntimeMethod* InvokableCall_1_Invoke_m1524307439_RuntimeMethod_var;
extern const uint32_t InvokableCall_1_Invoke_m1524307439_MetadataUsageId;
extern const uint32_t InvokableCall_1__ctor_m2254957474_MetadataUsageId;
extern const RuntimeMethod* InvokableCall_1_Invoke_m1160628299_RuntimeMethod_var;
extern const uint32_t InvokableCall_1_Invoke_m1160628299_MetadataUsageId;
extern const uint32_t InvokableCall_2__ctor_m3619012188_MetadataUsageId;
extern const RuntimeMethod* InvokableCall_2_Invoke_m1520082677_RuntimeMethod_var;
extern const uint32_t InvokableCall_2_Invoke_m1520082677_MetadataUsageId;
extern const uint32_t InvokableCall_3__ctor_m4245235439_MetadataUsageId;
extern const RuntimeMethod* InvokableCall_3_Invoke_m3141788616_RuntimeMethod_var;
extern const uint32_t InvokableCall_3_Invoke_m3141788616_MetadataUsageId;
extern const uint32_t InvokableCall_4__ctor_m3136187504_MetadataUsageId;
extern const RuntimeMethod* InvokableCall_4_Invoke_m3371718871_RuntimeMethod_var;
extern const uint32_t InvokableCall_4_Invoke_m3371718871_MetadataUsageId;
extern const uint32_t UnityAction_1_BeginInvoke_m3721186338_MetadataUsageId;
extern const uint32_t UnityAction_1_BeginInvoke_m4018737650_MetadataUsageId;
extern const uint32_t UnityAction_1_BeginInvoke_m2530432941_MetadataUsageId;
extern RuntimeClass* Color_t2555686324_il2cpp_TypeInfo_var;
extern const uint32_t UnityAction_1_BeginInvoke_m1166386047_MetadataUsageId;
extern RuntimeClass* Scene_t2348375561_il2cpp_TypeInfo_var;
extern const uint32_t UnityAction_1_BeginInvoke_m677813163_MetadataUsageId;
extern const uint32_t UnityAction_1_BeginInvoke_m2713840246_MetadataUsageId;
extern RuntimeClass* LoadSceneMode_t3251202195_il2cpp_TypeInfo_var;
extern const uint32_t UnityAction_2_BeginInvoke_m1769266175_MetadataUsageId;
extern const uint32_t UnityAction_2_BeginInvoke_m1733258791_MetadataUsageId;
extern RuntimeClass* TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var;
extern const uint32_t UnityEvent_1_FindMethod_Impl_m2511430237_MetadataUsageId;
extern RuntimeClass* InvokableCall_t832123510_il2cpp_TypeInfo_var;
extern RuntimeClass* ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var;
extern const RuntimeMethod* List_1_get_Item_m4156046467_RuntimeMethod_var;
extern const RuntimeMethod* List_1_get_Count_m1245201994_RuntimeMethod_var;
extern const uint32_t UnityEvent_1_Invoke_m933614109_MetadataUsageId;
extern const uint32_t UnityEvent_1_FindMethod_Impl_m1397247356_MetadataUsageId;
extern const uint32_t UnityEvent_1_Invoke_m3604335408_MetadataUsageId;
extern const uint32_t UnityEvent_1_FindMethod_Impl_m322741469_MetadataUsageId;
extern const uint32_t UnityEvent_1_Invoke_m2734859485_MetadataUsageId;
extern const uint32_t UnityEvent_1_FindMethod_Impl_m555893253_MetadataUsageId;
extern const uint32_t UnityEvent_1_Invoke_m3400677460_MetadataUsageId;
extern const uint32_t UnityEvent_1_FindMethod_Impl_m1420160216_MetadataUsageId;
extern const uint32_t UnityEvent_1_Invoke_m3884411426_MetadataUsageId;
extern const uint32_t UnityEvent_1_FindMethod_Impl_m2325208510_MetadataUsageId;
extern const uint32_t UnityEvent_1_Invoke_m3432495026_MetadataUsageId;
struct Exception_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Decimal_t2948259380 ;
struct DelegateU5BU5D_t1703627840;
struct Task_1U5BU5D_t2104922937;
struct EphemeronU5BU5D_t1564620431;
struct ObjectU5BU5D_t2843939325;
struct TypeU5BU5D_t3940880105;
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
#ifndef U3CU3EC_T740675757_H
#define U3CU3EC_T740675757_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1/<>c<System.Object>
struct U3CU3Ec_t740675757 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t740675757_StaticFields
{
public:
// System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9
U3CU3Ec_t740675757 * ___U3CU3E9_0;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t740675757_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t740675757 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t740675757 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t740675757 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC_T740675757_H
#ifndef U3CU3EC_T277158172_H
#define U3CU3EC_T277158172_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>
struct U3CU3Ec_t277158172 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t277158172_StaticFields
{
public:
// System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9
U3CU3Ec_t277158172 * ___U3CU3E9_0;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t277158172_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t277158172 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t277158172 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t277158172 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC_T277158172_H
#ifndef U3CU3EC_T611515346_H
#define U3CU3EC_T611515346_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1/<>c<System.Int32>
struct U3CU3Ec_t611515346 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t611515346_StaticFields
{
public:
// System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9
U3CU3Ec_t611515346 * ___U3CU3E9_0;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t611515346_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t611515346 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t611515346 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t611515346 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC_T611515346_H
#ifndef U3CU3EC_T2052824854_H
#define U3CU3EC_T2052824854_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1/<>c<System.Boolean>
struct U3CU3Ec_t2052824854 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t2052824854_StaticFields
{
public:
// System.Threading.Tasks.Task`1/<>c<TResult> System.Threading.Tasks.Task`1/<>c::<>9
U3CU3Ec_t2052824854 * ___U3CU3E9_0;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t2052824854_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t2052824854 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t2052824854 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t2052824854 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC_T2052824854_H
#ifndef SYSTEMTHREADINGTASKS_FUTUREDEBUGVIEW_1_T4045752234_H
#define SYSTEMTHREADINGTASKS_FUTUREDEBUGVIEW_1_T4045752234_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>
struct SystemThreadingTasks_FutureDebugView_1_t4045752234 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMTHREADINGTASKS_FUTUREDEBUGVIEW_1_T4045752234_H
#ifndef U3CU3EC__DISPLAYCLASS35_1_T707366106_H
#define U3CU3EC__DISPLAYCLASS35_1_T707366106_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Boolean>
struct U3CU3Ec__DisplayClass35_1_t707366106 : public RuntimeObject
{
public:
// System.Func`2<System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::endFunction
Func_2_t391681124 * ___endFunction_0;
// System.Action`1<System.IAsyncResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::endAction
Action_1_t939472046 * ___endAction_1;
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::promise
Task_1_t1502828140 * ___promise_2;
public:
inline static int32_t get_offset_of_endFunction_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t707366106, ___endFunction_0)); }
inline Func_2_t391681124 * get_endFunction_0() const { return ___endFunction_0; }
inline Func_2_t391681124 ** get_address_of_endFunction_0() { return &___endFunction_0; }
inline void set_endFunction_0(Func_2_t391681124 * value)
{
___endFunction_0 = value;
Il2CppCodeGenWriteBarrier((&___endFunction_0), value);
}
inline static int32_t get_offset_of_endAction_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t707366106, ___endAction_1)); }
inline Action_1_t939472046 * get_endAction_1() const { return ___endAction_1; }
inline Action_1_t939472046 ** get_address_of_endAction_1() { return &___endAction_1; }
inline void set_endAction_1(Action_1_t939472046 * value)
{
___endAction_1 = value;
Il2CppCodeGenWriteBarrier((&___endAction_1), value);
}
inline static int32_t get_offset_of_promise_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t707366106, ___promise_2)); }
inline Task_1_t1502828140 * get_promise_2() const { return ___promise_2; }
inline Task_1_t1502828140 ** get_address_of_promise_2() { return &___promise_2; }
inline void set_promise_2(Task_1_t1502828140 * value)
{
___promise_2 = value;
Il2CppCodeGenWriteBarrier((&___promise_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__DISPLAYCLASS35_1_T707366106_H
#ifndef U3CU3EC__DISPLAYCLASS35_0_T3147426198_H
#define U3CU3EC__DISPLAYCLASS35_0_T3147426198_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Int32>
struct U3CU3Ec__DisplayClass35_0_t3147426198 : public RuntimeObject
{
public:
// System.Threading.AtomicBoolean System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::invoked
AtomicBoolean_t2634115295 * ___invoked_0;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::CS$<>8__locals1
U3CU3Ec__DisplayClass35_1_t3561023894 * ___CSU24U3CU3E8__locals1_1;
public:
inline static int32_t get_offset_of_invoked_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t3147426198, ___invoked_0)); }
inline AtomicBoolean_t2634115295 * get_invoked_0() const { return ___invoked_0; }
inline AtomicBoolean_t2634115295 ** get_address_of_invoked_0() { return &___invoked_0; }
inline void set_invoked_0(AtomicBoolean_t2634115295 * value)
{
___invoked_0 = value;
Il2CppCodeGenWriteBarrier((&___invoked_0), value);
}
inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t3147426198, ___CSU24U3CU3E8__locals1_1)); }
inline U3CU3Ec__DisplayClass35_1_t3561023894 * get_CSU24U3CU3E8__locals1_1() const { return ___CSU24U3CU3E8__locals1_1; }
inline U3CU3Ec__DisplayClass35_1_t3561023894 ** get_address_of_CSU24U3CU3E8__locals1_1() { return &___CSU24U3CU3E8__locals1_1; }
inline void set_CSU24U3CU3E8__locals1_1(U3CU3Ec__DisplayClass35_1_t3561023894 * value)
{
___CSU24U3CU3E8__locals1_1 = value;
Il2CppCodeGenWriteBarrier((&___CSU24U3CU3E8__locals1_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__DISPLAYCLASS35_0_T3147426198_H
#ifndef ATOMICBOOLEAN_T2634115295_H
#define ATOMICBOOLEAN_T2634115295_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.AtomicBoolean
struct AtomicBoolean_t2634115295 : public RuntimeObject
{
public:
// System.Int32 System.Threading.AtomicBoolean::flag
int32_t ___flag_0;
public:
inline static int32_t get_offset_of_flag_0() { return static_cast<int32_t>(offsetof(AtomicBoolean_t2634115295, ___flag_0)); }
inline int32_t get_flag_0() const { return ___flag_0; }
inline int32_t* get_address_of_flag_0() { return &___flag_0; }
inline void set_flag_0(int32_t value)
{
___flag_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATOMICBOOLEAN_T2634115295_H
#ifndef TASKSCHEDULER_T1196198384_H
#define TASKSCHEDULER_T1196198384_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t1196198384 : public RuntimeObject
{
public:
public:
};
struct TaskScheduler_t1196198384_StaticFields
{
public:
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object> System.Threading.Tasks.TaskScheduler::s_activeTaskSchedulers
ConditionalWeakTable_2_t2384618318 * ___s_activeTaskSchedulers_0;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskScheduler::s_defaultTaskScheduler
TaskScheduler_t1196198384 * ___s_defaultTaskScheduler_1;
// System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs> System.Threading.Tasks.TaskScheduler::_unobservedTaskException
EventHandler_1_t3366404161 * ____unobservedTaskException_2;
// System.Object System.Threading.Tasks.TaskScheduler::_unobservedTaskExceptionLockObject
RuntimeObject * ____unobservedTaskExceptionLockObject_3;
public:
inline static int32_t get_offset_of_s_activeTaskSchedulers_0() { return static_cast<int32_t>(offsetof(TaskScheduler_t1196198384_StaticFields, ___s_activeTaskSchedulers_0)); }
inline ConditionalWeakTable_2_t2384618318 * get_s_activeTaskSchedulers_0() const { return ___s_activeTaskSchedulers_0; }
inline ConditionalWeakTable_2_t2384618318 ** get_address_of_s_activeTaskSchedulers_0() { return &___s_activeTaskSchedulers_0; }
inline void set_s_activeTaskSchedulers_0(ConditionalWeakTable_2_t2384618318 * value)
{
___s_activeTaskSchedulers_0 = value;
Il2CppCodeGenWriteBarrier((&___s_activeTaskSchedulers_0), value);
}
inline static int32_t get_offset_of_s_defaultTaskScheduler_1() { return static_cast<int32_t>(offsetof(TaskScheduler_t1196198384_StaticFields, ___s_defaultTaskScheduler_1)); }
inline TaskScheduler_t1196198384 * get_s_defaultTaskScheduler_1() const { return ___s_defaultTaskScheduler_1; }
inline TaskScheduler_t1196198384 ** get_address_of_s_defaultTaskScheduler_1() { return &___s_defaultTaskScheduler_1; }
inline void set_s_defaultTaskScheduler_1(TaskScheduler_t1196198384 * value)
{
___s_defaultTaskScheduler_1 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultTaskScheduler_1), value);
}
inline static int32_t get_offset_of__unobservedTaskException_2() { return static_cast<int32_t>(offsetof(TaskScheduler_t1196198384_StaticFields, ____unobservedTaskException_2)); }
inline EventHandler_1_t3366404161 * get__unobservedTaskException_2() const { return ____unobservedTaskException_2; }
inline EventHandler_1_t3366404161 ** get_address_of__unobservedTaskException_2() { return &____unobservedTaskException_2; }
inline void set__unobservedTaskException_2(EventHandler_1_t3366404161 * value)
{
____unobservedTaskException_2 = value;
Il2CppCodeGenWriteBarrier((&____unobservedTaskException_2), value);
}
inline static int32_t get_offset_of__unobservedTaskExceptionLockObject_3() { return static_cast<int32_t>(offsetof(TaskScheduler_t1196198384_StaticFields, ____unobservedTaskExceptionLockObject_3)); }
inline RuntimeObject * get__unobservedTaskExceptionLockObject_3() const { return ____unobservedTaskExceptionLockObject_3; }
inline RuntimeObject ** get_address_of__unobservedTaskExceptionLockObject_3() { return &____unobservedTaskExceptionLockObject_3; }
inline void set__unobservedTaskExceptionLockObject_3(RuntimeObject * value)
{
____unobservedTaskExceptionLockObject_3 = value;
Il2CppCodeGenWriteBarrier((&____unobservedTaskExceptionLockObject_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKSCHEDULER_T1196198384_H
#ifndef U3CU3EC__DISPLAYCLASS35_0_T293768410_H
#define U3CU3EC__DISPLAYCLASS35_0_T293768410_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Boolean>
struct U3CU3Ec__DisplayClass35_0_t293768410 : public RuntimeObject
{
public:
// System.Threading.AtomicBoolean System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::invoked
AtomicBoolean_t2634115295 * ___invoked_0;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::CS$<>8__locals1
U3CU3Ec__DisplayClass35_1_t707366106 * ___CSU24U3CU3E8__locals1_1;
public:
inline static int32_t get_offset_of_invoked_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t293768410, ___invoked_0)); }
inline AtomicBoolean_t2634115295 * get_invoked_0() const { return ___invoked_0; }
inline AtomicBoolean_t2634115295 ** get_address_of_invoked_0() { return &___invoked_0; }
inline void set_invoked_0(AtomicBoolean_t2634115295 * value)
{
___invoked_0 = value;
Il2CppCodeGenWriteBarrier((&___invoked_0), value);
}
inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t293768410, ___CSU24U3CU3E8__locals1_1)); }
inline U3CU3Ec__DisplayClass35_1_t707366106 * get_CSU24U3CU3E8__locals1_1() const { return ___CSU24U3CU3E8__locals1_1; }
inline U3CU3Ec__DisplayClass35_1_t707366106 ** get_address_of_CSU24U3CU3E8__locals1_1() { return &___CSU24U3CU3E8__locals1_1; }
inline void set_CSU24U3CU3E8__locals1_1(U3CU3Ec__DisplayClass35_1_t707366106 * value)
{
___CSU24U3CU3E8__locals1_1 = value;
Il2CppCodeGenWriteBarrier((&___CSU24U3CU3E8__locals1_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__DISPLAYCLASS35_0_T293768410_H
#ifndef CONDITIONALWEAKTABLE_2_T3582039290_H
#define CONDITIONALWEAKTABLE_2_T3582039290_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>
struct ConditionalWeakTable_2_t3582039290 : public RuntimeObject
{
public:
// System.Runtime.CompilerServices.Ephemeron[] System.Runtime.CompilerServices.ConditionalWeakTable`2::data
EphemeronU5BU5D_t1564620431* ___data_0;
// System.Object System.Runtime.CompilerServices.ConditionalWeakTable`2::_lock
RuntimeObject * ____lock_1;
// System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable`2::size
int32_t ___size_2;
public:
inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t3582039290, ___data_0)); }
inline EphemeronU5BU5D_t1564620431* get_data_0() const { return ___data_0; }
inline EphemeronU5BU5D_t1564620431** get_address_of_data_0() { return &___data_0; }
inline void set_data_0(EphemeronU5BU5D_t1564620431* value)
{
___data_0 = value;
Il2CppCodeGenWriteBarrier((&___data_0), value);
}
inline static int32_t get_offset_of__lock_1() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t3582039290, ____lock_1)); }
inline RuntimeObject * get__lock_1() const { return ____lock_1; }
inline RuntimeObject ** get_address_of__lock_1() { return &____lock_1; }
inline void set__lock_1(RuntimeObject * value)
{
____lock_1 = value;
Il2CppCodeGenWriteBarrier((&____lock_1), value);
}
inline static int32_t get_offset_of_size_2() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t3582039290, ___size_2)); }
inline int32_t get_size_2() const { return ___size_2; }
inline int32_t* get_address_of_size_2() { return &___size_2; }
inline void set_size_2(int32_t value)
{
___size_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONDITIONALWEAKTABLE_2_T3582039290_H
#ifndef GC_T959872083_H
#define GC_T959872083_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.GC
struct GC_t959872083 : public RuntimeObject
{
public:
public:
};
struct GC_t959872083_StaticFields
{
public:
// System.Object System.GC::EPHEMERON_TOMBSTONE
RuntimeObject * ___EPHEMERON_TOMBSTONE_0;
public:
inline static int32_t get_offset_of_EPHEMERON_TOMBSTONE_0() { return static_cast<int32_t>(offsetof(GC_t959872083_StaticFields, ___EPHEMERON_TOMBSTONE_0)); }
inline RuntimeObject * get_EPHEMERON_TOMBSTONE_0() const { return ___EPHEMERON_TOMBSTONE_0; }
inline RuntimeObject ** get_address_of_EPHEMERON_TOMBSTONE_0() { return &___EPHEMERON_TOMBSTONE_0; }
inline void set_EPHEMERON_TOMBSTONE_0(RuntimeObject * value)
{
___EPHEMERON_TOMBSTONE_0 = value;
Il2CppCodeGenWriteBarrier((&___EPHEMERON_TOMBSTONE_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GC_T959872083_H
#ifndef ASYNCTASKCACHE_T1993881178_H
#define ASYNCTASKCACHE_T1993881178_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskCache
struct AsyncTaskCache_t1993881178 : public RuntimeObject
{
public:
public:
};
struct AsyncTaskCache_t1993881178_StaticFields
{
public:
// System.Threading.Tasks.Task`1<System.Boolean> System.Runtime.CompilerServices.AsyncTaskCache::TrueTask
Task_1_t1502828140 * ___TrueTask_0;
// System.Threading.Tasks.Task`1<System.Boolean> System.Runtime.CompilerServices.AsyncTaskCache::FalseTask
Task_1_t1502828140 * ___FalseTask_1;
// System.Threading.Tasks.Task`1<System.Int32>[] System.Runtime.CompilerServices.AsyncTaskCache::Int32Tasks
Task_1U5BU5D_t2104922937* ___Int32Tasks_2;
public:
inline static int32_t get_offset_of_TrueTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskCache_t1993881178_StaticFields, ___TrueTask_0)); }
inline Task_1_t1502828140 * get_TrueTask_0() const { return ___TrueTask_0; }
inline Task_1_t1502828140 ** get_address_of_TrueTask_0() { return &___TrueTask_0; }
inline void set_TrueTask_0(Task_1_t1502828140 * value)
{
___TrueTask_0 = value;
Il2CppCodeGenWriteBarrier((&___TrueTask_0), value);
}
inline static int32_t get_offset_of_FalseTask_1() { return static_cast<int32_t>(offsetof(AsyncTaskCache_t1993881178_StaticFields, ___FalseTask_1)); }
inline Task_1_t1502828140 * get_FalseTask_1() const { return ___FalseTask_1; }
inline Task_1_t1502828140 ** get_address_of_FalseTask_1() { return &___FalseTask_1; }
inline void set_FalseTask_1(Task_1_t1502828140 * value)
{
___FalseTask_1 = value;
Il2CppCodeGenWriteBarrier((&___FalseTask_1), value);
}
inline static int32_t get_offset_of_Int32Tasks_2() { return static_cast<int32_t>(offsetof(AsyncTaskCache_t1993881178_StaticFields, ___Int32Tasks_2)); }
inline Task_1U5BU5D_t2104922937* get_Int32Tasks_2() const { return ___Int32Tasks_2; }
inline Task_1U5BU5D_t2104922937** get_address_of_Int32Tasks_2() { return &___Int32Tasks_2; }
inline void set_Int32Tasks_2(Task_1U5BU5D_t2104922937* value)
{
___Int32Tasks_2 = value;
Il2CppCodeGenWriteBarrier((&___Int32Tasks_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKCACHE_T1993881178_H
#ifndef STRING_T_H
#define STRING_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((&___Empty_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRING_T_H
#ifndef EXCEPTION_T_H
#define EXCEPTION_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_t2481557153 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t1169129676* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4013366056* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((&____className_1), value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((&____message_2), value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((&____data_3), value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((&____innerException_4), value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((&____helpURL_5), value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((&____stackTrace_6), value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((&____stackTraceString_7), value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_8), value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((&____dynamicMethods_10), value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((&____source_12), value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t2481557153 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t2481557153 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t2481557153 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((&____safeSerializationManager_13), value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t1169129676* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t1169129676** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t1169129676* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((&___captured_traces_14), value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4013366056* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4013366056** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4013366056* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((&___native_trace_ips_15), value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((&___s_EDILock_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t2481557153 * ____safeSerializationManager_13;
StackTraceU5BU5D_t1169129676* ___captured_traces_14;
intptr_t* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t2481557153 * ____safeSerializationManager_13;
StackTraceU5BU5D_t1169129676* ___captured_traces_14;
intptr_t* ___native_trace_ips_15;
};
#endif // EXCEPTION_T_H
#ifndef SPARSELYPOPULATEDARRAYFRAGMENT_1_T2623668647_H
#define SPARSELYPOPULATEDARRAYFRAGMENT_1_T2623668647_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.SparselyPopulatedArrayFragment`1<System.Object>
struct SparselyPopulatedArrayFragment_1_t2623668647 : public RuntimeObject
{
public:
// T[] System.Threading.SparselyPopulatedArrayFragment`1::m_elements
ObjectU5BU5D_t2843939325* ___m_elements_0;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_freeCount
int32_t ___m_freeCount_1;
// System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_next
SparselyPopulatedArrayFragment_1_t2623668647 * ___m_next_2;
// System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_prev
SparselyPopulatedArrayFragment_1_t2623668647 * ___m_prev_3;
public:
inline static int32_t get_offset_of_m_elements_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t2623668647, ___m_elements_0)); }
inline ObjectU5BU5D_t2843939325* get_m_elements_0() const { return ___m_elements_0; }
inline ObjectU5BU5D_t2843939325** get_address_of_m_elements_0() { return &___m_elements_0; }
inline void set_m_elements_0(ObjectU5BU5D_t2843939325* value)
{
___m_elements_0 = value;
Il2CppCodeGenWriteBarrier((&___m_elements_0), value);
}
inline static int32_t get_offset_of_m_freeCount_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t2623668647, ___m_freeCount_1)); }
inline int32_t get_m_freeCount_1() const { return ___m_freeCount_1; }
inline int32_t* get_address_of_m_freeCount_1() { return &___m_freeCount_1; }
inline void set_m_freeCount_1(int32_t value)
{
___m_freeCount_1 = value;
}
inline static int32_t get_offset_of_m_next_2() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t2623668647, ___m_next_2)); }
inline SparselyPopulatedArrayFragment_1_t2623668647 * get_m_next_2() const { return ___m_next_2; }
inline SparselyPopulatedArrayFragment_1_t2623668647 ** get_address_of_m_next_2() { return &___m_next_2; }
inline void set_m_next_2(SparselyPopulatedArrayFragment_1_t2623668647 * value)
{
___m_next_2 = value;
Il2CppCodeGenWriteBarrier((&___m_next_2), value);
}
inline static int32_t get_offset_of_m_prev_3() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t2623668647, ___m_prev_3)); }
inline SparselyPopulatedArrayFragment_1_t2623668647 * get_m_prev_3() const { return ___m_prev_3; }
inline SparselyPopulatedArrayFragment_1_t2623668647 ** get_address_of_m_prev_3() { return &___m_prev_3; }
inline void set_m_prev_3(SparselyPopulatedArrayFragment_1_t2623668647 * value)
{
___m_prev_3 = value;
Il2CppCodeGenWriteBarrier((&___m_prev_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SPARSELYPOPULATEDARRAYFRAGMENT_1_T2623668647_H
#ifndef SHARED_1_T712168394_H
#define SHARED_1_T712168394_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Shared`1<System.Object>
struct Shared_1_t712168394 : public RuntimeObject
{
public:
// T System.Threading.Tasks.Shared`1::Value
RuntimeObject * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Shared_1_t712168394, ___Value_0)); }
inline RuntimeObject * get_Value_0() const { return ___Value_0; }
inline RuntimeObject ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(RuntimeObject * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((&___Value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SHARED_1_T712168394_H
#ifndef SPARSELYPOPULATEDARRAY_1_T3787047113_H
#define SPARSELYPOPULATEDARRAY_1_T3787047113_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.SparselyPopulatedArray`1<System.Object>
struct SparselyPopulatedArray_1_t3787047113 : public RuntimeObject
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArray`1::m_tail
SparselyPopulatedArrayFragment_1_t2623668647 * ___m_tail_0;
public:
inline static int32_t get_offset_of_m_tail_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArray_1_t3787047113, ___m_tail_0)); }
inline SparselyPopulatedArrayFragment_1_t2623668647 * get_m_tail_0() const { return ___m_tail_0; }
inline SparselyPopulatedArrayFragment_1_t2623668647 ** get_address_of_m_tail_0() { return &___m_tail_0; }
inline void set_m_tail_0(SparselyPopulatedArrayFragment_1_t2623668647 * value)
{
___m_tail_0 = value;
Il2CppCodeGenWriteBarrier((&___m_tail_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SPARSELYPOPULATEDARRAY_1_T3787047113_H
#ifndef EMPTYARRAY_1_T3464466611_H
#define EMPTYARRAY_1_T3464466611_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_t3464466611 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t3464466611_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_t2843939325* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t3464466611_StaticFields, ___Value_0)); }
inline ObjectU5BU5D_t2843939325* get_Value_0() const { return ___Value_0; }
inline ObjectU5BU5D_t2843939325** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ObjectU5BU5D_t2843939325* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((&___Value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYARRAY_1_T3464466611_H
#ifndef ASYNCLOCAL_1_T1349483261_H
#define ASYNCLOCAL_1_T1349483261_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.AsyncLocal`1<System.Object>
struct AsyncLocal_1_t1349483261 : public RuntimeObject
{
public:
// System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<T>> System.Threading.AsyncLocal`1::m_valueChangedHandler
Action_1_t588642880 * ___m_valueChangedHandler_0;
public:
inline static int32_t get_offset_of_m_valueChangedHandler_0() { return static_cast<int32_t>(offsetof(AsyncLocal_1_t1349483261, ___m_valueChangedHandler_0)); }
inline Action_1_t588642880 * get_m_valueChangedHandler_0() const { return ___m_valueChangedHandler_0; }
inline Action_1_t588642880 ** get_address_of_m_valueChangedHandler_0() { return &___m_valueChangedHandler_0; }
inline void set_m_valueChangedHandler_0(Action_1_t588642880 * value)
{
___m_valueChangedHandler_0 = value;
Il2CppCodeGenWriteBarrier((&___m_valueChangedHandler_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCLOCAL_1_T1349483261_H
#ifndef U3CU3EC__DISPLAYCLASS35_1_T3561023894_H
#define U3CU3EC__DISPLAYCLASS35_1_T3561023894_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Int32>
struct U3CU3Ec__DisplayClass35_1_t3561023894 : public RuntimeObject
{
public:
// System.Func`2<System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::endFunction
Func_2_t3245338912 * ___endFunction_0;
// System.Action`1<System.IAsyncResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::endAction
Action_1_t939472046 * ___endAction_1;
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::promise
Task_1_t61518632 * ___promise_2;
public:
inline static int32_t get_offset_of_endFunction_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t3561023894, ___endFunction_0)); }
inline Func_2_t3245338912 * get_endFunction_0() const { return ___endFunction_0; }
inline Func_2_t3245338912 ** get_address_of_endFunction_0() { return &___endFunction_0; }
inline void set_endFunction_0(Func_2_t3245338912 * value)
{
___endFunction_0 = value;
Il2CppCodeGenWriteBarrier((&___endFunction_0), value);
}
inline static int32_t get_offset_of_endAction_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t3561023894, ___endAction_1)); }
inline Action_1_t939472046 * get_endAction_1() const { return ___endAction_1; }
inline Action_1_t939472046 ** get_address_of_endAction_1() { return &___endAction_1; }
inline void set_endAction_1(Action_1_t939472046 * value)
{
___endAction_1 = value;
Il2CppCodeGenWriteBarrier((&___endAction_1), value);
}
inline static int32_t get_offset_of_promise_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t3561023894, ___promise_2)); }
inline Task_1_t61518632 * get_promise_2() const { return ___promise_2; }
inline Task_1_t61518632 ** get_address_of_promise_2() { return &___promise_2; }
inline void set_promise_2(Task_1_t61518632 * value)
{
___promise_2 = value;
Il2CppCodeGenWriteBarrier((&___promise_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__DISPLAYCLASS35_1_T3561023894_H
#ifndef TUPLE_4_T280230887_H
#define TUPLE_4_T280230887_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>
struct Tuple_4_t280230887 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
int32_t ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
int32_t ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
int32_t ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
bool ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t280230887, ___m_Item1_0)); }
inline int32_t get_m_Item1_0() const { return ___m_Item1_0; }
inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(int32_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t280230887, ___m_Item2_1)); }
inline int32_t get_m_Item2_1() const { return ___m_Item2_1; }
inline int32_t* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(int32_t value)
{
___m_Item2_1 = value;
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t280230887, ___m_Item3_2)); }
inline int32_t get_m_Item3_2() const { return ___m_Item3_2; }
inline int32_t* get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(int32_t value)
{
___m_Item3_2 = value;
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t280230887, ___m_Item4_3)); }
inline bool get_m_Item4_3() const { return ___m_Item4_3; }
inline bool* get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(bool value)
{
___m_Item4_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_4_T280230887_H
#ifndef TUPLE_4_T10520759_H
#define TUPLE_4_T10520759_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>
struct Tuple_4_t10520759 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
int32_t ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
int32_t ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t10520759, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t10520759, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t10520759, ___m_Item3_2)); }
inline int32_t get_m_Item3_2() const { return ___m_Item3_2; }
inline int32_t* get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(int32_t value)
{
___m_Item3_2 = value;
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t10520759, ___m_Item4_3)); }
inline int32_t get_m_Item4_3() const { return ___m_Item4_3; }
inline int32_t* get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(int32_t value)
{
___m_Item4_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_4_T10520759_H
#ifndef TUPLE_3_T3230838485_H
#define TUPLE_3_T3230838485_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`3<System.Object,System.Object,System.Object>
struct Tuple_3_t3230838485 : public RuntimeObject
{
public:
// T1 System.Tuple`3::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`3::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`3::m_Item3
RuntimeObject * ___m_Item3_2;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_3_t3230838485, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_3_t3230838485, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_3_t3230838485, ___m_Item3_2)); }
inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; }
inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(RuntimeObject * value)
{
___m_Item3_2 = value;
Il2CppCodeGenWriteBarrier((&___m_Item3_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_3_T3230838485_H
#ifndef STRINGBUILDER_T_H
#define STRINGBUILDER_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t3528271667* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t * ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
public:
inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
inline CharU5BU5D_t3528271667* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
inline CharU5BU5D_t3528271667** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
inline void set_m_ChunkChars_0(CharU5BU5D_t3528271667* value)
{
___m_ChunkChars_0 = value;
Il2CppCodeGenWriteBarrier((&___m_ChunkChars_0), value);
}
inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
{
___m_ChunkPrevious_1 = value;
Il2CppCodeGenWriteBarrier((&___m_ChunkPrevious_1), value);
}
inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
inline void set_m_ChunkLength_2(int32_t value)
{
___m_ChunkLength_2 = value;
}
inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
inline void set_m_ChunkOffset_3(int32_t value)
{
___m_ChunkOffset_3 = value;
}
inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
inline void set_m_MaxCapacity_4(int32_t value)
{
___m_MaxCapacity_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRINGBUILDER_T_H
#ifndef TUPLE_2_T2713193907_H
#define TUPLE_2_T2713193907_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`2<System.Object,System.Object>
struct Tuple_2_t2713193907 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
RuntimeObject * ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t2713193907, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t2713193907, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_2_T2713193907_H
#ifndef LIST_1_T4176035766_H
#define LIST_1_T4176035766_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>
struct List_1_t4176035766 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
BaseInvokableCallU5BU5D_t3944607041* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4176035766, ____items_1)); }
inline BaseInvokableCallU5BU5D_t3944607041* get__items_1() const { return ____items_1; }
inline BaseInvokableCallU5BU5D_t3944607041** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(BaseInvokableCallU5BU5D_t3944607041* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4176035766, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4176035766, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4176035766, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t4176035766_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
BaseInvokableCallU5BU5D_t3944607041* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4176035766_StaticFields, ____emptyArray_5)); }
inline BaseInvokableCallU5BU5D_t3944607041* get__emptyArray_5() const { return ____emptyArray_5; }
inline BaseInvokableCallU5BU5D_t3944607041** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(BaseInvokableCallU5BU5D_t3944607041* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T4176035766_H
#ifndef VALUETYPE_T3640485471_H
#define VALUETYPE_T3640485471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t3640485471 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_com
{
};
#endif // VALUETYPE_T3640485471_H
#ifndef UNITYEVENTBASE_T3960448221_H
#define UNITYEVENTBASE_T3960448221_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityEventBase
struct UnityEventBase_t3960448221 : public RuntimeObject
{
public:
// UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls
InvokableCallList_t2498835369 * ___m_Calls_0;
// UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls
PersistentCallGroup_t3050769227 * ___m_PersistentCalls_1;
// System.String UnityEngine.Events.UnityEventBase::m_TypeName
String_t* ___m_TypeName_2;
// System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty
bool ___m_CallsDirty_3;
public:
inline static int32_t get_offset_of_m_Calls_0() { return static_cast<int32_t>(offsetof(UnityEventBase_t3960448221, ___m_Calls_0)); }
inline InvokableCallList_t2498835369 * get_m_Calls_0() const { return ___m_Calls_0; }
inline InvokableCallList_t2498835369 ** get_address_of_m_Calls_0() { return &___m_Calls_0; }
inline void set_m_Calls_0(InvokableCallList_t2498835369 * value)
{
___m_Calls_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Calls_0), value);
}
inline static int32_t get_offset_of_m_PersistentCalls_1() { return static_cast<int32_t>(offsetof(UnityEventBase_t3960448221, ___m_PersistentCalls_1)); }
inline PersistentCallGroup_t3050769227 * get_m_PersistentCalls_1() const { return ___m_PersistentCalls_1; }
inline PersistentCallGroup_t3050769227 ** get_address_of_m_PersistentCalls_1() { return &___m_PersistentCalls_1; }
inline void set_m_PersistentCalls_1(PersistentCallGroup_t3050769227 * value)
{
___m_PersistentCalls_1 = value;
Il2CppCodeGenWriteBarrier((&___m_PersistentCalls_1), value);
}
inline static int32_t get_offset_of_m_TypeName_2() { return static_cast<int32_t>(offsetof(UnityEventBase_t3960448221, ___m_TypeName_2)); }
inline String_t* get_m_TypeName_2() const { return ___m_TypeName_2; }
inline String_t** get_address_of_m_TypeName_2() { return &___m_TypeName_2; }
inline void set_m_TypeName_2(String_t* value)
{
___m_TypeName_2 = value;
Il2CppCodeGenWriteBarrier((&___m_TypeName_2), value);
}
inline static int32_t get_offset_of_m_CallsDirty_3() { return static_cast<int32_t>(offsetof(UnityEventBase_t3960448221, ___m_CallsDirty_3)); }
inline bool get_m_CallsDirty_3() const { return ___m_CallsDirty_3; }
inline bool* get_address_of_m_CallsDirty_3() { return &___m_CallsDirty_3; }
inline void set_m_CallsDirty_3(bool value)
{
___m_CallsDirty_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYEVENTBASE_T3960448221_H
#ifndef TUPLE_4_T2598374123_H
#define TUPLE_4_T2598374123_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`4<System.Object,System.Object,System.Object,System.Object>
struct Tuple_4_t2598374123 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
RuntimeObject * ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
RuntimeObject * ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t2598374123, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t2598374123, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t2598374123, ___m_Item3_2)); }
inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; }
inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(RuntimeObject * value)
{
___m_Item3_2 = value;
Il2CppCodeGenWriteBarrier((&___m_Item3_2), value);
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t2598374123, ___m_Item4_3)); }
inline RuntimeObject * get_m_Item4_3() const { return ___m_Item4_3; }
inline RuntimeObject ** get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(RuntimeObject * value)
{
___m_Item4_3 = value;
Il2CppCodeGenWriteBarrier((&___m_Item4_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_4_T2598374123_H
#ifndef BASEINVOKABLECALL_T2703961024_H
#define BASEINVOKABLECALL_T2703961024_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.BaseInvokableCall
struct BaseInvokableCall_t2703961024 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BASEINVOKABLECALL_T2703961024_H
#ifndef U3CU3EC__DISPLAYCLASS35_1_T3226666720_H
#define U3CU3EC__DISPLAYCLASS35_1_T3226666720_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Threading.Tasks.VoidTaskResult>
struct U3CU3Ec__DisplayClass35_1_t3226666720 : public RuntimeObject
{
public:
// System.Func`2<System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::endFunction
Func_2_t2910981738 * ___endFunction_0;
// System.Action`1<System.IAsyncResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::endAction
Action_1_t939472046 * ___endAction_1;
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::promise
Task_1_t4022128754 * ___promise_2;
public:
inline static int32_t get_offset_of_endFunction_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t3226666720, ___endFunction_0)); }
inline Func_2_t2910981738 * get_endFunction_0() const { return ___endFunction_0; }
inline Func_2_t2910981738 ** get_address_of_endFunction_0() { return &___endFunction_0; }
inline void set_endFunction_0(Func_2_t2910981738 * value)
{
___endFunction_0 = value;
Il2CppCodeGenWriteBarrier((&___endFunction_0), value);
}
inline static int32_t get_offset_of_endAction_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t3226666720, ___endAction_1)); }
inline Action_1_t939472046 * get_endAction_1() const { return ___endAction_1; }
inline Action_1_t939472046 ** get_address_of_endAction_1() { return &___endAction_1; }
inline void set_endAction_1(Action_1_t939472046 * value)
{
___endAction_1 = value;
Il2CppCodeGenWriteBarrier((&___endAction_1), value);
}
inline static int32_t get_offset_of_promise_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t3226666720, ___promise_2)); }
inline Task_1_t4022128754 * get_promise_2() const { return ___promise_2; }
inline Task_1_t4022128754 ** get_address_of_promise_2() { return &___promise_2; }
inline void set_promise_2(Task_1_t4022128754 * value)
{
___promise_2 = value;
Il2CppCodeGenWriteBarrier((&___promise_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__DISPLAYCLASS35_1_T3226666720_H
#ifndef MEMBERINFO_T_H
#define MEMBERINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERINFO_T_H
#ifndef U3CU3EC__DISPLAYCLASS35_0_T2813069024_H
#define U3CU3EC__DISPLAYCLASS35_0_T2813069024_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Threading.Tasks.VoidTaskResult>
struct U3CU3Ec__DisplayClass35_0_t2813069024 : public RuntimeObject
{
public:
// System.Threading.AtomicBoolean System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::invoked
AtomicBoolean_t2634115295 * ___invoked_0;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::CS$<>8__locals1
U3CU3Ec__DisplayClass35_1_t3226666720 * ___CSU24U3CU3E8__locals1_1;
public:
inline static int32_t get_offset_of_invoked_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t2813069024, ___invoked_0)); }
inline AtomicBoolean_t2634115295 * get_invoked_0() const { return ___invoked_0; }
inline AtomicBoolean_t2634115295 ** get_address_of_invoked_0() { return &___invoked_0; }
inline void set_invoked_0(AtomicBoolean_t2634115295 * value)
{
___invoked_0 = value;
Il2CppCodeGenWriteBarrier((&___invoked_0), value);
}
inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t2813069024, ___CSU24U3CU3E8__locals1_1)); }
inline U3CU3Ec__DisplayClass35_1_t3226666720 * get_CSU24U3CU3E8__locals1_1() const { return ___CSU24U3CU3E8__locals1_1; }
inline U3CU3Ec__DisplayClass35_1_t3226666720 ** get_address_of_CSU24U3CU3E8__locals1_1() { return &___CSU24U3CU3E8__locals1_1; }
inline void set_CSU24U3CU3E8__locals1_1(U3CU3Ec__DisplayClass35_1_t3226666720 * value)
{
___CSU24U3CU3E8__locals1_1 = value;
Il2CppCodeGenWriteBarrier((&___CSU24U3CU3E8__locals1_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__DISPLAYCLASS35_0_T2813069024_H
#ifndef U3CU3EC__DISPLAYCLASS35_0_T3276586609_H
#define U3CU3EC__DISPLAYCLASS35_0_T3276586609_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Object>
struct U3CU3Ec__DisplayClass35_0_t3276586609 : public RuntimeObject
{
public:
// System.Threading.AtomicBoolean System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::invoked
AtomicBoolean_t2634115295 * ___invoked_0;
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0::CS$<>8__locals1
U3CU3Ec__DisplayClass35_1_t3690184305 * ___CSU24U3CU3E8__locals1_1;
public:
inline static int32_t get_offset_of_invoked_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t3276586609, ___invoked_0)); }
inline AtomicBoolean_t2634115295 * get_invoked_0() const { return ___invoked_0; }
inline AtomicBoolean_t2634115295 ** get_address_of_invoked_0() { return &___invoked_0; }
inline void set_invoked_0(AtomicBoolean_t2634115295 * value)
{
___invoked_0 = value;
Il2CppCodeGenWriteBarrier((&___invoked_0), value);
}
inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_0_t3276586609, ___CSU24U3CU3E8__locals1_1)); }
inline U3CU3Ec__DisplayClass35_1_t3690184305 * get_CSU24U3CU3E8__locals1_1() const { return ___CSU24U3CU3E8__locals1_1; }
inline U3CU3Ec__DisplayClass35_1_t3690184305 ** get_address_of_CSU24U3CU3E8__locals1_1() { return &___CSU24U3CU3E8__locals1_1; }
inline void set_CSU24U3CU3E8__locals1_1(U3CU3Ec__DisplayClass35_1_t3690184305 * value)
{
___CSU24U3CU3E8__locals1_1 = value;
Il2CppCodeGenWriteBarrier((&___CSU24U3CU3E8__locals1_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__DISPLAYCLASS35_0_T3276586609_H
#ifndef U3CU3EC__DISPLAYCLASS35_1_T3690184305_H
#define U3CU3EC__DISPLAYCLASS35_1_T3690184305_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Object>
struct U3CU3Ec__DisplayClass35_1_t3690184305 : public RuntimeObject
{
public:
// System.Func`2<System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::endFunction
Func_2_t3374499323 * ___endFunction_0;
// System.Action`1<System.IAsyncResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::endAction
Action_1_t939472046 * ___endAction_1;
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1::promise
Task_1_t190679043 * ___promise_2;
public:
inline static int32_t get_offset_of_endFunction_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t3690184305, ___endFunction_0)); }
inline Func_2_t3374499323 * get_endFunction_0() const { return ___endFunction_0; }
inline Func_2_t3374499323 ** get_address_of_endFunction_0() { return &___endFunction_0; }
inline void set_endFunction_0(Func_2_t3374499323 * value)
{
___endFunction_0 = value;
Il2CppCodeGenWriteBarrier((&___endFunction_0), value);
}
inline static int32_t get_offset_of_endAction_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t3690184305, ___endAction_1)); }
inline Action_1_t939472046 * get_endAction_1() const { return ___endAction_1; }
inline Action_1_t939472046 ** get_address_of_endAction_1() { return &___endAction_1; }
inline void set_endAction_1(Action_1_t939472046 * value)
{
___endAction_1 = value;
Il2CppCodeGenWriteBarrier((&___endAction_1), value);
}
inline static int32_t get_offset_of_promise_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass35_1_t3690184305, ___promise_2)); }
inline Task_1_t190679043 * get_promise_2() const { return ___promise_2; }
inline Task_1_t190679043 ** get_address_of_promise_2() { return &___promise_2; }
inline void set_promise_2(Task_1_t190679043 * value)
{
___promise_2 = value;
Il2CppCodeGenWriteBarrier((&___promise_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__DISPLAYCLASS35_1_T3690184305_H
#ifndef OBJECTEQUALITYCOMPARER_T1147032983_H
#define OBJECTEQUALITYCOMPARER_T1147032983_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.ObjectEqualityComparer
struct ObjectEqualityComparer_t1147032983 : public RuntimeObject
{
public:
public:
};
struct ObjectEqualityComparer_t1147032983_StaticFields
{
public:
// System.Collections.Generic.ObjectEqualityComparer System.Collections.Generic.ObjectEqualityComparer::Default
ObjectEqualityComparer_t1147032983 * ___Default_0;
public:
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(ObjectEqualityComparer_t1147032983_StaticFields, ___Default_0)); }
inline ObjectEqualityComparer_t1147032983 * get_Default_0() const { return ___Default_0; }
inline ObjectEqualityComparer_t1147032983 ** get_address_of_Default_0() { return &___Default_0; }
inline void set_Default_0(ObjectEqualityComparer_t1147032983 * value)
{
___Default_0 = value;
Il2CppCodeGenWriteBarrier((&___Default_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OBJECTEQUALITYCOMPARER_T1147032983_H
#ifndef LOWLEVELCOMPARER_T611013387_H
#define LOWLEVELCOMPARER_T611013387_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.LowLevelComparer
struct LowLevelComparer_t611013387 : public RuntimeObject
{
public:
public:
};
struct LowLevelComparer_t611013387_StaticFields
{
public:
// System.Collections.LowLevelComparer System.Collections.LowLevelComparer::Default
LowLevelComparer_t611013387 * ___Default_0;
public:
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(LowLevelComparer_t611013387_StaticFields, ___Default_0)); }
inline LowLevelComparer_t611013387 * get_Default_0() const { return ___Default_0; }
inline LowLevelComparer_t611013387 ** get_address_of_Default_0() { return &___Default_0; }
inline void set_Default_0(LowLevelComparer_t611013387 * value)
{
___Default_0 = value;
Il2CppCodeGenWriteBarrier((&___Default_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOWLEVELCOMPARER_T611013387_H
#ifndef TUPLE_2_T3267548213_H
#define TUPLE_2_T3267548213_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`2<System.Object,System.Char>
struct Tuple_2_t3267548213 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
Il2CppChar ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t3267548213, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t3267548213, ___m_Item2_1)); }
inline Il2CppChar get_m_Item2_1() const { return ___m_Item2_1; }
inline Il2CppChar* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(Il2CppChar value)
{
___m_Item2_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_2_T3267548213_H
#ifndef BINARYCOMPATIBILITY_T3378813580_H
#define BINARYCOMPATIBILITY_T3378813580_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Versioning.BinaryCompatibility
struct BinaryCompatibility_t3378813580 : public RuntimeObject
{
public:
public:
};
struct BinaryCompatibility_t3378813580_StaticFields
{
public:
// System.Boolean System.Runtime.Versioning.BinaryCompatibility::TargetsAtLeast_Desktop_V4_5
bool ___TargetsAtLeast_Desktop_V4_5_0;
// System.Boolean System.Runtime.Versioning.BinaryCompatibility::TargetsAtLeast_Desktop_V4_5_1
bool ___TargetsAtLeast_Desktop_V4_5_1_1;
public:
inline static int32_t get_offset_of_TargetsAtLeast_Desktop_V4_5_0() { return static_cast<int32_t>(offsetof(BinaryCompatibility_t3378813580_StaticFields, ___TargetsAtLeast_Desktop_V4_5_0)); }
inline bool get_TargetsAtLeast_Desktop_V4_5_0() const { return ___TargetsAtLeast_Desktop_V4_5_0; }
inline bool* get_address_of_TargetsAtLeast_Desktop_V4_5_0() { return &___TargetsAtLeast_Desktop_V4_5_0; }
inline void set_TargetsAtLeast_Desktop_V4_5_0(bool value)
{
___TargetsAtLeast_Desktop_V4_5_0 = value;
}
inline static int32_t get_offset_of_TargetsAtLeast_Desktop_V4_5_1_1() { return static_cast<int32_t>(offsetof(BinaryCompatibility_t3378813580_StaticFields, ___TargetsAtLeast_Desktop_V4_5_1_1)); }
inline bool get_TargetsAtLeast_Desktop_V4_5_1_1() const { return ___TargetsAtLeast_Desktop_V4_5_1_1; }
inline bool* get_address_of_TargetsAtLeast_Desktop_V4_5_1_1() { return &___TargetsAtLeast_Desktop_V4_5_1_1; }
inline void set_TargetsAtLeast_Desktop_V4_5_1_1(bool value)
{
___TargetsAtLeast_Desktop_V4_5_1_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BINARYCOMPATIBILITY_T3378813580_H
#ifndef SPARSEARRAY_1_T396411150_H
#define SPARSEARRAY_1_T396411150_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>
struct SparseArray_1_t396411150 : public RuntimeObject
{
public:
// T[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue/SparseArray`1::m_array
ObjectU5BU5D_t2843939325* ___m_array_0;
public:
inline static int32_t get_offset_of_m_array_0() { return static_cast<int32_t>(offsetof(SparseArray_1_t396411150, ___m_array_0)); }
inline ObjectU5BU5D_t2843939325* get_m_array_0() const { return ___m_array_0; }
inline ObjectU5BU5D_t2843939325** get_address_of_m_array_0() { return &___m_array_0; }
inline void set_m_array_0(ObjectU5BU5D_t2843939325* value)
{
___m_array_0 = value;
Il2CppCodeGenWriteBarrier((&___m_array_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SPARSEARRAY_1_T396411150_H
struct Il2CppArrayBounds;
#ifndef RUNTIMEARRAY_H
#define RUNTIMEARRAY_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Array
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEARRAY_H
#ifndef UINT16_T2177724958_H
#define UINT16_T2177724958_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt16
struct UInt16_t2177724958
{
public:
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_t2177724958, ___m_value_0)); }
inline uint16_t get_m_value_0() const { return ___m_value_0; }
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint16_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT16_T2177724958_H
#ifndef UINT32_T2560061978_H
#define UINT32_T2560061978_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt32
struct UInt32_t2560061978
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t2560061978, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT32_T2560061978_H
#ifndef XMLSCHEMAOBJECTENTRY_T3344676971_H
#define XMLSCHEMAOBJECTENTRY_T3344676971_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry
struct XmlSchemaObjectEntry_t3344676971
{
public:
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry::qname
XmlQualifiedName_t2760654312 * ___qname_0;
// System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry::xso
XmlSchemaObject_t1315720168 * ___xso_1;
public:
inline static int32_t get_offset_of_qname_0() { return static_cast<int32_t>(offsetof(XmlSchemaObjectEntry_t3344676971, ___qname_0)); }
inline XmlQualifiedName_t2760654312 * get_qname_0() const { return ___qname_0; }
inline XmlQualifiedName_t2760654312 ** get_address_of_qname_0() { return &___qname_0; }
inline void set_qname_0(XmlQualifiedName_t2760654312 * value)
{
___qname_0 = value;
Il2CppCodeGenWriteBarrier((&___qname_0), value);
}
inline static int32_t get_offset_of_xso_1() { return static_cast<int32_t>(offsetof(XmlSchemaObjectEntry_t3344676971, ___xso_1)); }
inline XmlSchemaObject_t1315720168 * get_xso_1() const { return ___xso_1; }
inline XmlSchemaObject_t1315720168 ** get_address_of_xso_1() { return &___xso_1; }
inline void set_xso_1(XmlSchemaObject_t1315720168 * value)
{
___xso_1 = value;
Il2CppCodeGenWriteBarrier((&___xso_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry
struct XmlSchemaObjectEntry_t3344676971_marshaled_pinvoke
{
XmlQualifiedName_t2760654312 * ___qname_0;
XmlSchemaObject_t1315720168 * ___xso_1;
};
// Native definition for COM marshalling of System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry
struct XmlSchemaObjectEntry_t3344676971_marshaled_com
{
XmlQualifiedName_t2760654312 * ___qname_0;
XmlSchemaObject_t1315720168 * ___xso_1;
};
#endif // XMLSCHEMAOBJECTENTRY_T3344676971_H
#ifndef RANGEPOSITIONINFO_T589968936_H
#define RANGEPOSITIONINFO_T589968936_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.RangePositionInfo
struct RangePositionInfo_t589968936
{
public:
// System.Xml.Schema.BitSet System.Xml.Schema.RangePositionInfo::curpos
BitSet_t1154229585 * ___curpos_0;
// System.Decimal[] System.Xml.Schema.RangePositionInfo::rangeCounters
DecimalU5BU5D_t1145110141* ___rangeCounters_1;
public:
inline static int32_t get_offset_of_curpos_0() { return static_cast<int32_t>(offsetof(RangePositionInfo_t589968936, ___curpos_0)); }
inline BitSet_t1154229585 * get_curpos_0() const { return ___curpos_0; }
inline BitSet_t1154229585 ** get_address_of_curpos_0() { return &___curpos_0; }
inline void set_curpos_0(BitSet_t1154229585 * value)
{
___curpos_0 = value;
Il2CppCodeGenWriteBarrier((&___curpos_0), value);
}
inline static int32_t get_offset_of_rangeCounters_1() { return static_cast<int32_t>(offsetof(RangePositionInfo_t589968936, ___rangeCounters_1)); }
inline DecimalU5BU5D_t1145110141* get_rangeCounters_1() const { return ___rangeCounters_1; }
inline DecimalU5BU5D_t1145110141** get_address_of_rangeCounters_1() { return &___rangeCounters_1; }
inline void set_rangeCounters_1(DecimalU5BU5D_t1145110141* value)
{
___rangeCounters_1 = value;
Il2CppCodeGenWriteBarrier((&___rangeCounters_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.Schema.RangePositionInfo
struct RangePositionInfo_t589968936_marshaled_pinvoke
{
BitSet_t1154229585 * ___curpos_0;
Decimal_t2948259380 * ___rangeCounters_1;
};
// Native definition for COM marshalling of System.Xml.Schema.RangePositionInfo
struct RangePositionInfo_t589968936_marshaled_com
{
BitSet_t1154229585 * ___curpos_0;
Decimal_t2948259380 * ___rangeCounters_1;
};
#endif // RANGEPOSITIONINFO_T589968936_H
#ifndef UINT64_T4134040092_H
#define UINT64_T4134040092_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt64
struct UInt64_t4134040092
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_t4134040092, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT64_T4134040092_H
#ifndef INVOKABLECALL_1_T214452203_H
#define INVOKABLECALL_1_T214452203_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.InvokableCall`1<System.Boolean>
struct InvokableCall_1_t214452203 : public BaseInvokableCall_t2703961024
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_t682124106 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t214452203, ___Delegate_0)); }
inline UnityAction_1_t682124106 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_t682124106 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_t682124106 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((&___Delegate_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVOKABLECALL_1_T214452203_H
#ifndef INVOKABLECALL_1_T3068109991_H
#define INVOKABLECALL_1_T3068109991_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.InvokableCall`1<System.Int32>
struct InvokableCall_1_t3068109991 : public BaseInvokableCall_t2703961024
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_t3535781894 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t3068109991, ___Delegate_0)); }
inline UnityAction_1_t3535781894 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_t3535781894 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_t3535781894 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((&___Delegate_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVOKABLECALL_1_T3068109991_H
#ifndef BOOLEAN_T97287965_H
#define BOOLEAN_T97287965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean
struct Boolean_t97287965
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_t97287965_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((&___TrueString_5), value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((&___FalseString_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOOLEAN_T97287965_H
#ifndef SINGLE_T1397266774_H
#define SINGLE_T1397266774_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single
struct Single_t1397266774
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SINGLE_T1397266774_H
#ifndef SBYTE_T1669577662_H
#define SBYTE_T1669577662_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SByte
struct SByte_t1669577662
{
public:
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t1669577662, ___m_value_0)); }
inline int8_t get_m_value_0() const { return ___m_value_0; }
inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int8_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SBYTE_T1669577662_H
#ifndef METHODBASE_T_H
#define METHODBASE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODBASE_T_H
#ifndef TASKAWAITER_1_T1116103714_H
#define TASKAWAITER_1_T1116103714_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>
struct TaskAwaiter_1_t1116103714
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task
Task_1_t4022128754 * ___m_task_0;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t1116103714, ___m_task_0)); }
inline Task_1_t4022128754 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t4022128754 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t4022128754 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKAWAITER_1_T1116103714_H
#ifndef LISTBUILDER_1_T2117425360_H
#define LISTBUILDER_1_T2117425360_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeType/ListBuilder`1<System.Object>
struct ListBuilder_1_t2117425360
{
public:
// T[] System.RuntimeType/ListBuilder`1::_items
ObjectU5BU5D_t2843939325* ____items_0;
// T System.RuntimeType/ListBuilder`1::_item
RuntimeObject * ____item_1;
// System.Int32 System.RuntimeType/ListBuilder`1::_count
int32_t ____count_2;
// System.Int32 System.RuntimeType/ListBuilder`1::_capacity
int32_t ____capacity_3;
public:
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ListBuilder_1_t2117425360, ____items_0)); }
inline ObjectU5BU5D_t2843939325* get__items_0() const { return ____items_0; }
inline ObjectU5BU5D_t2843939325** get_address_of__items_0() { return &____items_0; }
inline void set__items_0(ObjectU5BU5D_t2843939325* value)
{
____items_0 = value;
Il2CppCodeGenWriteBarrier((&____items_0), value);
}
inline static int32_t get_offset_of__item_1() { return static_cast<int32_t>(offsetof(ListBuilder_1_t2117425360, ____item_1)); }
inline RuntimeObject * get__item_1() const { return ____item_1; }
inline RuntimeObject ** get_address_of__item_1() { return &____item_1; }
inline void set__item_1(RuntimeObject * value)
{
____item_1 = value;
Il2CppCodeGenWriteBarrier((&____item_1), value);
}
inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ListBuilder_1_t2117425360, ____count_2)); }
inline int32_t get__count_2() const { return ____count_2; }
inline int32_t* get_address_of__count_2() { return &____count_2; }
inline void set__count_2(int32_t value)
{
____count_2 = value;
}
inline static int32_t get_offset_of__capacity_3() { return static_cast<int32_t>(offsetof(ListBuilder_1_t2117425360, ____capacity_3)); }
inline int32_t get__capacity_3() const { return ____capacity_3; }
inline int32_t* get_address_of__capacity_3() { return &____capacity_3; }
inline void set__capacity_3(int32_t value)
{
____capacity_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LISTBUILDER_1_T2117425360_H
#ifndef TASKAWAITER_1_T1579621299_H
#define TASKAWAITER_1_T1579621299_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>
struct TaskAwaiter_1_t1579621299
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task
Task_1_t190679043 * ___m_task_0;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t1579621299, ___m_task_0)); }
inline Task_1_t190679043 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t190679043 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t190679043 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKAWAITER_1_T1579621299_H
#ifndef TASKAWAITER_1_T2891770396_H
#define TASKAWAITER_1_T2891770396_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>
struct TaskAwaiter_1_t2891770396
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task
Task_1_t1502828140 * ___m_task_0;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t2891770396, ___m_task_0)); }
inline Task_1_t1502828140 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t1502828140 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t1502828140 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKAWAITER_1_T2891770396_H
#ifndef TASKAWAITER_1_T1450460888_H
#define TASKAWAITER_1_T1450460888_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>
struct TaskAwaiter_1_t1450460888
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task
Task_1_t61518632 * ___m_task_0;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t1450460888, ___m_task_0)); }
inline Task_1_t61518632 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t61518632 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t61518632 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKAWAITER_1_T1450460888_H
#ifndef COLOR32_T2600501292_H
#define COLOR32_T2600501292_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Color32
struct Color32_t2600501292
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.Color32::rgba
int32_t ___rgba_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___rgba_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Byte UnityEngine.Color32::r
uint8_t ___r_1;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___r_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___g_2_OffsetPadding[1];
// System.Byte UnityEngine.Color32::g
uint8_t ___g_2;
};
#pragma pack(pop, tp)
struct
{
char ___g_2_OffsetPadding_forAlignmentOnly[1];
uint8_t ___g_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___b_3_OffsetPadding[2];
// System.Byte UnityEngine.Color32::b
uint8_t ___b_3;
};
#pragma pack(pop, tp)
struct
{
char ___b_3_OffsetPadding_forAlignmentOnly[2];
uint8_t ___b_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___a_4_OffsetPadding[3];
// System.Byte UnityEngine.Color32::a
uint8_t ___a_4;
};
#pragma pack(pop, tp)
struct
{
char ___a_4_OffsetPadding_forAlignmentOnly[3];
uint8_t ___a_4_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___rgba_0)); }
inline int32_t get_rgba_0() const { return ___rgba_0; }
inline int32_t* get_address_of_rgba_0() { return &___rgba_0; }
inline void set_rgba_0(int32_t value)
{
___rgba_0 = value;
}
inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___r_1)); }
inline uint8_t get_r_1() const { return ___r_1; }
inline uint8_t* get_address_of_r_1() { return &___r_1; }
inline void set_r_1(uint8_t value)
{
___r_1 = value;
}
inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___g_2)); }
inline uint8_t get_g_2() const { return ___g_2; }
inline uint8_t* get_address_of_g_2() { return &___g_2; }
inline void set_g_2(uint8_t value)
{
___g_2 = value;
}
inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___b_3)); }
inline uint8_t get_b_3() const { return ___b_3; }
inline uint8_t* get_address_of_b_3() { return &___b_3; }
inline void set_b_3(uint8_t value)
{
___b_3 = value;
}
inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___a_4)); }
inline uint8_t get_a_4() const { return ___a_4; }
inline uint8_t* get_address_of_a_4() { return &___a_4; }
inline void set_a_4(uint8_t value)
{
___a_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLOR32_T2600501292_H
#ifndef ORDERBLOCK_T1585977831_H
#define ORDERBLOCK_T1585977831_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t1585977831
{
public:
// System.Int32 UnityEngine.BeforeRenderHelper/OrderBlock::order
int32_t ___order_0;
// UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper/OrderBlock::callback
UnityAction_t3245792599 * ___callback_1;
public:
inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t1585977831, ___order_0)); }
inline int32_t get_order_0() const { return ___order_0; }
inline int32_t* get_address_of_order_0() { return &___order_0; }
inline void set_order_0(int32_t value)
{
___order_0 = value;
}
inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t1585977831, ___callback_1)); }
inline UnityAction_t3245792599 * get_callback_1() const { return ___callback_1; }
inline UnityAction_t3245792599 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(UnityAction_t3245792599 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((&___callback_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t1585977831_marshaled_pinvoke
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t1585977831_marshaled_com
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
#endif // ORDERBLOCK_T1585977831_H
#ifndef SPARSELYPOPULATEDARRAYADDINFO_1_T2980901022_H
#define SPARSELYPOPULATEDARRAYADDINFO_1_T2980901022_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>
struct SparselyPopulatedArrayAddInfo_1_t2980901022
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source
SparselyPopulatedArrayFragment_1_t2623668647 * ___m_source_0;
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index
int32_t ___m_index_1;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t2980901022, ___m_source_0)); }
inline SparselyPopulatedArrayFragment_1_t2623668647 * get_m_source_0() const { return ___m_source_0; }
inline SparselyPopulatedArrayFragment_1_t2623668647 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(SparselyPopulatedArrayFragment_1_t2623668647 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((&___m_source_0), value);
}
inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t2980901022, ___m_index_1)); }
inline int32_t get_m_index_1() const { return ___m_index_1; }
inline int32_t* get_address_of_m_index_1() { return &___m_index_1; }
inline void set_m_index_1(int32_t value)
{
___m_index_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SPARSELYPOPULATEDARRAYADDINFO_1_T2980901022_H
#ifndef ASYNCLOCALVALUECHANGEDARGS_1_T416175285_H
#define ASYNCLOCALVALUECHANGEDARGS_1_T416175285_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.AsyncLocalValueChangedArgs`1<System.Object>
struct AsyncLocalValueChangedArgs_1_t416175285
{
public:
// T System.Threading.AsyncLocalValueChangedArgs`1::<PreviousValue>k__BackingField
RuntimeObject * ___U3CPreviousValueU3Ek__BackingField_0;
// T System.Threading.AsyncLocalValueChangedArgs`1::<CurrentValue>k__BackingField
RuntimeObject * ___U3CCurrentValueU3Ek__BackingField_1;
// System.Boolean System.Threading.AsyncLocalValueChangedArgs`1::<ThreadContextChanged>k__BackingField
bool ___U3CThreadContextChangedU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CPreviousValueU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t416175285, ___U3CPreviousValueU3Ek__BackingField_0)); }
inline RuntimeObject * get_U3CPreviousValueU3Ek__BackingField_0() const { return ___U3CPreviousValueU3Ek__BackingField_0; }
inline RuntimeObject ** get_address_of_U3CPreviousValueU3Ek__BackingField_0() { return &___U3CPreviousValueU3Ek__BackingField_0; }
inline void set_U3CPreviousValueU3Ek__BackingField_0(RuntimeObject * value)
{
___U3CPreviousValueU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CPreviousValueU3Ek__BackingField_0), value);
}
inline static int32_t get_offset_of_U3CCurrentValueU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t416175285, ___U3CCurrentValueU3Ek__BackingField_1)); }
inline RuntimeObject * get_U3CCurrentValueU3Ek__BackingField_1() const { return ___U3CCurrentValueU3Ek__BackingField_1; }
inline RuntimeObject ** get_address_of_U3CCurrentValueU3Ek__BackingField_1() { return &___U3CCurrentValueU3Ek__BackingField_1; }
inline void set_U3CCurrentValueU3Ek__BackingField_1(RuntimeObject * value)
{
___U3CCurrentValueU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CCurrentValueU3Ek__BackingField_1), value);
}
inline static int32_t get_offset_of_U3CThreadContextChangedU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t416175285, ___U3CThreadContextChangedU3Ek__BackingField_2)); }
inline bool get_U3CThreadContextChangedU3Ek__BackingField_2() const { return ___U3CThreadContextChangedU3Ek__BackingField_2; }
inline bool* get_address_of_U3CThreadContextChangedU3Ek__BackingField_2() { return &___U3CThreadContextChangedU3Ek__BackingField_2; }
inline void set_U3CThreadContextChangedU3Ek__BackingField_2(bool value)
{
___U3CThreadContextChangedU3Ek__BackingField_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCLOCALVALUECHANGEDARGS_1_T416175285_H
#ifndef UILINEINFO_T4195266810_H
#define UILINEINFO_T4195266810_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UILineInfo
struct UILineInfo_t4195266810
{
public:
// System.Int32 UnityEngine.UILineInfo::startCharIdx
int32_t ___startCharIdx_0;
// System.Int32 UnityEngine.UILineInfo::height
int32_t ___height_1;
// System.Single UnityEngine.UILineInfo::topY
float ___topY_2;
// System.Single UnityEngine.UILineInfo::leading
float ___leading_3;
public:
inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___startCharIdx_0)); }
inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; }
inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; }
inline void set_startCharIdx_0(int32_t value)
{
___startCharIdx_0 = value;
}
inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___height_1)); }
inline int32_t get_height_1() const { return ___height_1; }
inline int32_t* get_address_of_height_1() { return &___height_1; }
inline void set_height_1(int32_t value)
{
___height_1 = value;
}
inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___topY_2)); }
inline float get_topY_2() const { return ___topY_2; }
inline float* get_address_of_topY_2() { return &___topY_2; }
inline void set_topY_2(float value)
{
___topY_2 = value;
}
inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___leading_3)); }
inline float get_leading_3() const { return ___leading_3; }
inline float* get_address_of_leading_3() { return &___leading_3; }
inline void set_leading_3(float value)
{
___leading_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UILINEINFO_T4195266810_H
#ifndef UNITYEVENT_1_T3961765668_H
#define UNITYEVENT_1_T3961765668_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityEvent`1<System.Object>
struct UnityEvent_1_t3961765668 : public UnityEventBase_t3960448221
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t2843939325* ___m_InvokeArray_4;
public:
inline static int32_t get_offset_of_m_InvokeArray_4() { return static_cast<int32_t>(offsetof(UnityEvent_1_t3961765668, ___m_InvokeArray_4)); }
inline ObjectU5BU5D_t2843939325* get_m_InvokeArray_4() const { return ___m_InvokeArray_4; }
inline ObjectU5BU5D_t2843939325** get_address_of_m_InvokeArray_4() { return &___m_InvokeArray_4; }
inline void set_m_InvokeArray_4(ObjectU5BU5D_t2843939325* value)
{
___m_InvokeArray_4 = value;
Il2CppCodeGenWriteBarrier((&___m_InvokeArray_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYEVENT_1_T3961765668_H
#ifndef UNITYEVENT_1_T2278926278_H
#define UNITYEVENT_1_T2278926278_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityEvent`1<System.Single>
struct UnityEvent_1_t2278926278 : public UnityEventBase_t3960448221
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t2843939325* ___m_InvokeArray_4;
public:
inline static int32_t get_offset_of_m_InvokeArray_4() { return static_cast<int32_t>(offsetof(UnityEvent_1_t2278926278, ___m_InvokeArray_4)); }
inline ObjectU5BU5D_t2843939325* get_m_InvokeArray_4() const { return ___m_InvokeArray_4; }
inline ObjectU5BU5D_t2843939325** get_address_of_m_InvokeArray_4() { return &___m_InvokeArray_4; }
inline void set_m_InvokeArray_4(ObjectU5BU5D_t2843939325* value)
{
___m_InvokeArray_4 = value;
Il2CppCodeGenWriteBarrier((&___m_InvokeArray_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYEVENT_1_T2278926278_H
#ifndef UNITYEVENT_1_T3832605257_H
#define UNITYEVENT_1_T3832605257_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityEvent`1<System.Int32>
struct UnityEvent_1_t3832605257 : public UnityEventBase_t3960448221
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t2843939325* ___m_InvokeArray_4;
public:
inline static int32_t get_offset_of_m_InvokeArray_4() { return static_cast<int32_t>(offsetof(UnityEvent_1_t3832605257, ___m_InvokeArray_4)); }
inline ObjectU5BU5D_t2843939325* get_m_InvokeArray_4() const { return ___m_InvokeArray_4; }
inline ObjectU5BU5D_t2843939325** get_address_of_m_InvokeArray_4() { return &___m_InvokeArray_4; }
inline void set_m_InvokeArray_4(ObjectU5BU5D_t2843939325* value)
{
___m_InvokeArray_4 = value;
Il2CppCodeGenWriteBarrier((&___m_InvokeArray_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYEVENT_1_T3832605257_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef INVOKABLECALL_T832123510_H
#define INVOKABLECALL_T832123510_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.InvokableCall
struct InvokableCall_t832123510 : public BaseInvokableCall_t2703961024
{
public:
// UnityEngine.Events.UnityAction UnityEngine.Events.InvokableCall::Delegate
UnityAction_t3245792599 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_t832123510, ___Delegate_0)); }
inline UnityAction_t3245792599 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_t3245792599 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_t3245792599 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((&___Delegate_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVOKABLECALL_T832123510_H
#ifndef SYSTEMEXCEPTION_T176217640_H
#define SYSTEMEXCEPTION_T176217640_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SystemException
struct SystemException_t176217640 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMEXCEPTION_T176217640_H
#ifndef SPARSELYPOPULATEDARRAYADDINFO_1_T223515617_H
#define SPARSELYPOPULATEDARRAYADDINFO_1_T223515617_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayAddInfo_1_t223515617
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source
SparselyPopulatedArrayFragment_1_t4161250538 * ___m_source_0;
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index
int32_t ___m_index_1;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t223515617, ___m_source_0)); }
inline SparselyPopulatedArrayFragment_1_t4161250538 * get_m_source_0() const { return ___m_source_0; }
inline SparselyPopulatedArrayFragment_1_t4161250538 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(SparselyPopulatedArrayFragment_1_t4161250538 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((&___m_source_0), value);
}
inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t223515617, ___m_index_1)); }
inline int32_t get_m_index_1() const { return ___m_index_1; }
inline int32_t* get_address_of_m_index_1() { return &___m_index_1; }
inline void set_m_index_1(int32_t value)
{
___m_index_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SPARSELYPOPULATEDARRAYADDINFO_1_T223515617_H
#ifndef ENUM_T4135868527_H
#define ENUM_T4135868527_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Enum
struct Enum_t4135868527 : public ValueType_t3640485471
{
public:
public:
};
struct Enum_t4135868527_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t3528271667* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t3528271667* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t3528271667** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t3528271667* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((&___enumSeperatorCharArray_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t4135868527_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t4135868527_marshaled_com
{
};
#endif // ENUM_T4135868527_H
#ifndef UNITYEVENT_1_T3437345828_H
#define UNITYEVENT_1_T3437345828_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityEvent`1<UnityEngine.Color>
struct UnityEvent_1_t3437345828 : public UnityEventBase_t3960448221
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t2843939325* ___m_InvokeArray_4;
public:
inline static int32_t get_offset_of_m_InvokeArray_4() { return static_cast<int32_t>(offsetof(UnityEvent_1_t3437345828, ___m_InvokeArray_4)); }
inline ObjectU5BU5D_t2843939325* get_m_InvokeArray_4() const { return ___m_InvokeArray_4; }
inline ObjectU5BU5D_t2843939325** get_address_of_m_InvokeArray_4() { return &___m_InvokeArray_4; }
inline void set_m_InvokeArray_4(ObjectU5BU5D_t2843939325* value)
{
___m_InvokeArray_4 = value;
Il2CppCodeGenWriteBarrier((&___m_InvokeArray_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYEVENT_1_T3437345828_H
#ifndef UNITYEVENT_1_T3037889027_H
#define UNITYEVENT_1_T3037889027_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>
struct UnityEvent_1_t3037889027 : public UnityEventBase_t3960448221
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t2843939325* ___m_InvokeArray_4;
public:
inline static int32_t get_offset_of_m_InvokeArray_4() { return static_cast<int32_t>(offsetof(UnityEvent_1_t3037889027, ___m_InvokeArray_4)); }
inline ObjectU5BU5D_t2843939325* get_m_InvokeArray_4() const { return ___m_InvokeArray_4; }
inline ObjectU5BU5D_t2843939325** get_address_of_m_InvokeArray_4() { return &___m_InvokeArray_4; }
inline void set_m_InvokeArray_4(ObjectU5BU5D_t2843939325* value)
{
___m_InvokeArray_4 = value;
Il2CppCodeGenWriteBarrier((&___m_InvokeArray_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYEVENT_1_T3037889027_H
#ifndef UNITYEVENT_1_T978947469_H
#define UNITYEVENT_1_T978947469_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityEvent`1<System.Boolean>
struct UnityEvent_1_t978947469 : public UnityEventBase_t3960448221
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t2843939325* ___m_InvokeArray_4;
public:
inline static int32_t get_offset_of_m_InvokeArray_4() { return static_cast<int32_t>(offsetof(UnityEvent_1_t978947469, ___m_InvokeArray_4)); }
inline ObjectU5BU5D_t2843939325* get_m_InvokeArray_4() const { return ___m_InvokeArray_4; }
inline ObjectU5BU5D_t2843939325** get_address_of_m_InvokeArray_4() { return &___m_InvokeArray_4; }
inline void set_m_InvokeArray_4(ObjectU5BU5D_t2843939325* value)
{
___m_InvokeArray_4 = value;
Il2CppCodeGenWriteBarrier((&___m_InvokeArray_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYEVENT_1_T978947469_H
#ifndef INVOKABLECALL_1_T2672850562_H
#define INVOKABLECALL_1_T2672850562_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.InvokableCall`1<UnityEngine.Color>
struct InvokableCall_1_t2672850562 : public BaseInvokableCall_t2703961024
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_t3140522465 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t2672850562, ___Delegate_0)); }
inline UnityAction_1_t3140522465 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_t3140522465 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_t3140522465 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((&___Delegate_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVOKABLECALL_1_T2672850562_H
#ifndef COLOR_T2555686324_H
#define COLOR_T2555686324_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Color
struct Color_t2555686324
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLOR_T2555686324_H
#ifndef VOID_T1185182177_H
#define VOID_T1185182177_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_t1185182177
{
public:
union
{
struct
{
};
uint8_t Void_t1185182177__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_T1185182177_H
#ifndef INVOKABLECALL_1_T3197270402_H
#define INVOKABLECALL_1_T3197270402_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.InvokableCall`1<System.Object>
struct InvokableCall_1_t3197270402 : public BaseInvokableCall_t2703961024
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_t3664942305 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t3197270402, ___Delegate_0)); }
inline UnityAction_1_t3664942305 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_t3664942305 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_t3664942305 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((&___Delegate_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVOKABLECALL_1_T3197270402_H
#ifndef INVOKABLECALL_1_T1514431012_H
#define INVOKABLECALL_1_T1514431012_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.InvokableCall`1<System.Single>
struct InvokableCall_1_t1514431012 : public BaseInvokableCall_t2703961024
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_t1982102915 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t1514431012, ___Delegate_0)); }
inline UnityAction_1_t1982102915 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_t1982102915 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_t1982102915 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((&___Delegate_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVOKABLECALL_1_T1514431012_H
#ifndef INVOKABLECALL_4_T2756980746_H
#define INVOKABLECALL_4_T2756980746_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>
struct InvokableCall_4_t2756980746 : public BaseInvokableCall_t2703961024
{
public:
// UnityEngine.Events.UnityAction`4<T1,T2,T3,T4> UnityEngine.Events.InvokableCall`4::Delegate
UnityAction_4_t682480391 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_4_t2756980746, ___Delegate_0)); }
inline UnityAction_4_t682480391 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_4_t682480391 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_4_t682480391 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((&___Delegate_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVOKABLECALL_4_T2756980746_H
#ifndef SCENE_T2348375561_H
#define SCENE_T2348375561_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.SceneManagement.Scene
struct Scene_t2348375561
{
public:
// System.Int32 UnityEngine.SceneManagement.Scene::m_Handle
int32_t ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(Scene_t2348375561, ___m_Handle_0)); }
inline int32_t get_m_Handle_0() const { return ___m_Handle_0; }
inline int32_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(int32_t value)
{
___m_Handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SCENE_T2348375561_H
#ifndef INVOKABLECALL_3_T4059188962_H
#define INVOKABLECALL_3_T4059188962_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>
struct InvokableCall_3_t4059188962 : public BaseInvokableCall_t2703961024
{
public:
// UnityEngine.Events.UnityAction`3<T1,T2,T3> UnityEngine.Events.InvokableCall`3::Delegate
UnityAction_3_t1557236713 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_3_t4059188962, ___Delegate_0)); }
inline UnityAction_3_t1557236713 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_3_t1557236713 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_3_t1557236713 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((&___Delegate_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVOKABLECALL_3_T4059188962_H
#ifndef INVOKABLECALL_1_T2273393761_H
#define INVOKABLECALL_1_T2273393761_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>
struct InvokableCall_1_t2273393761 : public BaseInvokableCall_t2703961024
{
public:
// UnityEngine.Events.UnityAction`1<T1> UnityEngine.Events.InvokableCall`1::Delegate
UnityAction_1_t2741065664 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_1_t2273393761, ___Delegate_0)); }
inline UnityAction_1_t2741065664 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_1_t2741065664 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_1_t2741065664 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((&___Delegate_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVOKABLECALL_1_T2273393761_H
#ifndef INVOKABLECALL_2_T362407658_H
#define INVOKABLECALL_2_T362407658_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.InvokableCall`2<System.Object,System.Object>
struct InvokableCall_2_t362407658 : public BaseInvokableCall_t2703961024
{
public:
// UnityEngine.Events.UnityAction`2<T1,T2> UnityEngine.Events.InvokableCall`2::Delegate
UnityAction_2_t3283971887 * ___Delegate_0;
public:
inline static int32_t get_offset_of_Delegate_0() { return static_cast<int32_t>(offsetof(InvokableCall_2_t362407658, ___Delegate_0)); }
inline UnityAction_2_t3283971887 * get_Delegate_0() const { return ___Delegate_0; }
inline UnityAction_2_t3283971887 ** get_address_of_Delegate_0() { return &___Delegate_0; }
inline void set_Delegate_0(UnityAction_2_t3283971887 * value)
{
___Delegate_0 = value;
Il2CppCodeGenWriteBarrier((&___Delegate_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVOKABLECALL_2_T362407658_H
#ifndef VECTOR3_T3722313464_H
#define VECTOR3_T3722313464_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector3
struct Vector3_t3722313464
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_1;
// System.Single UnityEngine.Vector3::y
float ___y_2;
// System.Single UnityEngine.Vector3::z
float ___z_3;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
};
struct Vector3_t3722313464_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t3722313464 ___zeroVector_4;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t3722313464 ___oneVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t3722313464 ___upVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t3722313464 ___downVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t3722313464 ___leftVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t3722313464 ___rightVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t3722313464 ___forwardVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t3722313464 ___backVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t3722313464 ___positiveInfinityVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t3722313464 ___negativeInfinityVector_13;
public:
inline static int32_t get_offset_of_zeroVector_4() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___zeroVector_4)); }
inline Vector3_t3722313464 get_zeroVector_4() const { return ___zeroVector_4; }
inline Vector3_t3722313464 * get_address_of_zeroVector_4() { return &___zeroVector_4; }
inline void set_zeroVector_4(Vector3_t3722313464 value)
{
___zeroVector_4 = value;
}
inline static int32_t get_offset_of_oneVector_5() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___oneVector_5)); }
inline Vector3_t3722313464 get_oneVector_5() const { return ___oneVector_5; }
inline Vector3_t3722313464 * get_address_of_oneVector_5() { return &___oneVector_5; }
inline void set_oneVector_5(Vector3_t3722313464 value)
{
___oneVector_5 = value;
}
inline static int32_t get_offset_of_upVector_6() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___upVector_6)); }
inline Vector3_t3722313464 get_upVector_6() const { return ___upVector_6; }
inline Vector3_t3722313464 * get_address_of_upVector_6() { return &___upVector_6; }
inline void set_upVector_6(Vector3_t3722313464 value)
{
___upVector_6 = value;
}
inline static int32_t get_offset_of_downVector_7() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___downVector_7)); }
inline Vector3_t3722313464 get_downVector_7() const { return ___downVector_7; }
inline Vector3_t3722313464 * get_address_of_downVector_7() { return &___downVector_7; }
inline void set_downVector_7(Vector3_t3722313464 value)
{
___downVector_7 = value;
}
inline static int32_t get_offset_of_leftVector_8() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___leftVector_8)); }
inline Vector3_t3722313464 get_leftVector_8() const { return ___leftVector_8; }
inline Vector3_t3722313464 * get_address_of_leftVector_8() { return &___leftVector_8; }
inline void set_leftVector_8(Vector3_t3722313464 value)
{
___leftVector_8 = value;
}
inline static int32_t get_offset_of_rightVector_9() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___rightVector_9)); }
inline Vector3_t3722313464 get_rightVector_9() const { return ___rightVector_9; }
inline Vector3_t3722313464 * get_address_of_rightVector_9() { return &___rightVector_9; }
inline void set_rightVector_9(Vector3_t3722313464 value)
{
___rightVector_9 = value;
}
inline static int32_t get_offset_of_forwardVector_10() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___forwardVector_10)); }
inline Vector3_t3722313464 get_forwardVector_10() const { return ___forwardVector_10; }
inline Vector3_t3722313464 * get_address_of_forwardVector_10() { return &___forwardVector_10; }
inline void set_forwardVector_10(Vector3_t3722313464 value)
{
___forwardVector_10 = value;
}
inline static int32_t get_offset_of_backVector_11() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___backVector_11)); }
inline Vector3_t3722313464 get_backVector_11() const { return ___backVector_11; }
inline Vector3_t3722313464 * get_address_of_backVector_11() { return &___backVector_11; }
inline void set_backVector_11(Vector3_t3722313464 value)
{
___backVector_11 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_12() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___positiveInfinityVector_12)); }
inline Vector3_t3722313464 get_positiveInfinityVector_12() const { return ___positiveInfinityVector_12; }
inline Vector3_t3722313464 * get_address_of_positiveInfinityVector_12() { return &___positiveInfinityVector_12; }
inline void set_positiveInfinityVector_12(Vector3_t3722313464 value)
{
___positiveInfinityVector_12 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___negativeInfinityVector_13)); }
inline Vector3_t3722313464 get_negativeInfinityVector_13() const { return ___negativeInfinityVector_13; }
inline Vector3_t3722313464 * get_address_of_negativeInfinityVector_13() { return &___negativeInfinityVector_13; }
inline void set_negativeInfinityVector_13(Vector3_t3722313464 value)
{
___negativeInfinityVector_13 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR3_T3722313464_H
#ifndef VOIDTASKRESULT_T2616588579_H
#define VOIDTASKRESULT_T2616588579_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.VoidTaskResult
struct VoidTaskResult_t2616588579
{
public:
union
{
struct
{
};
uint8_t VoidTaskResult_t2616588579__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOIDTASKRESULT_T2616588579_H
#ifndef INT16_T2552820387_H
#define INT16_T2552820387_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int16
struct Int16_t2552820387
{
public:
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t2552820387, ___m_value_0)); }
inline int16_t get_m_value_0() const { return ___m_value_0; }
inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int16_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT16_T2552820387_H
#ifndef INT64_T3736567304_H
#define INT64_T3736567304_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int64
struct Int64_t3736567304
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t3736567304, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT64_T3736567304_H
#ifndef CONFIGUREDTASKAWAITER_T1419788950_H
#define CONFIGUREDTASKAWAITER_T1419788950_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>
struct ConfiguredTaskAwaiter_t1419788950
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t1502828140 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t1419788950, ___m_task_0)); }
inline Task_1_t1502828140 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t1502828140 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t1502828140 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t1419788950, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T1419788950_H
#ifndef DECIMAL_T2948259380_H
#define DECIMAL_T2948259380_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Decimal
struct Decimal_t2948259380
{
public:
// System.Int32 System.Decimal::flags
int32_t ___flags_14;
// System.Int32 System.Decimal::hi
int32_t ___hi_15;
// System.Int32 System.Decimal::lo
int32_t ___lo_16;
// System.Int32 System.Decimal::mid
int32_t ___mid_17;
public:
inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___flags_14)); }
inline int32_t get_flags_14() const { return ___flags_14; }
inline int32_t* get_address_of_flags_14() { return &___flags_14; }
inline void set_flags_14(int32_t value)
{
___flags_14 = value;
}
inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___hi_15)); }
inline int32_t get_hi_15() const { return ___hi_15; }
inline int32_t* get_address_of_hi_15() { return &___hi_15; }
inline void set_hi_15(int32_t value)
{
___hi_15 = value;
}
inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___lo_16)); }
inline int32_t get_lo_16() const { return ___lo_16; }
inline int32_t* get_address_of_lo_16() { return &___lo_16; }
inline void set_lo_16(int32_t value)
{
___lo_16 = value;
}
inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___mid_17)); }
inline int32_t get_mid_17() const { return ___mid_17; }
inline int32_t* get_address_of_mid_17() { return &___mid_17; }
inline void set_mid_17(int32_t value)
{
___mid_17 = value;
}
};
struct Decimal_t2948259380_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_t2770800703* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t2948259380 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t2948259380 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t2948259380 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t2948259380 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t2948259380 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t2948259380 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t2948259380 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_t2770800703* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_t2770800703** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_t2770800703* value)
{
___Powers10_6 = value;
Il2CppCodeGenWriteBarrier((&___Powers10_6), value);
}
inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___Zero_7)); }
inline Decimal_t2948259380 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t2948259380 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t2948259380 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___One_8)); }
inline Decimal_t2948259380 get_One_8() const { return ___One_8; }
inline Decimal_t2948259380 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t2948259380 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinusOne_9)); }
inline Decimal_t2948259380 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t2948259380 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t2948259380 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValue_10)); }
inline Decimal_t2948259380 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t2948259380 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t2948259380 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinValue_11)); }
inline Decimal_t2948259380 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t2948259380 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t2948259380 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t2948259380 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t2948259380 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t2948259380 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t2948259380 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t2948259380 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t2948259380 value)
{
___NearPositiveZero_13 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DECIMAL_T2948259380_H
#ifndef ASYNCMETHODBUILDERCORE_T2955600131_H
#define ASYNCMETHODBUILDERCORE_T2955600131_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_t2955600131
{
public:
// System.Runtime.CompilerServices.IAsyncStateMachine System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_stateMachine
RuntimeObject* ___m_stateMachine_0;
// System.Action System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_defaultContextAction
Action_t1264377477 * ___m_defaultContextAction_1;
public:
inline static int32_t get_offset_of_m_stateMachine_0() { return static_cast<int32_t>(offsetof(AsyncMethodBuilderCore_t2955600131, ___m_stateMachine_0)); }
inline RuntimeObject* get_m_stateMachine_0() const { return ___m_stateMachine_0; }
inline RuntimeObject** get_address_of_m_stateMachine_0() { return &___m_stateMachine_0; }
inline void set_m_stateMachine_0(RuntimeObject* value)
{
___m_stateMachine_0 = value;
Il2CppCodeGenWriteBarrier((&___m_stateMachine_0), value);
}
inline static int32_t get_offset_of_m_defaultContextAction_1() { return static_cast<int32_t>(offsetof(AsyncMethodBuilderCore_t2955600131, ___m_defaultContextAction_1)); }
inline Action_t1264377477 * get_m_defaultContextAction_1() const { return ___m_defaultContextAction_1; }
inline Action_t1264377477 ** get_address_of_m_defaultContextAction_1() { return &___m_defaultContextAction_1; }
inline void set_m_defaultContextAction_1(Action_t1264377477 * value)
{
___m_defaultContextAction_1 = value;
Il2CppCodeGenWriteBarrier((&___m_defaultContextAction_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_t2955600131_marshaled_pinvoke
{
RuntimeObject* ___m_stateMachine_0;
Il2CppMethodPointer ___m_defaultContextAction_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_t2955600131_marshaled_com
{
RuntimeObject* ___m_stateMachine_0;
Il2CppMethodPointer ___m_defaultContextAction_1;
};
#endif // ASYNCMETHODBUILDERCORE_T2955600131_H
#ifndef EPHEMERON_T1602596362_H
#define EPHEMERON_T1602596362_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t1602596362
{
public:
// System.Object System.Runtime.CompilerServices.Ephemeron::key
RuntimeObject * ___key_0;
// System.Object System.Runtime.CompilerServices.Ephemeron::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Ephemeron_t1602596362, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Ephemeron_t1602596362, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t1602596362_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t1602596362_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
#endif // EPHEMERON_T1602596362_H
#ifndef CANCELLATIONTOKEN_T784455623_H
#define CANCELLATIONTOKEN_T784455623_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.CancellationToken
struct CancellationToken_t784455623
{
public:
// System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source
CancellationTokenSource_t540272775 * ___m_source_0;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(CancellationToken_t784455623, ___m_source_0)); }
inline CancellationTokenSource_t540272775 * get_m_source_0() const { return ___m_source_0; }
inline CancellationTokenSource_t540272775 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(CancellationTokenSource_t540272775 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((&___m_source_0), value);
}
};
struct CancellationToken_t784455623_StaticFields
{
public:
// System.Action`1<System.Object> System.Threading.CancellationToken::s_ActionToActionObjShunt
Action_1_t3252573759 * ___s_ActionToActionObjShunt_1;
public:
inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast<int32_t>(offsetof(CancellationToken_t784455623_StaticFields, ___s_ActionToActionObjShunt_1)); }
inline Action_1_t3252573759 * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; }
inline Action_1_t3252573759 ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; }
inline void set_s_ActionToActionObjShunt_1(Action_1_t3252573759 * value)
{
___s_ActionToActionObjShunt_1 = value;
Il2CppCodeGenWriteBarrier((&___s_ActionToActionObjShunt_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Threading.CancellationToken
struct CancellationToken_t784455623_marshaled_pinvoke
{
CancellationTokenSource_t540272775 * ___m_source_0;
};
// Native definition for COM marshalling of System.Threading.CancellationToken
struct CancellationToken_t784455623_marshaled_com
{
CancellationTokenSource_t540272775 * ___m_source_0;
};
#endif // CANCELLATIONTOKEN_T784455623_H
#ifndef UINTPTR_T_H
#define UINTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UIntPtr
struct UIntPtr_t
{
public:
// System.Void* System.UIntPtr::_pointer
void* ____pointer_1;
public:
inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); }
inline void* get__pointer_1() const { return ____pointer_1; }
inline void** get_address_of__pointer_1() { return &____pointer_1; }
inline void set__pointer_1(void* value)
{
____pointer_1 = value;
}
};
struct UIntPtr_t_StaticFields
{
public:
// System.UIntPtr System.UIntPtr::Zero
uintptr_t ___Zero_0;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); }
inline uintptr_t get_Zero_0() const { return ___Zero_0; }
inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(uintptr_t value)
{
___Zero_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINTPTR_T_H
#ifndef BYTE_T1134296376_H
#define BYTE_T1134296376_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Byte
struct Byte_t1134296376
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_t1134296376, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BYTE_T1134296376_H
#ifndef CONFIGUREDTASKAWAITER_T3939089564_H
#define CONFIGUREDTASKAWAITER_T3939089564_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>
struct ConfiguredTaskAwaiter_t3939089564
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t4022128754 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t3939089564, ___m_task_0)); }
inline Task_1_t4022128754 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t4022128754 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t4022128754 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t3939089564, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T3939089564_H
#ifndef VECTOR2_T2156229523_H
#define VECTOR2_T2156229523_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector2
struct Vector2_t2156229523
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_t2156229523_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_t2156229523 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_t2156229523 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_t2156229523 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_t2156229523 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_t2156229523 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_t2156229523 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_t2156229523 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_t2156229523 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___zeroVector_2)); }
inline Vector2_t2156229523 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_t2156229523 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_t2156229523 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___oneVector_3)); }
inline Vector2_t2156229523 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_t2156229523 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_t2156229523 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___upVector_4)); }
inline Vector2_t2156229523 get_upVector_4() const { return ___upVector_4; }
inline Vector2_t2156229523 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_t2156229523 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___downVector_5)); }
inline Vector2_t2156229523 get_downVector_5() const { return ___downVector_5; }
inline Vector2_t2156229523 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_t2156229523 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___leftVector_6)); }
inline Vector2_t2156229523 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_t2156229523 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_t2156229523 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___rightVector_7)); }
inline Vector2_t2156229523 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_t2156229523 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_t2156229523 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_t2156229523 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_t2156229523 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_t2156229523 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_t2156229523 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_t2156229523 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_t2156229523 value)
{
___negativeInfinityVector_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR2_T2156229523_H
#ifndef CHAR_T3634460470_H
#define CHAR_T3634460470_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Char
struct Char_t3634460470
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_t3634460470, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_t3634460470_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_t4116647657* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_t4116647657* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_t4116647657** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_t4116647657* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((&___categoryForLatin1_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CHAR_T3634460470_H
#ifndef CONFIGUREDTASKAWAITER_T107639853_H
#define CONFIGUREDTASKAWAITER_T107639853_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>
struct ConfiguredTaskAwaiter_t107639853
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t190679043 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t107639853, ___m_task_0)); }
inline Task_1_t190679043 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t190679043 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t190679043 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t107639853, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T107639853_H
#ifndef VECTOR4_T3319028937_H
#define VECTOR4_T3319028937_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector4
struct Vector4_t3319028937
{
public:
// System.Single UnityEngine.Vector4::x
float ___x_1;
// System.Single UnityEngine.Vector4::y
float ___y_2;
// System.Single UnityEngine.Vector4::z
float ___z_3;
// System.Single UnityEngine.Vector4::w
float ___w_4;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___w_4)); }
inline float get_w_4() const { return ___w_4; }
inline float* get_address_of_w_4() { return &___w_4; }
inline void set_w_4(float value)
{
___w_4 = value;
}
};
struct Vector4_t3319028937_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_t3319028937 ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_t3319028937 ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_t3319028937 ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_t3319028937 ___negativeInfinityVector_8;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___zeroVector_5)); }
inline Vector4_t3319028937 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector4_t3319028937 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector4_t3319028937 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___oneVector_6)); }
inline Vector4_t3319028937 get_oneVector_6() const { return ___oneVector_6; }
inline Vector4_t3319028937 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector4_t3319028937 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___positiveInfinityVector_7)); }
inline Vector4_t3319028937 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; }
inline Vector4_t3319028937 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; }
inline void set_positiveInfinityVector_7(Vector4_t3319028937 value)
{
___positiveInfinityVector_7 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___negativeInfinityVector_8)); }
inline Vector4_t3319028937 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; }
inline Vector4_t3319028937 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; }
inline void set_negativeInfinityVector_8(Vector4_t3319028937 value)
{
___negativeInfinityVector_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR4_T3319028937_H
#ifndef INT32_T2950945753_H
#define INT32_T2950945753_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32
struct Int32_t2950945753
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32_T2950945753_H
#ifndef CONFIGUREDTASKAWAITER_T4273446738_H
#define CONFIGUREDTASKAWAITER_T4273446738_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>
struct ConfiguredTaskAwaiter_t4273446738
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t61518632 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t4273446738, ___m_task_0)); }
inline Task_1_t61518632 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t61518632 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t61518632 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t4273446738, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T4273446738_H
#ifndef LOADSCENEMODE_T3251202195_H
#define LOADSCENEMODE_T3251202195_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.SceneManagement.LoadSceneMode
struct LoadSceneMode_t3251202195
{
public:
// System.Int32 UnityEngine.SceneManagement.LoadSceneMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LoadSceneMode_t3251202195, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOADSCENEMODE_T3251202195_H
#ifndef TASKCONTINUATIONOPTIONS_T875378736_H
#define TASKCONTINUATIONOPTIONS_T875378736_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskContinuationOptions
struct TaskContinuationOptions_t875378736
{
public:
// System.Int32 System.Threading.Tasks.TaskContinuationOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskContinuationOptions_t875378736, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKCONTINUATIONOPTIONS_T875378736_H
#ifndef OPERATIONCANCELEDEXCEPTION_T926488448_H
#define OPERATIONCANCELEDEXCEPTION_T926488448_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.OperationCanceledException
struct OperationCanceledException_t926488448 : public SystemException_t176217640
{
public:
// System.Threading.CancellationToken System.OperationCanceledException::_cancellationToken
CancellationToken_t784455623 ____cancellationToken_16;
public:
inline static int32_t get_offset_of__cancellationToken_16() { return static_cast<int32_t>(offsetof(OperationCanceledException_t926488448, ____cancellationToken_16)); }
inline CancellationToken_t784455623 get__cancellationToken_16() const { return ____cancellationToken_16; }
inline CancellationToken_t784455623 * get_address_of__cancellationToken_16() { return &____cancellationToken_16; }
inline void set__cancellationToken_16(CancellationToken_t784455623 value)
{
____cancellationToken_16 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OPERATIONCANCELEDEXCEPTION_T926488448_H
#ifndef CONFIGUREDTASKAWAITABLE_1_T1383066211_H
#define CONFIGUREDTASKAWAITABLE_1_T1383066211_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>
struct ConfiguredTaskAwaitable_1_t1383066211
{
public:
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t107639853 ___m_configuredTaskAwaiter_0;
public:
inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t1383066211, ___m_configuredTaskAwaiter_0)); }
inline ConfiguredTaskAwaiter_t107639853 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; }
inline ConfiguredTaskAwaiter_t107639853 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; }
inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t107639853 value)
{
___m_configuredTaskAwaiter_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITABLE_1_T1383066211_H
#ifndef RUNTIMETYPEHANDLE_T3027515415_H
#define RUNTIMETYPEHANDLE_T3027515415_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t3027515415
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t3027515415, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMETYPEHANDLE_T3027515415_H
#ifndef ASYNCTASKMETHODBUILDER_1_T642595793_H
#define ASYNCTASKMETHODBUILDER_1_T642595793_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>
struct AsyncTaskMethodBuilder_1_t642595793
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t2955600131 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t4022128754 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t642595793, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t2955600131 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t2955600131 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t2955600131 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t642595793, ___m_task_2)); }
inline Task_1_t4022128754 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t4022128754 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t4022128754 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t642595793_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t4022128754 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t642595793_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t4022128754 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t4022128754 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t4022128754 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T642595793_H
#ifndef THREADABORTEXCEPTION_T4074510458_H
#define THREADABORTEXCEPTION_T4074510458_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.ThreadAbortException
struct ThreadAbortException_t4074510458 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // THREADABORTEXCEPTION_T4074510458_H
#ifndef CASTHELPER_1_T2613165452_H
#define CASTHELPER_1_T2613165452_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.CastHelper`1<System.Object>
struct CastHelper_1_t2613165452
{
public:
// T UnityEngine.CastHelper`1::t
RuntimeObject * ___t_0;
// System.IntPtr UnityEngine.CastHelper`1::onePointerFurtherThanT
intptr_t ___onePointerFurtherThanT_1;
public:
inline static int32_t get_offset_of_t_0() { return static_cast<int32_t>(offsetof(CastHelper_1_t2613165452, ___t_0)); }
inline RuntimeObject * get_t_0() const { return ___t_0; }
inline RuntimeObject ** get_address_of_t_0() { return &___t_0; }
inline void set_t_0(RuntimeObject * value)
{
___t_0 = value;
Il2CppCodeGenWriteBarrier((&___t_0), value);
}
inline static int32_t get_offset_of_onePointerFurtherThanT_1() { return static_cast<int32_t>(offsetof(CastHelper_1_t2613165452, ___onePointerFurtherThanT_1)); }
inline intptr_t get_onePointerFurtherThanT_1() const { return ___onePointerFurtherThanT_1; }
inline intptr_t* get_address_of_onePointerFurtherThanT_1() { return &___onePointerFurtherThanT_1; }
inline void set_onePointerFurtherThanT_1(intptr_t value)
{
___onePointerFurtherThanT_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CASTHELPER_1_T2613165452_H
#ifndef DELEGATE_T1188392813_H
#define DELEGATE_T1188392813_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Delegate
struct Delegate_t1188392813 : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1677132599 * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((&___m_target_2), value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((&___method_info_7), value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((&___original_method_info_8), value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_9)); }
inline DelegateData_t1677132599 * get_data_9() const { return ___data_9; }
inline DelegateData_t1677132599 ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1677132599 * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((&___data_9), value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t1188392813_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1677132599 * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t1188392813_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1677132599 * ___data_9;
int32_t ___method_is_virtual_10;
};
#endif // DELEGATE_T1188392813_H
#ifndef CACHEDINVOKABLECALL_1_T1111334208_H
#define CACHEDINVOKABLECALL_1_T1111334208_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.CachedInvokableCall`1<System.Object>
struct CachedInvokableCall_1_t1111334208 : public InvokableCall_1_t3197270402
{
public:
// T UnityEngine.Events.CachedInvokableCall`1::m_Arg1
RuntimeObject * ___m_Arg1_1;
public:
inline static int32_t get_offset_of_m_Arg1_1() { return static_cast<int32_t>(offsetof(CachedInvokableCall_1_t1111334208, ___m_Arg1_1)); }
inline RuntimeObject * get_m_Arg1_1() const { return ___m_Arg1_1; }
inline RuntimeObject ** get_address_of_m_Arg1_1() { return &___m_Arg1_1; }
inline void set_m_Arg1_1(RuntimeObject * value)
{
___m_Arg1_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Arg1_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHEDINVOKABLECALL_1_T1111334208_H
#ifndef CACHEDINVOKABLECALL_1_T982173797_H
#define CACHEDINVOKABLECALL_1_T982173797_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.CachedInvokableCall`1<System.Int32>
struct CachedInvokableCall_1_t982173797 : public InvokableCall_1_t3068109991
{
public:
// T UnityEngine.Events.CachedInvokableCall`1::m_Arg1
int32_t ___m_Arg1_1;
public:
inline static int32_t get_offset_of_m_Arg1_1() { return static_cast<int32_t>(offsetof(CachedInvokableCall_1_t982173797, ___m_Arg1_1)); }
inline int32_t get_m_Arg1_1() const { return ___m_Arg1_1; }
inline int32_t* get_address_of_m_Arg1_1() { return &___m_Arg1_1; }
inline void set_m_Arg1_1(int32_t value)
{
___m_Arg1_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHEDINVOKABLECALL_1_T982173797_H
#ifndef OBJECT_T631007953_H
#define OBJECT_T631007953_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Object
struct Object_t631007953 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_t631007953, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_t631007953_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_t631007953_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_t631007953_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_t631007953_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
#endif // OBJECT_T631007953_H
#ifndef CACHEDINVOKABLECALL_1_T2423483305_H
#define CACHEDINVOKABLECALL_1_T2423483305_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.CachedInvokableCall`1<System.Boolean>
struct CachedInvokableCall_1_t2423483305 : public InvokableCall_1_t214452203
{
public:
// T UnityEngine.Events.CachedInvokableCall`1::m_Arg1
bool ___m_Arg1_1;
public:
inline static int32_t get_offset_of_m_Arg1_1() { return static_cast<int32_t>(offsetof(CachedInvokableCall_1_t2423483305, ___m_Arg1_1)); }
inline bool get_m_Arg1_1() const { return ___m_Arg1_1; }
inline bool* get_address_of_m_Arg1_1() { return &___m_Arg1_1; }
inline void set_m_Arg1_1(bool value)
{
___m_Arg1_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHEDINVOKABLECALL_1_T2423483305_H
#ifndef ASYNCTASKMETHODBUILDER_1_T976952967_H
#define ASYNCTASKMETHODBUILDER_1_T976952967_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>
struct AsyncTaskMethodBuilder_1_t976952967
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t2955600131 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t61518632 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t976952967, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t2955600131 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t2955600131 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t2955600131 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t976952967, ___m_task_2)); }
inline Task_1_t61518632 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t61518632 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t61518632 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t976952967_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t61518632 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t976952967_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t61518632 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t61518632 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t61518632 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T976952967_H
#ifndef ASYNCTASKMETHODBUILDER_1_T1106113378_H
#define ASYNCTASKMETHODBUILDER_1_T1106113378_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>
struct AsyncTaskMethodBuilder_1_t1106113378
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t2955600131 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t190679043 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t1106113378, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t2955600131 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t2955600131 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t2955600131 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t1106113378, ___m_task_2)); }
inline Task_1_t190679043 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t190679043 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t190679043 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t1106113378_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t190679043 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t1106113378_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t190679043 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t190679043 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t190679043 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T1106113378_H
#ifndef METHODINFO_T_H
#define METHODINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODINFO_T_H
#ifndef TASKEXCEPTIONHOLDER_T1800584989_H
#define TASKEXCEPTIONHOLDER_T1800584989_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskExceptionHolder
struct TaskExceptionHolder_t1800584989 : public RuntimeObject
{
public:
// System.Threading.Tasks.Task System.Threading.Tasks.TaskExceptionHolder::m_task
Task_t3187275312 * ___m_task_3;
// System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions
List_1_t928104815 * ___m_faultExceptions_4;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Threading.Tasks.TaskExceptionHolder::m_cancellationException
ExceptionDispatchInfo_t3750997369 * ___m_cancellationException_5;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_isHandled
bool ___m_isHandled_6;
public:
inline static int32_t get_offset_of_m_task_3() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1800584989, ___m_task_3)); }
inline Task_t3187275312 * get_m_task_3() const { return ___m_task_3; }
inline Task_t3187275312 ** get_address_of_m_task_3() { return &___m_task_3; }
inline void set_m_task_3(Task_t3187275312 * value)
{
___m_task_3 = value;
Il2CppCodeGenWriteBarrier((&___m_task_3), value);
}
inline static int32_t get_offset_of_m_faultExceptions_4() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1800584989, ___m_faultExceptions_4)); }
inline List_1_t928104815 * get_m_faultExceptions_4() const { return ___m_faultExceptions_4; }
inline List_1_t928104815 ** get_address_of_m_faultExceptions_4() { return &___m_faultExceptions_4; }
inline void set_m_faultExceptions_4(List_1_t928104815 * value)
{
___m_faultExceptions_4 = value;
Il2CppCodeGenWriteBarrier((&___m_faultExceptions_4), value);
}
inline static int32_t get_offset_of_m_cancellationException_5() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1800584989, ___m_cancellationException_5)); }
inline ExceptionDispatchInfo_t3750997369 * get_m_cancellationException_5() const { return ___m_cancellationException_5; }
inline ExceptionDispatchInfo_t3750997369 ** get_address_of_m_cancellationException_5() { return &___m_cancellationException_5; }
inline void set_m_cancellationException_5(ExceptionDispatchInfo_t3750997369 * value)
{
___m_cancellationException_5 = value;
Il2CppCodeGenWriteBarrier((&___m_cancellationException_5), value);
}
inline static int32_t get_offset_of_m_isHandled_6() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1800584989, ___m_isHandled_6)); }
inline bool get_m_isHandled_6() const { return ___m_isHandled_6; }
inline bool* get_address_of_m_isHandled_6() { return &___m_isHandled_6; }
inline void set_m_isHandled_6(bool value)
{
___m_isHandled_6 = value;
}
};
struct TaskExceptionHolder_t1800584989_StaticFields
{
public:
// System.Boolean System.Threading.Tasks.TaskExceptionHolder::s_failFastOnUnobservedException
bool ___s_failFastOnUnobservedException_0;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::s_domainUnloadStarted
bool ___s_domainUnloadStarted_1;
// System.EventHandler modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::s_adUnloadEventHandler
EventHandler_t1348719766 * ___s_adUnloadEventHandler_2;
public:
inline static int32_t get_offset_of_s_failFastOnUnobservedException_0() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1800584989_StaticFields, ___s_failFastOnUnobservedException_0)); }
inline bool get_s_failFastOnUnobservedException_0() const { return ___s_failFastOnUnobservedException_0; }
inline bool* get_address_of_s_failFastOnUnobservedException_0() { return &___s_failFastOnUnobservedException_0; }
inline void set_s_failFastOnUnobservedException_0(bool value)
{
___s_failFastOnUnobservedException_0 = value;
}
inline static int32_t get_offset_of_s_domainUnloadStarted_1() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1800584989_StaticFields, ___s_domainUnloadStarted_1)); }
inline bool get_s_domainUnloadStarted_1() const { return ___s_domainUnloadStarted_1; }
inline bool* get_address_of_s_domainUnloadStarted_1() { return &___s_domainUnloadStarted_1; }
inline void set_s_domainUnloadStarted_1(bool value)
{
___s_domainUnloadStarted_1 = value;
}
inline static int32_t get_offset_of_s_adUnloadEventHandler_2() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1800584989_StaticFields, ___s_adUnloadEventHandler_2)); }
inline EventHandler_t1348719766 * get_s_adUnloadEventHandler_2() const { return ___s_adUnloadEventHandler_2; }
inline EventHandler_t1348719766 ** get_address_of_s_adUnloadEventHandler_2() { return &___s_adUnloadEventHandler_2; }
inline void set_s_adUnloadEventHandler_2(EventHandler_t1348719766 * value)
{
___s_adUnloadEventHandler_2 = value;
Il2CppCodeGenWriteBarrier((&___s_adUnloadEventHandler_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKEXCEPTIONHOLDER_T1800584989_H
#ifndef CACHEDINVOKABLECALL_1_T3723462114_H
#define CACHEDINVOKABLECALL_1_T3723462114_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.CachedInvokableCall`1<System.Single>
struct CachedInvokableCall_1_t3723462114 : public InvokableCall_1_t1514431012
{
public:
// T UnityEngine.Events.CachedInvokableCall`1::m_Arg1
float ___m_Arg1_1;
public:
inline static int32_t get_offset_of_m_Arg1_1() { return static_cast<int32_t>(offsetof(CachedInvokableCall_1_t3723462114, ___m_Arg1_1)); }
inline float get_m_Arg1_1() const { return ___m_Arg1_1; }
inline float* get_address_of_m_Arg1_1() { return &___m_Arg1_1; }
inline void set_m_Arg1_1(float value)
{
___m_Arg1_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHEDINVOKABLECALL_1_T3723462114_H
#ifndef REGEXOPTIONS_T92845595_H
#define REGEXOPTIONS_T92845595_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.RegularExpressions.RegexOptions
struct RegexOptions_t92845595
{
public:
// System.Int32 System.Text.RegularExpressions.RegexOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RegexOptions_t92845595, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // REGEXOPTIONS_T92845595_H
#ifndef TIMESPAN_T881159249_H
#define TIMESPAN_T881159249_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.TimeSpan
struct TimeSpan_t881159249
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_3;
public:
inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249, ____ticks_3)); }
inline int64_t get__ticks_3() const { return ____ticks_3; }
inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
inline void set__ticks_3(int64_t value)
{
____ticks_3 = value;
}
};
struct TimeSpan_t881159249_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t881159249 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t881159249 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t881159249 ___MinValue_2;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_4;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_5;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___Zero_0)); }
inline TimeSpan_t881159249 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_t881159249 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_t881159249 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MaxValue_1)); }
inline TimeSpan_t881159249 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_t881159249 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_t881159249 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MinValue_2)); }
inline TimeSpan_t881159249 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_t881159249 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_t881159249 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ____legacyConfigChecked_4)); }
inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
inline void set__legacyConfigChecked_4(bool value)
{
____legacyConfigChecked_4 = value;
}
inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ____legacyMode_5)); }
inline bool get__legacyMode_5() const { return ____legacyMode_5; }
inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
inline void set__legacyMode_5(bool value)
{
____legacyMode_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TIMESPAN_T881159249_H
#ifndef INVALIDOPERATIONEXCEPTION_T56020091_H
#define INVALIDOPERATIONEXCEPTION_T56020091_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.InvalidOperationException
struct InvalidOperationException_t56020091 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVALIDOPERATIONEXCEPTION_T56020091_H
#ifndef CONTINGENTPROPERTIES_T2170468915_H
#define CONTINGENTPROPERTIES_T2170468915_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task/ContingentProperties
struct ContingentProperties_t2170468915 : public RuntimeObject
{
public:
// System.Threading.ExecutionContext System.Threading.Tasks.Task/ContingentProperties::m_capturedContext
ExecutionContext_t1748372627 * ___m_capturedContext_0;
// System.Threading.ManualResetEventSlim modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task/ContingentProperties::m_completionEvent
ManualResetEventSlim_t3596722525 * ___m_completionEvent_1;
// System.Threading.Tasks.TaskExceptionHolder modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task/ContingentProperties::m_exceptionsHolder
TaskExceptionHolder_t1800584989 * ___m_exceptionsHolder_2;
// System.Threading.CancellationToken System.Threading.Tasks.Task/ContingentProperties::m_cancellationToken
CancellationToken_t784455623 ___m_cancellationToken_3;
// System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration> System.Threading.Tasks.Task/ContingentProperties::m_cancellationRegistration
Shared_1_t445487134 * ___m_cancellationRegistration_4;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task/ContingentProperties::m_internalCancellationRequested
int32_t ___m_internalCancellationRequested_5;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task/ContingentProperties::m_completionCountdown
int32_t ___m_completionCountdown_6;
// System.Collections.Generic.List`1<System.Threading.Tasks.Task> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task/ContingentProperties::m_exceptionalChildren
List_1_t364382758 * ___m_exceptionalChildren_7;
public:
inline static int32_t get_offset_of_m_capturedContext_0() { return static_cast<int32_t>(offsetof(ContingentProperties_t2170468915, ___m_capturedContext_0)); }
inline ExecutionContext_t1748372627 * get_m_capturedContext_0() const { return ___m_capturedContext_0; }
inline ExecutionContext_t1748372627 ** get_address_of_m_capturedContext_0() { return &___m_capturedContext_0; }
inline void set_m_capturedContext_0(ExecutionContext_t1748372627 * value)
{
___m_capturedContext_0 = value;
Il2CppCodeGenWriteBarrier((&___m_capturedContext_0), value);
}
inline static int32_t get_offset_of_m_completionEvent_1() { return static_cast<int32_t>(offsetof(ContingentProperties_t2170468915, ___m_completionEvent_1)); }
inline ManualResetEventSlim_t3596722525 * get_m_completionEvent_1() const { return ___m_completionEvent_1; }
inline ManualResetEventSlim_t3596722525 ** get_address_of_m_completionEvent_1() { return &___m_completionEvent_1; }
inline void set_m_completionEvent_1(ManualResetEventSlim_t3596722525 * value)
{
___m_completionEvent_1 = value;
Il2CppCodeGenWriteBarrier((&___m_completionEvent_1), value);
}
inline static int32_t get_offset_of_m_exceptionsHolder_2() { return static_cast<int32_t>(offsetof(ContingentProperties_t2170468915, ___m_exceptionsHolder_2)); }
inline TaskExceptionHolder_t1800584989 * get_m_exceptionsHolder_2() const { return ___m_exceptionsHolder_2; }
inline TaskExceptionHolder_t1800584989 ** get_address_of_m_exceptionsHolder_2() { return &___m_exceptionsHolder_2; }
inline void set_m_exceptionsHolder_2(TaskExceptionHolder_t1800584989 * value)
{
___m_exceptionsHolder_2 = value;
Il2CppCodeGenWriteBarrier((&___m_exceptionsHolder_2), value);
}
inline static int32_t get_offset_of_m_cancellationToken_3() { return static_cast<int32_t>(offsetof(ContingentProperties_t2170468915, ___m_cancellationToken_3)); }
inline CancellationToken_t784455623 get_m_cancellationToken_3() const { return ___m_cancellationToken_3; }
inline CancellationToken_t784455623 * get_address_of_m_cancellationToken_3() { return &___m_cancellationToken_3; }
inline void set_m_cancellationToken_3(CancellationToken_t784455623 value)
{
___m_cancellationToken_3 = value;
}
inline static int32_t get_offset_of_m_cancellationRegistration_4() { return static_cast<int32_t>(offsetof(ContingentProperties_t2170468915, ___m_cancellationRegistration_4)); }
inline Shared_1_t445487134 * get_m_cancellationRegistration_4() const { return ___m_cancellationRegistration_4; }
inline Shared_1_t445487134 ** get_address_of_m_cancellationRegistration_4() { return &___m_cancellationRegistration_4; }
inline void set_m_cancellationRegistration_4(Shared_1_t445487134 * value)
{
___m_cancellationRegistration_4 = value;
Il2CppCodeGenWriteBarrier((&___m_cancellationRegistration_4), value);
}
inline static int32_t get_offset_of_m_internalCancellationRequested_5() { return static_cast<int32_t>(offsetof(ContingentProperties_t2170468915, ___m_internalCancellationRequested_5)); }
inline int32_t get_m_internalCancellationRequested_5() const { return ___m_internalCancellationRequested_5; }
inline int32_t* get_address_of_m_internalCancellationRequested_5() { return &___m_internalCancellationRequested_5; }
inline void set_m_internalCancellationRequested_5(int32_t value)
{
___m_internalCancellationRequested_5 = value;
}
inline static int32_t get_offset_of_m_completionCountdown_6() { return static_cast<int32_t>(offsetof(ContingentProperties_t2170468915, ___m_completionCountdown_6)); }
inline int32_t get_m_completionCountdown_6() const { return ___m_completionCountdown_6; }
inline int32_t* get_address_of_m_completionCountdown_6() { return &___m_completionCountdown_6; }
inline void set_m_completionCountdown_6(int32_t value)
{
___m_completionCountdown_6 = value;
}
inline static int32_t get_offset_of_m_exceptionalChildren_7() { return static_cast<int32_t>(offsetof(ContingentProperties_t2170468915, ___m_exceptionalChildren_7)); }
inline List_1_t364382758 * get_m_exceptionalChildren_7() const { return ___m_exceptionalChildren_7; }
inline List_1_t364382758 ** get_address_of_m_exceptionalChildren_7() { return &___m_exceptionalChildren_7; }
inline void set_m_exceptionalChildren_7(List_1_t364382758 * value)
{
___m_exceptionalChildren_7 = value;
Il2CppCodeGenWriteBarrier((&___m_exceptionalChildren_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONTINGENTPROPERTIES_T2170468915_H
#ifndef ASYNCTASKMETHODBUILDER_1_T2418262475_H
#define ASYNCTASKMETHODBUILDER_1_T2418262475_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>
struct AsyncTaskMethodBuilder_1_t2418262475
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t2955600131 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t1502828140 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2418262475, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t2955600131 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t2955600131 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t2955600131 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2418262475, ___m_task_2)); }
inline Task_1_t1502828140 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t1502828140 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t1502828140 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t2418262475_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t1502828140 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2418262475_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t1502828140 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t1502828140 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t1502828140 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T2418262475_H
#ifndef CANCELLATIONTOKENREGISTRATION_T2813424904_H
#define CANCELLATIONTOKENREGISTRATION_T2813424904_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_t2813424904
{
public:
// System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo
CancellationCallbackInfo_t322720759 * ___m_callbackInfo_0;
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo
SparselyPopulatedArrayAddInfo_1_t223515617 ___m_registrationInfo_1;
public:
inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_t2813424904, ___m_callbackInfo_0)); }
inline CancellationCallbackInfo_t322720759 * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; }
inline CancellationCallbackInfo_t322720759 ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; }
inline void set_m_callbackInfo_0(CancellationCallbackInfo_t322720759 * value)
{
___m_callbackInfo_0 = value;
Il2CppCodeGenWriteBarrier((&___m_callbackInfo_0), value);
}
inline static int32_t get_offset_of_m_registrationInfo_1() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_t2813424904, ___m_registrationInfo_1)); }
inline SparselyPopulatedArrayAddInfo_1_t223515617 get_m_registrationInfo_1() const { return ___m_registrationInfo_1; }
inline SparselyPopulatedArrayAddInfo_1_t223515617 * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; }
inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t223515617 value)
{
___m_registrationInfo_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_t2813424904_marshaled_pinvoke
{
CancellationCallbackInfo_t322720759 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t223515617 ___m_registrationInfo_1;
};
// Native definition for COM marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_t2813424904_marshaled_com
{
CancellationCallbackInfo_t322720759 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t223515617 ___m_registrationInfo_1;
};
#endif // CANCELLATIONTOKENREGISTRATION_T2813424904_H
#ifndef RAYCASTRESULT_T3360306849_H
#define RAYCASTRESULT_T3360306849_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t3360306849
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_t1113636619 * ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_t4150874583 * ___module_1;
// System.Single UnityEngine.EventSystems.RaycastResult::distance
float ___distance_2;
// System.Single UnityEngine.EventSystems.RaycastResult::index
float ___index_3;
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
int32_t ___depth_4;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
int32_t ___sortingLayer_5;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
int32_t ___sortingOrder_6;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
Vector3_t3722313464 ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_t3722313464 ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_t2156229523 ___screenPosition_9;
public:
inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___m_GameObject_0)); }
inline GameObject_t1113636619 * get_m_GameObject_0() const { return ___m_GameObject_0; }
inline GameObject_t1113636619 ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; }
inline void set_m_GameObject_0(GameObject_t1113636619 * value)
{
___m_GameObject_0 = value;
Il2CppCodeGenWriteBarrier((&___m_GameObject_0), value);
}
inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___module_1)); }
inline BaseRaycaster_t4150874583 * get_module_1() const { return ___module_1; }
inline BaseRaycaster_t4150874583 ** get_address_of_module_1() { return &___module_1; }
inline void set_module_1(BaseRaycaster_t4150874583 * value)
{
___module_1 = value;
Il2CppCodeGenWriteBarrier((&___module_1), value);
}
inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___distance_2)); }
inline float get_distance_2() const { return ___distance_2; }
inline float* get_address_of_distance_2() { return &___distance_2; }
inline void set_distance_2(float value)
{
___distance_2 = value;
}
inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___index_3)); }
inline float get_index_3() const { return ___index_3; }
inline float* get_address_of_index_3() { return &___index_3; }
inline void set_index_3(float value)
{
___index_3 = value;
}
inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___depth_4)); }
inline int32_t get_depth_4() const { return ___depth_4; }
inline int32_t* get_address_of_depth_4() { return &___depth_4; }
inline void set_depth_4(int32_t value)
{
___depth_4 = value;
}
inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___sortingLayer_5)); }
inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; }
inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; }
inline void set_sortingLayer_5(int32_t value)
{
___sortingLayer_5 = value;
}
inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___sortingOrder_6)); }
inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; }
inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; }
inline void set_sortingOrder_6(int32_t value)
{
___sortingOrder_6 = value;
}
inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___worldPosition_7)); }
inline Vector3_t3722313464 get_worldPosition_7() const { return ___worldPosition_7; }
inline Vector3_t3722313464 * get_address_of_worldPosition_7() { return &___worldPosition_7; }
inline void set_worldPosition_7(Vector3_t3722313464 value)
{
___worldPosition_7 = value;
}
inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___worldNormal_8)); }
inline Vector3_t3722313464 get_worldNormal_8() const { return ___worldNormal_8; }
inline Vector3_t3722313464 * get_address_of_worldNormal_8() { return &___worldNormal_8; }
inline void set_worldNormal_8(Vector3_t3722313464 value)
{
___worldNormal_8 = value;
}
inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___screenPosition_9)); }
inline Vector2_t2156229523 get_screenPosition_9() const { return ___screenPosition_9; }
inline Vector2_t2156229523 * get_address_of_screenPosition_9() { return &___screenPosition_9; }
inline void set_screenPosition_9(Vector2_t2156229523 value)
{
___screenPosition_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t3360306849_marshaled_pinvoke
{
GameObject_t1113636619 * ___m_GameObject_0;
BaseRaycaster_t4150874583 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_t3722313464 ___worldPosition_7;
Vector3_t3722313464 ___worldNormal_8;
Vector2_t2156229523 ___screenPosition_9;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t3360306849_marshaled_com
{
GameObject_t1113636619 * ___m_GameObject_0;
BaseRaycaster_t4150874583 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_t3722313464 ___worldPosition_7;
Vector3_t3722313464 ___worldNormal_8;
Vector2_t2156229523 ___screenPosition_9;
};
#endif // RAYCASTRESULT_T3360306849_H
#ifndef STACKCRAWLMARK_T3282756964_H
#define STACKCRAWLMARK_T3282756964_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.StackCrawlMark
struct StackCrawlMark_t3282756964
{
public:
// System.Int32 System.Threading.StackCrawlMark::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StackCrawlMark_t3282756964, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STACKCRAWLMARK_T3282756964_H
#ifndef INTERNALTASKOPTIONS_T2351716312_H
#define INTERNALTASKOPTIONS_T2351716312_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.InternalTaskOptions
struct InternalTaskOptions_t2351716312
{
public:
// System.Int32 System.Threading.Tasks.InternalTaskOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InternalTaskOptions_t2351716312, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERNALTASKOPTIONS_T2351716312_H
#ifndef TASKCREATIONOPTIONS_T173757611_H
#define TASKCREATIONOPTIONS_T173757611_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskCreationOptions
struct TaskCreationOptions_t173757611
{
public:
// System.Int32 System.Threading.Tasks.TaskCreationOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskCreationOptions_t173757611, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKCREATIONOPTIONS_T173757611_H
#ifndef CAUSALITYTRACELEVEL_T2831492932_H
#define CAUSALITYTRACELEVEL_T2831492932_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.CausalityTraceLevel
struct CausalityTraceLevel_t2831492932
{
public:
// System.Int32 System.Threading.Tasks.CausalityTraceLevel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CausalityTraceLevel_t2831492932, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CAUSALITYTRACELEVEL_T2831492932_H
#ifndef UICHARINFO_T75501106_H
#define UICHARINFO_T75501106_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UICharInfo
struct UICharInfo_t75501106
{
public:
// UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos
Vector2_t2156229523 ___cursorPos_0;
// System.Single UnityEngine.UICharInfo::charWidth
float ___charWidth_1;
public:
inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_t75501106, ___cursorPos_0)); }
inline Vector2_t2156229523 get_cursorPos_0() const { return ___cursorPos_0; }
inline Vector2_t2156229523 * get_address_of_cursorPos_0() { return &___cursorPos_0; }
inline void set_cursorPos_0(Vector2_t2156229523 value)
{
___cursorPos_0 = value;
}
inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_t75501106, ___charWidth_1)); }
inline float get_charWidth_1() const { return ___charWidth_1; }
inline float* get_address_of_charWidth_1() { return &___charWidth_1; }
inline void set_charWidth_1(float value)
{
___charWidth_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UICHARINFO_T75501106_H
#ifndef CONFIGUREDTASKAWAITABLE_1_T2695215308_H
#define CONFIGUREDTASKAWAITABLE_1_T2695215308_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>
struct ConfiguredTaskAwaitable_1_t2695215308
{
public:
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t1419788950 ___m_configuredTaskAwaiter_0;
public:
inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t2695215308, ___m_configuredTaskAwaiter_0)); }
inline ConfiguredTaskAwaiter_t1419788950 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; }
inline ConfiguredTaskAwaiter_t1419788950 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; }
inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t1419788950 value)
{
___m_configuredTaskAwaiter_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITABLE_1_T2695215308_H
#ifndef CONFIGUREDTASKAWAITABLE_1_T919548626_H
#define CONFIGUREDTASKAWAITABLE_1_T919548626_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>
struct ConfiguredTaskAwaitable_1_t919548626
{
public:
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t3939089564 ___m_configuredTaskAwaiter_0;
public:
inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t919548626, ___m_configuredTaskAwaiter_0)); }
inline ConfiguredTaskAwaiter_t3939089564 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; }
inline ConfiguredTaskAwaiter_t3939089564 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; }
inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t3939089564 value)
{
___m_configuredTaskAwaiter_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITABLE_1_T919548626_H
#ifndef CONFIGUREDTASKAWAITABLE_1_T1253905800_H
#define CONFIGUREDTASKAWAITABLE_1_T1253905800_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>
struct ConfiguredTaskAwaitable_1_t1253905800
{
public:
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t4273446738 ___m_configuredTaskAwaiter_0;
public:
inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t1253905800, ___m_configuredTaskAwaiter_0)); }
inline ConfiguredTaskAwaiter_t4273446738 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; }
inline ConfiguredTaskAwaiter_t4273446738 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; }
inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t4273446738 value)
{
___m_configuredTaskAwaiter_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITABLE_1_T1253905800_H
#ifndef TASK_T3187275312_H
#define TASK_T3187275312_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task
struct Task_t3187275312 : public RuntimeObject
{
public:
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId
int32_t ___m_taskId_4;
// System.Object System.Threading.Tasks.Task::m_action
RuntimeObject * ___m_action_5;
// System.Object System.Threading.Tasks.Task::m_stateObject
RuntimeObject * ___m_stateObject_6;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler
TaskScheduler_t1196198384 * ___m_taskScheduler_7;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent
Task_t3187275312 * ___m_parent_8;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags
int32_t ___m_stateFlags_9;
// System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject
RuntimeObject * ___m_continuationObject_10;
// System.Threading.Tasks.Task/ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties
ContingentProperties_t2170468915 * ___m_contingentProperties_15;
public:
inline static int32_t get_offset_of_m_taskId_4() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_taskId_4)); }
inline int32_t get_m_taskId_4() const { return ___m_taskId_4; }
inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; }
inline void set_m_taskId_4(int32_t value)
{
___m_taskId_4 = value;
}
inline static int32_t get_offset_of_m_action_5() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_action_5)); }
inline RuntimeObject * get_m_action_5() const { return ___m_action_5; }
inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; }
inline void set_m_action_5(RuntimeObject * value)
{
___m_action_5 = value;
Il2CppCodeGenWriteBarrier((&___m_action_5), value);
}
inline static int32_t get_offset_of_m_stateObject_6() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_stateObject_6)); }
inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; }
inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; }
inline void set_m_stateObject_6(RuntimeObject * value)
{
___m_stateObject_6 = value;
Il2CppCodeGenWriteBarrier((&___m_stateObject_6), value);
}
inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_taskScheduler_7)); }
inline TaskScheduler_t1196198384 * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; }
inline TaskScheduler_t1196198384 ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; }
inline void set_m_taskScheduler_7(TaskScheduler_t1196198384 * value)
{
___m_taskScheduler_7 = value;
Il2CppCodeGenWriteBarrier((&___m_taskScheduler_7), value);
}
inline static int32_t get_offset_of_m_parent_8() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_parent_8)); }
inline Task_t3187275312 * get_m_parent_8() const { return ___m_parent_8; }
inline Task_t3187275312 ** get_address_of_m_parent_8() { return &___m_parent_8; }
inline void set_m_parent_8(Task_t3187275312 * value)
{
___m_parent_8 = value;
Il2CppCodeGenWriteBarrier((&___m_parent_8), value);
}
inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_stateFlags_9)); }
inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; }
inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; }
inline void set_m_stateFlags_9(int32_t value)
{
___m_stateFlags_9 = value;
}
inline static int32_t get_offset_of_m_continuationObject_10() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_continuationObject_10)); }
inline RuntimeObject * get_m_continuationObject_10() const { return ___m_continuationObject_10; }
inline RuntimeObject ** get_address_of_m_continuationObject_10() { return &___m_continuationObject_10; }
inline void set_m_continuationObject_10(RuntimeObject * value)
{
___m_continuationObject_10 = value;
Il2CppCodeGenWriteBarrier((&___m_continuationObject_10), value);
}
inline static int32_t get_offset_of_m_contingentProperties_15() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_contingentProperties_15)); }
inline ContingentProperties_t2170468915 * get_m_contingentProperties_15() const { return ___m_contingentProperties_15; }
inline ContingentProperties_t2170468915 ** get_address_of_m_contingentProperties_15() { return &___m_contingentProperties_15; }
inline void set_m_contingentProperties_15(ContingentProperties_t2170468915 * value)
{
___m_contingentProperties_15 = value;
Il2CppCodeGenWriteBarrier((&___m_contingentProperties_15), value);
}
};
struct Task_t3187275312_StaticFields
{
public:
// System.Int32 System.Threading.Tasks.Task::s_taskIdCounter
int32_t ___s_taskIdCounter_2;
// System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory
TaskFactory_t2660013028 * ___s_factory_3;
// System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel
RuntimeObject * ___s_taskCompletionSentinel_11;
// System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled
bool ___s_asyncDebuggingEnabled_12;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks
Dictionary_2_t2075988643 * ___s_currentActiveTasks_13;
// System.Object System.Threading.Tasks.Task::s_activeTasksLock
RuntimeObject * ___s_activeTasksLock_14;
// System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback
Action_1_t3252573759 * ___s_taskCancelCallback_16;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties
Func_1_t1600215562 * ___s_createContingentProperties_17;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask
Task_t3187275312 * ___s_completedTask_18;
// System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate
Predicate_1_t4012569436 * ___s_IsExceptionObservedByParentPredicate_19;
// System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback
ContextCallback_t3823316192 * ___s_ecCallback_20;
// System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate
Predicate_1_t3905400288 * ___s_IsTaskContinuationNullPredicate_21;
public:
inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_taskIdCounter_2)); }
inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; }
inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; }
inline void set_s_taskIdCounter_2(int32_t value)
{
___s_taskIdCounter_2 = value;
}
inline static int32_t get_offset_of_s_factory_3() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_factory_3)); }
inline TaskFactory_t2660013028 * get_s_factory_3() const { return ___s_factory_3; }
inline TaskFactory_t2660013028 ** get_address_of_s_factory_3() { return &___s_factory_3; }
inline void set_s_factory_3(TaskFactory_t2660013028 * value)
{
___s_factory_3 = value;
Il2CppCodeGenWriteBarrier((&___s_factory_3), value);
}
inline static int32_t get_offset_of_s_taskCompletionSentinel_11() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_taskCompletionSentinel_11)); }
inline RuntimeObject * get_s_taskCompletionSentinel_11() const { return ___s_taskCompletionSentinel_11; }
inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_11() { return &___s_taskCompletionSentinel_11; }
inline void set_s_taskCompletionSentinel_11(RuntimeObject * value)
{
___s_taskCompletionSentinel_11 = value;
Il2CppCodeGenWriteBarrier((&___s_taskCompletionSentinel_11), value);
}
inline static int32_t get_offset_of_s_asyncDebuggingEnabled_12() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_asyncDebuggingEnabled_12)); }
inline bool get_s_asyncDebuggingEnabled_12() const { return ___s_asyncDebuggingEnabled_12; }
inline bool* get_address_of_s_asyncDebuggingEnabled_12() { return &___s_asyncDebuggingEnabled_12; }
inline void set_s_asyncDebuggingEnabled_12(bool value)
{
___s_asyncDebuggingEnabled_12 = value;
}
inline static int32_t get_offset_of_s_currentActiveTasks_13() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_currentActiveTasks_13)); }
inline Dictionary_2_t2075988643 * get_s_currentActiveTasks_13() const { return ___s_currentActiveTasks_13; }
inline Dictionary_2_t2075988643 ** get_address_of_s_currentActiveTasks_13() { return &___s_currentActiveTasks_13; }
inline void set_s_currentActiveTasks_13(Dictionary_2_t2075988643 * value)
{
___s_currentActiveTasks_13 = value;
Il2CppCodeGenWriteBarrier((&___s_currentActiveTasks_13), value);
}
inline static int32_t get_offset_of_s_activeTasksLock_14() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_activeTasksLock_14)); }
inline RuntimeObject * get_s_activeTasksLock_14() const { return ___s_activeTasksLock_14; }
inline RuntimeObject ** get_address_of_s_activeTasksLock_14() { return &___s_activeTasksLock_14; }
inline void set_s_activeTasksLock_14(RuntimeObject * value)
{
___s_activeTasksLock_14 = value;
Il2CppCodeGenWriteBarrier((&___s_activeTasksLock_14), value);
}
inline static int32_t get_offset_of_s_taskCancelCallback_16() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_taskCancelCallback_16)); }
inline Action_1_t3252573759 * get_s_taskCancelCallback_16() const { return ___s_taskCancelCallback_16; }
inline Action_1_t3252573759 ** get_address_of_s_taskCancelCallback_16() { return &___s_taskCancelCallback_16; }
inline void set_s_taskCancelCallback_16(Action_1_t3252573759 * value)
{
___s_taskCancelCallback_16 = value;
Il2CppCodeGenWriteBarrier((&___s_taskCancelCallback_16), value);
}
inline static int32_t get_offset_of_s_createContingentProperties_17() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_createContingentProperties_17)); }
inline Func_1_t1600215562 * get_s_createContingentProperties_17() const { return ___s_createContingentProperties_17; }
inline Func_1_t1600215562 ** get_address_of_s_createContingentProperties_17() { return &___s_createContingentProperties_17; }
inline void set_s_createContingentProperties_17(Func_1_t1600215562 * value)
{
___s_createContingentProperties_17 = value;
Il2CppCodeGenWriteBarrier((&___s_createContingentProperties_17), value);
}
inline static int32_t get_offset_of_s_completedTask_18() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_completedTask_18)); }
inline Task_t3187275312 * get_s_completedTask_18() const { return ___s_completedTask_18; }
inline Task_t3187275312 ** get_address_of_s_completedTask_18() { return &___s_completedTask_18; }
inline void set_s_completedTask_18(Task_t3187275312 * value)
{
___s_completedTask_18 = value;
Il2CppCodeGenWriteBarrier((&___s_completedTask_18), value);
}
inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_19() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_IsExceptionObservedByParentPredicate_19)); }
inline Predicate_1_t4012569436 * get_s_IsExceptionObservedByParentPredicate_19() const { return ___s_IsExceptionObservedByParentPredicate_19; }
inline Predicate_1_t4012569436 ** get_address_of_s_IsExceptionObservedByParentPredicate_19() { return &___s_IsExceptionObservedByParentPredicate_19; }
inline void set_s_IsExceptionObservedByParentPredicate_19(Predicate_1_t4012569436 * value)
{
___s_IsExceptionObservedByParentPredicate_19 = value;
Il2CppCodeGenWriteBarrier((&___s_IsExceptionObservedByParentPredicate_19), value);
}
inline static int32_t get_offset_of_s_ecCallback_20() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_ecCallback_20)); }
inline ContextCallback_t3823316192 * get_s_ecCallback_20() const { return ___s_ecCallback_20; }
inline ContextCallback_t3823316192 ** get_address_of_s_ecCallback_20() { return &___s_ecCallback_20; }
inline void set_s_ecCallback_20(ContextCallback_t3823316192 * value)
{
___s_ecCallback_20 = value;
Il2CppCodeGenWriteBarrier((&___s_ecCallback_20), value);
}
inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_21() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_IsTaskContinuationNullPredicate_21)); }
inline Predicate_1_t3905400288 * get_s_IsTaskContinuationNullPredicate_21() const { return ___s_IsTaskContinuationNullPredicate_21; }
inline Predicate_1_t3905400288 ** get_address_of_s_IsTaskContinuationNullPredicate_21() { return &___s_IsTaskContinuationNullPredicate_21; }
inline void set_s_IsTaskContinuationNullPredicate_21(Predicate_1_t3905400288 * value)
{
___s_IsTaskContinuationNullPredicate_21 = value;
Il2CppCodeGenWriteBarrier((&___s_IsTaskContinuationNullPredicate_21), value);
}
};
struct Task_t3187275312_ThreadStaticFields
{
public:
// System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask
Task_t3187275312 * ___t_currentTask_0;
// System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard
StackGuard_t1472778820 * ___t_stackGuard_1;
public:
inline static int32_t get_offset_of_t_currentTask_0() { return static_cast<int32_t>(offsetof(Task_t3187275312_ThreadStaticFields, ___t_currentTask_0)); }
inline Task_t3187275312 * get_t_currentTask_0() const { return ___t_currentTask_0; }
inline Task_t3187275312 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; }
inline void set_t_currentTask_0(Task_t3187275312 * value)
{
___t_currentTask_0 = value;
Il2CppCodeGenWriteBarrier((&___t_currentTask_0), value);
}
inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast<int32_t>(offsetof(Task_t3187275312_ThreadStaticFields, ___t_stackGuard_1)); }
inline StackGuard_t1472778820 * get_t_stackGuard_1() const { return ___t_stackGuard_1; }
inline StackGuard_t1472778820 ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; }
inline void set_t_stackGuard_1(StackGuard_t1472778820 * value)
{
___t_stackGuard_1 = value;
Il2CppCodeGenWriteBarrier((&___t_stackGuard_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_T3187275312_H
#ifndef BINDINGFLAGS_T2721792723_H
#define BINDINGFLAGS_T2721792723_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.BindingFlags
struct BindingFlags_t2721792723
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_t2721792723, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BINDINGFLAGS_T2721792723_H
#ifndef ASYNCCAUSALITYSTATUS_T2329008954_H
#define ASYNCCAUSALITYSTATUS_T2329008954_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.AsyncCausalityStatus
struct AsyncCausalityStatus_t2329008954
{
public:
// System.Int32 System.Threading.Tasks.AsyncCausalityStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AsyncCausalityStatus_t2329008954, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCCAUSALITYSTATUS_T2329008954_H
#ifndef ARGUMENTEXCEPTION_T132251570_H
#define ARGUMENTEXCEPTION_T132251570_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentException
struct ArgumentException_t132251570 : public SystemException_t176217640
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_16;
public:
inline static int32_t get_offset_of_m_paramName_16() { return static_cast<int32_t>(offsetof(ArgumentException_t132251570, ___m_paramName_16)); }
inline String_t* get_m_paramName_16() const { return ___m_paramName_16; }
inline String_t** get_address_of_m_paramName_16() { return &___m_paramName_16; }
inline void set_m_paramName_16(String_t* value)
{
___m_paramName_16 = value;
Il2CppCodeGenWriteBarrier((&___m_paramName_16), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTEXCEPTION_T132251570_H
#ifndef UIVERTEX_T4057497605_H
#define UIVERTEX_T4057497605_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UIVertex
struct UIVertex_t4057497605
{
public:
// UnityEngine.Vector3 UnityEngine.UIVertex::position
Vector3_t3722313464 ___position_0;
// UnityEngine.Vector3 UnityEngine.UIVertex::normal
Vector3_t3722313464 ___normal_1;
// UnityEngine.Color32 UnityEngine.UIVertex::color
Color32_t2600501292 ___color_2;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv0
Vector2_t2156229523 ___uv0_3;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv1
Vector2_t2156229523 ___uv1_4;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv2
Vector2_t2156229523 ___uv2_5;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv3
Vector2_t2156229523 ___uv3_6;
// UnityEngine.Vector4 UnityEngine.UIVertex::tangent
Vector4_t3319028937 ___tangent_7;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___position_0)); }
inline Vector3_t3722313464 get_position_0() const { return ___position_0; }
inline Vector3_t3722313464 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_t3722313464 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___normal_1)); }
inline Vector3_t3722313464 get_normal_1() const { return ___normal_1; }
inline Vector3_t3722313464 * get_address_of_normal_1() { return &___normal_1; }
inline void set_normal_1(Vector3_t3722313464 value)
{
___normal_1 = value;
}
inline static int32_t get_offset_of_color_2() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___color_2)); }
inline Color32_t2600501292 get_color_2() const { return ___color_2; }
inline Color32_t2600501292 * get_address_of_color_2() { return &___color_2; }
inline void set_color_2(Color32_t2600501292 value)
{
___color_2 = value;
}
inline static int32_t get_offset_of_uv0_3() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv0_3)); }
inline Vector2_t2156229523 get_uv0_3() const { return ___uv0_3; }
inline Vector2_t2156229523 * get_address_of_uv0_3() { return &___uv0_3; }
inline void set_uv0_3(Vector2_t2156229523 value)
{
___uv0_3 = value;
}
inline static int32_t get_offset_of_uv1_4() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv1_4)); }
inline Vector2_t2156229523 get_uv1_4() const { return ___uv1_4; }
inline Vector2_t2156229523 * get_address_of_uv1_4() { return &___uv1_4; }
inline void set_uv1_4(Vector2_t2156229523 value)
{
___uv1_4 = value;
}
inline static int32_t get_offset_of_uv2_5() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv2_5)); }
inline Vector2_t2156229523 get_uv2_5() const { return ___uv2_5; }
inline Vector2_t2156229523 * get_address_of_uv2_5() { return &___uv2_5; }
inline void set_uv2_5(Vector2_t2156229523 value)
{
___uv2_5 = value;
}
inline static int32_t get_offset_of_uv3_6() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv3_6)); }
inline Vector2_t2156229523 get_uv3_6() const { return ___uv3_6; }
inline Vector2_t2156229523 * get_address_of_uv3_6() { return &___uv3_6; }
inline void set_uv3_6(Vector2_t2156229523 value)
{
___uv3_6 = value;
}
inline static int32_t get_offset_of_tangent_7() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___tangent_7)); }
inline Vector4_t3319028937 get_tangent_7() const { return ___tangent_7; }
inline Vector4_t3319028937 * get_address_of_tangent_7() { return &___tangent_7; }
inline void set_tangent_7(Vector4_t3319028937 value)
{
___tangent_7 = value;
}
};
struct UIVertex_t4057497605_StaticFields
{
public:
// UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor
Color32_t2600501292 ___s_DefaultColor_8;
// UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent
Vector4_t3319028937 ___s_DefaultTangent_9;
// UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert
UIVertex_t4057497605 ___simpleVert_10;
public:
inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___s_DefaultColor_8)); }
inline Color32_t2600501292 get_s_DefaultColor_8() const { return ___s_DefaultColor_8; }
inline Color32_t2600501292 * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; }
inline void set_s_DefaultColor_8(Color32_t2600501292 value)
{
___s_DefaultColor_8 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___s_DefaultTangent_9)); }
inline Vector4_t3319028937 get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; }
inline Vector4_t3319028937 * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; }
inline void set_s_DefaultTangent_9(Vector4_t3319028937 value)
{
___s_DefaultTangent_9 = value;
}
inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___simpleVert_10)); }
inline UIVertex_t4057497605 get_simpleVert_10() const { return ___simpleVert_10; }
inline UIVertex_t4057497605 * get_address_of_simpleVert_10() { return &___simpleVert_10; }
inline void set_simpleVert_10(UIVertex_t4057497605 value)
{
___simpleVert_10 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UIVERTEX_T4057497605_H
#ifndef TASK_1_T61518632_H
#define TASK_1_T61518632_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t61518632 : public Task_t3187275312
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
int32_t ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t61518632, ___m_result_22)); }
inline int32_t get_m_result_22() const { return ___m_result_22; }
inline int32_t* get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(int32_t value)
{
___m_result_22 = value;
}
};
struct Task_1_t61518632_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t3010374299 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t4167915811 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t61518632_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t3010374299 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t3010374299 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t3010374299 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t61518632_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t4167915811 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t4167915811 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t4167915811 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T61518632_H
#ifndef TASKFACTORY_1_T2676017125_H
#define TASKFACTORY_1_T2676017125_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>
struct TaskFactory_1_t2676017125 : public RuntimeObject
{
public:
// System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken
CancellationToken_t784455623 ___m_defaultCancellationToken_0;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler
TaskScheduler_t1196198384 * ___m_defaultScheduler_1;
// System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions
int32_t ___m_defaultCreationOptions_2;
// System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions
int32_t ___m_defaultContinuationOptions_3;
public:
inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast<int32_t>(offsetof(TaskFactory_1_t2676017125, ___m_defaultCancellationToken_0)); }
inline CancellationToken_t784455623 get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; }
inline CancellationToken_t784455623 * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; }
inline void set_m_defaultCancellationToken_0(CancellationToken_t784455623 value)
{
___m_defaultCancellationToken_0 = value;
}
inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_t2676017125, ___m_defaultScheduler_1)); }
inline TaskScheduler_t1196198384 * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; }
inline TaskScheduler_t1196198384 ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; }
inline void set_m_defaultScheduler_1(TaskScheduler_t1196198384 * value)
{
___m_defaultScheduler_1 = value;
Il2CppCodeGenWriteBarrier((&___m_defaultScheduler_1), value);
}
inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_t2676017125, ___m_defaultCreationOptions_2)); }
inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; }
inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; }
inline void set_m_defaultCreationOptions_2(int32_t value)
{
___m_defaultCreationOptions_2 = value;
}
inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast<int32_t>(offsetof(TaskFactory_1_t2676017125, ___m_defaultContinuationOptions_3)); }
inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; }
inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; }
inline void set_m_defaultContinuationOptions_3(int32_t value)
{
___m_defaultContinuationOptions_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKFACTORY_1_T2676017125_H
#ifndef SHARED_1_T445487134_H
#define SHARED_1_T445487134_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration>
struct Shared_1_t445487134 : public RuntimeObject
{
public:
// T System.Threading.Tasks.Shared`1::Value
CancellationTokenRegistration_t2813424904 ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Shared_1_t445487134, ___Value_0)); }
inline CancellationTokenRegistration_t2813424904 get_Value_0() const { return ___Value_0; }
inline CancellationTokenRegistration_t2813424904 * get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(CancellationTokenRegistration_t2813424904 value)
{
___Value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SHARED_1_T445487134_H
#ifndef TASK_1_T297848191_H
#define TASK_1_T297848191_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>
struct Task_1_t297848191 : public Task_t3187275312
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
Task_t3187275312 * ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t297848191, ___m_result_22)); }
inline Task_t3187275312 * get_m_result_22() const { return ___m_result_22; }
inline Task_t3187275312 ** get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(Task_t3187275312 * value)
{
___m_result_22 = value;
Il2CppCodeGenWriteBarrier((&___m_result_22), value);
}
};
struct Task_1_t297848191_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t3246703858 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t109278074 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t297848191_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t3246703858 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t3246703858 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t3246703858 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t297848191_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t109278074 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t109278074 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t109278074 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T297848191_H
#ifndef MULTICASTDELEGATE_T_H
#define MULTICASTDELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t1188392813
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_t1703627840* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_t1703627840* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_t1703627840** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_t1703627840* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((&___delegates_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t1188392813_marshaled_pinvoke
{
DelegateU5BU5D_t1703627840* ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t1188392813_marshaled_com
{
DelegateU5BU5D_t1703627840* ___delegates_11;
};
#endif // MULTICASTDELEGATE_T_H
#ifndef TASK_1_T1502828140_H
#define TASK_1_T1502828140_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Boolean>
struct Task_1_t1502828140 : public Task_t3187275312
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
bool ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t1502828140, ___m_result_22)); }
inline bool get_m_result_22() const { return ___m_result_22; }
inline bool* get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(bool value)
{
___m_result_22 = value;
}
};
struct Task_1_t1502828140_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t156716511 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t1314258023 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t1502828140_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t156716511 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t156716511 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t156716511 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t1502828140_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t1314258023 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t1314258023 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t1314258023 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T1502828140_H
#ifndef TASKFACTORY_1_T3010374299_H
#define TASKFACTORY_1_T3010374299_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1<System.Int32>
struct TaskFactory_1_t3010374299 : public RuntimeObject
{
public:
// System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken
CancellationToken_t784455623 ___m_defaultCancellationToken_0;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler
TaskScheduler_t1196198384 * ___m_defaultScheduler_1;
// System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions
int32_t ___m_defaultCreationOptions_2;
// System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions
int32_t ___m_defaultContinuationOptions_3;
public:
inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3010374299, ___m_defaultCancellationToken_0)); }
inline CancellationToken_t784455623 get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; }
inline CancellationToken_t784455623 * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; }
inline void set_m_defaultCancellationToken_0(CancellationToken_t784455623 value)
{
___m_defaultCancellationToken_0 = value;
}
inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3010374299, ___m_defaultScheduler_1)); }
inline TaskScheduler_t1196198384 * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; }
inline TaskScheduler_t1196198384 ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; }
inline void set_m_defaultScheduler_1(TaskScheduler_t1196198384 * value)
{
___m_defaultScheduler_1 = value;
Il2CppCodeGenWriteBarrier((&___m_defaultScheduler_1), value);
}
inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3010374299, ___m_defaultCreationOptions_2)); }
inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; }
inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; }
inline void set_m_defaultCreationOptions_2(int32_t value)
{
___m_defaultCreationOptions_2 = value;
}
inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3010374299, ___m_defaultContinuationOptions_3)); }
inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; }
inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; }
inline void set_m_defaultContinuationOptions_3(int32_t value)
{
___m_defaultContinuationOptions_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKFACTORY_1_T3010374299_H
#ifndef TASK_1_T190679043_H
#define TASK_1_T190679043_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Object>
struct Task_1_t190679043 : public Task_t3187275312
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
RuntimeObject * ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t190679043, ___m_result_22)); }
inline RuntimeObject * get_m_result_22() const { return ___m_result_22; }
inline RuntimeObject ** get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(RuntimeObject * value)
{
___m_result_22 = value;
Il2CppCodeGenWriteBarrier((&___m_result_22), value);
}
};
struct Task_1_t190679043_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t3139534710 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t2108926 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t190679043_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t3139534710 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t3139534710 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t3139534710 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t190679043_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t2108926 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t2108926 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t2108926 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T190679043_H
#ifndef ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#define ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t777629997 : public ArgumentException_t132251570
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_18;
public:
inline static int32_t get_offset_of_m_actualValue_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t777629997, ___m_actualValue_18)); }
inline RuntimeObject * get_m_actualValue_18() const { return ___m_actualValue_18; }
inline RuntimeObject ** get_address_of_m_actualValue_18() { return &___m_actualValue_18; }
inline void set_m_actualValue_18(RuntimeObject * value)
{
___m_actualValue_18 = value;
Il2CppCodeGenWriteBarrier((&___m_actualValue_18), value);
}
};
struct ArgumentOutOfRangeException_t777629997_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_17;
public:
inline static int32_t get_offset_of__rangeMessage_17() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t777629997_StaticFields, ____rangeMessage_17)); }
inline String_t* get__rangeMessage_17() const { return ____rangeMessage_17; }
inline String_t** get_address_of__rangeMessage_17() { return &____rangeMessage_17; }
inline void set__rangeMessage_17(String_t* value)
{
____rangeMessage_17 = value;
Il2CppCodeGenWriteBarrier((&____rangeMessage_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#ifndef TASK_1_T4022128754_H
#define TASK_1_T4022128754_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>
struct Task_1_t4022128754 : public Task_t3187275312
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
VoidTaskResult_t2616588579 ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t4022128754, ___m_result_22)); }
inline VoidTaskResult_t2616588579 get_m_result_22() const { return ___m_result_22; }
inline VoidTaskResult_t2616588579 * get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(VoidTaskResult_t2616588579 value)
{
___m_result_22 = value;
}
};
struct Task_1_t4022128754_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t2676017125 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t3833558637 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t4022128754_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t2676017125 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t2676017125 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t2676017125 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t4022128754_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t3833558637 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t3833558637 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t3833558637 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T4022128754_H
#ifndef TASKFACTORY_1_T156716511_H
#define TASKFACTORY_1_T156716511_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1<System.Boolean>
struct TaskFactory_1_t156716511 : public RuntimeObject
{
public:
// System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken
CancellationToken_t784455623 ___m_defaultCancellationToken_0;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler
TaskScheduler_t1196198384 * ___m_defaultScheduler_1;
// System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions
int32_t ___m_defaultCreationOptions_2;
// System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions
int32_t ___m_defaultContinuationOptions_3;
public:
inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast<int32_t>(offsetof(TaskFactory_1_t156716511, ___m_defaultCancellationToken_0)); }
inline CancellationToken_t784455623 get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; }
inline CancellationToken_t784455623 * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; }
inline void set_m_defaultCancellationToken_0(CancellationToken_t784455623 value)
{
___m_defaultCancellationToken_0 = value;
}
inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_t156716511, ___m_defaultScheduler_1)); }
inline TaskScheduler_t1196198384 * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; }
inline TaskScheduler_t1196198384 ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; }
inline void set_m_defaultScheduler_1(TaskScheduler_t1196198384 * value)
{
___m_defaultScheduler_1 = value;
Il2CppCodeGenWriteBarrier((&___m_defaultScheduler_1), value);
}
inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_t156716511, ___m_defaultCreationOptions_2)); }
inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; }
inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; }
inline void set_m_defaultCreationOptions_2(int32_t value)
{
___m_defaultCreationOptions_2 = value;
}
inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast<int32_t>(offsetof(TaskFactory_1_t156716511, ___m_defaultContinuationOptions_3)); }
inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; }
inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; }
inline void set_m_defaultContinuationOptions_3(int32_t value)
{
___m_defaultContinuationOptions_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKFACTORY_1_T156716511_H
#ifndef TASKFACTORY_1_T3139534710_H
#define TASKFACTORY_1_T3139534710_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1<System.Object>
struct TaskFactory_1_t3139534710 : public RuntimeObject
{
public:
// System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken
CancellationToken_t784455623 ___m_defaultCancellationToken_0;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler
TaskScheduler_t1196198384 * ___m_defaultScheduler_1;
// System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions
int32_t ___m_defaultCreationOptions_2;
// System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions
int32_t ___m_defaultContinuationOptions_3;
public:
inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3139534710, ___m_defaultCancellationToken_0)); }
inline CancellationToken_t784455623 get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; }
inline CancellationToken_t784455623 * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; }
inline void set_m_defaultCancellationToken_0(CancellationToken_t784455623 value)
{
___m_defaultCancellationToken_0 = value;
}
inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3139534710, ___m_defaultScheduler_1)); }
inline TaskScheduler_t1196198384 * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; }
inline TaskScheduler_t1196198384 ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; }
inline void set_m_defaultScheduler_1(TaskScheduler_t1196198384 * value)
{
___m_defaultScheduler_1 = value;
Il2CppCodeGenWriteBarrier((&___m_defaultScheduler_1), value);
}
inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3139534710, ___m_defaultCreationOptions_2)); }
inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; }
inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; }
inline void set_m_defaultCreationOptions_2(int32_t value)
{
___m_defaultCreationOptions_2 = value;
}
inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast<int32_t>(offsetof(TaskFactory_1_t3139534710, ___m_defaultContinuationOptions_3)); }
inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; }
inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; }
inline void set_m_defaultContinuationOptions_3(int32_t value)
{
___m_defaultContinuationOptions_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKFACTORY_1_T3139534710_H
#ifndef ARGUMENTNULLEXCEPTION_T1615371798_H
#define ARGUMENTNULLEXCEPTION_T1615371798_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentNullException
struct ArgumentNullException_t1615371798 : public ArgumentException_t132251570
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTNULLEXCEPTION_T1615371798_H
#ifndef TYPE_T_H
#define TYPE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t3027515415 ____impl_0;
public:
inline static int32_t get_offset_of__impl_0() { return static_cast<int32_t>(offsetof(Type_t, ____impl_0)); }
inline RuntimeTypeHandle_t3027515415 get__impl_0() const { return ____impl_0; }
inline RuntimeTypeHandle_t3027515415 * get_address_of__impl_0() { return &____impl_0; }
inline void set__impl_0(RuntimeTypeHandle_t3027515415 value)
{
____impl_0 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t426314064 * ___FilterAttribute_1;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t426314064 * ___FilterName_2;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t426314064 * ___FilterNameIgnoreCase_3;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_4;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_5;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t3940880105* ___EmptyTypes_6;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t2999457153 * ___defaultBinder_7;
public:
inline static int32_t get_offset_of_FilterAttribute_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_1)); }
inline MemberFilter_t426314064 * get_FilterAttribute_1() const { return ___FilterAttribute_1; }
inline MemberFilter_t426314064 ** get_address_of_FilterAttribute_1() { return &___FilterAttribute_1; }
inline void set_FilterAttribute_1(MemberFilter_t426314064 * value)
{
___FilterAttribute_1 = value;
Il2CppCodeGenWriteBarrier((&___FilterAttribute_1), value);
}
inline static int32_t get_offset_of_FilterName_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_2)); }
inline MemberFilter_t426314064 * get_FilterName_2() const { return ___FilterName_2; }
inline MemberFilter_t426314064 ** get_address_of_FilterName_2() { return &___FilterName_2; }
inline void set_FilterName_2(MemberFilter_t426314064 * value)
{
___FilterName_2 = value;
Il2CppCodeGenWriteBarrier((&___FilterName_2), value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_3)); }
inline MemberFilter_t426314064 * get_FilterNameIgnoreCase_3() const { return ___FilterNameIgnoreCase_3; }
inline MemberFilter_t426314064 ** get_address_of_FilterNameIgnoreCase_3() { return &___FilterNameIgnoreCase_3; }
inline void set_FilterNameIgnoreCase_3(MemberFilter_t426314064 * value)
{
___FilterNameIgnoreCase_3 = value;
Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_3), value);
}
inline static int32_t get_offset_of_Missing_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_4)); }
inline RuntimeObject * get_Missing_4() const { return ___Missing_4; }
inline RuntimeObject ** get_address_of_Missing_4() { return &___Missing_4; }
inline void set_Missing_4(RuntimeObject * value)
{
___Missing_4 = value;
Il2CppCodeGenWriteBarrier((&___Missing_4), value);
}
inline static int32_t get_offset_of_Delimiter_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_5)); }
inline Il2CppChar get_Delimiter_5() const { return ___Delimiter_5; }
inline Il2CppChar* get_address_of_Delimiter_5() { return &___Delimiter_5; }
inline void set_Delimiter_5(Il2CppChar value)
{
___Delimiter_5 = value;
}
inline static int32_t get_offset_of_EmptyTypes_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_6)); }
inline TypeU5BU5D_t3940880105* get_EmptyTypes_6() const { return ___EmptyTypes_6; }
inline TypeU5BU5D_t3940880105** get_address_of_EmptyTypes_6() { return &___EmptyTypes_6; }
inline void set_EmptyTypes_6(TypeU5BU5D_t3940880105* value)
{
___EmptyTypes_6 = value;
Il2CppCodeGenWriteBarrier((&___EmptyTypes_6), value);
}
inline static int32_t get_offset_of_defaultBinder_7() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_7)); }
inline Binder_t2999457153 * get_defaultBinder_7() const { return ___defaultBinder_7; }
inline Binder_t2999457153 ** get_address_of_defaultBinder_7() { return &___defaultBinder_7; }
inline void set_defaultBinder_7(Binder_t2999457153 * value)
{
___defaultBinder_7 = value;
Il2CppCodeGenWriteBarrier((&___defaultBinder_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPE_T_H
#ifndef GETTER_2_T2063956538_H
#define GETTER_2_T2063956538_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>
struct Getter_2_t2063956538 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GETTER_2_T2063956538_H
#ifndef UNITYACTION_1_T2933211702_H
#define UNITYACTION_1_T2933211702_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>
struct UnityAction_1_t2933211702 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_1_T2933211702_H
#ifndef PREDICATE_1_T4144323061_H
#define PREDICATE_1_T4144323061_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<UnityEngine.Vector4>
struct Predicate_1_t4144323061 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T4144323061_H
#ifndef PREDICATE_1_T2494871786_H
#define PREDICATE_1_T2494871786_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<System.SByte>
struct Predicate_1_t2494871786 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T2494871786_H
#ifndef UNITYACTION_2_T1262235195_H
#define UNITYACTION_2_T1262235195_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>
struct UnityAction_2_t1262235195 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_2_T1262235195_H
#ifndef UNITYACTION_1_T3664942305_H
#define UNITYACTION_1_T3664942305_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`1<System.Object>
struct UnityAction_1_t3664942305 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_1_T3664942305_H
#ifndef UNITYACTION_2_T2165061829_H
#define UNITYACTION_2_T2165061829_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>
struct UnityAction_2_t2165061829 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_2_T2165061829_H
#ifndef FUNC_1_T2046335226_H
#define FUNC_1_T2046335226_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`1<System.Threading.Tasks.VoidTaskResult>
struct Func_1_t2046335226 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_1_T2046335226_H
#ifndef UNITYACTION_1_T2741065664_H
#define UNITYACTION_1_T2741065664_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>
struct UnityAction_1_t2741065664 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_1_T2741065664_H
#ifndef UNITYACTION_1_T682124106_H
#define UNITYACTION_1_T682124106_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`1<System.Boolean>
struct UnityAction_1_t682124106 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_1_T682124106_H
#ifndef UNITYACTION_1_T3535781894_H
#define UNITYACTION_1_T3535781894_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`1<System.Int32>
struct UnityAction_1_t3535781894 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_1_T3535781894_H
#ifndef UNITYACTION_1_T1982102915_H
#define UNITYACTION_1_T1982102915_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`1<System.Single>
struct UnityAction_1_t1982102915 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_1_T1982102915_H
#ifndef UNITYACTION_1_T3140522465_H
#define UNITYACTION_1_T3140522465_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`1<UnityEngine.Color>
struct UnityAction_1_t3140522465 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_1_T3140522465_H
#ifndef STATICGETTER_1_T3872988374_H
#define STATICGETTER_1_T3872988374_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoProperty/StaticGetter`1<System.Object>
struct StaticGetter_1_t3872988374 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STATICGETTER_1_T3872988374_H
#ifndef UNITYACTION_4_T682480391_H
#define UNITYACTION_4_T682480391_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>
struct UnityAction_4_t682480391 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_4_T682480391_H
#ifndef PREDICATE_1_T252640292_H
#define PREDICATE_1_T252640292_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<UnityEngine.Vector3>
struct Predicate_1_t252640292 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T252640292_H
#ifndef UNITYACTION_2_T3283971887_H
#define UNITYACTION_2_T3283971887_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`2<System.Object,System.Object>
struct UnityAction_2_t3283971887 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_2_T3283971887_H
#ifndef UNITYACTION_3_T1557236713_H
#define UNITYACTION_3_T1557236713_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>
struct UnityAction_3_t1557236713 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYACTION_3_T1557236713_H
#ifndef FUNC_2_T4167915811_H
#define FUNC_2_T4167915811_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Int32>>
struct Func_2_t4167915811 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T4167915811_H
#ifndef FUNC_2_T2447130374_H
#define FUNC_2_T2447130374_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Object,System.Object>
struct Func_2_t2447130374 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T2447130374_H
#ifndef FUNC_1_T2380692400_H
#define FUNC_1_T2380692400_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`1<System.Int32>
struct Func_1_t2380692400 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_1_T2380692400_H
#ifndef FUNC_2_T1314258023_H
#define FUNC_2_T1314258023_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Boolean>>
struct Func_2_t1314258023 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T1314258023_H
#ifndef FUNC_2_T2317969963_H
#define FUNC_2_T2317969963_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Object,System.Int32>
struct Func_2_t2317969963 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T2317969963_H
#ifndef FUNC_2_T3833558637_H
#define FUNC_2_T3833558637_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>>
struct Func_2_t3833558637 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T3833558637_H
#ifndef PREDICATE_1_T2411271955_H
#define PREDICATE_1_T2411271955_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct Predicate_1_t2411271955 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T2411271955_H
#ifndef FUNC_2_T1983612789_H
#define FUNC_2_T1983612789_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>
struct Func_2_t1983612789 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T1983612789_H
#ifndef FUNC_1_T2509852811_H
#define FUNC_1_T2509852811_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`1<System.Object>
struct Func_1_t2509852811 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_1_T2509852811_H
#ifndef FUNC_2_T2108926_H
#define FUNC_2_T2108926_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Object>>
struct Func_2_t2108926 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T2108926_H
#ifndef PREDICATE_1_T725593638_H
#define PREDICATE_1_T725593638_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<UnityEngine.UILineInfo>
struct Predicate_1_t725593638 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T725593638_H
#ifndef PREDICATE_1_T900795230_H
#define PREDICATE_1_T900795230_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<UnityEngine.UICharInfo>
struct Predicate_1_t900795230 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T900795230_H
#ifndef ACTION_T1264377477_H
#define ACTION_T1264377477_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Action
struct Action_t1264377477 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ACTION_T1264377477_H
#ifndef PREDICATE_1_T587824433_H
#define PREDICATE_1_T587824433_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<UnityEngine.UIVertex>
struct Predicate_1_t587824433 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T587824433_H
#ifndef ACTION_1_T588642880_H
#define ACTION_1_T588642880_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>
struct Action_1_t588642880 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ACTION_1_T588642880_H
#ifndef FUNC_2_T3759279471_H
#define FUNC_2_T3759279471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t3759279471 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T3759279471_H
#ifndef FUNC_1_T3822001908_H
#define FUNC_1_T3822001908_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`1<System.Boolean>
struct Func_1_t3822001908 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_1_T3822001908_H
#ifndef PREDICATE_1_T3425795416_H
#define PREDICATE_1_T3425795416_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<UnityEngine.Color32>
struct Predicate_1_t3425795416 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T3425795416_H
#ifndef PREDICATE_1_T4185600973_H
#define PREDICATE_1_T4185600973_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<UnityEngine.EventSystems.RaycastResult>
struct Predicate_1_t4185600973 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T4185600973_H
#ifndef PREDICATE_1_T2981523647_H
#define PREDICATE_1_T2981523647_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<UnityEngine.Vector2>
struct Predicate_1_t2981523647 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T2981523647_H
#ifndef PREDICATE_1_T4169971095_H
#define PREDICATE_1_T4169971095_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>
struct Predicate_1_t4169971095 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T4169971095_H
#ifndef FUNC_3_T3862460745_H
#define FUNC_3_T3862460745_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`3<System.Object,System.IAsyncResult,System.Threading.Tasks.VoidTaskResult>
struct Func_3_t3862460745 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_3_T3862460745_H
#ifndef FUNC_3_T82022818_H
#define FUNC_3_T82022818_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>
struct Func_3_t82022818 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_3_T82022818_H
#ifndef FROMASYNCTRIMPROMISE_1_T1953969367_H
#define FROMASYNCTRIMPROMISE_1_T1953969367_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>
struct FromAsyncTrimPromise_1_t1953969367 : public Task_1_t4022128754
{
public:
// TInstance System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1::m_thisRef
RuntimeObject * ___m_thisRef_26;
// System.Func`3<TInstance,System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1::m_endMethod
Func_3_t3862460745 * ___m_endMethod_27;
public:
inline static int32_t get_offset_of_m_thisRef_26() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t1953969367, ___m_thisRef_26)); }
inline RuntimeObject * get_m_thisRef_26() const { return ___m_thisRef_26; }
inline RuntimeObject ** get_address_of_m_thisRef_26() { return &___m_thisRef_26; }
inline void set_m_thisRef_26(RuntimeObject * value)
{
___m_thisRef_26 = value;
Il2CppCodeGenWriteBarrier((&___m_thisRef_26), value);
}
inline static int32_t get_offset_of_m_endMethod_27() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t1953969367, ___m_endMethod_27)); }
inline Func_3_t3862460745 * get_m_endMethod_27() const { return ___m_endMethod_27; }
inline Func_3_t3862460745 ** get_address_of_m_endMethod_27() { return &___m_endMethod_27; }
inline void set_m_endMethod_27(Func_3_t3862460745 * value)
{
___m_endMethod_27 = value;
Il2CppCodeGenWriteBarrier((&___m_endMethod_27), value);
}
};
struct FromAsyncTrimPromise_1_t1953969367_StaticFields
{
public:
// System.AsyncCallback System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1::s_completeFromAsyncResult
AsyncCallback_t3962456242 * ___s_completeFromAsyncResult_25;
public:
inline static int32_t get_offset_of_s_completeFromAsyncResult_25() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t1953969367_StaticFields, ___s_completeFromAsyncResult_25)); }
inline AsyncCallback_t3962456242 * get_s_completeFromAsyncResult_25() const { return ___s_completeFromAsyncResult_25; }
inline AsyncCallback_t3962456242 ** get_address_of_s_completeFromAsyncResult_25() { return &___s_completeFromAsyncResult_25; }
inline void set_s_completeFromAsyncResult_25(AsyncCallback_t3962456242 * value)
{
___s_completeFromAsyncResult_25 = value;
Il2CppCodeGenWriteBarrier((&___s_completeFromAsyncResult_25), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FROMASYNCTRIMPROMISE_1_T1953969367_H
#ifndef FROMASYNCTRIMPROMISE_1_T3937927138_H
#define FROMASYNCTRIMPROMISE_1_T3937927138_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>
struct FromAsyncTrimPromise_1_t3937927138 : public Task_1_t190679043
{
public:
// TInstance System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1::m_thisRef
RuntimeObject * ___m_thisRef_26;
// System.Func`3<TInstance,System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1::m_endMethod
Func_3_t31011034 * ___m_endMethod_27;
public:
inline static int32_t get_offset_of_m_thisRef_26() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t3937927138, ___m_thisRef_26)); }
inline RuntimeObject * get_m_thisRef_26() const { return ___m_thisRef_26; }
inline RuntimeObject ** get_address_of_m_thisRef_26() { return &___m_thisRef_26; }
inline void set_m_thisRef_26(RuntimeObject * value)
{
___m_thisRef_26 = value;
Il2CppCodeGenWriteBarrier((&___m_thisRef_26), value);
}
inline static int32_t get_offset_of_m_endMethod_27() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t3937927138, ___m_endMethod_27)); }
inline Func_3_t31011034 * get_m_endMethod_27() const { return ___m_endMethod_27; }
inline Func_3_t31011034 ** get_address_of_m_endMethod_27() { return &___m_endMethod_27; }
inline void set_m_endMethod_27(Func_3_t31011034 * value)
{
___m_endMethod_27 = value;
Il2CppCodeGenWriteBarrier((&___m_endMethod_27), value);
}
};
struct FromAsyncTrimPromise_1_t3937927138_StaticFields
{
public:
// System.AsyncCallback System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1::s_completeFromAsyncResult
AsyncCallback_t3962456242 * ___s_completeFromAsyncResult_25;
public:
inline static int32_t get_offset_of_s_completeFromAsyncResult_25() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t3937927138_StaticFields, ___s_completeFromAsyncResult_25)); }
inline AsyncCallback_t3962456242 * get_s_completeFromAsyncResult_25() const { return ___s_completeFromAsyncResult_25; }
inline AsyncCallback_t3962456242 ** get_address_of_s_completeFromAsyncResult_25() { return &___s_completeFromAsyncResult_25; }
inline void set_s_completeFromAsyncResult_25(AsyncCallback_t3962456242 * value)
{
___s_completeFromAsyncResult_25 = value;
Il2CppCodeGenWriteBarrier((&___s_completeFromAsyncResult_25), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FROMASYNCTRIMPROMISE_1_T3937927138_H
#ifndef FUNC_3_T31011034_H
#define FUNC_3_T31011034_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`3<System.Object,System.IAsyncResult,System.Object>
struct Func_3_t31011034 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_3_T31011034_H
#ifndef PREDICATE_1_T2222560898_H
#define PREDICATE_1_T2222560898_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<System.Single>
struct Predicate_1_t2222560898 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T2222560898_H
#ifndef ASYNCCALLBACK_T3962456242_H
#define ASYNCCALLBACK_T3962456242_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AsyncCallback
struct AsyncCallback_t3962456242 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCCALLBACK_T3962456242_H
#ifndef PREDICATE_1_T918139719_H
#define PREDICATE_1_T918139719_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<System.Text.RegularExpressions.RegexOptions>
struct Predicate_1_t918139719 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T918139719_H
#ifndef PREDICATE_1_T3003019082_H
#define PREDICATE_1_T3003019082_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<System.UInt16>
struct Predicate_1_t3003019082 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T3003019082_H
#ifndef PREDICATE_1_T1706453373_H
#define PREDICATE_1_T1706453373_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<System.TimeSpan>
struct Predicate_1_t1706453373 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T1706453373_H
#ifndef FUNC_2_T3245338912_H
#define FUNC_2_T3245338912_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.IAsyncResult,System.Int32>
struct Func_2_t3245338912 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T3245338912_H
#ifndef PREDICATE_1_T664366920_H
#define PREDICATE_1_T664366920_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<System.UInt64>
struct Predicate_1_t664366920 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T664366920_H
#ifndef PREDICATE_1_T1415263060_H
#define PREDICATE_1_T1415263060_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<System.Xml.Schema.RangePositionInfo>
struct Predicate_1_t1415263060 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T1415263060_H
#ifndef FUNC_2_T391681124_H
#define FUNC_2_T391681124_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.IAsyncResult,System.Boolean>
struct Func_2_t391681124 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T391681124_H
#ifndef ACTION_1_T939472046_H
#define ACTION_1_T939472046_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Action`1<System.IAsyncResult>
struct Action_1_t939472046 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ACTION_1_T939472046_H
#ifndef FROMASYNCTRIMPROMISE_1_T1479234185_H
#define FROMASYNCTRIMPROMISE_1_T1479234185_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>
struct FromAsyncTrimPromise_1_t1479234185 : public Task_1_t61518632
{
public:
// TInstance System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1::m_thisRef
RuntimeObject * ___m_thisRef_26;
// System.Func`3<TInstance,System.IAsyncResult,TResult> System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1::m_endMethod
Func_3_t4196817919 * ___m_endMethod_27;
public:
inline static int32_t get_offset_of_m_thisRef_26() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t1479234185, ___m_thisRef_26)); }
inline RuntimeObject * get_m_thisRef_26() const { return ___m_thisRef_26; }
inline RuntimeObject ** get_address_of_m_thisRef_26() { return &___m_thisRef_26; }
inline void set_m_thisRef_26(RuntimeObject * value)
{
___m_thisRef_26 = value;
Il2CppCodeGenWriteBarrier((&___m_thisRef_26), value);
}
inline static int32_t get_offset_of_m_endMethod_27() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t1479234185, ___m_endMethod_27)); }
inline Func_3_t4196817919 * get_m_endMethod_27() const { return ___m_endMethod_27; }
inline Func_3_t4196817919 ** get_address_of_m_endMethod_27() { return &___m_endMethod_27; }
inline void set_m_endMethod_27(Func_3_t4196817919 * value)
{
___m_endMethod_27 = value;
Il2CppCodeGenWriteBarrier((&___m_endMethod_27), value);
}
};
struct FromAsyncTrimPromise_1_t1479234185_StaticFields
{
public:
// System.AsyncCallback System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1::s_completeFromAsyncResult
AsyncCallback_t3962456242 * ___s_completeFromAsyncResult_25;
public:
inline static int32_t get_offset_of_s_completeFromAsyncResult_25() { return static_cast<int32_t>(offsetof(FromAsyncTrimPromise_1_t1479234185_StaticFields, ___s_completeFromAsyncResult_25)); }
inline AsyncCallback_t3962456242 * get_s_completeFromAsyncResult_25() const { return ___s_completeFromAsyncResult_25; }
inline AsyncCallback_t3962456242 ** get_address_of_s_completeFromAsyncResult_25() { return &___s_completeFromAsyncResult_25; }
inline void set_s_completeFromAsyncResult_25(AsyncCallback_t3962456242 * value)
{
___s_completeFromAsyncResult_25 = value;
Il2CppCodeGenWriteBarrier((&___s_completeFromAsyncResult_25), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FROMASYNCTRIMPROMISE_1_T1479234185_H
#ifndef FUNC_3_T4196817919_H
#define FUNC_3_T4196817919_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`3<System.Object,System.IAsyncResult,System.Int32>
struct Func_3_t4196817919 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_3_T4196817919_H
#ifndef FUNC_2_T2910981738_H
#define FUNC_2_T2910981738_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.IAsyncResult,System.Threading.Tasks.VoidTaskResult>
struct Func_2_t2910981738 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T2910981738_H
#ifndef FUNC_2_T3374499323_H
#define FUNC_2_T3374499323_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.IAsyncResult,System.Object>
struct Func_2_t3374499323 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T3374499323_H
#ifndef PREDICATE_1_T3385356102_H
#define PREDICATE_1_T3385356102_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<System.UInt32>
struct Predicate_1_t3385356102 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T3385356102_H
// System.Delegate[]
struct DelegateU5BU5D_t1703627840 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Delegate_t1188392813 * m_Items[1];
public:
inline Delegate_t1188392813 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t1188392813 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t1188392813 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline Delegate_t1188392813 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t1188392813 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t1188392813 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Threading.Tasks.Task`1<System.Int32>[]
struct Task_1U5BU5D_t2104922937 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Task_1_t61518632 * m_Items[1];
public:
inline Task_1_t61518632 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Task_1_t61518632 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Task_1_t61518632 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline Task_1_t61518632 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Task_1_t61518632 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Task_1_t61518632 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Runtime.CompilerServices.Ephemeron[]
struct EphemeronU5BU5D_t1564620431 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Ephemeron_t1602596362 m_Items[1];
public:
inline Ephemeron_t1602596362 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Ephemeron_t1602596362 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Ephemeron_t1602596362 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Ephemeron_t1602596362 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Ephemeron_t1602596362 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Ephemeron_t1602596362 value)
{
m_Items[index] = value;
}
};
// System.Object[]
struct ObjectU5BU5D_t2843939325 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Type[]
struct TypeU5BU5D_t3940880105 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Type_t * m_Items[1];
public:
inline Type_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Type_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m1306928554_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t1502828140 * AsyncTaskMethodBuilder_1_get_Task_m1946293888_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::GetTaskForResult(TResult)
extern "C" IL2CPP_METHOD_ATTR Task_1_t1502828140 * AsyncTaskMethodBuilder_1_GetTaskForResult_m3290519007_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, bool p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m772896578_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, bool ___result0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m4213282962_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, Task_1_t1502828140 * ___completedTask0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m3066925186_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, Exception_t * ___exception0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m3679186700_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t61518632 * AsyncTaskMethodBuilder_1_get_Task_m374009415_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::GetTaskForResult(TResult)
extern "C" IL2CPP_METHOD_ATTR Task_1_t61518632 * AsyncTaskMethodBuilder_1_GetTaskForResult_m390966504_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, int32_t p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m341489268_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, int32_t ___result0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m3210745249_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, Task_1_t61518632 * ___completedTask0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m1162352611_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, Exception_t * ___exception0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m2671839336_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t190679043 * AsyncTaskMethodBuilder_1_get_Task_m317986670_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::GetTaskForResult(TResult)
extern "C" IL2CPP_METHOD_ATTR Task_1_t190679043 * AsyncTaskMethodBuilder_1_GetTaskForResult_m1893715023_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject * p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m1633157453_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject * ___result0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m3252182739_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, Task_1_t190679043 * ___completedTask0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m131199109_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, Exception_t * ___exception0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m2794370076_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t4022128754 * AsyncTaskMethodBuilder_1_get_Task_m3182333516_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::GetTaskForResult(TResult)
extern "C" IL2CPP_METHOD_ATTR Task_1_t4022128754 * AsyncTaskMethodBuilder_1_GetTaskForResult_m1878921445_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, VoidTaskResult_t2616588579 p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m3905043534_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, VoidTaskResult_t2616588579 ___result0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m2347196861_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, Task_1_t4022128754 * ___completedTask0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m2740982526_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, Exception_t * ___exception0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m2103845850_gshared (ConfiguredTaskAwaiter_t1419788950 * __this, Task_1_t1502828140 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method);
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m2159915331_gshared (ConfiguredTaskAwaiter_t1419788950 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m706797106_gshared (ConfiguredTaskAwaiter_t1419788950 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m3442970999_gshared (ConfiguredTaskAwaiter_t1419788950 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::GetResult()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_GetResult_m933849130_gshared (ConfiguredTaskAwaiter_t1419788950 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m2831982449_gshared (ConfiguredTaskAwaiter_t4273446738 * __this, Task_1_t61518632 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method);
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m3004702642_gshared (ConfiguredTaskAwaiter_t4273446738 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m3545591048_gshared (ConfiguredTaskAwaiter_t4273446738 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m1243958530_gshared (ConfiguredTaskAwaiter_t4273446738 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::GetResult()
extern "C" IL2CPP_METHOD_ATTR int32_t ConfiguredTaskAwaiter_GetResult_m988772279_gshared (ConfiguredTaskAwaiter_t4273446738 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m3698204470_gshared (ConfiguredTaskAwaiter_t107639853 * __this, Task_1_t190679043 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method);
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m1080323900_gshared (ConfiguredTaskAwaiter_t107639853 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m2589162409_gshared (ConfiguredTaskAwaiter_t107639853 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m3692831591_gshared (ConfiguredTaskAwaiter_t107639853 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::GetResult()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * ConfiguredTaskAwaiter_GetResult_m2513714076_gshared (ConfiguredTaskAwaiter_t107639853 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m3958604058_gshared (ConfiguredTaskAwaiter_t3939089564 * __this, Task_1_t4022128754 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method);
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m2967648714_gshared (ConfiguredTaskAwaiter_t3939089564 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m4232353583_gshared (ConfiguredTaskAwaiter_t3939089564 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m2193039458_gshared (ConfiguredTaskAwaiter_t3939089564 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::GetResult()
extern "C" IL2CPP_METHOD_ATTR VoidTaskResult_t2616588579 ConfiguredTaskAwaiter_GetResult_m2308804723_gshared (ConfiguredTaskAwaiter_t3939089564 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m2526203514_gshared (ConfiguredTaskAwaitable_1_t2695215308 * __this, Task_1_t1502828140 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t1419788950 ConfiguredTaskAwaitable_1_GetAwaiter_m2013000867_gshared (ConfiguredTaskAwaitable_1_t2695215308 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m2950476429_gshared (ConfiguredTaskAwaitable_1_t1253905800 * __this, Task_1_t61518632 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t4273446738 ConfiguredTaskAwaitable_1_GetAwaiter_m2730877693_gshared (ConfiguredTaskAwaitable_1_t1253905800 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m1147622556_gshared (ConfiguredTaskAwaitable_1_t1383066211 * __this, Task_1_t190679043 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t107639853 ConfiguredTaskAwaitable_1_GetAwaiter_m2061313211_gshared (ConfiguredTaskAwaitable_1_t1383066211 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m767716706_gshared (ConfiguredTaskAwaitable_1_t919548626 * __this, Task_1_t4022128754 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t3939089564 ConfiguredTaskAwaitable_1_GetAwaiter_m3345426369_gshared (ConfiguredTaskAwaitable_1_t919548626 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m550699798_gshared (TaskAwaiter_1_t2891770396 * __this, Task_1_t1502828140 * ___task0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_OnCompleted_m2832733403_gshared (TaskAwaiter_1_t2891770396 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m318951708_gshared (TaskAwaiter_1_t2891770396 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::GetResult()
extern "C" IL2CPP_METHOD_ATTR bool TaskAwaiter_1_GetResult_m1801915560_gshared (TaskAwaiter_1_t2891770396 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m284636341_gshared (TaskAwaiter_1_t1450460888 * __this, Task_1_t61518632 * ___task0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_OnCompleted_m3456984506_gshared (TaskAwaiter_1_t1450460888 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m3962170564_gshared (TaskAwaiter_1_t1450460888 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult()
extern "C" IL2CPP_METHOD_ATTR int32_t TaskAwaiter_1_GetResult_m3496793423_gshared (TaskAwaiter_1_t1450460888 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m896688224_gshared (TaskAwaiter_1_t1579621299 * __this, Task_1_t190679043 * ___task0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_OnCompleted_m3037935667_gshared (TaskAwaiter_1_t1579621299 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m2909677046_gshared (TaskAwaiter_1_t1579621299 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * TaskAwaiter_1_GetResult_m3577040539_gshared (TaskAwaiter_1_t1579621299 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m1406333919_gshared (TaskAwaiter_1_t1116103714 * __this, Task_1_t4022128754 * ___task0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_OnCompleted_m4099863949_gshared (TaskAwaiter_1_t1116103714 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m1869997860_gshared (TaskAwaiter_1_t1116103714 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::GetResult()
extern "C" IL2CPP_METHOD_ATTR VoidTaskResult_t2616588579 TaskAwaiter_1_GetResult_m1558525817_gshared (TaskAwaiter_1_t1116103714 * __this, const RuntimeMethod* method);
// System.Void System.RuntimeType/ListBuilder`1<System.Object>::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void ListBuilder_1__ctor_m282577595_gshared (ListBuilder_1_t2117425360 * __this, int32_t ___capacity0, const RuntimeMethod* method);
// T System.RuntimeType/ListBuilder`1<System.Object>::get_Item(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * ListBuilder_1_get_Item_m1396234805_gshared (ListBuilder_1_t2117425360 * __this, int32_t ___index0, const RuntimeMethod* method);
// T[] System.RuntimeType/ListBuilder`1<System.Object>::ToArray()
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* ListBuilder_1_ToArray_m1549891216_gshared (ListBuilder_1_t2117425360 * __this, const RuntimeMethod* method);
// System.Void System.RuntimeType/ListBuilder`1<System.Object>::CopyTo(System.Object[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR void ListBuilder_1_CopyTo_m3688249413_gshared (ListBuilder_1_t2117425360 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___index1, const RuntimeMethod* method);
// System.Int32 System.RuntimeType/ListBuilder`1<System.Object>::get_Count()
extern "C" IL2CPP_METHOD_ATTR int32_t ListBuilder_1_get_Count_m1933043653_gshared (ListBuilder_1_t2117425360 * __this, const RuntimeMethod* method);
// System.Void System.RuntimeType/ListBuilder`1<System.Object>::Add(T)
extern "C" IL2CPP_METHOD_ATTR void ListBuilder_1_Add_m48855945_gshared (ListBuilder_1_t2117425360 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::.ctor(T,T,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1__ctor_m3853057685_gshared (AsyncLocalValueChangedArgs_1_t416175285 * __this, RuntimeObject * p0, RuntimeObject * p1, bool p2, const RuntimeMethod* method);
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_PreviousValue(T)
extern "C" IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_PreviousValue_m71981835_gshared (AsyncLocalValueChangedArgs_1_t416175285 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// T System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::get_CurrentValue()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * AsyncLocalValueChangedArgs_1_get_CurrentValue_m1268540845_gshared (AsyncLocalValueChangedArgs_1_t416175285 * __this, const RuntimeMethod* method);
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_CurrentValue(T)
extern "C" IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_CurrentValue_m2181115123_gshared (AsyncLocalValueChangedArgs_1_t416175285 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_ThreadContextChanged(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m2017573335_gshared (AsyncLocalValueChangedArgs_1_t416175285 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void SparselyPopulatedArrayAddInfo_1__ctor_m1457611507_gshared (SparselyPopulatedArrayAddInfo_1_t2980901022 * __this, SparselyPopulatedArrayFragment_1_t2623668647 * p0, int32_t p1, const RuntimeMethod* method);
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source()
extern "C" IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_t2623668647 * SparselyPopulatedArrayAddInfo_1_get_Source_m3793467541_gshared (SparselyPopulatedArrayAddInfo_1_t2980901022 * __this, const RuntimeMethod* method);
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index()
extern "C" IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m372340994_gshared (SparselyPopulatedArrayAddInfo_1_t2980901022 * __this, const RuntimeMethod* method);
// TResult System.Threading.Tasks.Task`1<System.Object>::get_Result()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Task_1_get_Result_m3610557823_gshared (Task_1_t190679043 * __this, const RuntimeMethod* method);
// System.Void System.Action`1<System.Object>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR void Action_1_Invoke_m3161192644_gshared (Action_1_t3252573759 * __this, RuntimeObject * p0, const RuntimeMethod* method);
// TResult System.Func`3<System.Object,System.Object,System.Object>::Invoke(T1,T2)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Func_3_Invoke_m2196145582_gshared (Func_3_t3398609381 * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m1328026504_gshared (List_1_t257213610 * __this, int32_t p0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m2934127733_gshared (List_1_t257213610 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncMethodBuilderCore::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncMethodBuilderCore_SetStateMachine_m3928559089 (AsyncMethodBuilderCore_t2955600131 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
#define AsyncTaskMethodBuilder_1_SetStateMachine_m1306928554(__this, ___stateMachine0, method) (( void (*) (AsyncTaskMethodBuilder_1_t2418262475 *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m1306928554_gshared)(__this, ___stateMachine0, method)
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::get_Task()
#define AsyncTaskMethodBuilder_1_get_Task_m1946293888(__this, method) (( Task_1_t1502828140 * (*) (AsyncTaskMethodBuilder_1_t2418262475 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m1946293888_gshared)(__this, method)
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::GetTaskForResult(TResult)
#define AsyncTaskMethodBuilder_1_GetTaskForResult_m3290519007(__this, p0, method) (( Task_1_t1502828140 * (*) (AsyncTaskMethodBuilder_1_t2418262475 *, bool, const RuntimeMethod*))AsyncTaskMethodBuilder_1_GetTaskForResult_m3290519007_gshared)(__this, p0, method)
// System.Boolean System.Threading.Tasks.AsyncCausalityTracer::get_LoggingOn()
extern "C" IL2CPP_METHOD_ATTR bool AsyncCausalityTracer_get_LoggingOn_m2335509619 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
// System.Int32 System.Threading.Tasks.Task::get_Id()
extern "C" IL2CPP_METHOD_ATTR int32_t Task_get_Id_m119004446 (Task_t3187275312 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.AsyncCausalityTracer::TraceOperationCompletion(System.Threading.Tasks.CausalityTraceLevel,System.Int32,System.Threading.Tasks.AsyncCausalityStatus)
extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void AsyncCausalityTracer_TraceOperationCompletion_m2246115603 (RuntimeObject * __this /* static, unused */, int32_t ___traceLevel0, int32_t ___taskId1, int32_t ___status2, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::RemoveFromActiveTasks(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Task_RemoveFromActiveTasks_m3338298932 (RuntimeObject * __this /* static, unused */, int32_t ___taskId0, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2063689938 (RuntimeObject * __this /* static, unused */, String_t* ___key0, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m237278729 (InvalidOperationException_t56020091 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(TResult)
#define AsyncTaskMethodBuilder_1_SetResult_m772896578(__this, ___result0, method) (( void (*) (AsyncTaskMethodBuilder_1_t2418262475 *, bool, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m772896578_gshared)(__this, ___result0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(System.Threading.Tasks.Task`1<TResult>)
#define AsyncTaskMethodBuilder_1_SetResult_m4213282962(__this, ___completedTask0, method) (( void (*) (AsyncTaskMethodBuilder_1_t2418262475 *, Task_1_t1502828140 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m4213282962_gshared)(__this, ___completedTask0, method)
// System.Void System.ArgumentNullException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m1170824041 (ArgumentNullException_t1615371798 * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Threading.CancellationToken System.OperationCanceledException::get_CancellationToken()
extern "C" IL2CPP_METHOD_ATTR CancellationToken_t784455623 OperationCanceledException_get_CancellationToken_m1943835608 (OperationCanceledException_t926488448 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetException(System.Exception)
#define AsyncTaskMethodBuilder_1_SetException_m3066925186(__this, ___exception0, method) (( void (*) (AsyncTaskMethodBuilder_1_t2418262475 *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m3066925186_gshared)(__this, ___exception0, method)
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
extern "C" IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m1620074514 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t3027515415 ___handle0, const RuntimeMethod* method);
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
extern "C" IL2CPP_METHOD_ATTR bool Type_op_Equality_m2683486427 (RuntimeObject * __this /* static, unused */, Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Boolean System.Decimal::op_Equality(System.Decimal,System.Decimal)
extern "C" IL2CPP_METHOD_ATTR bool Decimal_op_Equality_m77262825 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___d10, Decimal_t2948259380 ___d21, const RuntimeMethod* method);
// System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_m408849716 (RuntimeObject * __this /* static, unused */, intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method);
// System.Boolean System.UIntPtr::op_Equality(System.UIntPtr,System.UIntPtr)
extern "C" IL2CPP_METHOD_ATTR bool UIntPtr_op_Equality_m2241921281 (RuntimeObject * __this /* static, unused */, uintptr_t ___value10, uintptr_t ___value21, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
#define AsyncTaskMethodBuilder_1_SetStateMachine_m3679186700(__this, ___stateMachine0, method) (( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m3679186700_gshared)(__this, ___stateMachine0, method)
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::get_Task()
#define AsyncTaskMethodBuilder_1_get_Task_m374009415(__this, method) (( Task_1_t61518632 * (*) (AsyncTaskMethodBuilder_1_t976952967 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m374009415_gshared)(__this, method)
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::GetTaskForResult(TResult)
#define AsyncTaskMethodBuilder_1_GetTaskForResult_m390966504(__this, p0, method) (( Task_1_t61518632 * (*) (AsyncTaskMethodBuilder_1_t976952967 *, int32_t, const RuntimeMethod*))AsyncTaskMethodBuilder_1_GetTaskForResult_m390966504_gshared)(__this, p0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(TResult)
#define AsyncTaskMethodBuilder_1_SetResult_m341489268(__this, ___result0, method) (( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, int32_t, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m341489268_gshared)(__this, ___result0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(System.Threading.Tasks.Task`1<TResult>)
#define AsyncTaskMethodBuilder_1_SetResult_m3210745249(__this, ___completedTask0, method) (( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, Task_1_t61518632 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m3210745249_gshared)(__this, ___completedTask0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetException(System.Exception)
#define AsyncTaskMethodBuilder_1_SetException_m1162352611(__this, ___exception0, method) (( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m1162352611_gshared)(__this, ___exception0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
#define AsyncTaskMethodBuilder_1_SetStateMachine_m2671839336(__this, ___stateMachine0, method) (( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m2671839336_gshared)(__this, ___stateMachine0, method)
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task()
#define AsyncTaskMethodBuilder_1_get_Task_m317986670(__this, method) (( Task_1_t190679043 * (*) (AsyncTaskMethodBuilder_1_t1106113378 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m317986670_gshared)(__this, method)
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::GetTaskForResult(TResult)
#define AsyncTaskMethodBuilder_1_GetTaskForResult_m1893715023(__this, p0, method) (( Task_1_t190679043 * (*) (AsyncTaskMethodBuilder_1_t1106113378 *, RuntimeObject *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_GetTaskForResult_m1893715023_gshared)(__this, p0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(TResult)
#define AsyncTaskMethodBuilder_1_SetResult_m1633157453(__this, ___result0, method) (( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, RuntimeObject *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m1633157453_gshared)(__this, ___result0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(System.Threading.Tasks.Task`1<TResult>)
#define AsyncTaskMethodBuilder_1_SetResult_m3252182739(__this, ___completedTask0, method) (( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, Task_1_t190679043 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m3252182739_gshared)(__this, ___completedTask0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetException(System.Exception)
#define AsyncTaskMethodBuilder_1_SetException_m131199109(__this, ___exception0, method) (( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m131199109_gshared)(__this, ___exception0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
#define AsyncTaskMethodBuilder_1_SetStateMachine_m2794370076(__this, ___stateMachine0, method) (( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m2794370076_gshared)(__this, ___stateMachine0, method)
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::get_Task()
#define AsyncTaskMethodBuilder_1_get_Task_m3182333516(__this, method) (( Task_1_t4022128754 * (*) (AsyncTaskMethodBuilder_1_t642595793 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m3182333516_gshared)(__this, method)
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::GetTaskForResult(TResult)
#define AsyncTaskMethodBuilder_1_GetTaskForResult_m1878921445(__this, p0, method) (( Task_1_t4022128754 * (*) (AsyncTaskMethodBuilder_1_t642595793 *, VoidTaskResult_t2616588579 , const RuntimeMethod*))AsyncTaskMethodBuilder_1_GetTaskForResult_m1878921445_gshared)(__this, p0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(TResult)
#define AsyncTaskMethodBuilder_1_SetResult_m3905043534(__this, ___result0, method) (( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, VoidTaskResult_t2616588579 , const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m3905043534_gshared)(__this, ___result0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(System.Threading.Tasks.Task`1<TResult>)
#define AsyncTaskMethodBuilder_1_SetResult_m2347196861(__this, ___completedTask0, method) (( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, Task_1_t4022128754 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m2347196861_gshared)(__this, ___completedTask0, method)
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetException(System.Exception)
#define AsyncTaskMethodBuilder_1_SetException_m2740982526(__this, ___exception0, method) (( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m2740982526_gshared)(__this, ___exception0, method)
// System.Void System.Object::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Object__ctor_m297566312 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.GC::register_ephemeron_array(System.Runtime.CompilerServices.Ephemeron[])
extern "C" IL2CPP_METHOD_ATTR void GC_register_ephemeron_array_m1855245127 (RuntimeObject * __this /* static, unused */, EphemeronU5BU5D_t1564620431* ___array0, const RuntimeMethod* method);
// System.Void System.Object::Finalize()
extern "C" IL2CPP_METHOD_ATTR void Object_Finalize_m3076187857 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::GetHashCode(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_GetHashCode_m1610824259 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___o0, const RuntimeMethod* method);
// System.Int32 System.Collections.HashHelpers::GetPrime(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t HashHelpers_GetPrime_m1056954278 (RuntimeObject * __this /* static, unused */, int32_t ___min0, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m2009621981 (ArgumentNullException_t1615371798 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR void Monitor_Enter_m984175629 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1216717135 (ArgumentException_t132251570 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Exit(System.Object)
extern "C" IL2CPP_METHOD_ATTR void Monitor_Exit_m3585316909 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
#define ConfiguredTaskAwaiter__ctor_m2103845850(__this, ___task0, ___continueOnCapturedContext1, method) (( void (*) (ConfiguredTaskAwaiter_t1419788950 *, Task_1_t1502828140 *, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m2103845850_gshared)(__this, ___task0, ___continueOnCapturedContext1, method)
// System.Boolean System.Threading.Tasks.Task::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool Task_get_IsCompleted_m1406118445 (Task_t3187275312 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::get_IsCompleted()
#define ConfiguredTaskAwaiter_get_IsCompleted_m2159915331(__this, method) (( bool (*) (ConfiguredTaskAwaiter_t1419788950 *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m2159915331_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter::OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean,System.Boolean)
extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_OnCompletedInternal_m3370334999 (RuntimeObject * __this /* static, unused */, Task_t3187275312 * ___task0, Action_t1264377477 * ___continuation1, bool ___continueOnCapturedContext2, bool ___flowExecutionContext3, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::OnCompleted(System.Action)
#define ConfiguredTaskAwaiter_OnCompleted_m706797106(__this, ___continuation0, method) (( void (*) (ConfiguredTaskAwaiter_t1419788950 *, Action_t1264377477 *, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m706797106_gshared)(__this, ___continuation0, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::UnsafeOnCompleted(System.Action)
#define ConfiguredTaskAwaiter_UnsafeOnCompleted_m3442970999(__this, ___continuation0, method) (( void (*) (ConfiguredTaskAwaiter_t1419788950 *, Action_t1264377477 *, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m3442970999_gshared)(__this, ___continuation0, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter::ValidateEnd(System.Threading.Tasks.Task)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_ValidateEnd_m2858169533 (RuntimeObject * __this /* static, unused */, Task_t3187275312 * ___task0, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::GetResult()
#define ConfiguredTaskAwaiter_GetResult_m933849130(__this, method) (( bool (*) (ConfiguredTaskAwaiter_t1419788950 *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m933849130_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
#define ConfiguredTaskAwaiter__ctor_m2831982449(__this, ___task0, ___continueOnCapturedContext1, method) (( void (*) (ConfiguredTaskAwaiter_t4273446738 *, Task_1_t61518632 *, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m2831982449_gshared)(__this, ___task0, ___continueOnCapturedContext1, method)
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted()
#define ConfiguredTaskAwaiter_get_IsCompleted_m3004702642(__this, method) (( bool (*) (ConfiguredTaskAwaiter_t4273446738 *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m3004702642_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::OnCompleted(System.Action)
#define ConfiguredTaskAwaiter_OnCompleted_m3545591048(__this, ___continuation0, method) (( void (*) (ConfiguredTaskAwaiter_t4273446738 *, Action_t1264377477 *, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m3545591048_gshared)(__this, ___continuation0, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::UnsafeOnCompleted(System.Action)
#define ConfiguredTaskAwaiter_UnsafeOnCompleted_m1243958530(__this, ___continuation0, method) (( void (*) (ConfiguredTaskAwaiter_t4273446738 *, Action_t1264377477 *, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m1243958530_gshared)(__this, ___continuation0, method)
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::GetResult()
#define ConfiguredTaskAwaiter_GetResult_m988772279(__this, method) (( int32_t (*) (ConfiguredTaskAwaiter_t4273446738 *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m988772279_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
#define ConfiguredTaskAwaiter__ctor_m3698204470(__this, ___task0, ___continueOnCapturedContext1, method) (( void (*) (ConfiguredTaskAwaiter_t107639853 *, Task_1_t190679043 *, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m3698204470_gshared)(__this, ___task0, ___continueOnCapturedContext1, method)
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::get_IsCompleted()
#define ConfiguredTaskAwaiter_get_IsCompleted_m1080323900(__this, method) (( bool (*) (ConfiguredTaskAwaiter_t107639853 *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m1080323900_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::OnCompleted(System.Action)
#define ConfiguredTaskAwaiter_OnCompleted_m2589162409(__this, ___continuation0, method) (( void (*) (ConfiguredTaskAwaiter_t107639853 *, Action_t1264377477 *, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m2589162409_gshared)(__this, ___continuation0, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::UnsafeOnCompleted(System.Action)
#define ConfiguredTaskAwaiter_UnsafeOnCompleted_m3692831591(__this, ___continuation0, method) (( void (*) (ConfiguredTaskAwaiter_t107639853 *, Action_t1264377477 *, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m3692831591_gshared)(__this, ___continuation0, method)
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::GetResult()
#define ConfiguredTaskAwaiter_GetResult_m2513714076(__this, method) (( RuntimeObject * (*) (ConfiguredTaskAwaiter_t107639853 *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m2513714076_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
#define ConfiguredTaskAwaiter__ctor_m3958604058(__this, ___task0, ___continueOnCapturedContext1, method) (( void (*) (ConfiguredTaskAwaiter_t3939089564 *, Task_1_t4022128754 *, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m3958604058_gshared)(__this, ___task0, ___continueOnCapturedContext1, method)
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::get_IsCompleted()
#define ConfiguredTaskAwaiter_get_IsCompleted_m2967648714(__this, method) (( bool (*) (ConfiguredTaskAwaiter_t3939089564 *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m2967648714_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::OnCompleted(System.Action)
#define ConfiguredTaskAwaiter_OnCompleted_m4232353583(__this, ___continuation0, method) (( void (*) (ConfiguredTaskAwaiter_t3939089564 *, Action_t1264377477 *, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m4232353583_gshared)(__this, ___continuation0, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action)
#define ConfiguredTaskAwaiter_UnsafeOnCompleted_m2193039458(__this, ___continuation0, method) (( void (*) (ConfiguredTaskAwaiter_t3939089564 *, Action_t1264377477 *, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m2193039458_gshared)(__this, ___continuation0, method)
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::GetResult()
#define ConfiguredTaskAwaiter_GetResult_m2308804723(__this, method) (( VoidTaskResult_t2616588579 (*) (ConfiguredTaskAwaiter_t3939089564 *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m2308804723_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
#define ConfiguredTaskAwaitable_1__ctor_m2526203514(__this, ___task0, ___continueOnCapturedContext1, method) (( void (*) (ConfiguredTaskAwaitable_1_t2695215308 *, Task_1_t1502828140 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m2526203514_gshared)(__this, ___task0, ___continueOnCapturedContext1, method)
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::GetAwaiter()
#define ConfiguredTaskAwaitable_1_GetAwaiter_m2013000867(__this, method) (( ConfiguredTaskAwaiter_t1419788950 (*) (ConfiguredTaskAwaitable_1_t2695215308 *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m2013000867_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
#define ConfiguredTaskAwaitable_1__ctor_m2950476429(__this, ___task0, ___continueOnCapturedContext1, method) (( void (*) (ConfiguredTaskAwaitable_1_t1253905800 *, Task_1_t61518632 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m2950476429_gshared)(__this, ___task0, ___continueOnCapturedContext1, method)
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter()
#define ConfiguredTaskAwaitable_1_GetAwaiter_m2730877693(__this, method) (( ConfiguredTaskAwaiter_t4273446738 (*) (ConfiguredTaskAwaitable_1_t1253905800 *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m2730877693_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
#define ConfiguredTaskAwaitable_1__ctor_m1147622556(__this, ___task0, ___continueOnCapturedContext1, method) (( void (*) (ConfiguredTaskAwaitable_1_t1383066211 *, Task_1_t190679043 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m1147622556_gshared)(__this, ___task0, ___continueOnCapturedContext1, method)
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::GetAwaiter()
#define ConfiguredTaskAwaitable_1_GetAwaiter_m2061313211(__this, method) (( ConfiguredTaskAwaiter_t107639853 (*) (ConfiguredTaskAwaitable_1_t1383066211 *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m2061313211_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
#define ConfiguredTaskAwaitable_1__ctor_m767716706(__this, ___task0, ___continueOnCapturedContext1, method) (( void (*) (ConfiguredTaskAwaitable_1_t919548626 *, Task_1_t4022128754 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m767716706_gshared)(__this, ___task0, ___continueOnCapturedContext1, method)
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter()
#define ConfiguredTaskAwaitable_1_GetAwaiter_m3345426369(__this, method) (( ConfiguredTaskAwaiter_t3939089564 (*) (ConfiguredTaskAwaitable_1_t919548626 *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m3345426369_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>)
#define TaskAwaiter_1__ctor_m550699798(__this, ___task0, method) (( void (*) (TaskAwaiter_1_t2891770396 *, Task_1_t1502828140 *, const RuntimeMethod*))TaskAwaiter_1__ctor_m550699798_gshared)(__this, ___task0, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::OnCompleted(System.Action)
#define TaskAwaiter_1_OnCompleted_m2832733403(__this, ___continuation0, method) (( void (*) (TaskAwaiter_1_t2891770396 *, Action_t1264377477 *, const RuntimeMethod*))TaskAwaiter_1_OnCompleted_m2832733403_gshared)(__this, ___continuation0, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::UnsafeOnCompleted(System.Action)
#define TaskAwaiter_1_UnsafeOnCompleted_m318951708(__this, ___continuation0, method) (( void (*) (TaskAwaiter_1_t2891770396 *, Action_t1264377477 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_m318951708_gshared)(__this, ___continuation0, method)
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::GetResult()
#define TaskAwaiter_1_GetResult_m1801915560(__this, method) (( bool (*) (TaskAwaiter_1_t2891770396 *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m1801915560_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>)
#define TaskAwaiter_1__ctor_m284636341(__this, ___task0, method) (( void (*) (TaskAwaiter_1_t1450460888 *, Task_1_t61518632 *, const RuntimeMethod*))TaskAwaiter_1__ctor_m284636341_gshared)(__this, ___task0, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::OnCompleted(System.Action)
#define TaskAwaiter_1_OnCompleted_m3456984506(__this, ___continuation0, method) (( void (*) (TaskAwaiter_1_t1450460888 *, Action_t1264377477 *, const RuntimeMethod*))TaskAwaiter_1_OnCompleted_m3456984506_gshared)(__this, ___continuation0, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::UnsafeOnCompleted(System.Action)
#define TaskAwaiter_1_UnsafeOnCompleted_m3962170564(__this, ___continuation0, method) (( void (*) (TaskAwaiter_1_t1450460888 *, Action_t1264377477 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_m3962170564_gshared)(__this, ___continuation0, method)
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult()
#define TaskAwaiter_1_GetResult_m3496793423(__this, method) (( int32_t (*) (TaskAwaiter_1_t1450460888 *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m3496793423_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>)
#define TaskAwaiter_1__ctor_m896688224(__this, ___task0, method) (( void (*) (TaskAwaiter_1_t1579621299 *, Task_1_t190679043 *, const RuntimeMethod*))TaskAwaiter_1__ctor_m896688224_gshared)(__this, ___task0, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::OnCompleted(System.Action)
#define TaskAwaiter_1_OnCompleted_m3037935667(__this, ___continuation0, method) (( void (*) (TaskAwaiter_1_t1579621299 *, Action_t1264377477 *, const RuntimeMethod*))TaskAwaiter_1_OnCompleted_m3037935667_gshared)(__this, ___continuation0, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::UnsafeOnCompleted(System.Action)
#define TaskAwaiter_1_UnsafeOnCompleted_m2909677046(__this, ___continuation0, method) (( void (*) (TaskAwaiter_1_t1579621299 *, Action_t1264377477 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_m2909677046_gshared)(__this, ___continuation0, method)
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult()
#define TaskAwaiter_1_GetResult_m3577040539(__this, method) (( RuntimeObject * (*) (TaskAwaiter_1_t1579621299 *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m3577040539_gshared)(__this, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>)
#define TaskAwaiter_1__ctor_m1406333919(__this, ___task0, method) (( void (*) (TaskAwaiter_1_t1116103714 *, Task_1_t4022128754 *, const RuntimeMethod*))TaskAwaiter_1__ctor_m1406333919_gshared)(__this, ___task0, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::OnCompleted(System.Action)
#define TaskAwaiter_1_OnCompleted_m4099863949(__this, ___continuation0, method) (( void (*) (TaskAwaiter_1_t1116103714 *, Action_t1264377477 *, const RuntimeMethod*))TaskAwaiter_1_OnCompleted_m4099863949_gshared)(__this, ___continuation0, method)
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action)
#define TaskAwaiter_1_UnsafeOnCompleted_m1869997860(__this, ___continuation0, method) (( void (*) (TaskAwaiter_1_t1116103714 *, Action_t1264377477 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_m1869997860_gshared)(__this, ___continuation0, method)
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::GetResult()
#define TaskAwaiter_1_GetResult_m1558525817(__this, method) (( VoidTaskResult_t2616588579 (*) (TaskAwaiter_1_t1116103714 *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m1558525817_gshared)(__this, method)
// System.Void System.RuntimeType/ListBuilder`1<System.Object>::.ctor(System.Int32)
#define ListBuilder_1__ctor_m282577595(__this, ___capacity0, method) (( void (*) (ListBuilder_1_t2117425360 *, int32_t, const RuntimeMethod*))ListBuilder_1__ctor_m282577595_gshared)(__this, ___capacity0, method)
// T System.RuntimeType/ListBuilder`1<System.Object>::get_Item(System.Int32)
#define ListBuilder_1_get_Item_m1396234805(__this, ___index0, method) (( RuntimeObject * (*) (ListBuilder_1_t2117425360 *, int32_t, const RuntimeMethod*))ListBuilder_1_get_Item_m1396234805_gshared)(__this, ___index0, method)
// T[] System.RuntimeType/ListBuilder`1<System.Object>::ToArray()
#define ListBuilder_1_ToArray_m1549891216(__this, method) (( ObjectU5BU5D_t2843939325* (*) (ListBuilder_1_t2117425360 *, const RuntimeMethod*))ListBuilder_1_ToArray_m1549891216_gshared)(__this, method)
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Copy_m344457298 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method);
// System.Void System.RuntimeType/ListBuilder`1<System.Object>::CopyTo(System.Object[],System.Int32)
#define ListBuilder_1_CopyTo_m3688249413(__this, ___array0, ___index1, method) (( void (*) (ListBuilder_1_t2117425360 *, ObjectU5BU5D_t2843939325*, int32_t, const RuntimeMethod*))ListBuilder_1_CopyTo_m3688249413_gshared)(__this, ___array0, ___index1, method)
// System.Int32 System.RuntimeType/ListBuilder`1<System.Object>::get_Count()
#define ListBuilder_1_get_Count_m1933043653(__this, method) (( int32_t (*) (ListBuilder_1_t2117425360 *, const RuntimeMethod*))ListBuilder_1_get_Count_m1933043653_gshared)(__this, method)
// System.Void System.RuntimeType/ListBuilder`1<System.Object>::Add(T)
#define ListBuilder_1_Add_m48855945(__this, ___item0, method) (( void (*) (ListBuilder_1_t2117425360 *, RuntimeObject *, const RuntimeMethod*))ListBuilder_1_Add_m48855945_gshared)(__this, ___item0, method)
// System.Void System.Threading.ExecutionContext::SetLocalValue(System.Threading.IAsyncLocal,System.Object,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ExecutionContext_SetLocalValue_m2922585144 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___local0, RuntimeObject * ___newValue1, bool ___needChangeNotifications2, const RuntimeMethod* method);
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::.ctor(T,T,System.Boolean)
#define AsyncLocalValueChangedArgs_1__ctor_m3853057685(__this, p0, p1, p2, method) (( void (*) (AsyncLocalValueChangedArgs_1_t416175285 *, RuntimeObject *, RuntimeObject *, bool, const RuntimeMethod*))AsyncLocalValueChangedArgs_1__ctor_m3853057685_gshared)(__this, p0, p1, p2, method)
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_PreviousValue(T)
#define AsyncLocalValueChangedArgs_1_set_PreviousValue_m71981835(__this, ___value0, method) (( void (*) (AsyncLocalValueChangedArgs_1_t416175285 *, RuntimeObject *, const RuntimeMethod*))AsyncLocalValueChangedArgs_1_set_PreviousValue_m71981835_gshared)(__this, ___value0, method)
// T System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::get_CurrentValue()
#define AsyncLocalValueChangedArgs_1_get_CurrentValue_m1268540845(__this, method) (( RuntimeObject * (*) (AsyncLocalValueChangedArgs_1_t416175285 *, const RuntimeMethod*))AsyncLocalValueChangedArgs_1_get_CurrentValue_m1268540845_gshared)(__this, method)
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_CurrentValue(T)
#define AsyncLocalValueChangedArgs_1_set_CurrentValue_m2181115123(__this, ___value0, method) (( void (*) (AsyncLocalValueChangedArgs_1_t416175285 *, RuntimeObject *, const RuntimeMethod*))AsyncLocalValueChangedArgs_1_set_CurrentValue_m2181115123_gshared)(__this, ___value0, method)
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_ThreadContextChanged(System.Boolean)
#define AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m2017573335(__this, ___value0, method) (( void (*) (AsyncLocalValueChangedArgs_1_t416175285 *, bool, const RuntimeMethod*))AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m2017573335_gshared)(__this, ___value0, method)
// System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32)
#define SparselyPopulatedArrayAddInfo_1__ctor_m1457611507(__this, p0, p1, method) (( void (*) (SparselyPopulatedArrayAddInfo_1_t2980901022 *, SparselyPopulatedArrayFragment_1_t2623668647 *, int32_t, const RuntimeMethod*))SparselyPopulatedArrayAddInfo_1__ctor_m1457611507_gshared)(__this, p0, p1, method)
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source()
#define SparselyPopulatedArrayAddInfo_1_get_Source_m3793467541(__this, method) (( SparselyPopulatedArrayFragment_1_t2623668647 * (*) (SparselyPopulatedArrayAddInfo_1_t2980901022 *, const RuntimeMethod*))SparselyPopulatedArrayAddInfo_1_get_Source_m3793467541_gshared)(__this, method)
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index()
#define SparselyPopulatedArrayAddInfo_1_get_Index_m372340994(__this, method) (( int32_t (*) (SparselyPopulatedArrayAddInfo_1_t2980901022 *, const RuntimeMethod*))SparselyPopulatedArrayAddInfo_1_get_Index_m372340994_gshared)(__this, method)
// TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::get_Result()
#define Task_1_get_Result_m1431118879(__this, method) (( Task_t3187275312 * (*) (Task_1_t297848191 *, const RuntimeMethod*))Task_1_get_Result_m3610557823_gshared)(__this, method)
// System.Void System.Threading.Tasks.Task::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Task__ctor_m3380090582 (Task_t3187275312 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::.ctor(System.Object,System.Threading.Tasks.TaskCreationOptions,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void Task__ctor_m3094793396 (Task_t3187275312 * __this, RuntimeObject * ___state0, int32_t ___creationOptions1, bool ___promiseStyle2, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::.ctor(System.Boolean,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR void Task__ctor_m2785691336 (Task_t3187275312 * __this, bool ___canceled0, int32_t ___creationOptions1, CancellationToken_t784455623 ___ct2, const RuntimeMethod* method);
// System.Threading.Tasks.Task System.Threading.Tasks.Task::InternalCurrentIfAttached(System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_METHOD_ATTR Task_t3187275312 * Task_InternalCurrentIfAttached_m3256135818 (RuntimeObject * __this /* static, unused */, int32_t ___creationOptions0, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::PossiblyCaptureContext(System.Threading.StackCrawlMark&)
extern "C" IL2CPP_METHOD_ATTR void Task_PossiblyCaptureContext_m2078689259 (Task_t3187275312 * __this, int32_t* ___stackMark0, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void Task__ctor_m388757629 (Task_t3187275312 * __this, Delegate_t1188392813 * ___action0, RuntimeObject * ___state1, Task_t3187275312 * ___parent2, CancellationToken_t784455623 ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t1196198384 * ___scheduler6, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m282481429 (ArgumentOutOfRangeException_t777629997 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::ScheduleAndStart(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void Task_ScheduleAndStart_m3697593748 (Task_t3187275312 * __this, bool ___needsProtection0, const RuntimeMethod* method);
// System.Boolean System.Threading.Tasks.Task::AtomicStateUpdate(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool Task_AtomicStateUpdate_m3413171995 (Task_t3187275312 * __this, int32_t ___newBits0, int32_t ___illegalBits1, const RuntimeMethod* method);
// System.Int32 System.Threading.Interlocked::Exchange(System.Int32&,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Interlocked_Exchange_m435211442 (RuntimeObject * __this /* static, unused */, int32_t* ___location10, int32_t ___value1, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task/ContingentProperties::SetCompleted()
extern "C" IL2CPP_METHOD_ATTR void ContingentProperties_SetCompleted_m1273683735 (ContingentProperties_t2170468915 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::FinishStageThree()
extern "C" IL2CPP_METHOD_ATTR void Task_FinishStageThree_m655196368 (Task_t3187275312 * __this, const RuntimeMethod* method);
// System.Boolean System.Threading.Tasks.Task::get_IsWaitNotificationEnabledOrNotRanToCompletion()
extern "C" IL2CPP_METHOD_ATTR bool Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_m3510871212 (Task_t3187275312 * __this, const RuntimeMethod* method);
// System.Boolean System.Threading.Tasks.Task::InternalWait(System.Int32,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR bool Task_InternalWait_m1596119731 (Task_t3187275312 * __this, int32_t ___millisecondsTimeout0, CancellationToken_t784455623 ___cancellationToken1, const RuntimeMethod* method);
// System.Boolean System.Threading.Tasks.Task::NotifyDebuggerOfWaitCompletionIfNecessary()
extern "C" IL2CPP_METHOD_ATTR bool Task_NotifyDebuggerOfWaitCompletionIfNecessary_m624966664 (Task_t3187275312 * __this, const RuntimeMethod* method);
// System.Boolean System.Threading.Tasks.Task::get_IsRanToCompletion()
extern "C" IL2CPP_METHOD_ATTR bool Task_get_IsRanToCompletion_m285137934 (Task_t3187275312 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::ThrowIfExceptional(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void Task_ThrowIfExceptional_m1147093355 (Task_t3187275312 * __this, bool ___includeTaskCanceledExceptions0, const RuntimeMethod* method);
// System.Threading.Tasks.Task/ContingentProperties System.Threading.Tasks.Task::EnsureContingentPropertiesInitialized(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ContingentProperties_t2170468915 * Task_EnsureContingentPropertiesInitialized_m1531521476 (Task_t3187275312 * __this, bool ___needsProtection0, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::AddException(System.Object)
extern "C" IL2CPP_METHOD_ATTR void Task_AddException_m1219930878 (Task_t3187275312 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::Finish(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void Task_Finish_m1724979731 (Task_t3187275312 * __this, bool ___bUserDelegateExecuted0, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::RecordInternalCancellationRequest(System.Threading.CancellationToken,System.Object)
extern "C" IL2CPP_METHOD_ATTR void Task_RecordInternalCancellationRequest_m904000580 (Task_t3187275312 * __this, CancellationToken_t784455623 ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.Task::CancellationCleanupLogic()
extern "C" IL2CPP_METHOD_ATTR void Task_CancellationCleanupLogic_m1481515712 (Task_t3187275312 * __this, const RuntimeMethod* method);
// System.Boolean System.Threading.AtomicBoolean::TryRelaxedSet()
extern "C" IL2CPP_METHOD_ATTR bool AtomicBoolean_TryRelaxedSet_m184349447 (AtomicBoolean_t2634115295 * __this, const RuntimeMethod* method);
// System.Void System.AsyncCallback::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void AsyncCallback__ctor_m530647953 (AsyncCallback_t3962456242 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskFactory::CheckMultiTaskContinuationOptions(System.Threading.Tasks.TaskContinuationOptions)
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_CheckMultiTaskContinuationOptions_m4248755655 (RuntimeObject * __this /* static, unused */, int32_t ___continuationOptions0, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskFactory::CheckCreationOptions(System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_CheckCreationOptions_m1813633372 (RuntimeObject * __this /* static, unused */, int32_t ___creationOptions0, const RuntimeMethod* method);
// System.Void System.Action`1<System.IAsyncResult>::Invoke(T)
#define Action_1_Invoke_m2928931602(__this, p0, method) (( void (*) (Action_1_t939472046 *, RuntimeObject*, const RuntimeMethod*))Action_1_Invoke_m3161192644_gshared)(__this, p0, method)
// System.Void System.Threading.Tasks.TaskExceptionHolder::MarkAsHandled(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void TaskExceptionHolder_MarkAsHandled_m3629939554 (TaskExceptionHolder_t1800584989 * __this, bool ___calledFromFinalizer0, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskFactory::CheckFromAsyncOptions(System.Threading.Tasks.TaskCreationOptions,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_CheckFromAsyncOptions_m4125018144 (RuntimeObject * __this /* static, unused */, int32_t ___creationOptions0, bool ___hasBeginMethod1, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Delegate::get_Method()
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * Delegate_get_Method_m3071622864 (Delegate_t1188392813 * __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_m3937257545 (RuntimeObject * __this /* static, unused */, String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.AsyncCausalityTracer::TraceOperationCreation(System.Threading.Tasks.CausalityTraceLevel,System.Int32,System.String,System.UInt64)
extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void AsyncCausalityTracer_TraceOperationCreation_m3940971853 (RuntimeObject * __this /* static, unused */, int32_t ___traceLevel0, int32_t ___taskId1, String_t* ___operationName2, uint64_t ___relatedContext3, const RuntimeMethod* method);
// System.Boolean System.Threading.Tasks.Task::AddToActiveTasks(System.Threading.Tasks.Task)
extern "C" IL2CPP_METHOD_ATTR bool Task_AddToActiveTasks_m1867860841 (RuntimeObject * __this /* static, unused */, Task_t3187275312 * ___task0, const RuntimeMethod* method);
// System.Void System.Threading.AtomicBoolean::.ctor()
extern "C" IL2CPP_METHOD_ATTR void AtomicBoolean__ctor_m2830875096 (AtomicBoolean_t2634115295 * __this, const RuntimeMethod* method);
// TResult System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>::Invoke(T1,T2)
#define Func_3_Invoke_m528074778(__this, p0, p1, method) (( RuntimeObject* (*) (Func_3_t82022818 *, AsyncCallback_t3962456242 *, RuntimeObject *, const RuntimeMethod*))Func_3_Invoke_m2196145582_gshared)(__this, p0, p1, method)
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Copy_m1988217701 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method);
// System.Type System.Object::GetType()
extern "C" IL2CPP_METHOD_ATTR Type_t * Object_GetType_m88164663 (RuntimeObject * __this, const RuntimeMethod* method);
// System.String SR::Format(System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR String_t* SR_Format_m1749913990 (RuntimeObject * __this /* static, unused */, String_t* ___resourceFormat0, RuntimeObject * ___p11, const RuntimeMethod* method);
// System.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_m2631077112 (RuntimeObject * __this /* static, unused */, int32_t ___h10, int32_t ___h21, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor()
extern "C" IL2CPP_METHOD_ATTR void StringBuilder__ctor_m3121283359 (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1965104174 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Object)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1640838743 (StringBuilder_t * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m2383614642 (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_m2732473132 (RuntimeObject * __this /* static, unused */, int32_t ___h10, int32_t ___h21, int32_t ___h32, const RuntimeMethod* method);
// System.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_m2815395037 (RuntimeObject * __this /* static, unused */, int32_t ___h10, int32_t ___h21, int32_t ___h32, int32_t ___h43, const RuntimeMethod* method);
// System.Void UnityEngine.Events.BaseInvokableCall::.ctor(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR void BaseInvokableCall__ctor_m2110966014 (BaseInvokableCall_t2703961024 * __this, RuntimeObject * ___target0, MethodInfo_t * ___function1, const RuntimeMethod* method);
// System.Delegate UnityEngineInternal.NetFxCoreExtensions::CreateDelegate(System.Reflection.MethodInfo,System.Type,System.Object)
extern "C" IL2CPP_METHOD_ATTR Delegate_t1188392813 * NetFxCoreExtensions_CreateDelegate_m751211712 (RuntimeObject * __this /* static, unused */, MethodInfo_t * ___self0, Type_t * ___delegateType1, RuntimeObject * ___target2, const RuntimeMethod* method);
// System.Void UnityEngine.Events.BaseInvokableCall::.ctor()
extern "C" IL2CPP_METHOD_ATTR void BaseInvokableCall__ctor_m768115019 (BaseInvokableCall_t2703961024 * __this, const RuntimeMethod* method);
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
extern "C" IL2CPP_METHOD_ATTR Delegate_t1188392813 * Delegate_Combine_m1859655160 (RuntimeObject * __this /* static, unused */, Delegate_t1188392813 * p0, Delegate_t1188392813 * p1, const RuntimeMethod* method);
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
extern "C" IL2CPP_METHOD_ATTR Delegate_t1188392813 * Delegate_Remove_m334097152 (RuntimeObject * __this /* static, unused */, Delegate_t1188392813 * p0, Delegate_t1188392813 * p1, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1312628991 (ArgumentException_t132251570 * __this, String_t* p0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Events.BaseInvokableCall::AllowInvoke(System.Delegate)
extern "C" IL2CPP_METHOD_ATTR bool BaseInvokableCall_AllowInvoke_m878393606 (RuntimeObject * __this /* static, unused */, Delegate_t1188392813 * ___delegate0, const RuntimeMethod* method);
// System.Object System.Delegate::get_Target()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Delegate_get_Target_m2361978888 (Delegate_t1188392813 * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo UnityEngineInternal.NetFxCoreExtensions::GetMethodInfo(System.Delegate)
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * NetFxCoreExtensions_GetMethodInfo_m444570327 (RuntimeObject * __this /* static, unused */, Delegate_t1188392813 * ___self0, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEventBase::.ctor()
extern "C" IL2CPP_METHOD_ATTR void UnityEventBase__ctor_m1851535676 (UnityEventBase_t3960448221 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEventBase::AddCall(UnityEngine.Events.BaseInvokableCall)
extern "C" IL2CPP_METHOD_ATTR void UnityEventBase_AddCall_m3539965410 (UnityEventBase_t3960448221 * __this, BaseInvokableCall_t2703961024 * ___call0, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEventBase::RemoveListener(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR void UnityEventBase_RemoveListener_m3326364145 (UnityEventBase_t3960448221 * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method);
// System.Reflection.MethodInfo UnityEngine.Events.UnityEventBase::GetValidMethodInfo(System.Object,System.String,System.Type[])
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * UnityEventBase_GetValidMethodInfo_m3989987635 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___obj0, String_t* ___functionName1, TypeU5BU5D_t3940880105* ___argumentTypes2, const RuntimeMethod* method);
// System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall> UnityEngine.Events.UnityEventBase::PrepareInvoke()
extern "C" IL2CPP_METHOD_ATTR List_1_t4176035766 * UnityEventBase_PrepareInvoke_m1785382128 (UnityEventBase_t3960448221 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Item(System.Int32)
#define List_1_get_Item_m4156046467(__this, p0, method) (( BaseInvokableCall_t2703961024 * (*) (List_1_t4176035766 *, int32_t, const RuntimeMethod*))List_1_get_Item_m1328026504_gshared)(__this, p0, method)
// System.Void UnityEngine.Events.InvokableCall::Invoke()
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_Invoke_m1437964737 (InvokableCall_t832123510 * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Count()
#define List_1_get_Count_m1245201994(__this, method) (( int32_t (*) (List_1_t4176035766 *, const RuntimeMethod*))List_1_get_Count_m2934127733_gshared)(__this, method)
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<System.SByte>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m1575790110_gshared (Predicate_1_t2494871786 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.SByte>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m2833750072_gshared (Predicate_1_t2494871786 * __this, int8_t ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, int8_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, int8_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, int8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, int8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, int8_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, int8_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, int8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, int8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, int8_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.SByte>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m2047764670_gshared (Predicate_1_t2494871786 * __this, int8_t ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m2047764670_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(SByte_t1669577662_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<System.SByte>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m2350983538_gshared (Predicate_1_t2494871786 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<System.Single>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m1686902539_gshared (Predicate_1_t2222560898 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Single>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m3937700966_gshared (Predicate_1_t2222560898 * __this, float ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, float >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, float >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, float >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, float >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, float, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Single>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m3036530003_gshared (Predicate_1_t2222560898 * __this, float ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m3036530003_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Single_t1397266774_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<System.Single>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m240429205_gshared (Predicate_1_t2222560898 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<System.Text.RegularExpressions.RegexOptions>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m2773791180_gshared (Predicate_1_t918139719 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Text.RegularExpressions.RegexOptions>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m624059669_gshared (Predicate_1_t918139719 * __this, int32_t ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Text.RegularExpressions.RegexOptions>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m1424414618_gshared (Predicate_1_t918139719 * __this, int32_t ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m1424414618_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(RegexOptions_t92845595_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<System.Text.RegularExpressions.RegexOptions>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m3007205752_gshared (Predicate_1_t918139719 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<System.TimeSpan>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m4124307834_gshared (Predicate_1_t1706453373 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.TimeSpan>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m250867629_gshared (Predicate_1_t1706453373 * __this, TimeSpan_t881159249 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, TimeSpan_t881159249 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, TimeSpan_t881159249 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, TimeSpan_t881159249 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, TimeSpan_t881159249 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, TimeSpan_t881159249 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, TimeSpan_t881159249 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, TimeSpan_t881159249 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, TimeSpan_t881159249 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, TimeSpan_t881159249 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, TimeSpan_t881159249 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, TimeSpan_t881159249 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, TimeSpan_t881159249 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, TimeSpan_t881159249 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, TimeSpan_t881159249 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.TimeSpan>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m1328455528_gshared (Predicate_1_t1706453373 * __this, TimeSpan_t881159249 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m1328455528_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(TimeSpan_t881159249_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<System.TimeSpan>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m2921201893_gshared (Predicate_1_t1706453373 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<System.UInt16>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m1798610970_gshared (Predicate_1_t3003019082 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.UInt16>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m2694436271_gshared (Predicate_1_t3003019082 * __this, uint16_t ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, uint16_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, uint16_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, uint16_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, uint16_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, uint16_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, uint16_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.UInt16>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m512406760_gshared (Predicate_1_t3003019082 * __this, uint16_t ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m512406760_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt16_t2177724958_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<System.UInt16>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m4230120380_gshared (Predicate_1_t3003019082 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<System.UInt32>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m4260108586_gshared (Predicate_1_t3385356102 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.UInt32>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m3538192751_gshared (Predicate_1_t3385356102 * __this, uint32_t ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, uint32_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, uint32_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, uint32_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, uint32_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.UInt32>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m590569724_gshared (Predicate_1_t3385356102 * __this, uint32_t ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m590569724_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt32_t2560061978_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<System.UInt32>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m741822205_gshared (Predicate_1_t3385356102 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<System.UInt64>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3447937264_gshared (Predicate_1_t664366920 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.UInt64>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m722954651_gshared (Predicate_1_t664366920 * __this, uint64_t ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, uint64_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, uint64_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, uint64_t >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, uint64_t >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.UInt64>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m9087083_gshared (Predicate_1_t664366920 * __this, uint64_t ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m9087083_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UInt64_t4134040092_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<System.UInt64>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m48497062_gshared (Predicate_1_t664366920 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<System.Xml.Schema.RangePositionInfo>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m183142490_gshared (Predicate_1_t1415263060 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Xml.Schema.RangePositionInfo>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m2980495692_gshared (Predicate_1_t1415263060 * __this, RangePositionInfo_t589968936 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, RangePositionInfo_t589968936 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, RangePositionInfo_t589968936 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, RangePositionInfo_t589968936 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, RangePositionInfo_t589968936 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, RangePositionInfo_t589968936 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, RangePositionInfo_t589968936 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, RangePositionInfo_t589968936 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, RangePositionInfo_t589968936 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, RangePositionInfo_t589968936 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, RangePositionInfo_t589968936 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, RangePositionInfo_t589968936 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, RangePositionInfo_t589968936 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, RangePositionInfo_t589968936 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, RangePositionInfo_t589968936 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Xml.Schema.RangePositionInfo>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m4289563046_gshared (Predicate_1_t1415263060 * __this, RangePositionInfo_t589968936 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m4289563046_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(RangePositionInfo_t589968936_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<System.Xml.Schema.RangePositionInfo>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m1489139454_gshared (Predicate_1_t1415263060 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m2181215777_gshared (Predicate_1_t4169971095 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m3315808069_gshared (Predicate_1_t4169971095 * __this, XmlSchemaObjectEntry_t3344676971 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, XmlSchemaObjectEntry_t3344676971 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, XmlSchemaObjectEntry_t3344676971 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, XmlSchemaObjectEntry_t3344676971 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, XmlSchemaObjectEntry_t3344676971 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, XmlSchemaObjectEntry_t3344676971 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, XmlSchemaObjectEntry_t3344676971 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, XmlSchemaObjectEntry_t3344676971 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, XmlSchemaObjectEntry_t3344676971 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, XmlSchemaObjectEntry_t3344676971 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, XmlSchemaObjectEntry_t3344676971 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, XmlSchemaObjectEntry_t3344676971 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, XmlSchemaObjectEntry_t3344676971 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, XmlSchemaObjectEntry_t3344676971 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, XmlSchemaObjectEntry_t3344676971 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m1680620975_gshared (Predicate_1_t4169971095 * __this, XmlSchemaObjectEntry_t3344676971 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m1680620975_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(XmlSchemaObjectEntry_t3344676971_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m3830389613_gshared (Predicate_1_t4169971095 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m1646720565_gshared (Predicate_1_t2411271955 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m851618236_gshared (Predicate_1_t2411271955 * __this, OrderBlock_t1585977831 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, OrderBlock_t1585977831 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, OrderBlock_t1585977831 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, OrderBlock_t1585977831 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, OrderBlock_t1585977831 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, OrderBlock_t1585977831 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, OrderBlock_t1585977831 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, OrderBlock_t1585977831 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, OrderBlock_t1585977831 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, OrderBlock_t1585977831 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, OrderBlock_t1585977831 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, OrderBlock_t1585977831 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, OrderBlock_t1585977831 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, OrderBlock_t1585977831 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, OrderBlock_t1585977831 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m2845045805_gshared (Predicate_1_t2411271955 * __this, OrderBlock_t1585977831 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m2845045805_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(OrderBlock_t1585977831_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m2307501513_gshared (Predicate_1_t2411271955 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<UnityEngine.Color32>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m2151654926_gshared (Predicate_1_t3425795416 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.Color32>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m1828171037_gshared (Predicate_1_t3425795416 * __this, Color32_t2600501292 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, Color32_t2600501292 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, Color32_t2600501292 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Color32_t2600501292 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Color32_t2600501292 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Color32_t2600501292 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Color32_t2600501292 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, Color32_t2600501292 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, Color32_t2600501292 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, Color32_t2600501292 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Color32_t2600501292 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Color32_t2600501292 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Color32_t2600501292 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Color32_t2600501292 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, Color32_t2600501292 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.Color32>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m265405911_gshared (Predicate_1_t3425795416 * __this, Color32_t2600501292 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m265405911_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Color32_t2600501292_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<UnityEngine.Color32>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m3987519925_gshared (Predicate_1_t3425795416 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m4189146159_gshared (Predicate_1_t4185600973 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m2887746805_gshared (Predicate_1_t4185600973 * __this, RaycastResult_t3360306849 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, RaycastResult_t3360306849 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, RaycastResult_t3360306849 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, RaycastResult_t3360306849 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, RaycastResult_t3360306849 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, RaycastResult_t3360306849 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, RaycastResult_t3360306849 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, RaycastResult_t3360306849 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, RaycastResult_t3360306849 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, RaycastResult_t3360306849 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, RaycastResult_t3360306849 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, RaycastResult_t3360306849 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, RaycastResult_t3360306849 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, RaycastResult_t3360306849 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, RaycastResult_t3360306849 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m3823292596_gshared (Predicate_1_t4185600973 * __this, RaycastResult_t3360306849 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m3823292596_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(RaycastResult_t3360306849_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m152895840_gshared (Predicate_1_t4185600973 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<UnityEngine.UICharInfo>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m102233112_gshared (Predicate_1_t900795230 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.UICharInfo>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m4087887637_gshared (Predicate_1_t900795230 * __this, UICharInfo_t75501106 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, UICharInfo_t75501106 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, UICharInfo_t75501106 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, UICharInfo_t75501106 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, UICharInfo_t75501106 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, UICharInfo_t75501106 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, UICharInfo_t75501106 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, UICharInfo_t75501106 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, UICharInfo_t75501106 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, UICharInfo_t75501106 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, UICharInfo_t75501106 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, UICharInfo_t75501106 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, UICharInfo_t75501106 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, UICharInfo_t75501106 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, UICharInfo_t75501106 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.UICharInfo>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m3768208683_gshared (Predicate_1_t900795230 * __this, UICharInfo_t75501106 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m3768208683_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UICharInfo_t75501106_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<UnityEngine.UICharInfo>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m1883221632_gshared (Predicate_1_t900795230 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<UnityEngine.UILineInfo>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m1087067902_gshared (Predicate_1_t725593638 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.UILineInfo>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m2932303859_gshared (Predicate_1_t725593638 * __this, UILineInfo_t4195266810 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, UILineInfo_t4195266810 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, UILineInfo_t4195266810 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, UILineInfo_t4195266810 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, UILineInfo_t4195266810 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, UILineInfo_t4195266810 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, UILineInfo_t4195266810 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, UILineInfo_t4195266810 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, UILineInfo_t4195266810 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, UILineInfo_t4195266810 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, UILineInfo_t4195266810 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, UILineInfo_t4195266810 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, UILineInfo_t4195266810 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, UILineInfo_t4195266810 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, UILineInfo_t4195266810 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.UILineInfo>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m3719399882_gshared (Predicate_1_t725593638 * __this, UILineInfo_t4195266810 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m3719399882_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UILineInfo_t4195266810_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<UnityEngine.UILineInfo>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m2572100896_gshared (Predicate_1_t725593638 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<UnityEngine.UIVertex>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m2717715890_gshared (Predicate_1_t587824433 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.UIVertex>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m2389850270_gshared (Predicate_1_t587824433 * __this, UIVertex_t4057497605 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, UIVertex_t4057497605 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, UIVertex_t4057497605 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, UIVertex_t4057497605 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, UIVertex_t4057497605 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, UIVertex_t4057497605 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, UIVertex_t4057497605 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, UIVertex_t4057497605 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, UIVertex_t4057497605 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, UIVertex_t4057497605 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, UIVertex_t4057497605 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, UIVertex_t4057497605 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, UIVertex_t4057497605 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, UIVertex_t4057497605 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, UIVertex_t4057497605 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.UIVertex>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m3323348752_gshared (Predicate_1_t587824433 * __this, UIVertex_t4057497605 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m3323348752_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(UIVertex_t4057497605_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<UnityEngine.UIVertex>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m3558323376_gshared (Predicate_1_t587824433 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m2000726592_gshared (Predicate_1_t2981523647 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.Vector2>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m2758354419_gshared (Predicate_1_t2981523647 * __this, Vector2_t2156229523 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, Vector2_t2156229523 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, Vector2_t2156229523 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Vector2_t2156229523 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Vector2_t2156229523 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Vector2_t2156229523 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Vector2_t2156229523 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, Vector2_t2156229523 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, Vector2_t2156229523 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, Vector2_t2156229523 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Vector2_t2156229523 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Vector2_t2156229523 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Vector2_t2156229523 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Vector2_t2156229523 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, Vector2_t2156229523 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.Vector2>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m2800560563_gshared (Predicate_1_t2981523647 * __this, Vector2_t2156229523 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m2800560563_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Vector2_t2156229523_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<UnityEngine.Vector2>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m4041069564_gshared (Predicate_1_t2981523647 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<UnityEngine.Vector3>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m4128261089_gshared (Predicate_1_t252640292 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.Vector3>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m1229727214_gshared (Predicate_1_t252640292 * __this, Vector3_t3722313464 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, Vector3_t3722313464 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, Vector3_t3722313464 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Vector3_t3722313464 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Vector3_t3722313464 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Vector3_t3722313464 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Vector3_t3722313464 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, Vector3_t3722313464 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, Vector3_t3722313464 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, Vector3_t3722313464 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Vector3_t3722313464 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Vector3_t3722313464 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Vector3_t3722313464 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Vector3_t3722313464 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, Vector3_t3722313464 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.Vector3>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m1281248445_gshared (Predicate_1_t252640292 * __this, Vector3_t3722313464 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m1281248445_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Vector3_t3722313464_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<UnityEngine.Vector3>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m4121290523_gshared (Predicate_1_t252640292 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Predicate`1<UnityEngine.Vector4>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3829092036_gshared (Predicate_1_t4144323061 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Boolean System.Predicate`1<UnityEngine.Vector4>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m759375343_gshared (Predicate_1_t4144323061 * __this, Vector4_t3319028937 ___obj0, const RuntimeMethod* method)
{
bool result = false;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, Vector4_t3319028937 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, Vector4_t3319028937 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Vector4_t3319028937 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Vector4_t3319028937 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Vector4_t3319028937 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Vector4_t3319028937 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, Vector4_t3319028937 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef bool (*FunctionPointerType) (RuntimeObject *, Vector4_t3319028937 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ___obj0, targetMethod);
}
}
else
{
// closed
{
typedef bool (*FunctionPointerType) (RuntimeObject *, void*, Vector4_t3319028937 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___obj0, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< bool, Vector4_t3319028937 >::Invoke(targetMethod, targetThis, ___obj0);
else
result = GenericVirtFuncInvoker1< bool, Vector4_t3319028937 >::Invoke(targetMethod, targetThis, ___obj0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< bool, Vector4_t3319028937 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0);
else
result = VirtFuncInvoker1< bool, Vector4_t3319028937 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0);
}
}
else
{
typedef bool (*FunctionPointerType) (void*, Vector4_t3319028937 , const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Predicate`1<UnityEngine.Vector4>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m1096326034_gshared (Predicate_1_t4144323061 * __this, Vector4_t3319028937 ___obj0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m1096326034_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Vector4_t3319028937_il2cpp_TypeInfo_var, &___obj0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Boolean System.Predicate`1<UnityEngine.Vector4>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m3599005370_gshared (Predicate_1_t4144323061 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(bool*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Getter_2__ctor_m122643074_gshared (Getter_2_t2063956538 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// R System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Getter_2_Invoke_m3667195478_gshared (Getter_2_t2063956538 * __this, RuntimeObject * ____this0, const RuntimeMethod* method)
{
RuntimeObject * result = NULL;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ____this0, targetMethod);
}
}
else
{
// closed
{
typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ____this0, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ____this0);
else
result = GenericVirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ____this0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ____this0);
else
result = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ____this0);
}
}
else
{
typedef RuntimeObject * (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ____this0, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ____this0);
else
result = GenericVirtFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ____this0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ____this0);
else
result = VirtFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ____this0);
}
}
else
{
typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(____this0, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, ____this0, targetMethod);
}
}
else
{
// closed
{
typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ____this0, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ____this0);
else
result = GenericVirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ____this0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ____this0);
else
result = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ____this0);
}
}
else
{
typedef RuntimeObject * (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ____this0, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ____this0);
else
result = GenericVirtFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ____this0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ____this0);
else
result = VirtFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ____this0);
}
}
else
{
typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(____this0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Getter_2_BeginInvoke_m3421506930_gshared (Getter_2_t2063956538 * __this, RuntimeObject * ____this0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ____this0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// R System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Getter_2_EndInvoke_m491985352_gshared (Getter_2_t2063956538 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (RuntimeObject *)__result;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Reflection.MonoProperty/StaticGetter`1<System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void StaticGetter_1__ctor_m3696559939_gshared (StaticGetter_1_t3872988374 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// R System.Reflection.MonoProperty/StaticGetter`1<System.Object>::Invoke()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * StaticGetter_1_Invoke_m3640162116_gshared (StaticGetter_1_t3872988374 * __this, const RuntimeMethod* method)
{
RuntimeObject * result = NULL;
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 0)
{
// open
{
typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetMethod);
}
}
else
{
// closed
{
typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, void*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, targetThis);
else
result = GenericVirtFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, targetThis);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis);
else
result = VirtFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis);
}
}
else
{
typedef RuntimeObject * (*FunctionPointerType) (void*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 0)
{
// open
{
typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetMethod);
}
}
else
{
// closed
{
typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, void*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, targetThis);
else
result = GenericVirtFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, targetThis);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis);
else
result = VirtFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis);
}
}
else
{
typedef RuntimeObject * (*FunctionPointerType) (void*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Reflection.MonoProperty/StaticGetter`1<System.Object>::BeginInvoke(System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* StaticGetter_1_BeginInvoke_m2666084926_gshared (StaticGetter_1_t3872988374 * __this, AsyncCallback_t3962456242 * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method)
{
void *__d_args[1] = {0};
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);
}
// R System.Reflection.MonoProperty/StaticGetter`1<System.Object>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * StaticGetter_1_EndInvoke_m3076990878_gshared (StaticGetter_1_t3872988374 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (RuntimeObject *)__result;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::Create()
extern "C" IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_t2418262475 AsyncTaskMethodBuilder_1_Create_m3423860640_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2418262475 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(AsyncTaskMethodBuilder_1_t2418262475 ));
AsyncTaskMethodBuilder_1_t2418262475 L_0 = V_0;
return L_0;
}
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m1306928554_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_1 = ___stateMachine0;
AsyncMethodBuilderCore_SetStateMachine_m3928559089((AsyncMethodBuilderCore_t2955600131 *)L_0, (RuntimeObject*)L_1, /*hidden argument*/NULL);
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetStateMachine_m1306928554_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2418262475 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2418262475 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetStateMachine_m1306928554(_thisAdjusted, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t1502828140 * AsyncTaskMethodBuilder_1_get_Task_m1946293888_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, const RuntimeMethod* method)
{
Task_1_t1502828140 * V_0 = NULL;
{
Task_1_t1502828140 * L_0 = (Task_1_t1502828140 *)__this->get_m_task_2();
V_0 = (Task_1_t1502828140 *)L_0;
Task_1_t1502828140 * L_1 = V_0;
if (L_1)
{
goto IL_0017;
}
}
{
Task_1_t1502828140 * L_2 = (Task_1_t1502828140 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
(( void (*) (Task_1_t1502828140 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
Task_1_t1502828140 * L_3 = (Task_1_t1502828140 *)L_2;
V_0 = (Task_1_t1502828140 *)L_3;
__this->set_m_task_2(L_3);
}
IL_0017:
{
Task_1_t1502828140 * L_4 = V_0;
return L_4;
}
}
extern "C" Task_1_t1502828140 * AsyncTaskMethodBuilder_1_get_Task_m1946293888_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2418262475 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2418262475 *>(__this + 1);
return AsyncTaskMethodBuilder_1_get_Task_m1946293888(_thisAdjusted, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m772896578_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, bool ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetResult_m772896578_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_1_t1502828140 * V_0 = NULL;
{
Task_1_t1502828140 * L_0 = (Task_1_t1502828140 *)__this->get_m_task_2();
V_0 = (Task_1_t1502828140 *)L_0;
Task_1_t1502828140 * L_1 = V_0;
if (L_1)
{
goto IL_0018;
}
}
{
bool L_2 = ___result0;
Task_1_t1502828140 * L_3 = AsyncTaskMethodBuilder_1_GetTaskForResult_m3290519007((AsyncTaskMethodBuilder_1_t2418262475 *)__this, (bool)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
__this->set_m_task_2(L_3);
return;
}
IL_0018:
{
bool L_4 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_002c;
}
}
{
Task_1_t1502828140 * L_5 = V_0;
NullCheck((Task_t3187275312 *)L_5);
int32_t L_6 = Task_get_Id_m119004446((Task_t3187275312 *)L_5, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_6, (int32_t)1, /*hidden argument*/NULL);
}
IL_002c:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_7 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_7)
{
goto IL_003e;
}
}
{
Task_1_t1502828140 * L_8 = V_0;
NullCheck((Task_t3187275312 *)L_8);
int32_t L_9 = Task_get_Id_m119004446((Task_t3187275312 *)L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_9, /*hidden argument*/NULL);
}
IL_003e:
{
Task_1_t1502828140 * L_10 = V_0;
bool L_11 = ___result0;
NullCheck((Task_1_t1502828140 *)L_10);
bool L_12 = (( bool (*) (Task_1_t1502828140 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t1502828140 *)L_10, (bool)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
if (L_12)
{
goto IL_0057;
}
}
{
String_t* L_13 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral4180560538, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_14 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_14, (String_t*)L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14,AsyncTaskMethodBuilder_1_SetResult_m772896578_RuntimeMethod_var);
}
IL_0057:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetResult_m772896578_AdjustorThunk (RuntimeObject * __this, bool ___result0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2418262475 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2418262475 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetResult_m772896578(_thisAdjusted, ___result0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m4213282962_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, Task_1_t1502828140 * ___completedTask0, const RuntimeMethod* method)
{
bool V_0 = false;
{
Task_1_t1502828140 * L_0 = (Task_1_t1502828140 *)__this->get_m_task_2();
if (L_0)
{
goto IL_0010;
}
}
{
Task_1_t1502828140 * L_1 = ___completedTask0;
__this->set_m_task_2(L_1);
return;
}
IL_0010:
{
il2cpp_codegen_initobj((&V_0), sizeof(bool));
bool L_2 = V_0;
AsyncTaskMethodBuilder_1_SetResult_m772896578((AsyncTaskMethodBuilder_1_t2418262475 *)__this, (bool)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetResult_m4213282962_AdjustorThunk (RuntimeObject * __this, Task_1_t1502828140 * ___completedTask0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2418262475 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2418262475 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetResult_m4213282962(_thisAdjusted, ___completedTask0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m3066925186_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, Exception_t * ___exception0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetException_m3066925186_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_1_t1502828140 * V_0 = NULL;
OperationCanceledException_t926488448 * V_1 = NULL;
bool G_B7_0 = false;
{
Exception_t * L_0 = ___exception0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2618865335, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,AsyncTaskMethodBuilder_1_SetException_m3066925186_RuntimeMethod_var);
}
IL_000e:
{
Task_1_t1502828140 * L_2 = (Task_1_t1502828140 *)__this->get_m_task_2();
V_0 = (Task_1_t1502828140 *)L_2;
Task_1_t1502828140 * L_3 = V_0;
if (L_3)
{
goto IL_001f;
}
}
{
Task_1_t1502828140 * L_4 = AsyncTaskMethodBuilder_1_get_Task_m1946293888((AsyncTaskMethodBuilder_1_t2418262475 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
V_0 = (Task_1_t1502828140 *)L_4;
}
IL_001f:
{
Exception_t * L_5 = ___exception0;
V_1 = (OperationCanceledException_t926488448 *)((OperationCanceledException_t926488448 *)IsInst((RuntimeObject*)L_5, OperationCanceledException_t926488448_il2cpp_TypeInfo_var));
OperationCanceledException_t926488448 * L_6 = V_1;
if (L_6)
{
goto IL_0032;
}
}
{
Task_1_t1502828140 * L_7 = V_0;
Exception_t * L_8 = ___exception0;
NullCheck((Task_1_t1502828140 *)L_7);
bool L_9 = (( bool (*) (Task_1_t1502828140 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 6)->methodPointer)((Task_1_t1502828140 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 6));
G_B7_0 = L_9;
goto IL_003f;
}
IL_0032:
{
Task_1_t1502828140 * L_10 = V_0;
OperationCanceledException_t926488448 * L_11 = V_1;
NullCheck((OperationCanceledException_t926488448 *)L_11);
CancellationToken_t784455623 L_12 = OperationCanceledException_get_CancellationToken_m1943835608((OperationCanceledException_t926488448 *)L_11, /*hidden argument*/NULL);
OperationCanceledException_t926488448 * L_13 = V_1;
NullCheck((Task_1_t1502828140 *)L_10);
bool L_14 = (( bool (*) (Task_1_t1502828140 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)->methodPointer)((Task_1_t1502828140 *)L_10, (CancellationToken_t784455623 )L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7));
G_B7_0 = L_14;
}
IL_003f:
{
if (G_B7_0)
{
goto IL_0051;
}
}
{
String_t* L_15 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral4180560538, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_16 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_16, (String_t*)L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16,AsyncTaskMethodBuilder_1_SetException_m3066925186_RuntimeMethod_var);
}
IL_0051:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetException_m3066925186_AdjustorThunk (RuntimeObject * __this, Exception_t * ___exception0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2418262475 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2418262475 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetException_m3066925186(_thisAdjusted, ___exception0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::GetTaskForResult(TResult)
extern "C" IL2CPP_METHOD_ATTR Task_1_t1502828140 * AsyncTaskMethodBuilder_1_GetTaskForResult_m3290519007_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, bool ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_GetTaskForResult_m3290519007_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
Task_1_t1502828140 * G_B5_0 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(bool));
}
{
RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (Boolean_t97287965_0_0_0_var) };
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
bool L_5 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_004d;
}
}
{
bool L_6 = ___result0;
bool L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_7);
if (((*(bool*)((bool*)UnBox(L_8, Boolean_t97287965_il2cpp_TypeInfo_var)))))
{
goto IL_0042;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t1502828140 * L_9 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_FalseTask_1();
G_B5_0 = L_9;
goto IL_0047;
}
IL_0042:
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t1502828140 * L_10 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_TrueTask_0();
G_B5_0 = L_10;
}
IL_0047:
{
Task_1_t1502828140 * L_11 = (( Task_1_t1502828140 * (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)G_B5_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
return L_11;
}
IL_004d:
{
RuntimeTypeHandle_t3027515415 L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_12, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_14 = { reinterpret_cast<intptr_t> (Int32_t2950945753_0_0_0_var) };
Type_t * L_15 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_0092;
}
}
{
bool L_17 = ___result0;
bool L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_18);
V_1 = (int32_t)((*(int32_t*)((int32_t*)UnBox(L_19, Int32_t2950945753_il2cpp_TypeInfo_var))));
int32_t L_20 = V_1;
if ((((int32_t)L_20) >= ((int32_t)((int32_t)9))))
{
goto IL_028e;
}
}
{
int32_t L_21 = V_1;
if ((((int32_t)L_21) < ((int32_t)(-1))))
{
goto IL_028e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1U5BU5D_t2104922937* L_22 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_Int32Tasks_2();
int32_t L_23 = V_1;
NullCheck(L_22);
int32_t L_24 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)(-1)));
Task_1_t61518632 * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
Task_1_t1502828140 * L_26 = (( Task_1_t1502828140 * (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
return L_26;
}
IL_0092:
{
RuntimeTypeHandle_t3027515415 L_27 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_28 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_27, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_29 = { reinterpret_cast<intptr_t> (UInt32_t2560061978_0_0_0_var) };
Type_t * L_30 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_29, /*hidden argument*/NULL);
bool L_31 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_28, (Type_t *)L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00bd;
}
}
{
bool L_32 = ___result0;
bool L_33 = L_32;
RuntimeObject * L_34 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_33);
if (!((*(uint32_t*)((uint32_t*)UnBox(L_34, UInt32_t2560061978_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_00bd:
{
RuntimeTypeHandle_t3027515415 L_35 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_36 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_35, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_37 = { reinterpret_cast<intptr_t> (Byte_t1134296376_0_0_0_var) };
Type_t * L_38 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_37, /*hidden argument*/NULL);
bool L_39 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_36, (Type_t *)L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_00e8;
}
}
{
bool L_40 = ___result0;
bool L_41 = L_40;
RuntimeObject * L_42 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_41);
if (!((*(uint8_t*)((uint8_t*)UnBox(L_42, Byte_t1134296376_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_00e8:
{
RuntimeTypeHandle_t3027515415 L_43 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_44 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_43, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_45 = { reinterpret_cast<intptr_t> (SByte_t1669577662_0_0_0_var) };
Type_t * L_46 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_45, /*hidden argument*/NULL);
bool L_47 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_44, (Type_t *)L_46, /*hidden argument*/NULL);
if (!L_47)
{
goto IL_0113;
}
}
{
bool L_48 = ___result0;
bool L_49 = L_48;
RuntimeObject * L_50 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_49);
if (!((*(int8_t*)((int8_t*)UnBox(L_50, SByte_t1669577662_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_0113:
{
RuntimeTypeHandle_t3027515415 L_51 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_52 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_51, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_53 = { reinterpret_cast<intptr_t> (Char_t3634460470_0_0_0_var) };
Type_t * L_54 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_53, /*hidden argument*/NULL);
bool L_55 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_52, (Type_t *)L_54, /*hidden argument*/NULL);
if (!L_55)
{
goto IL_013e;
}
}
{
bool L_56 = ___result0;
bool L_57 = L_56;
RuntimeObject * L_58 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_57);
if (!((*(Il2CppChar*)((Il2CppChar*)UnBox(L_58, Char_t3634460470_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_013e:
{
RuntimeTypeHandle_t3027515415 L_59 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_60 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_59, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_61 = { reinterpret_cast<intptr_t> (Decimal_t2948259380_0_0_0_var) };
Type_t * L_62 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_61, /*hidden argument*/NULL);
bool L_63 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_60, (Type_t *)L_62, /*hidden argument*/NULL);
if (!L_63)
{
goto IL_0173;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_64 = ((Decimal_t2948259380_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t2948259380_il2cpp_TypeInfo_var))->get_Zero_7();
bool L_65 = ___result0;
bool L_66 = L_65;
RuntimeObject * L_67 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_66);
bool L_68 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, (Decimal_t2948259380 )L_64, (Decimal_t2948259380 )((*(Decimal_t2948259380 *)((Decimal_t2948259380 *)UnBox(L_67, Decimal_t2948259380_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (L_68)
{
goto IL_027a;
}
}
IL_0173:
{
RuntimeTypeHandle_t3027515415 L_69 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_70 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_69, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_71 = { reinterpret_cast<intptr_t> (Int64_t3736567304_0_0_0_var) };
Type_t * L_72 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_71, /*hidden argument*/NULL);
bool L_73 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_70, (Type_t *)L_72, /*hidden argument*/NULL);
if (!L_73)
{
goto IL_019e;
}
}
{
bool L_74 = ___result0;
bool L_75 = L_74;
RuntimeObject * L_76 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_75);
if (!((*(int64_t*)((int64_t*)UnBox(L_76, Int64_t3736567304_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_019e:
{
RuntimeTypeHandle_t3027515415 L_77 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_78 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_77, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_79 = { reinterpret_cast<intptr_t> (UInt64_t4134040092_0_0_0_var) };
Type_t * L_80 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_79, /*hidden argument*/NULL);
bool L_81 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_78, (Type_t *)L_80, /*hidden argument*/NULL);
if (!L_81)
{
goto IL_01c9;
}
}
{
bool L_82 = ___result0;
bool L_83 = L_82;
RuntimeObject * L_84 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_83);
if (!((*(uint64_t*)((uint64_t*)UnBox(L_84, UInt64_t4134040092_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_01c9:
{
RuntimeTypeHandle_t3027515415 L_85 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_86 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_85, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_87 = { reinterpret_cast<intptr_t> (Int16_t2552820387_0_0_0_var) };
Type_t * L_88 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_87, /*hidden argument*/NULL);
bool L_89 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_86, (Type_t *)L_88, /*hidden argument*/NULL);
if (!L_89)
{
goto IL_01f4;
}
}
{
bool L_90 = ___result0;
bool L_91 = L_90;
RuntimeObject * L_92 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_91);
if (!((*(int16_t*)((int16_t*)UnBox(L_92, Int16_t2552820387_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_01f4:
{
RuntimeTypeHandle_t3027515415 L_93 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_94 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_93, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_95 = { reinterpret_cast<intptr_t> (UInt16_t2177724958_0_0_0_var) };
Type_t * L_96 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_95, /*hidden argument*/NULL);
bool L_97 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_94, (Type_t *)L_96, /*hidden argument*/NULL);
if (!L_97)
{
goto IL_021c;
}
}
{
bool L_98 = ___result0;
bool L_99 = L_98;
RuntimeObject * L_100 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_99);
if (!((*(uint16_t*)((uint16_t*)UnBox(L_100, UInt16_t2177724958_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_021c:
{
RuntimeTypeHandle_t3027515415 L_101 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_102 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_101, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_103 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
Type_t * L_104 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_103, /*hidden argument*/NULL);
bool L_105 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_102, (Type_t *)L_104, /*hidden argument*/NULL);
if (!L_105)
{
goto IL_024b;
}
}
{
bool L_106 = ___result0;
bool L_107 = L_106;
RuntimeObject * L_108 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_107);
bool L_109 = IntPtr_op_Equality_m408849716(NULL /*static, unused*/, (intptr_t)(((intptr_t)0)), (intptr_t)((*(intptr_t*)((intptr_t*)UnBox(L_108, IntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (L_109)
{
goto IL_027a;
}
}
IL_024b:
{
RuntimeTypeHandle_t3027515415 L_110 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_111 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_110, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_112 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
Type_t * L_113 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_112, /*hidden argument*/NULL);
bool L_114 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_111, (Type_t *)L_113, /*hidden argument*/NULL);
if (!L_114)
{
goto IL_028e;
}
}
{
bool L_115 = ___result0;
bool L_116 = L_115;
RuntimeObject * L_117 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_116);
IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var);
bool L_118 = UIntPtr_op_Equality_m2241921281(NULL /*static, unused*/, (uintptr_t)(((uintptr_t)0)), (uintptr_t)((*(uintptr_t*)((uintptr_t*)UnBox(L_117, UIntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (!L_118)
{
goto IL_028e;
}
}
IL_027a:
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
Task_1_t1502828140 * L_119 = ((AsyncTaskMethodBuilder_1_t2418262475_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->get_s_defaultResultTask_0();
return L_119;
}
IL_0280:
{
goto IL_028e;
}
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
Task_1_t1502828140 * L_121 = ((AsyncTaskMethodBuilder_1_t2418262475_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->get_s_defaultResultTask_0();
return L_121;
}
IL_028e:
{
bool L_122 = ___result0;
Task_1_t1502828140 * L_123 = (Task_1_t1502828140 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
(( void (*) (Task_1_t1502828140 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12)->methodPointer)(L_123, (bool)L_122, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12));
return L_123;
}
}
extern "C" Task_1_t1502828140 * AsyncTaskMethodBuilder_1_GetTaskForResult_m3290519007_AdjustorThunk (RuntimeObject * __this, bool ___result0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2418262475 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2418262475 *>(__this + 1);
return AsyncTaskMethodBuilder_1_GetTaskForResult_m3290519007(_thisAdjusted, ___result0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1__cctor_m3976578223_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1__cctor_m3976578223_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
il2cpp_codegen_initobj((&V_0), sizeof(bool));
bool L_0 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t1502828140 * L_1 = (( Task_1_t1502828140 * (*) (RuntimeObject * /* static, unused */, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13)->methodPointer)(NULL /*static, unused*/, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13));
((AsyncTaskMethodBuilder_1_t2418262475_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->set_s_defaultResultTask_0(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Create()
extern "C" IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_t976952967 AsyncTaskMethodBuilder_1_Create_m3003315259_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(AsyncTaskMethodBuilder_1_t976952967 ));
AsyncTaskMethodBuilder_1_t976952967 L_0 = V_0;
return L_0;
}
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m3679186700_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_1 = ___stateMachine0;
AsyncMethodBuilderCore_SetStateMachine_m3928559089((AsyncMethodBuilderCore_t2955600131 *)L_0, (RuntimeObject*)L_1, /*hidden argument*/NULL);
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetStateMachine_m3679186700_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetStateMachine_m3679186700(_thisAdjusted, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t61518632 * AsyncTaskMethodBuilder_1_get_Task_m374009415_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, const RuntimeMethod* method)
{
Task_1_t61518632 * V_0 = NULL;
{
Task_1_t61518632 * L_0 = (Task_1_t61518632 *)__this->get_m_task_2();
V_0 = (Task_1_t61518632 *)L_0;
Task_1_t61518632 * L_1 = V_0;
if (L_1)
{
goto IL_0017;
}
}
{
Task_1_t61518632 * L_2 = (Task_1_t61518632 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
(( void (*) (Task_1_t61518632 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
Task_1_t61518632 * L_3 = (Task_1_t61518632 *)L_2;
V_0 = (Task_1_t61518632 *)L_3;
__this->set_m_task_2(L_3);
}
IL_0017:
{
Task_1_t61518632 * L_4 = V_0;
return L_4;
}
}
extern "C" Task_1_t61518632 * AsyncTaskMethodBuilder_1_get_Task_m374009415_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
return AsyncTaskMethodBuilder_1_get_Task_m374009415(_thisAdjusted, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m341489268_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, int32_t ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetResult_m341489268_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_1_t61518632 * V_0 = NULL;
{
Task_1_t61518632 * L_0 = (Task_1_t61518632 *)__this->get_m_task_2();
V_0 = (Task_1_t61518632 *)L_0;
Task_1_t61518632 * L_1 = V_0;
if (L_1)
{
goto IL_0018;
}
}
{
int32_t L_2 = ___result0;
Task_1_t61518632 * L_3 = AsyncTaskMethodBuilder_1_GetTaskForResult_m390966504((AsyncTaskMethodBuilder_1_t976952967 *)__this, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
__this->set_m_task_2(L_3);
return;
}
IL_0018:
{
bool L_4 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_002c;
}
}
{
Task_1_t61518632 * L_5 = V_0;
NullCheck((Task_t3187275312 *)L_5);
int32_t L_6 = Task_get_Id_m119004446((Task_t3187275312 *)L_5, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_6, (int32_t)1, /*hidden argument*/NULL);
}
IL_002c:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_7 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_7)
{
goto IL_003e;
}
}
{
Task_1_t61518632 * L_8 = V_0;
NullCheck((Task_t3187275312 *)L_8);
int32_t L_9 = Task_get_Id_m119004446((Task_t3187275312 *)L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_9, /*hidden argument*/NULL);
}
IL_003e:
{
Task_1_t61518632 * L_10 = V_0;
int32_t L_11 = ___result0;
NullCheck((Task_1_t61518632 *)L_10);
bool L_12 = (( bool (*) (Task_1_t61518632 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t61518632 *)L_10, (int32_t)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
if (L_12)
{
goto IL_0057;
}
}
{
String_t* L_13 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral4180560538, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_14 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_14, (String_t*)L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14,AsyncTaskMethodBuilder_1_SetResult_m341489268_RuntimeMethod_var);
}
IL_0057:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetResult_m341489268_AdjustorThunk (RuntimeObject * __this, int32_t ___result0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetResult_m341489268(_thisAdjusted, ___result0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m3210745249_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, Task_1_t61518632 * ___completedTask0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Task_1_t61518632 * L_0 = (Task_1_t61518632 *)__this->get_m_task_2();
if (L_0)
{
goto IL_0010;
}
}
{
Task_1_t61518632 * L_1 = ___completedTask0;
__this->set_m_task_2(L_1);
return;
}
IL_0010:
{
il2cpp_codegen_initobj((&V_0), sizeof(int32_t));
int32_t L_2 = V_0;
AsyncTaskMethodBuilder_1_SetResult_m341489268((AsyncTaskMethodBuilder_1_t976952967 *)__this, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetResult_m3210745249_AdjustorThunk (RuntimeObject * __this, Task_1_t61518632 * ___completedTask0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetResult_m3210745249(_thisAdjusted, ___completedTask0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m1162352611_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, Exception_t * ___exception0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetException_m1162352611_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_1_t61518632 * V_0 = NULL;
OperationCanceledException_t926488448 * V_1 = NULL;
bool G_B7_0 = false;
{
Exception_t * L_0 = ___exception0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2618865335, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,AsyncTaskMethodBuilder_1_SetException_m1162352611_RuntimeMethod_var);
}
IL_000e:
{
Task_1_t61518632 * L_2 = (Task_1_t61518632 *)__this->get_m_task_2();
V_0 = (Task_1_t61518632 *)L_2;
Task_1_t61518632 * L_3 = V_0;
if (L_3)
{
goto IL_001f;
}
}
{
Task_1_t61518632 * L_4 = AsyncTaskMethodBuilder_1_get_Task_m374009415((AsyncTaskMethodBuilder_1_t976952967 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
V_0 = (Task_1_t61518632 *)L_4;
}
IL_001f:
{
Exception_t * L_5 = ___exception0;
V_1 = (OperationCanceledException_t926488448 *)((OperationCanceledException_t926488448 *)IsInst((RuntimeObject*)L_5, OperationCanceledException_t926488448_il2cpp_TypeInfo_var));
OperationCanceledException_t926488448 * L_6 = V_1;
if (L_6)
{
goto IL_0032;
}
}
{
Task_1_t61518632 * L_7 = V_0;
Exception_t * L_8 = ___exception0;
NullCheck((Task_1_t61518632 *)L_7);
bool L_9 = (( bool (*) (Task_1_t61518632 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 6)->methodPointer)((Task_1_t61518632 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 6));
G_B7_0 = L_9;
goto IL_003f;
}
IL_0032:
{
Task_1_t61518632 * L_10 = V_0;
OperationCanceledException_t926488448 * L_11 = V_1;
NullCheck((OperationCanceledException_t926488448 *)L_11);
CancellationToken_t784455623 L_12 = OperationCanceledException_get_CancellationToken_m1943835608((OperationCanceledException_t926488448 *)L_11, /*hidden argument*/NULL);
OperationCanceledException_t926488448 * L_13 = V_1;
NullCheck((Task_1_t61518632 *)L_10);
bool L_14 = (( bool (*) (Task_1_t61518632 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)->methodPointer)((Task_1_t61518632 *)L_10, (CancellationToken_t784455623 )L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7));
G_B7_0 = L_14;
}
IL_003f:
{
if (G_B7_0)
{
goto IL_0051;
}
}
{
String_t* L_15 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral4180560538, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_16 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_16, (String_t*)L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16,AsyncTaskMethodBuilder_1_SetException_m1162352611_RuntimeMethod_var);
}
IL_0051:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetException_m1162352611_AdjustorThunk (RuntimeObject * __this, Exception_t * ___exception0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetException_m1162352611(_thisAdjusted, ___exception0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::GetTaskForResult(TResult)
extern "C" IL2CPP_METHOD_ATTR Task_1_t61518632 * AsyncTaskMethodBuilder_1_GetTaskForResult_m390966504_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, int32_t ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_GetTaskForResult_m390966504_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Task_1_t1502828140 * G_B5_0 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(int32_t));
}
{
RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (Boolean_t97287965_0_0_0_var) };
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
bool L_5 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_004d;
}
}
{
int32_t L_6 = ___result0;
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_7);
if (((*(bool*)((bool*)UnBox(L_8, Boolean_t97287965_il2cpp_TypeInfo_var)))))
{
goto IL_0042;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t1502828140 * L_9 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_FalseTask_1();
G_B5_0 = L_9;
goto IL_0047;
}
IL_0042:
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t1502828140 * L_10 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_TrueTask_0();
G_B5_0 = L_10;
}
IL_0047:
{
Task_1_t61518632 * L_11 = (( Task_1_t61518632 * (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)G_B5_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
return L_11;
}
IL_004d:
{
RuntimeTypeHandle_t3027515415 L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_12, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_14 = { reinterpret_cast<intptr_t> (Int32_t2950945753_0_0_0_var) };
Type_t * L_15 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_0092;
}
}
{
int32_t L_17 = ___result0;
int32_t L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_18);
V_1 = (int32_t)((*(int32_t*)((int32_t*)UnBox(L_19, Int32_t2950945753_il2cpp_TypeInfo_var))));
int32_t L_20 = V_1;
if ((((int32_t)L_20) >= ((int32_t)((int32_t)9))))
{
goto IL_028e;
}
}
{
int32_t L_21 = V_1;
if ((((int32_t)L_21) < ((int32_t)(-1))))
{
goto IL_028e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1U5BU5D_t2104922937* L_22 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_Int32Tasks_2();
int32_t L_23 = V_1;
NullCheck(L_22);
int32_t L_24 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)(-1)));
Task_1_t61518632 * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
Task_1_t61518632 * L_26 = (( Task_1_t61518632 * (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
return L_26;
}
IL_0092:
{
RuntimeTypeHandle_t3027515415 L_27 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_28 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_27, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_29 = { reinterpret_cast<intptr_t> (UInt32_t2560061978_0_0_0_var) };
Type_t * L_30 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_29, /*hidden argument*/NULL);
bool L_31 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_28, (Type_t *)L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00bd;
}
}
{
int32_t L_32 = ___result0;
int32_t L_33 = L_32;
RuntimeObject * L_34 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_33);
if (!((*(uint32_t*)((uint32_t*)UnBox(L_34, UInt32_t2560061978_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_00bd:
{
RuntimeTypeHandle_t3027515415 L_35 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_36 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_35, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_37 = { reinterpret_cast<intptr_t> (Byte_t1134296376_0_0_0_var) };
Type_t * L_38 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_37, /*hidden argument*/NULL);
bool L_39 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_36, (Type_t *)L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_00e8;
}
}
{
int32_t L_40 = ___result0;
int32_t L_41 = L_40;
RuntimeObject * L_42 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_41);
if (!((*(uint8_t*)((uint8_t*)UnBox(L_42, Byte_t1134296376_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_00e8:
{
RuntimeTypeHandle_t3027515415 L_43 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_44 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_43, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_45 = { reinterpret_cast<intptr_t> (SByte_t1669577662_0_0_0_var) };
Type_t * L_46 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_45, /*hidden argument*/NULL);
bool L_47 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_44, (Type_t *)L_46, /*hidden argument*/NULL);
if (!L_47)
{
goto IL_0113;
}
}
{
int32_t L_48 = ___result0;
int32_t L_49 = L_48;
RuntimeObject * L_50 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_49);
if (!((*(int8_t*)((int8_t*)UnBox(L_50, SByte_t1669577662_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_0113:
{
RuntimeTypeHandle_t3027515415 L_51 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_52 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_51, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_53 = { reinterpret_cast<intptr_t> (Char_t3634460470_0_0_0_var) };
Type_t * L_54 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_53, /*hidden argument*/NULL);
bool L_55 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_52, (Type_t *)L_54, /*hidden argument*/NULL);
if (!L_55)
{
goto IL_013e;
}
}
{
int32_t L_56 = ___result0;
int32_t L_57 = L_56;
RuntimeObject * L_58 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_57);
if (!((*(Il2CppChar*)((Il2CppChar*)UnBox(L_58, Char_t3634460470_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_013e:
{
RuntimeTypeHandle_t3027515415 L_59 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_60 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_59, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_61 = { reinterpret_cast<intptr_t> (Decimal_t2948259380_0_0_0_var) };
Type_t * L_62 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_61, /*hidden argument*/NULL);
bool L_63 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_60, (Type_t *)L_62, /*hidden argument*/NULL);
if (!L_63)
{
goto IL_0173;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_64 = ((Decimal_t2948259380_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t2948259380_il2cpp_TypeInfo_var))->get_Zero_7();
int32_t L_65 = ___result0;
int32_t L_66 = L_65;
RuntimeObject * L_67 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_66);
bool L_68 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, (Decimal_t2948259380 )L_64, (Decimal_t2948259380 )((*(Decimal_t2948259380 *)((Decimal_t2948259380 *)UnBox(L_67, Decimal_t2948259380_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (L_68)
{
goto IL_027a;
}
}
IL_0173:
{
RuntimeTypeHandle_t3027515415 L_69 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_70 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_69, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_71 = { reinterpret_cast<intptr_t> (Int64_t3736567304_0_0_0_var) };
Type_t * L_72 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_71, /*hidden argument*/NULL);
bool L_73 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_70, (Type_t *)L_72, /*hidden argument*/NULL);
if (!L_73)
{
goto IL_019e;
}
}
{
int32_t L_74 = ___result0;
int32_t L_75 = L_74;
RuntimeObject * L_76 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_75);
if (!((*(int64_t*)((int64_t*)UnBox(L_76, Int64_t3736567304_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_019e:
{
RuntimeTypeHandle_t3027515415 L_77 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_78 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_77, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_79 = { reinterpret_cast<intptr_t> (UInt64_t4134040092_0_0_0_var) };
Type_t * L_80 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_79, /*hidden argument*/NULL);
bool L_81 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_78, (Type_t *)L_80, /*hidden argument*/NULL);
if (!L_81)
{
goto IL_01c9;
}
}
{
int32_t L_82 = ___result0;
int32_t L_83 = L_82;
RuntimeObject * L_84 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_83);
if (!((*(uint64_t*)((uint64_t*)UnBox(L_84, UInt64_t4134040092_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_01c9:
{
RuntimeTypeHandle_t3027515415 L_85 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_86 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_85, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_87 = { reinterpret_cast<intptr_t> (Int16_t2552820387_0_0_0_var) };
Type_t * L_88 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_87, /*hidden argument*/NULL);
bool L_89 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_86, (Type_t *)L_88, /*hidden argument*/NULL);
if (!L_89)
{
goto IL_01f4;
}
}
{
int32_t L_90 = ___result0;
int32_t L_91 = L_90;
RuntimeObject * L_92 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_91);
if (!((*(int16_t*)((int16_t*)UnBox(L_92, Int16_t2552820387_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_01f4:
{
RuntimeTypeHandle_t3027515415 L_93 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_94 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_93, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_95 = { reinterpret_cast<intptr_t> (UInt16_t2177724958_0_0_0_var) };
Type_t * L_96 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_95, /*hidden argument*/NULL);
bool L_97 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_94, (Type_t *)L_96, /*hidden argument*/NULL);
if (!L_97)
{
goto IL_021c;
}
}
{
int32_t L_98 = ___result0;
int32_t L_99 = L_98;
RuntimeObject * L_100 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_99);
if (!((*(uint16_t*)((uint16_t*)UnBox(L_100, UInt16_t2177724958_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_021c:
{
RuntimeTypeHandle_t3027515415 L_101 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_102 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_101, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_103 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
Type_t * L_104 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_103, /*hidden argument*/NULL);
bool L_105 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_102, (Type_t *)L_104, /*hidden argument*/NULL);
if (!L_105)
{
goto IL_024b;
}
}
{
int32_t L_106 = ___result0;
int32_t L_107 = L_106;
RuntimeObject * L_108 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_107);
bool L_109 = IntPtr_op_Equality_m408849716(NULL /*static, unused*/, (intptr_t)(((intptr_t)0)), (intptr_t)((*(intptr_t*)((intptr_t*)UnBox(L_108, IntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (L_109)
{
goto IL_027a;
}
}
IL_024b:
{
RuntimeTypeHandle_t3027515415 L_110 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_111 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_110, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_112 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
Type_t * L_113 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_112, /*hidden argument*/NULL);
bool L_114 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_111, (Type_t *)L_113, /*hidden argument*/NULL);
if (!L_114)
{
goto IL_028e;
}
}
{
int32_t L_115 = ___result0;
int32_t L_116 = L_115;
RuntimeObject * L_117 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_116);
IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var);
bool L_118 = UIntPtr_op_Equality_m2241921281(NULL /*static, unused*/, (uintptr_t)(((uintptr_t)0)), (uintptr_t)((*(uintptr_t*)((uintptr_t*)UnBox(L_117, UIntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (!L_118)
{
goto IL_028e;
}
}
IL_027a:
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
Task_1_t61518632 * L_119 = ((AsyncTaskMethodBuilder_1_t976952967_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->get_s_defaultResultTask_0();
return L_119;
}
IL_0280:
{
goto IL_028e;
}
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
Task_1_t61518632 * L_121 = ((AsyncTaskMethodBuilder_1_t976952967_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->get_s_defaultResultTask_0();
return L_121;
}
IL_028e:
{
int32_t L_122 = ___result0;
Task_1_t61518632 * L_123 = (Task_1_t61518632 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
(( void (*) (Task_1_t61518632 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12)->methodPointer)(L_123, (int32_t)L_122, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12));
return L_123;
}
}
extern "C" Task_1_t61518632 * AsyncTaskMethodBuilder_1_GetTaskForResult_m390966504_AdjustorThunk (RuntimeObject * __this, int32_t ___result0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
return AsyncTaskMethodBuilder_1_GetTaskForResult_m390966504(_thisAdjusted, ___result0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1__cctor_m427407111_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1__cctor_m427407111_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
il2cpp_codegen_initobj((&V_0), sizeof(int32_t));
int32_t L_0 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t61518632 * L_1 = (( Task_1_t61518632 * (*) (RuntimeObject * /* static, unused */, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13)->methodPointer)(NULL /*static, unused*/, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13));
((AsyncTaskMethodBuilder_1_t976952967_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->set_s_defaultResultTask_0(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Create()
extern "C" IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_t1106113378 AsyncTaskMethodBuilder_1_Create_m457539829_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(AsyncTaskMethodBuilder_1_t1106113378 ));
AsyncTaskMethodBuilder_1_t1106113378 L_0 = V_0;
return L_0;
}
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m2671839336_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_1 = ___stateMachine0;
AsyncMethodBuilderCore_SetStateMachine_m3928559089((AsyncMethodBuilderCore_t2955600131 *)L_0, (RuntimeObject*)L_1, /*hidden argument*/NULL);
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetStateMachine_m2671839336_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetStateMachine_m2671839336(_thisAdjusted, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t190679043 * AsyncTaskMethodBuilder_1_get_Task_m317986670_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, const RuntimeMethod* method)
{
Task_1_t190679043 * V_0 = NULL;
{
Task_1_t190679043 * L_0 = (Task_1_t190679043 *)__this->get_m_task_2();
V_0 = (Task_1_t190679043 *)L_0;
Task_1_t190679043 * L_1 = V_0;
if (L_1)
{
goto IL_0017;
}
}
{
Task_1_t190679043 * L_2 = (Task_1_t190679043 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
(( void (*) (Task_1_t190679043 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
Task_1_t190679043 * L_3 = (Task_1_t190679043 *)L_2;
V_0 = (Task_1_t190679043 *)L_3;
__this->set_m_task_2(L_3);
}
IL_0017:
{
Task_1_t190679043 * L_4 = V_0;
return L_4;
}
}
extern "C" Task_1_t190679043 * AsyncTaskMethodBuilder_1_get_Task_m317986670_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
return AsyncTaskMethodBuilder_1_get_Task_m317986670(_thisAdjusted, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m1633157453_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject * ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetResult_m1633157453_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_1_t190679043 * V_0 = NULL;
{
Task_1_t190679043 * L_0 = (Task_1_t190679043 *)__this->get_m_task_2();
V_0 = (Task_1_t190679043 *)L_0;
Task_1_t190679043 * L_1 = V_0;
if (L_1)
{
goto IL_0018;
}
}
{
RuntimeObject * L_2 = ___result0;
Task_1_t190679043 * L_3 = AsyncTaskMethodBuilder_1_GetTaskForResult_m1893715023((AsyncTaskMethodBuilder_1_t1106113378 *)__this, (RuntimeObject *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
__this->set_m_task_2(L_3);
return;
}
IL_0018:
{
bool L_4 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_002c;
}
}
{
Task_1_t190679043 * L_5 = V_0;
NullCheck((Task_t3187275312 *)L_5);
int32_t L_6 = Task_get_Id_m119004446((Task_t3187275312 *)L_5, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_6, (int32_t)1, /*hidden argument*/NULL);
}
IL_002c:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_7 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_7)
{
goto IL_003e;
}
}
{
Task_1_t190679043 * L_8 = V_0;
NullCheck((Task_t3187275312 *)L_8);
int32_t L_9 = Task_get_Id_m119004446((Task_t3187275312 *)L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_9, /*hidden argument*/NULL);
}
IL_003e:
{
Task_1_t190679043 * L_10 = V_0;
RuntimeObject * L_11 = ___result0;
NullCheck((Task_1_t190679043 *)L_10);
bool L_12 = (( bool (*) (Task_1_t190679043 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t190679043 *)L_10, (RuntimeObject *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
if (L_12)
{
goto IL_0057;
}
}
{
String_t* L_13 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral4180560538, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_14 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_14, (String_t*)L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14,AsyncTaskMethodBuilder_1_SetResult_m1633157453_RuntimeMethod_var);
}
IL_0057:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetResult_m1633157453_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___result0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetResult_m1633157453(_thisAdjusted, ___result0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m3252182739_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, Task_1_t190679043 * ___completedTask0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
Task_1_t190679043 * L_0 = (Task_1_t190679043 *)__this->get_m_task_2();
if (L_0)
{
goto IL_0010;
}
}
{
Task_1_t190679043 * L_1 = ___completedTask0;
__this->set_m_task_2(L_1);
return;
}
IL_0010:
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_2 = V_0;
AsyncTaskMethodBuilder_1_SetResult_m1633157453((AsyncTaskMethodBuilder_1_t1106113378 *)__this, (RuntimeObject *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetResult_m3252182739_AdjustorThunk (RuntimeObject * __this, Task_1_t190679043 * ___completedTask0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetResult_m3252182739(_thisAdjusted, ___completedTask0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m131199109_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, Exception_t * ___exception0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetException_m131199109_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_1_t190679043 * V_0 = NULL;
OperationCanceledException_t926488448 * V_1 = NULL;
bool G_B7_0 = false;
{
Exception_t * L_0 = ___exception0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2618865335, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,AsyncTaskMethodBuilder_1_SetException_m131199109_RuntimeMethod_var);
}
IL_000e:
{
Task_1_t190679043 * L_2 = (Task_1_t190679043 *)__this->get_m_task_2();
V_0 = (Task_1_t190679043 *)L_2;
Task_1_t190679043 * L_3 = V_0;
if (L_3)
{
goto IL_001f;
}
}
{
Task_1_t190679043 * L_4 = AsyncTaskMethodBuilder_1_get_Task_m317986670((AsyncTaskMethodBuilder_1_t1106113378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
V_0 = (Task_1_t190679043 *)L_4;
}
IL_001f:
{
Exception_t * L_5 = ___exception0;
V_1 = (OperationCanceledException_t926488448 *)((OperationCanceledException_t926488448 *)IsInst((RuntimeObject*)L_5, OperationCanceledException_t926488448_il2cpp_TypeInfo_var));
OperationCanceledException_t926488448 * L_6 = V_1;
if (L_6)
{
goto IL_0032;
}
}
{
Task_1_t190679043 * L_7 = V_0;
Exception_t * L_8 = ___exception0;
NullCheck((Task_1_t190679043 *)L_7);
bool L_9 = (( bool (*) (Task_1_t190679043 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 6)->methodPointer)((Task_1_t190679043 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 6));
G_B7_0 = L_9;
goto IL_003f;
}
IL_0032:
{
Task_1_t190679043 * L_10 = V_0;
OperationCanceledException_t926488448 * L_11 = V_1;
NullCheck((OperationCanceledException_t926488448 *)L_11);
CancellationToken_t784455623 L_12 = OperationCanceledException_get_CancellationToken_m1943835608((OperationCanceledException_t926488448 *)L_11, /*hidden argument*/NULL);
OperationCanceledException_t926488448 * L_13 = V_1;
NullCheck((Task_1_t190679043 *)L_10);
bool L_14 = (( bool (*) (Task_1_t190679043 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)->methodPointer)((Task_1_t190679043 *)L_10, (CancellationToken_t784455623 )L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7));
G_B7_0 = L_14;
}
IL_003f:
{
if (G_B7_0)
{
goto IL_0051;
}
}
{
String_t* L_15 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral4180560538, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_16 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_16, (String_t*)L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16,AsyncTaskMethodBuilder_1_SetException_m131199109_RuntimeMethod_var);
}
IL_0051:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetException_m131199109_AdjustorThunk (RuntimeObject * __this, Exception_t * ___exception0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetException_m131199109(_thisAdjusted, ___exception0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::GetTaskForResult(TResult)
extern "C" IL2CPP_METHOD_ATTR Task_1_t190679043 * AsyncTaskMethodBuilder_1_GetTaskForResult_m1893715023_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject * ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_GetTaskForResult_m1893715023_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
int32_t V_1 = 0;
Task_1_t1502828140 * G_B5_0 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_0 = V_0;
if (!L_0)
{
goto IL_0280;
}
}
{
RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (Boolean_t97287965_0_0_0_var) };
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
bool L_5 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_004d;
}
}
{
RuntimeObject * L_6 = ___result0;
if (((*(bool*)((bool*)UnBox(L_6, Boolean_t97287965_il2cpp_TypeInfo_var)))))
{
goto IL_0042;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t1502828140 * L_7 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_FalseTask_1();
G_B5_0 = L_7;
goto IL_0047;
}
IL_0042:
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t1502828140 * L_8 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_TrueTask_0();
G_B5_0 = L_8;
}
IL_0047:
{
Task_1_t190679043 * L_9 = (( Task_1_t190679043 * (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)G_B5_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
return L_9;
}
IL_004d:
{
RuntimeTypeHandle_t3027515415 L_10 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_11 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_10, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_12 = { reinterpret_cast<intptr_t> (Int32_t2950945753_0_0_0_var) };
Type_t * L_13 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_12, /*hidden argument*/NULL);
bool L_14 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_11, (Type_t *)L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0092;
}
}
{
RuntimeObject * L_15 = ___result0;
V_1 = (int32_t)((*(int32_t*)((int32_t*)UnBox(L_15, Int32_t2950945753_il2cpp_TypeInfo_var))));
int32_t L_16 = V_1;
if ((((int32_t)L_16) >= ((int32_t)((int32_t)9))))
{
goto IL_028e;
}
}
{
int32_t L_17 = V_1;
if ((((int32_t)L_17) < ((int32_t)(-1))))
{
goto IL_028e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1U5BU5D_t2104922937* L_18 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_Int32Tasks_2();
int32_t L_19 = V_1;
NullCheck(L_18);
int32_t L_20 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)(-1)));
Task_1_t61518632 * L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
Task_1_t190679043 * L_22 = (( Task_1_t190679043 * (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
return L_22;
}
IL_0092:
{
RuntimeTypeHandle_t3027515415 L_23 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_24 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_23, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_25 = { reinterpret_cast<intptr_t> (UInt32_t2560061978_0_0_0_var) };
Type_t * L_26 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_25, /*hidden argument*/NULL);
bool L_27 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_24, (Type_t *)L_26, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_00bd;
}
}
{
RuntimeObject * L_28 = ___result0;
if (!((*(uint32_t*)((uint32_t*)UnBox(L_28, UInt32_t2560061978_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_00bd:
{
RuntimeTypeHandle_t3027515415 L_29 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_29, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_31 = { reinterpret_cast<intptr_t> (Byte_t1134296376_0_0_0_var) };
Type_t * L_32 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_31, /*hidden argument*/NULL);
bool L_33 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_30, (Type_t *)L_32, /*hidden argument*/NULL);
if (!L_33)
{
goto IL_00e8;
}
}
{
RuntimeObject * L_34 = ___result0;
if (!((*(uint8_t*)((uint8_t*)UnBox(L_34, Byte_t1134296376_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_00e8:
{
RuntimeTypeHandle_t3027515415 L_35 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_36 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_35, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_37 = { reinterpret_cast<intptr_t> (SByte_t1669577662_0_0_0_var) };
Type_t * L_38 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_37, /*hidden argument*/NULL);
bool L_39 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_36, (Type_t *)L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_0113;
}
}
{
RuntimeObject * L_40 = ___result0;
if (!((*(int8_t*)((int8_t*)UnBox(L_40, SByte_t1669577662_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_0113:
{
RuntimeTypeHandle_t3027515415 L_41 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_42 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_41, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_43 = { reinterpret_cast<intptr_t> (Char_t3634460470_0_0_0_var) };
Type_t * L_44 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_43, /*hidden argument*/NULL);
bool L_45 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_42, (Type_t *)L_44, /*hidden argument*/NULL);
if (!L_45)
{
goto IL_013e;
}
}
{
RuntimeObject * L_46 = ___result0;
if (!((*(Il2CppChar*)((Il2CppChar*)UnBox(L_46, Char_t3634460470_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_013e:
{
RuntimeTypeHandle_t3027515415 L_47 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_48 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_47, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_49 = { reinterpret_cast<intptr_t> (Decimal_t2948259380_0_0_0_var) };
Type_t * L_50 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_49, /*hidden argument*/NULL);
bool L_51 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_48, (Type_t *)L_50, /*hidden argument*/NULL);
if (!L_51)
{
goto IL_0173;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_52 = ((Decimal_t2948259380_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t2948259380_il2cpp_TypeInfo_var))->get_Zero_7();
RuntimeObject * L_53 = ___result0;
bool L_54 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, (Decimal_t2948259380 )L_52, (Decimal_t2948259380 )((*(Decimal_t2948259380 *)((Decimal_t2948259380 *)UnBox(L_53, Decimal_t2948259380_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (L_54)
{
goto IL_027a;
}
}
IL_0173:
{
RuntimeTypeHandle_t3027515415 L_55 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_56 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_55, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_57 = { reinterpret_cast<intptr_t> (Int64_t3736567304_0_0_0_var) };
Type_t * L_58 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_57, /*hidden argument*/NULL);
bool L_59 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_56, (Type_t *)L_58, /*hidden argument*/NULL);
if (!L_59)
{
goto IL_019e;
}
}
{
RuntimeObject * L_60 = ___result0;
if (!((*(int64_t*)((int64_t*)UnBox(L_60, Int64_t3736567304_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_019e:
{
RuntimeTypeHandle_t3027515415 L_61 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_62 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_61, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_63 = { reinterpret_cast<intptr_t> (UInt64_t4134040092_0_0_0_var) };
Type_t * L_64 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_63, /*hidden argument*/NULL);
bool L_65 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_62, (Type_t *)L_64, /*hidden argument*/NULL);
if (!L_65)
{
goto IL_01c9;
}
}
{
RuntimeObject * L_66 = ___result0;
if (!((*(uint64_t*)((uint64_t*)UnBox(L_66, UInt64_t4134040092_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_01c9:
{
RuntimeTypeHandle_t3027515415 L_67 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_68 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_67, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_69 = { reinterpret_cast<intptr_t> (Int16_t2552820387_0_0_0_var) };
Type_t * L_70 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_69, /*hidden argument*/NULL);
bool L_71 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_68, (Type_t *)L_70, /*hidden argument*/NULL);
if (!L_71)
{
goto IL_01f4;
}
}
{
RuntimeObject * L_72 = ___result0;
if (!((*(int16_t*)((int16_t*)UnBox(L_72, Int16_t2552820387_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_01f4:
{
RuntimeTypeHandle_t3027515415 L_73 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_74 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_73, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_75 = { reinterpret_cast<intptr_t> (UInt16_t2177724958_0_0_0_var) };
Type_t * L_76 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_75, /*hidden argument*/NULL);
bool L_77 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_74, (Type_t *)L_76, /*hidden argument*/NULL);
if (!L_77)
{
goto IL_021c;
}
}
{
RuntimeObject * L_78 = ___result0;
if (!((*(uint16_t*)((uint16_t*)UnBox(L_78, UInt16_t2177724958_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_021c:
{
RuntimeTypeHandle_t3027515415 L_79 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_80 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_79, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_81 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
Type_t * L_82 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_81, /*hidden argument*/NULL);
bool L_83 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_80, (Type_t *)L_82, /*hidden argument*/NULL);
if (!L_83)
{
goto IL_024b;
}
}
{
RuntimeObject * L_84 = ___result0;
bool L_85 = IntPtr_op_Equality_m408849716(NULL /*static, unused*/, (intptr_t)(((intptr_t)0)), (intptr_t)((*(intptr_t*)((intptr_t*)UnBox(L_84, IntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (L_85)
{
goto IL_027a;
}
}
IL_024b:
{
RuntimeTypeHandle_t3027515415 L_86 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_87 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_86, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_88 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
Type_t * L_89 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_88, /*hidden argument*/NULL);
bool L_90 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_87, (Type_t *)L_89, /*hidden argument*/NULL);
if (!L_90)
{
goto IL_028e;
}
}
{
RuntimeObject * L_91 = ___result0;
IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var);
bool L_92 = UIntPtr_op_Equality_m2241921281(NULL /*static, unused*/, (uintptr_t)(((uintptr_t)0)), (uintptr_t)((*(uintptr_t*)((uintptr_t*)UnBox(L_91, UIntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (!L_92)
{
goto IL_028e;
}
}
IL_027a:
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
Task_1_t190679043 * L_93 = ((AsyncTaskMethodBuilder_1_t1106113378_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->get_s_defaultResultTask_0();
return L_93;
}
IL_0280:
{
RuntimeObject * L_94 = ___result0;
if (L_94)
{
goto IL_028e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
Task_1_t190679043 * L_95 = ((AsyncTaskMethodBuilder_1_t1106113378_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->get_s_defaultResultTask_0();
return L_95;
}
IL_028e:
{
RuntimeObject * L_96 = ___result0;
Task_1_t190679043 * L_97 = (Task_1_t190679043 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
(( void (*) (Task_1_t190679043 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12)->methodPointer)(L_97, (RuntimeObject *)L_96, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12));
return L_97;
}
}
extern "C" Task_1_t190679043 * AsyncTaskMethodBuilder_1_GetTaskForResult_m1893715023_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___result0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
return AsyncTaskMethodBuilder_1_GetTaskForResult_m1893715023(_thisAdjusted, ___result0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1__cctor_m2570198661_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1__cctor_m2570198661_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_0 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t190679043 * L_1 = (( Task_1_t190679043 * (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13));
((AsyncTaskMethodBuilder_1_t1106113378_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->set_s_defaultResultTask_0(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::Create()
extern "C" IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_t642595793 AsyncTaskMethodBuilder_1_Create_m2881553999_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(AsyncTaskMethodBuilder_1_t642595793 ));
AsyncTaskMethodBuilder_1_t642595793 L_0 = V_0;
return L_0;
}
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m2794370076_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_1 = ___stateMachine0;
AsyncMethodBuilderCore_SetStateMachine_m3928559089((AsyncMethodBuilderCore_t2955600131 *)L_0, (RuntimeObject*)L_1, /*hidden argument*/NULL);
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetStateMachine_m2794370076_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetStateMachine_m2794370076(_thisAdjusted, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t4022128754 * AsyncTaskMethodBuilder_1_get_Task_m3182333516_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, const RuntimeMethod* method)
{
Task_1_t4022128754 * V_0 = NULL;
{
Task_1_t4022128754 * L_0 = (Task_1_t4022128754 *)__this->get_m_task_2();
V_0 = (Task_1_t4022128754 *)L_0;
Task_1_t4022128754 * L_1 = V_0;
if (L_1)
{
goto IL_0017;
}
}
{
Task_1_t4022128754 * L_2 = (Task_1_t4022128754 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
(( void (*) (Task_1_t4022128754 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
Task_1_t4022128754 * L_3 = (Task_1_t4022128754 *)L_2;
V_0 = (Task_1_t4022128754 *)L_3;
__this->set_m_task_2(L_3);
}
IL_0017:
{
Task_1_t4022128754 * L_4 = V_0;
return L_4;
}
}
extern "C" Task_1_t4022128754 * AsyncTaskMethodBuilder_1_get_Task_m3182333516_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
return AsyncTaskMethodBuilder_1_get_Task_m3182333516(_thisAdjusted, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m3905043534_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, VoidTaskResult_t2616588579 ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetResult_m3905043534_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_1_t4022128754 * V_0 = NULL;
{
Task_1_t4022128754 * L_0 = (Task_1_t4022128754 *)__this->get_m_task_2();
V_0 = (Task_1_t4022128754 *)L_0;
Task_1_t4022128754 * L_1 = V_0;
if (L_1)
{
goto IL_0018;
}
}
{
VoidTaskResult_t2616588579 L_2 = ___result0;
Task_1_t4022128754 * L_3 = AsyncTaskMethodBuilder_1_GetTaskForResult_m1878921445((AsyncTaskMethodBuilder_1_t642595793 *)__this, (VoidTaskResult_t2616588579 )L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
__this->set_m_task_2(L_3);
return;
}
IL_0018:
{
bool L_4 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_002c;
}
}
{
Task_1_t4022128754 * L_5 = V_0;
NullCheck((Task_t3187275312 *)L_5);
int32_t L_6 = Task_get_Id_m119004446((Task_t3187275312 *)L_5, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_6, (int32_t)1, /*hidden argument*/NULL);
}
IL_002c:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_7 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_7)
{
goto IL_003e;
}
}
{
Task_1_t4022128754 * L_8 = V_0;
NullCheck((Task_t3187275312 *)L_8);
int32_t L_9 = Task_get_Id_m119004446((Task_t3187275312 *)L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_9, /*hidden argument*/NULL);
}
IL_003e:
{
Task_1_t4022128754 * L_10 = V_0;
VoidTaskResult_t2616588579 L_11 = ___result0;
NullCheck((Task_1_t4022128754 *)L_10);
bool L_12 = (( bool (*) (Task_1_t4022128754 *, VoidTaskResult_t2616588579 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t4022128754 *)L_10, (VoidTaskResult_t2616588579 )L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
if (L_12)
{
goto IL_0057;
}
}
{
String_t* L_13 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral4180560538, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_14 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_14, (String_t*)L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14,AsyncTaskMethodBuilder_1_SetResult_m3905043534_RuntimeMethod_var);
}
IL_0057:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetResult_m3905043534_AdjustorThunk (RuntimeObject * __this, VoidTaskResult_t2616588579 ___result0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetResult_m3905043534(_thisAdjusted, ___result0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m2347196861_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, Task_1_t4022128754 * ___completedTask0, const RuntimeMethod* method)
{
VoidTaskResult_t2616588579 V_0;
memset(&V_0, 0, sizeof(V_0));
{
Task_1_t4022128754 * L_0 = (Task_1_t4022128754 *)__this->get_m_task_2();
if (L_0)
{
goto IL_0010;
}
}
{
Task_1_t4022128754 * L_1 = ___completedTask0;
__this->set_m_task_2(L_1);
return;
}
IL_0010:
{
il2cpp_codegen_initobj((&V_0), sizeof(VoidTaskResult_t2616588579 ));
VoidTaskResult_t2616588579 L_2 = V_0;
AsyncTaskMethodBuilder_1_SetResult_m3905043534((AsyncTaskMethodBuilder_1_t642595793 *)__this, (VoidTaskResult_t2616588579 )L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetResult_m2347196861_AdjustorThunk (RuntimeObject * __this, Task_1_t4022128754 * ___completedTask0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetResult_m2347196861(_thisAdjusted, ___completedTask0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m2740982526_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, Exception_t * ___exception0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetException_m2740982526_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_1_t4022128754 * V_0 = NULL;
OperationCanceledException_t926488448 * V_1 = NULL;
bool G_B7_0 = false;
{
Exception_t * L_0 = ___exception0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2618865335, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,AsyncTaskMethodBuilder_1_SetException_m2740982526_RuntimeMethod_var);
}
IL_000e:
{
Task_1_t4022128754 * L_2 = (Task_1_t4022128754 *)__this->get_m_task_2();
V_0 = (Task_1_t4022128754 *)L_2;
Task_1_t4022128754 * L_3 = V_0;
if (L_3)
{
goto IL_001f;
}
}
{
Task_1_t4022128754 * L_4 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
V_0 = (Task_1_t4022128754 *)L_4;
}
IL_001f:
{
Exception_t * L_5 = ___exception0;
V_1 = (OperationCanceledException_t926488448 *)((OperationCanceledException_t926488448 *)IsInst((RuntimeObject*)L_5, OperationCanceledException_t926488448_il2cpp_TypeInfo_var));
OperationCanceledException_t926488448 * L_6 = V_1;
if (L_6)
{
goto IL_0032;
}
}
{
Task_1_t4022128754 * L_7 = V_0;
Exception_t * L_8 = ___exception0;
NullCheck((Task_1_t4022128754 *)L_7);
bool L_9 = (( bool (*) (Task_1_t4022128754 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 6)->methodPointer)((Task_1_t4022128754 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 6));
G_B7_0 = L_9;
goto IL_003f;
}
IL_0032:
{
Task_1_t4022128754 * L_10 = V_0;
OperationCanceledException_t926488448 * L_11 = V_1;
NullCheck((OperationCanceledException_t926488448 *)L_11);
CancellationToken_t784455623 L_12 = OperationCanceledException_get_CancellationToken_m1943835608((OperationCanceledException_t926488448 *)L_11, /*hidden argument*/NULL);
OperationCanceledException_t926488448 * L_13 = V_1;
NullCheck((Task_1_t4022128754 *)L_10);
bool L_14 = (( bool (*) (Task_1_t4022128754 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)->methodPointer)((Task_1_t4022128754 *)L_10, (CancellationToken_t784455623 )L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7));
G_B7_0 = L_14;
}
IL_003f:
{
if (G_B7_0)
{
goto IL_0051;
}
}
{
String_t* L_15 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral4180560538, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_16 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_16, (String_t*)L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16,AsyncTaskMethodBuilder_1_SetException_m2740982526_RuntimeMethod_var);
}
IL_0051:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_SetException_m2740982526_AdjustorThunk (RuntimeObject * __this, Exception_t * ___exception0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_SetException_m2740982526(_thisAdjusted, ___exception0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::GetTaskForResult(TResult)
extern "C" IL2CPP_METHOD_ATTR Task_1_t4022128754 * AsyncTaskMethodBuilder_1_GetTaskForResult_m1878921445_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, VoidTaskResult_t2616588579 ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_GetTaskForResult_m1878921445_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
VoidTaskResult_t2616588579 V_0;
memset(&V_0, 0, sizeof(V_0));
int32_t V_1 = 0;
Task_1_t1502828140 * G_B5_0 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(VoidTaskResult_t2616588579 ));
}
{
RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (Boolean_t97287965_0_0_0_var) };
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
bool L_5 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_004d;
}
}
{
VoidTaskResult_t2616588579 L_6 = ___result0;
VoidTaskResult_t2616588579 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_7);
if (((*(bool*)((bool*)UnBox(L_8, Boolean_t97287965_il2cpp_TypeInfo_var)))))
{
goto IL_0042;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t1502828140 * L_9 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_FalseTask_1();
G_B5_0 = L_9;
goto IL_0047;
}
IL_0042:
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t1502828140 * L_10 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_TrueTask_0();
G_B5_0 = L_10;
}
IL_0047:
{
Task_1_t4022128754 * L_11 = (( Task_1_t4022128754 * (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)G_B5_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
return L_11;
}
IL_004d:
{
RuntimeTypeHandle_t3027515415 L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_12, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_14 = { reinterpret_cast<intptr_t> (Int32_t2950945753_0_0_0_var) };
Type_t * L_15 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_0092;
}
}
{
VoidTaskResult_t2616588579 L_17 = ___result0;
VoidTaskResult_t2616588579 L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_18);
V_1 = (int32_t)((*(int32_t*)((int32_t*)UnBox(L_19, Int32_t2950945753_il2cpp_TypeInfo_var))));
int32_t L_20 = V_1;
if ((((int32_t)L_20) >= ((int32_t)((int32_t)9))))
{
goto IL_028e;
}
}
{
int32_t L_21 = V_1;
if ((((int32_t)L_21) < ((int32_t)(-1))))
{
goto IL_028e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1U5BU5D_t2104922937* L_22 = ((AsyncTaskCache_t1993881178_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var))->get_Int32Tasks_2();
int32_t L_23 = V_1;
NullCheck(L_22);
int32_t L_24 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)(-1)));
Task_1_t61518632 * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
Task_1_t4022128754 * L_26 = (( Task_1_t4022128754 * (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
return L_26;
}
IL_0092:
{
RuntimeTypeHandle_t3027515415 L_27 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_28 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_27, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_29 = { reinterpret_cast<intptr_t> (UInt32_t2560061978_0_0_0_var) };
Type_t * L_30 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_29, /*hidden argument*/NULL);
bool L_31 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_28, (Type_t *)L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00bd;
}
}
{
VoidTaskResult_t2616588579 L_32 = ___result0;
VoidTaskResult_t2616588579 L_33 = L_32;
RuntimeObject * L_34 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_33);
if (!((*(uint32_t*)((uint32_t*)UnBox(L_34, UInt32_t2560061978_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_00bd:
{
RuntimeTypeHandle_t3027515415 L_35 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_36 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_35, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_37 = { reinterpret_cast<intptr_t> (Byte_t1134296376_0_0_0_var) };
Type_t * L_38 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_37, /*hidden argument*/NULL);
bool L_39 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_36, (Type_t *)L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_00e8;
}
}
{
VoidTaskResult_t2616588579 L_40 = ___result0;
VoidTaskResult_t2616588579 L_41 = L_40;
RuntimeObject * L_42 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_41);
if (!((*(uint8_t*)((uint8_t*)UnBox(L_42, Byte_t1134296376_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_00e8:
{
RuntimeTypeHandle_t3027515415 L_43 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_44 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_43, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_45 = { reinterpret_cast<intptr_t> (SByte_t1669577662_0_0_0_var) };
Type_t * L_46 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_45, /*hidden argument*/NULL);
bool L_47 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_44, (Type_t *)L_46, /*hidden argument*/NULL);
if (!L_47)
{
goto IL_0113;
}
}
{
VoidTaskResult_t2616588579 L_48 = ___result0;
VoidTaskResult_t2616588579 L_49 = L_48;
RuntimeObject * L_50 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_49);
if (!((*(int8_t*)((int8_t*)UnBox(L_50, SByte_t1669577662_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_0113:
{
RuntimeTypeHandle_t3027515415 L_51 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_52 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_51, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_53 = { reinterpret_cast<intptr_t> (Char_t3634460470_0_0_0_var) };
Type_t * L_54 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_53, /*hidden argument*/NULL);
bool L_55 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_52, (Type_t *)L_54, /*hidden argument*/NULL);
if (!L_55)
{
goto IL_013e;
}
}
{
VoidTaskResult_t2616588579 L_56 = ___result0;
VoidTaskResult_t2616588579 L_57 = L_56;
RuntimeObject * L_58 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_57);
if (!((*(Il2CppChar*)((Il2CppChar*)UnBox(L_58, Char_t3634460470_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_013e:
{
RuntimeTypeHandle_t3027515415 L_59 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_60 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_59, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_61 = { reinterpret_cast<intptr_t> (Decimal_t2948259380_0_0_0_var) };
Type_t * L_62 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_61, /*hidden argument*/NULL);
bool L_63 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_60, (Type_t *)L_62, /*hidden argument*/NULL);
if (!L_63)
{
goto IL_0173;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_64 = ((Decimal_t2948259380_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t2948259380_il2cpp_TypeInfo_var))->get_Zero_7();
VoidTaskResult_t2616588579 L_65 = ___result0;
VoidTaskResult_t2616588579 L_66 = L_65;
RuntimeObject * L_67 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_66);
bool L_68 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, (Decimal_t2948259380 )L_64, (Decimal_t2948259380 )((*(Decimal_t2948259380 *)((Decimal_t2948259380 *)UnBox(L_67, Decimal_t2948259380_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (L_68)
{
goto IL_027a;
}
}
IL_0173:
{
RuntimeTypeHandle_t3027515415 L_69 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_70 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_69, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_71 = { reinterpret_cast<intptr_t> (Int64_t3736567304_0_0_0_var) };
Type_t * L_72 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_71, /*hidden argument*/NULL);
bool L_73 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_70, (Type_t *)L_72, /*hidden argument*/NULL);
if (!L_73)
{
goto IL_019e;
}
}
{
VoidTaskResult_t2616588579 L_74 = ___result0;
VoidTaskResult_t2616588579 L_75 = L_74;
RuntimeObject * L_76 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_75);
if (!((*(int64_t*)((int64_t*)UnBox(L_76, Int64_t3736567304_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_019e:
{
RuntimeTypeHandle_t3027515415 L_77 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_78 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_77, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_79 = { reinterpret_cast<intptr_t> (UInt64_t4134040092_0_0_0_var) };
Type_t * L_80 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_79, /*hidden argument*/NULL);
bool L_81 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_78, (Type_t *)L_80, /*hidden argument*/NULL);
if (!L_81)
{
goto IL_01c9;
}
}
{
VoidTaskResult_t2616588579 L_82 = ___result0;
VoidTaskResult_t2616588579 L_83 = L_82;
RuntimeObject * L_84 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_83);
if (!((*(uint64_t*)((uint64_t*)UnBox(L_84, UInt64_t4134040092_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_01c9:
{
RuntimeTypeHandle_t3027515415 L_85 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_86 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_85, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_87 = { reinterpret_cast<intptr_t> (Int16_t2552820387_0_0_0_var) };
Type_t * L_88 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_87, /*hidden argument*/NULL);
bool L_89 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_86, (Type_t *)L_88, /*hidden argument*/NULL);
if (!L_89)
{
goto IL_01f4;
}
}
{
VoidTaskResult_t2616588579 L_90 = ___result0;
VoidTaskResult_t2616588579 L_91 = L_90;
RuntimeObject * L_92 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_91);
if (!((*(int16_t*)((int16_t*)UnBox(L_92, Int16_t2552820387_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_01f4:
{
RuntimeTypeHandle_t3027515415 L_93 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_94 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_93, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_95 = { reinterpret_cast<intptr_t> (UInt16_t2177724958_0_0_0_var) };
Type_t * L_96 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_95, /*hidden argument*/NULL);
bool L_97 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_94, (Type_t *)L_96, /*hidden argument*/NULL);
if (!L_97)
{
goto IL_021c;
}
}
{
VoidTaskResult_t2616588579 L_98 = ___result0;
VoidTaskResult_t2616588579 L_99 = L_98;
RuntimeObject * L_100 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_99);
if (!((*(uint16_t*)((uint16_t*)UnBox(L_100, UInt16_t2177724958_il2cpp_TypeInfo_var)))))
{
goto IL_027a;
}
}
IL_021c:
{
RuntimeTypeHandle_t3027515415 L_101 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_102 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_101, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_103 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
Type_t * L_104 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_103, /*hidden argument*/NULL);
bool L_105 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_102, (Type_t *)L_104, /*hidden argument*/NULL);
if (!L_105)
{
goto IL_024b;
}
}
{
VoidTaskResult_t2616588579 L_106 = ___result0;
VoidTaskResult_t2616588579 L_107 = L_106;
RuntimeObject * L_108 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_107);
bool L_109 = IntPtr_op_Equality_m408849716(NULL /*static, unused*/, (intptr_t)(((intptr_t)0)), (intptr_t)((*(intptr_t*)((intptr_t*)UnBox(L_108, IntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (L_109)
{
goto IL_027a;
}
}
IL_024b:
{
RuntimeTypeHandle_t3027515415 L_110 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_111 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_110, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_112 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
Type_t * L_113 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_112, /*hidden argument*/NULL);
bool L_114 = Type_op_Equality_m2683486427(NULL /*static, unused*/, (Type_t *)L_111, (Type_t *)L_113, /*hidden argument*/NULL);
if (!L_114)
{
goto IL_028e;
}
}
{
VoidTaskResult_t2616588579 L_115 = ___result0;
VoidTaskResult_t2616588579 L_116 = L_115;
RuntimeObject * L_117 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8), &L_116);
IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var);
bool L_118 = UIntPtr_op_Equality_m2241921281(NULL /*static, unused*/, (uintptr_t)(((uintptr_t)0)), (uintptr_t)((*(uintptr_t*)((uintptr_t*)UnBox(L_117, UIntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
if (!L_118)
{
goto IL_028e;
}
}
IL_027a:
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
Task_1_t4022128754 * L_119 = ((AsyncTaskMethodBuilder_1_t642595793_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->get_s_defaultResultTask_0();
return L_119;
}
IL_0280:
{
goto IL_028e;
}
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
Task_1_t4022128754 * L_121 = ((AsyncTaskMethodBuilder_1_t642595793_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->get_s_defaultResultTask_0();
return L_121;
}
IL_028e:
{
VoidTaskResult_t2616588579 L_122 = ___result0;
Task_1_t4022128754 * L_123 = (Task_1_t4022128754 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
(( void (*) (Task_1_t4022128754 *, VoidTaskResult_t2616588579 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12)->methodPointer)(L_123, (VoidTaskResult_t2616588579 )L_122, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12));
return L_123;
}
}
extern "C" Task_1_t4022128754 * AsyncTaskMethodBuilder_1_GetTaskForResult_m1878921445_AdjustorThunk (RuntimeObject * __this, VoidTaskResult_t2616588579 ___result0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
return AsyncTaskMethodBuilder_1_GetTaskForResult_m1878921445(_thisAdjusted, ___result0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1__cctor_m958513466_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1__cctor_m958513466_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
VoidTaskResult_t2616588579 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(VoidTaskResult_t2616588579 ));
VoidTaskResult_t2616588579 L_0 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t1993881178_il2cpp_TypeInfo_var);
Task_1_t4022128754 * L_1 = (( Task_1_t4022128754 * (*) (RuntimeObject * /* static, unused */, VoidTaskResult_t2616588579 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13)->methodPointer)(NULL /*static, unused*/, (VoidTaskResult_t2616588579 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13));
((AsyncTaskMethodBuilder_1_t642595793_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)))->set_s_defaultResultTask_0(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void ConditionalWeakTable_2__ctor_m4235261096_gshared (ConditionalWeakTable_2_t3582039290 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConditionalWeakTable_2__ctor_m4235261096_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m297566312(L_0, /*hidden argument*/NULL);
__this->set__lock_1(L_0);
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
__this->set_data_0(((EphemeronU5BU5D_t1564620431*)SZArrayNew(EphemeronU5BU5D_t1564620431_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13))));
EphemeronU5BU5D_t1564620431* L_1 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
IL2CPP_RUNTIME_CLASS_INIT(GC_t959872083_il2cpp_TypeInfo_var);
GC_register_ephemeron_array_m1855245127(NULL /*static, unused*/, (EphemeronU5BU5D_t1564620431*)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Finalize()
extern "C" IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Finalize_m2884664355_gshared (ConditionalWeakTable_2_t3582039290 * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
IL2CPP_LEAVE(0x9, FINALLY_0002);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0002;
}
FINALLY_0002:
{ // begin finally (depth: 1)
NullCheck((RuntimeObject *)__this);
Object_Finalize_m3076187857((RuntimeObject *)__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(2)
} // end finally (depth: 1)
IL2CPP_CLEANUP(2)
{
IL2CPP_JUMP_TBL(0x9, IL_0009)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0009:
{
return;
}
}
// System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::RehashWithoutResize()
extern "C" IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_RehashWithoutResize_m2617471687_gshared (ConditionalWeakTable_2_t3582039290 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConditionalWeakTable_2_RehashWithoutResize_m2617471687_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
int32_t V_4 = 0;
{
EphemeronU5BU5D_t1564620431* L_0 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
NullCheck(L_0);
V_0 = (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))));
V_1 = (int32_t)0;
goto IL_003b;
}
IL_000d:
{
EphemeronU5BU5D_t1564620431* L_1 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_2 = V_1;
NullCheck(L_1);
RuntimeObject * L_3 = (RuntimeObject *)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_key_0();
IL2CPP_RUNTIME_CLASS_INIT(GC_t959872083_il2cpp_TypeInfo_var);
RuntimeObject * L_4 = ((GC_t959872083_StaticFields*)il2cpp_codegen_static_fields_for(GC_t959872083_il2cpp_TypeInfo_var))->get_EPHEMERON_TOMBSTONE_0();
if ((!(((RuntimeObject*)(RuntimeObject *)L_3) == ((RuntimeObject*)(RuntimeObject *)L_4))))
{
goto IL_0037;
}
}
{
EphemeronU5BU5D_t1564620431* L_5 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_6 = V_1;
NullCheck(L_5);
((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->set_key_0(NULL);
}
IL_0037:
{
int32_t L_7 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_003b:
{
int32_t L_8 = V_1;
int32_t L_9 = V_0;
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_000d;
}
}
{
V_2 = (int32_t)0;
goto IL_010c;
}
IL_0046:
{
EphemeronU5BU5D_t1564620431* L_10 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_11 = V_2;
NullCheck(L_10);
RuntimeObject * L_12 = (RuntimeObject *)((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->get_key_0();
V_3 = (RuntimeObject *)L_12;
RuntimeObject * L_13 = V_3;
if (!L_13)
{
goto IL_0108;
}
}
{
RuntimeObject * L_14 = V_3;
int32_t L_15 = RuntimeHelpers_GetHashCode_m1610824259(NULL /*static, unused*/, (RuntimeObject *)L_14, /*hidden argument*/NULL);
int32_t L_16 = V_0;
V_4 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_15&(int32_t)((int32_t)2147483647LL)))%(int32_t)L_16));
}
IL_006e:
{
EphemeronU5BU5D_t1564620431* L_17 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_18 = V_4;
NullCheck(L_17);
RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_0();
if (L_19)
{
goto IL_00de;
}
}
{
EphemeronU5BU5D_t1564620431* L_20 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_21 = V_4;
NullCheck(L_20);
RuntimeObject * L_22 = V_3;
((L_20)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_21)))->set_key_0(L_22);
EphemeronU5BU5D_t1564620431* L_23 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_24 = V_4;
NullCheck(L_23);
EphemeronU5BU5D_t1564620431* L_25 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_26 = V_2;
NullCheck(L_25);
RuntimeObject * L_27 = (RuntimeObject *)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_value_1();
((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_1(L_27);
EphemeronU5BU5D_t1564620431* L_28 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_29 = V_2;
NullCheck(L_28);
((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_key_0(NULL);
EphemeronU5BU5D_t1564620431* L_30 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_31 = V_2;
NullCheck(L_30);
((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->set_value_1(NULL);
goto IL_0108;
}
IL_00de:
{
EphemeronU5BU5D_t1564620431* L_32 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_33 = V_4;
NullCheck(L_32);
RuntimeObject * L_34 = (RuntimeObject *)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_key_0();
RuntimeObject * L_35 = V_3;
if ((((RuntimeObject*)(RuntimeObject *)L_34) == ((RuntimeObject*)(RuntimeObject *)L_35)))
{
goto IL_0108;
}
}
{
int32_t L_36 = V_4;
int32_t L_37 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1));
V_4 = (int32_t)L_37;
int32_t L_38 = V_0;
if ((!(((uint32_t)L_37) == ((uint32_t)L_38))))
{
goto IL_006e;
}
}
{
V_4 = (int32_t)0;
goto IL_006e;
}
IL_0108:
{
int32_t L_39 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1));
}
IL_010c:
{
int32_t L_40 = V_2;
int32_t L_41 = V_0;
if ((((int32_t)L_40) < ((int32_t)L_41)))
{
goto IL_0046;
}
}
{
return;
}
}
// System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::RecomputeSize()
extern "C" IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_RecomputeSize_m1800819769_gshared (ConditionalWeakTable_2_t3582039290 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
__this->set_size_2(0);
V_0 = (int32_t)0;
goto IL_0030;
}
IL_000b:
{
EphemeronU5BU5D_t1564620431* L_0 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_1 = V_0;
NullCheck(L_0);
RuntimeObject * L_2 = (RuntimeObject *)((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)))->get_key_0();
if (!L_2)
{
goto IL_002c;
}
}
{
int32_t L_3 = (int32_t)__this->get_size_2();
__this->set_size_2(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)));
}
IL_002c:
{
int32_t L_4 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
}
IL_0030:
{
int32_t L_5 = V_0;
EphemeronU5BU5D_t1564620431* L_6 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
NullCheck(L_6);
if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))))))
{
goto IL_000b;
}
}
{
return;
}
}
// System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Rehash()
extern "C" IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Rehash_m1268790630_gshared (ConditionalWeakTable_2_t3582039290 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConditionalWeakTable_2_Rehash_m1268790630_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
EphemeronU5BU5D_t1564620431* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
RuntimeObject * V_4 = NULL;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
RuntimeObject * V_9 = NULL;
{
NullCheck((ConditionalWeakTable_2_t3582039290 *)__this);
(( void (*) (ConditionalWeakTable_2_t3582039290 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((ConditionalWeakTable_2_t3582039290 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
int32_t L_0 = (int32_t)__this->get_size_2();
IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_t3497540039_il2cpp_TypeInfo_var);
int32_t L_1 = HashHelpers_GetPrime_m1056954278(NULL /*static, unused*/, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)((float)((float)(((float)((float)L_0)))/(float)(0.7f))))))<<(int32_t)1))|(int32_t)1)), /*hidden argument*/NULL);
V_0 = (uint32_t)L_1;
uint32_t L_2 = V_0;
EphemeronU5BU5D_t1564620431* L_3 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
NullCheck(L_3);
if ((!(((float)(((float)((float)(((double)((uint32_t)L_2))))))) > ((float)((float)il2cpp_codegen_multiply((float)(((float)((float)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))))), (float)(0.5f)))))))
{
goto IL_004d;
}
}
{
uint32_t L_4 = V_0;
EphemeronU5BU5D_t1564620431* L_5 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
NullCheck(L_5);
if ((!(((float)(((float)((float)(((double)((uint32_t)L_4))))))) < ((float)((float)il2cpp_codegen_multiply((float)(((float)((float)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))))), (float)(1.1f)))))))
{
goto IL_004d;
}
}
{
NullCheck((ConditionalWeakTable_2_t3582039290 *)__this);
(( void (*) (ConditionalWeakTable_2_t3582039290 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)((ConditionalWeakTable_2_t3582039290 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
return;
}
IL_004d:
{
uint32_t L_6 = V_0;
V_1 = (EphemeronU5BU5D_t1564620431*)((EphemeronU5BU5D_t1564620431*)SZArrayNew(EphemeronU5BU5D_t1564620431_il2cpp_TypeInfo_var, (uint32_t)L_6));
EphemeronU5BU5D_t1564620431* L_7 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(GC_t959872083_il2cpp_TypeInfo_var);
GC_register_ephemeron_array_m1855245127(NULL /*static, unused*/, (EphemeronU5BU5D_t1564620431*)L_7, /*hidden argument*/NULL);
__this->set_size_2(0);
V_2 = (int32_t)0;
goto IL_011c;
}
IL_0068:
{
EphemeronU5BU5D_t1564620431* L_8 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_9 = V_2;
NullCheck(L_8);
RuntimeObject * L_10 = (RuntimeObject *)((L_8)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9)))->get_key_0();
V_3 = (RuntimeObject *)L_10;
EphemeronU5BU5D_t1564620431* L_11 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_12 = V_2;
NullCheck(L_11);
RuntimeObject * L_13 = (RuntimeObject *)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_value_1();
V_4 = (RuntimeObject *)L_13;
RuntimeObject * L_14 = V_3;
if (!L_14)
{
goto IL_0118;
}
}
{
RuntimeObject * L_15 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(GC_t959872083_il2cpp_TypeInfo_var);
RuntimeObject * L_16 = ((GC_t959872083_StaticFields*)il2cpp_codegen_static_fields_for(GC_t959872083_il2cpp_TypeInfo_var))->get_EPHEMERON_TOMBSTONE_0();
if ((((RuntimeObject*)(RuntimeObject *)L_15) == ((RuntimeObject*)(RuntimeObject *)L_16)))
{
goto IL_0118;
}
}
{
EphemeronU5BU5D_t1564620431* L_17 = V_1;
NullCheck(L_17);
V_5 = (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_17)->max_length))));
V_8 = (int32_t)(-1);
RuntimeObject * L_18 = V_3;
int32_t L_19 = RuntimeHelpers_GetHashCode_m1610824259(NULL /*static, unused*/, (RuntimeObject *)L_18, /*hidden argument*/NULL);
int32_t L_20 = V_5;
int32_t L_21 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_19&(int32_t)((int32_t)2147483647LL)))%(int32_t)L_20));
V_7 = (int32_t)L_21;
V_6 = (int32_t)L_21;
}
IL_00b7:
{
EphemeronU5BU5D_t1564620431* L_22 = V_1;
int32_t L_23 = V_6;
NullCheck(L_22);
RuntimeObject * L_24 = (RuntimeObject *)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_key_0();
V_9 = (RuntimeObject *)L_24;
RuntimeObject * L_25 = V_9;
if (!L_25)
{
goto IL_00d3;
}
}
{
RuntimeObject * L_26 = V_9;
IL2CPP_RUNTIME_CLASS_INIT(GC_t959872083_il2cpp_TypeInfo_var);
RuntimeObject * L_27 = ((GC_t959872083_StaticFields*)il2cpp_codegen_static_fields_for(GC_t959872083_il2cpp_TypeInfo_var))->get_EPHEMERON_TOMBSTONE_0();
if ((!(((RuntimeObject*)(RuntimeObject *)L_26) == ((RuntimeObject*)(RuntimeObject *)L_27))))
{
goto IL_00d9;
}
}
IL_00d3:
{
int32_t L_28 = V_6;
V_8 = (int32_t)L_28;
goto IL_00ed;
}
IL_00d9:
{
int32_t L_29 = V_6;
int32_t L_30 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1));
V_6 = (int32_t)L_30;
int32_t L_31 = V_5;
if ((!(((uint32_t)L_30) == ((uint32_t)L_31))))
{
goto IL_00e7;
}
}
{
V_6 = (int32_t)0;
}
IL_00e7:
{
int32_t L_32 = V_6;
int32_t L_33 = V_7;
if ((!(((uint32_t)L_32) == ((uint32_t)L_33))))
{
goto IL_00b7;
}
}
IL_00ed:
{
EphemeronU5BU5D_t1564620431* L_34 = V_1;
int32_t L_35 = V_8;
NullCheck(L_34);
RuntimeObject * L_36 = V_3;
((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->set_key_0(L_36);
EphemeronU5BU5D_t1564620431* L_37 = V_1;
int32_t L_38 = V_8;
NullCheck(L_37);
RuntimeObject * L_39 = V_4;
((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->set_value_1(L_39);
int32_t L_40 = (int32_t)__this->get_size_2();
__this->set_size_2(((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)));
}
IL_0118:
{
int32_t L_41 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
}
IL_011c:
{
int32_t L_42 = V_2;
EphemeronU5BU5D_t1564620431* L_43 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
NullCheck(L_43);
if ((((int32_t)L_42) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_43)->max_length)))))))
{
goto IL_0068;
}
}
{
EphemeronU5BU5D_t1564620431* L_44 = V_1;
__this->set_data_0(L_44);
return;
}
}
// System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Add(TKey,TValue)
extern "C" IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Add_m789045879_gshared (ConditionalWeakTable_2_t3582039290 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConditionalWeakTable_2_Add_m789045879_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
RuntimeObject * V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_0018;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2009621981(L_1, (String_t*)_stringLiteral2340373683, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ConditionalWeakTable_2_Add_m789045879_RuntimeMethod_var);
}
IL_0018:
{
RuntimeObject * L_2 = (RuntimeObject *)__this->get__lock_1();
V_0 = (RuntimeObject *)L_2;
V_1 = (bool)0;
}
IL_0021:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_3 = V_0;
Monitor_Enter_m984175629(NULL /*static, unused*/, (RuntimeObject *)L_3, (bool*)(&V_1), /*hidden argument*/NULL);
int32_t L_4 = (int32_t)__this->get_size_2();
EphemeronU5BU5D_t1564620431* L_5 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
NullCheck(L_5);
if ((!(((float)(((float)((float)L_4)))) >= ((float)((float)il2cpp_codegen_multiply((float)(((float)((float)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))))), (float)(0.7f)))))))
{
goto IL_0047;
}
}
IL_0041:
{
NullCheck((ConditionalWeakTable_2_t3582039290 *)__this);
(( void (*) (ConditionalWeakTable_2_t3582039290 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3)->methodPointer)((ConditionalWeakTable_2_t3582039290 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3));
}
IL_0047:
{
EphemeronU5BU5D_t1564620431* L_6 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
NullCheck(L_6);
V_2 = (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length))));
V_5 = (int32_t)(-1);
RuntimeObject * L_7 = ___key0;
int32_t L_8 = RuntimeHelpers_GetHashCode_m1610824259(NULL /*static, unused*/, (RuntimeObject *)L_7, /*hidden argument*/NULL);
int32_t L_9 = V_2;
int32_t L_10 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)2147483647LL)))%(int32_t)L_9));
V_4 = (int32_t)L_10;
V_3 = (int32_t)L_10;
}
IL_006a:
{
EphemeronU5BU5D_t1564620431* L_11 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_12 = V_3;
NullCheck(L_11);
RuntimeObject * L_13 = (RuntimeObject *)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_key_0();
V_6 = (RuntimeObject *)L_13;
RuntimeObject * L_14 = V_6;
if (L_14)
{
goto IL_008b;
}
}
IL_0081:
{
int32_t L_15 = V_5;
if ((!(((uint32_t)L_15) == ((uint32_t)(-1)))))
{
goto IL_00c7;
}
}
IL_0086:
{
int32_t L_16 = V_3;
V_5 = (int32_t)L_16;
goto IL_00c7;
}
IL_008b:
{
RuntimeObject * L_17 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(GC_t959872083_il2cpp_TypeInfo_var);
RuntimeObject * L_18 = ((GC_t959872083_StaticFields*)il2cpp_codegen_static_fields_for(GC_t959872083_il2cpp_TypeInfo_var))->get_EPHEMERON_TOMBSTONE_0();
if ((!(((RuntimeObject*)(RuntimeObject *)L_17) == ((RuntimeObject*)(RuntimeObject *)L_18))))
{
goto IL_009e;
}
}
IL_0094:
{
int32_t L_19 = V_5;
if ((!(((uint32_t)L_19) == ((uint32_t)(-1)))))
{
goto IL_009e;
}
}
IL_0099:
{
int32_t L_20 = V_3;
V_5 = (int32_t)L_20;
goto IL_00b8;
}
IL_009e:
{
RuntimeObject * L_21 = V_6;
RuntimeObject * L_22 = ___key0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_21) == ((RuntimeObject*)(RuntimeObject *)L_22))))
{
goto IL_00b8;
}
}
IL_00a8:
{
ArgumentException_t132251570 * L_23 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_23, (String_t*)_stringLiteral3808374780, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23,ConditionalWeakTable_2_Add_m789045879_RuntimeMethod_var);
}
IL_00b8:
{
int32_t L_24 = V_3;
int32_t L_25 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
V_3 = (int32_t)L_25;
int32_t L_26 = V_2;
if ((!(((uint32_t)L_25) == ((uint32_t)L_26))))
{
goto IL_00c2;
}
}
IL_00c0:
{
V_3 = (int32_t)0;
}
IL_00c2:
{
int32_t L_27 = V_3;
int32_t L_28 = V_4;
if ((!(((uint32_t)L_27) == ((uint32_t)L_28))))
{
goto IL_006a;
}
}
IL_00c7:
{
EphemeronU5BU5D_t1564620431* L_29 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_30 = V_5;
NullCheck(L_29);
RuntimeObject * L_31 = ___key0;
((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->set_key_0(L_31);
EphemeronU5BU5D_t1564620431* L_32 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_33 = V_5;
NullCheck(L_32);
RuntimeObject * L_34 = ___value1;
((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->set_value_1(L_34);
int32_t L_35 = (int32_t)__this->get_size_2();
__this->set_size_2(((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)));
IL2CPP_LEAVE(0x111, FINALLY_0107);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0107;
}
FINALLY_0107:
{ // begin finally (depth: 1)
{
bool L_36 = V_1;
if (!L_36)
{
goto IL_0110;
}
}
IL_010a:
{
RuntimeObject * L_37 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, (RuntimeObject *)L_37, /*hidden argument*/NULL);
}
IL_0110:
{
IL2CPP_END_FINALLY(263)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(263)
{
IL2CPP_JUMP_TBL(0x111, IL_0111)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0111:
{
return;
}
}
// System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Remove(TKey)
extern "C" IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_Remove_m4015541508_gshared (ConditionalWeakTable_2_t3582039290 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConditionalWeakTable_2_Remove_m4015541508_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
RuntimeObject * V_5 = NULL;
bool V_6 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_0018;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2009621981(L_1, (String_t*)_stringLiteral2340373683, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ConditionalWeakTable_2_Remove_m4015541508_RuntimeMethod_var);
}
IL_0018:
{
RuntimeObject * L_2 = (RuntimeObject *)__this->get__lock_1();
V_0 = (RuntimeObject *)L_2;
V_1 = (bool)0;
}
IL_0021:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_3 = V_0;
Monitor_Enter_m984175629(NULL /*static, unused*/, (RuntimeObject *)L_3, (bool*)(&V_1), /*hidden argument*/NULL);
EphemeronU5BU5D_t1564620431* L_4 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
NullCheck(L_4);
V_2 = (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))));
RuntimeObject * L_5 = ___key0;
int32_t L_6 = RuntimeHelpers_GetHashCode_m1610824259(NULL /*static, unused*/, (RuntimeObject *)L_5, /*hidden argument*/NULL);
int32_t L_7 = V_2;
int32_t L_8 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6&(int32_t)((int32_t)2147483647LL)))%(int32_t)L_7));
V_4 = (int32_t)L_8;
V_3 = (int32_t)L_8;
}
IL_0049:
{
EphemeronU5BU5D_t1564620431* L_9 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_10 = V_3;
NullCheck(L_9);
RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_0();
V_5 = (RuntimeObject *)L_11;
RuntimeObject * L_12 = V_5;
RuntimeObject * L_13 = ___key0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_12) == ((RuntimeObject*)(RuntimeObject *)L_13))))
{
goto IL_00a1;
}
}
IL_0066:
{
EphemeronU5BU5D_t1564620431* L_14 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_15 = V_3;
NullCheck(L_14);
IL2CPP_RUNTIME_CLASS_INIT(GC_t959872083_il2cpp_TypeInfo_var);
RuntimeObject * L_16 = ((GC_t959872083_StaticFields*)il2cpp_codegen_static_fields_for(GC_t959872083_il2cpp_TypeInfo_var))->get_EPHEMERON_TOMBSTONE_0();
((L_14)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_15)))->set_key_0(L_16);
EphemeronU5BU5D_t1564620431* L_17 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_18 = V_3;
NullCheck(L_17);
((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->set_value_1(NULL);
int32_t L_19 = (int32_t)__this->get_size_2();
__this->set_size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)));
V_6 = (bool)1;
IL2CPP_LEAVE(0xC4, FINALLY_00b8);
}
IL_00a1:
{
RuntimeObject * L_20 = V_5;
if (L_20)
{
goto IL_00a7;
}
}
IL_00a5:
{
IL2CPP_LEAVE(0xC2, FINALLY_00b8);
}
IL_00a7:
{
int32_t L_21 = V_3;
int32_t L_22 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
V_3 = (int32_t)L_22;
int32_t L_23 = V_2;
if ((!(((uint32_t)L_22) == ((uint32_t)L_23))))
{
goto IL_00b1;
}
}
IL_00af:
{
V_3 = (int32_t)0;
}
IL_00b1:
{
int32_t L_24 = V_3;
int32_t L_25 = V_4;
if ((!(((uint32_t)L_24) == ((uint32_t)L_25))))
{
goto IL_0049;
}
}
IL_00b6:
{
IL2CPP_LEAVE(0xC2, FINALLY_00b8);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00b8;
}
FINALLY_00b8:
{ // begin finally (depth: 1)
{
bool L_26 = V_1;
if (!L_26)
{
goto IL_00c1;
}
}
IL_00bb:
{
RuntimeObject * L_27 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, (RuntimeObject *)L_27, /*hidden argument*/NULL);
}
IL_00c1:
{
IL2CPP_END_FINALLY(184)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(184)
{
IL2CPP_JUMP_TBL(0xC4, IL_00c4)
IL2CPP_JUMP_TBL(0xC2, IL_00c2)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00c2:
{
return (bool)0;
}
IL_00c4:
{
bool L_28 = V_6;
return L_28;
}
}
// System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
extern "C" IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_TryGetValue_m2005289596_gshared (ConditionalWeakTable_2_t3582039290 * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConditionalWeakTable_2_TryGetValue_m2005289596_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
RuntimeObject * V_5 = NULL;
bool V_6 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_0018;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2009621981(L_1, (String_t*)_stringLiteral2340373683, (String_t*)_stringLiteral2600271970, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ConditionalWeakTable_2_TryGetValue_m2005289596_RuntimeMethod_var);
}
IL_0018:
{
RuntimeObject ** L_2 = ___value1;
il2cpp_codegen_initobj(L_2, sizeof(RuntimeObject *));
RuntimeObject * L_3 = (RuntimeObject *)__this->get__lock_1();
V_0 = (RuntimeObject *)L_3;
V_1 = (bool)0;
}
IL_0028:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_4 = V_0;
Monitor_Enter_m984175629(NULL /*static, unused*/, (RuntimeObject *)L_4, (bool*)(&V_1), /*hidden argument*/NULL);
EphemeronU5BU5D_t1564620431* L_5 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
NullCheck(L_5);
V_2 = (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))));
RuntimeObject * L_6 = ___key0;
int32_t L_7 = RuntimeHelpers_GetHashCode_m1610824259(NULL /*static, unused*/, (RuntimeObject *)L_6, /*hidden argument*/NULL);
int32_t L_8 = V_2;
int32_t L_9 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7&(int32_t)((int32_t)2147483647LL)))%(int32_t)L_8));
V_4 = (int32_t)L_9;
V_3 = (int32_t)L_9;
}
IL_0050:
{
EphemeronU5BU5D_t1564620431* L_10 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_11 = V_3;
NullCheck(L_10);
RuntimeObject * L_12 = (RuntimeObject *)((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->get_key_0();
V_5 = (RuntimeObject *)L_12;
RuntimeObject * L_13 = V_5;
RuntimeObject * L_14 = ___key0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_13) == ((RuntimeObject*)(RuntimeObject *)L_14))))
{
goto IL_008e;
}
}
IL_006d:
{
RuntimeObject ** L_15 = ___value1;
EphemeronU5BU5D_t1564620431* L_16 = (EphemeronU5BU5D_t1564620431*)__this->get_data_0();
int32_t L_17 = V_3;
NullCheck(L_16);
RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_value_1();
*(RuntimeObject **)L_15 = ((RuntimeObject *)Castclass((RuntimeObject*)L_18, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4)));
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_15, ((RuntimeObject *)Castclass((RuntimeObject*)L_18, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4))));
V_6 = (bool)1;
IL2CPP_LEAVE(0xB1, FINALLY_00a5);
}
IL_008e:
{
RuntimeObject * L_19 = V_5;
if (L_19)
{
goto IL_0094;
}
}
IL_0092:
{
IL2CPP_LEAVE(0xAF, FINALLY_00a5);
}
IL_0094:
{
int32_t L_20 = V_3;
int32_t L_21 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
V_3 = (int32_t)L_21;
int32_t L_22 = V_2;
if ((!(((uint32_t)L_21) == ((uint32_t)L_22))))
{
goto IL_009e;
}
}
IL_009c:
{
V_3 = (int32_t)0;
}
IL_009e:
{
int32_t L_23 = V_3;
int32_t L_24 = V_4;
if ((!(((uint32_t)L_23) == ((uint32_t)L_24))))
{
goto IL_0050;
}
}
IL_00a3:
{
IL2CPP_LEAVE(0xAF, FINALLY_00a5);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00a5;
}
FINALLY_00a5:
{ // begin finally (depth: 1)
{
bool L_25 = V_1;
if (!L_25)
{
goto IL_00ae;
}
}
IL_00a8:
{
RuntimeObject * L_26 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, (RuntimeObject *)L_26, /*hidden argument*/NULL);
}
IL_00ae:
{
IL2CPP_END_FINALLY(165)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(165)
{
IL2CPP_JUMP_TBL(0xB1, IL_00b1)
IL2CPP_JUMP_TBL(0xAF, IL_00af)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00af:
{
return (bool)0;
}
IL_00b1:
{
bool L_27 = V_6;
return L_27;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m2103845850_gshared (ConfiguredTaskAwaiter_t1419788950 * __this, Task_1_t1502828140 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
{
Task_1_t1502828140 * L_0 = ___task0;
__this->set_m_task_0(L_0);
bool L_1 = ___continueOnCapturedContext1;
__this->set_m_continueOnCapturedContext_1(L_1);
return;
}
}
extern "C" void ConfiguredTaskAwaiter__ctor_m2103845850_AdjustorThunk (RuntimeObject * __this, Task_1_t1502828140 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t1419788950 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t1419788950 *>(__this + 1);
ConfiguredTaskAwaiter__ctor_m2103845850(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method);
}
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m2159915331_gshared (ConfiguredTaskAwaiter_t1419788950 * __this, const RuntimeMethod* method)
{
{
Task_1_t1502828140 * L_0 = (Task_1_t1502828140 *)__this->get_m_task_0();
NullCheck((Task_t3187275312 *)L_0);
bool L_1 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" bool ConfiguredTaskAwaiter_get_IsCompleted_m2159915331_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t1419788950 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t1419788950 *>(__this + 1);
return ConfiguredTaskAwaiter_get_IsCompleted_m2159915331(_thisAdjusted, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m706797106_gshared (ConfiguredTaskAwaiter_t1419788950 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t1502828140 * L_0 = (Task_1_t1502828140 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1();
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)L_2, (bool)1, /*hidden argument*/NULL);
return;
}
}
extern "C" void ConfiguredTaskAwaiter_OnCompleted_m706797106_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t1419788950 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t1419788950 *>(__this + 1);
ConfiguredTaskAwaiter_OnCompleted_m706797106(_thisAdjusted, ___continuation0, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m3442970999_gshared (ConfiguredTaskAwaiter_t1419788950 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t1502828140 * L_0 = (Task_1_t1502828140 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1();
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)L_2, (bool)0, /*hidden argument*/NULL);
return;
}
}
extern "C" void ConfiguredTaskAwaiter_UnsafeOnCompleted_m3442970999_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t1419788950 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t1419788950 *>(__this + 1);
ConfiguredTaskAwaiter_UnsafeOnCompleted_m3442970999(_thisAdjusted, ___continuation0, method);
}
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::GetResult()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_GetResult_m933849130_gshared (ConfiguredTaskAwaiter_t1419788950 * __this, const RuntimeMethod* method)
{
{
Task_1_t1502828140 * L_0 = (Task_1_t1502828140 *)__this->get_m_task_0();
TaskAwaiter_ValidateEnd_m2858169533(NULL /*static, unused*/, (Task_t3187275312 *)L_0, /*hidden argument*/NULL);
Task_1_t1502828140 * L_1 = (Task_1_t1502828140 *)__this->get_m_task_0();
NullCheck((Task_1_t1502828140 *)L_1);
bool L_2 = (( bool (*) (Task_1_t1502828140 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0)->methodPointer)((Task_1_t1502828140 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
return L_2;
}
}
extern "C" bool ConfiguredTaskAwaiter_GetResult_m933849130_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t1419788950 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t1419788950 *>(__this + 1);
return ConfiguredTaskAwaiter_GetResult_m933849130(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m2831982449_gshared (ConfiguredTaskAwaiter_t4273446738 * __this, Task_1_t61518632 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
{
Task_1_t61518632 * L_0 = ___task0;
__this->set_m_task_0(L_0);
bool L_1 = ___continueOnCapturedContext1;
__this->set_m_continueOnCapturedContext_1(L_1);
return;
}
}
extern "C" void ConfiguredTaskAwaiter__ctor_m2831982449_AdjustorThunk (RuntimeObject * __this, Task_1_t61518632 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t4273446738 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t4273446738 *>(__this + 1);
ConfiguredTaskAwaiter__ctor_m2831982449(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method);
}
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m3004702642_gshared (ConfiguredTaskAwaiter_t4273446738 * __this, const RuntimeMethod* method)
{
{
Task_1_t61518632 * L_0 = (Task_1_t61518632 *)__this->get_m_task_0();
NullCheck((Task_t3187275312 *)L_0);
bool L_1 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" bool ConfiguredTaskAwaiter_get_IsCompleted_m3004702642_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t4273446738 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t4273446738 *>(__this + 1);
return ConfiguredTaskAwaiter_get_IsCompleted_m3004702642(_thisAdjusted, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m3545591048_gshared (ConfiguredTaskAwaiter_t4273446738 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t61518632 * L_0 = (Task_1_t61518632 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1();
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)L_2, (bool)1, /*hidden argument*/NULL);
return;
}
}
extern "C" void ConfiguredTaskAwaiter_OnCompleted_m3545591048_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t4273446738 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t4273446738 *>(__this + 1);
ConfiguredTaskAwaiter_OnCompleted_m3545591048(_thisAdjusted, ___continuation0, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m1243958530_gshared (ConfiguredTaskAwaiter_t4273446738 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t61518632 * L_0 = (Task_1_t61518632 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1();
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)L_2, (bool)0, /*hidden argument*/NULL);
return;
}
}
extern "C" void ConfiguredTaskAwaiter_UnsafeOnCompleted_m1243958530_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t4273446738 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t4273446738 *>(__this + 1);
ConfiguredTaskAwaiter_UnsafeOnCompleted_m1243958530(_thisAdjusted, ___continuation0, method);
}
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::GetResult()
extern "C" IL2CPP_METHOD_ATTR int32_t ConfiguredTaskAwaiter_GetResult_m988772279_gshared (ConfiguredTaskAwaiter_t4273446738 * __this, const RuntimeMethod* method)
{
{
Task_1_t61518632 * L_0 = (Task_1_t61518632 *)__this->get_m_task_0();
TaskAwaiter_ValidateEnd_m2858169533(NULL /*static, unused*/, (Task_t3187275312 *)L_0, /*hidden argument*/NULL);
Task_1_t61518632 * L_1 = (Task_1_t61518632 *)__this->get_m_task_0();
NullCheck((Task_1_t61518632 *)L_1);
int32_t L_2 = (( int32_t (*) (Task_1_t61518632 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0)->methodPointer)((Task_1_t61518632 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
return L_2;
}
}
extern "C" int32_t ConfiguredTaskAwaiter_GetResult_m988772279_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t4273446738 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t4273446738 *>(__this + 1);
return ConfiguredTaskAwaiter_GetResult_m988772279(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m3698204470_gshared (ConfiguredTaskAwaiter_t107639853 * __this, Task_1_t190679043 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
{
Task_1_t190679043 * L_0 = ___task0;
__this->set_m_task_0(L_0);
bool L_1 = ___continueOnCapturedContext1;
__this->set_m_continueOnCapturedContext_1(L_1);
return;
}
}
extern "C" void ConfiguredTaskAwaiter__ctor_m3698204470_AdjustorThunk (RuntimeObject * __this, Task_1_t190679043 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t107639853 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t107639853 *>(__this + 1);
ConfiguredTaskAwaiter__ctor_m3698204470(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method);
}
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m1080323900_gshared (ConfiguredTaskAwaiter_t107639853 * __this, const RuntimeMethod* method)
{
{
Task_1_t190679043 * L_0 = (Task_1_t190679043 *)__this->get_m_task_0();
NullCheck((Task_t3187275312 *)L_0);
bool L_1 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" bool ConfiguredTaskAwaiter_get_IsCompleted_m1080323900_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t107639853 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t107639853 *>(__this + 1);
return ConfiguredTaskAwaiter_get_IsCompleted_m1080323900(_thisAdjusted, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m2589162409_gshared (ConfiguredTaskAwaiter_t107639853 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t190679043 * L_0 = (Task_1_t190679043 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1();
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)L_2, (bool)1, /*hidden argument*/NULL);
return;
}
}
extern "C" void ConfiguredTaskAwaiter_OnCompleted_m2589162409_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t107639853 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t107639853 *>(__this + 1);
ConfiguredTaskAwaiter_OnCompleted_m2589162409(_thisAdjusted, ___continuation0, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m3692831591_gshared (ConfiguredTaskAwaiter_t107639853 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t190679043 * L_0 = (Task_1_t190679043 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1();
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)L_2, (bool)0, /*hidden argument*/NULL);
return;
}
}
extern "C" void ConfiguredTaskAwaiter_UnsafeOnCompleted_m3692831591_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t107639853 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t107639853 *>(__this + 1);
ConfiguredTaskAwaiter_UnsafeOnCompleted_m3692831591(_thisAdjusted, ___continuation0, method);
}
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::GetResult()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * ConfiguredTaskAwaiter_GetResult_m2513714076_gshared (ConfiguredTaskAwaiter_t107639853 * __this, const RuntimeMethod* method)
{
{
Task_1_t190679043 * L_0 = (Task_1_t190679043 *)__this->get_m_task_0();
TaskAwaiter_ValidateEnd_m2858169533(NULL /*static, unused*/, (Task_t3187275312 *)L_0, /*hidden argument*/NULL);
Task_1_t190679043 * L_1 = (Task_1_t190679043 *)__this->get_m_task_0();
NullCheck((Task_1_t190679043 *)L_1);
RuntimeObject * L_2 = (( RuntimeObject * (*) (Task_1_t190679043 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0)->methodPointer)((Task_1_t190679043 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
return L_2;
}
}
extern "C" RuntimeObject * ConfiguredTaskAwaiter_GetResult_m2513714076_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t107639853 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t107639853 *>(__this + 1);
return ConfiguredTaskAwaiter_GetResult_m2513714076(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m3958604058_gshared (ConfiguredTaskAwaiter_t3939089564 * __this, Task_1_t4022128754 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
{
Task_1_t4022128754 * L_0 = ___task0;
__this->set_m_task_0(L_0);
bool L_1 = ___continueOnCapturedContext1;
__this->set_m_continueOnCapturedContext_1(L_1);
return;
}
}
extern "C" void ConfiguredTaskAwaiter__ctor_m3958604058_AdjustorThunk (RuntimeObject * __this, Task_1_t4022128754 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t3939089564 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t3939089564 *>(__this + 1);
ConfiguredTaskAwaiter__ctor_m3958604058(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method);
}
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m2967648714_gshared (ConfiguredTaskAwaiter_t3939089564 * __this, const RuntimeMethod* method)
{
{
Task_1_t4022128754 * L_0 = (Task_1_t4022128754 *)__this->get_m_task_0();
NullCheck((Task_t3187275312 *)L_0);
bool L_1 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" bool ConfiguredTaskAwaiter_get_IsCompleted_m2967648714_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t3939089564 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t3939089564 *>(__this + 1);
return ConfiguredTaskAwaiter_get_IsCompleted_m2967648714(_thisAdjusted, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m4232353583_gshared (ConfiguredTaskAwaiter_t3939089564 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t4022128754 * L_0 = (Task_1_t4022128754 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1();
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)L_2, (bool)1, /*hidden argument*/NULL);
return;
}
}
extern "C" void ConfiguredTaskAwaiter_OnCompleted_m4232353583_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t3939089564 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t3939089564 *>(__this + 1);
ConfiguredTaskAwaiter_OnCompleted_m4232353583(_thisAdjusted, ___continuation0, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m2193039458_gshared (ConfiguredTaskAwaiter_t3939089564 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t4022128754 * L_0 = (Task_1_t4022128754 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1();
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)L_2, (bool)0, /*hidden argument*/NULL);
return;
}
}
extern "C" void ConfiguredTaskAwaiter_UnsafeOnCompleted_m2193039458_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t3939089564 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t3939089564 *>(__this + 1);
ConfiguredTaskAwaiter_UnsafeOnCompleted_m2193039458(_thisAdjusted, ___continuation0, method);
}
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::GetResult()
extern "C" IL2CPP_METHOD_ATTR VoidTaskResult_t2616588579 ConfiguredTaskAwaiter_GetResult_m2308804723_gshared (ConfiguredTaskAwaiter_t3939089564 * __this, const RuntimeMethod* method)
{
{
Task_1_t4022128754 * L_0 = (Task_1_t4022128754 *)__this->get_m_task_0();
TaskAwaiter_ValidateEnd_m2858169533(NULL /*static, unused*/, (Task_t3187275312 *)L_0, /*hidden argument*/NULL);
Task_1_t4022128754 * L_1 = (Task_1_t4022128754 *)__this->get_m_task_0();
NullCheck((Task_1_t4022128754 *)L_1);
VoidTaskResult_t2616588579 L_2 = (( VoidTaskResult_t2616588579 (*) (Task_1_t4022128754 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0)->methodPointer)((Task_1_t4022128754 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
return L_2;
}
}
extern "C" VoidTaskResult_t2616588579 ConfiguredTaskAwaiter_GetResult_m2308804723_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaiter_t3939089564 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t3939089564 *>(__this + 1);
return ConfiguredTaskAwaiter_GetResult_m2308804723(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m2526203514_gshared (ConfiguredTaskAwaitable_1_t2695215308 * __this, Task_1_t1502828140 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
{
Task_1_t1502828140 * L_0 = ___task0;
bool L_1 = ___continueOnCapturedContext1;
ConfiguredTaskAwaiter_t1419788950 L_2;
memset(&L_2, 0, sizeof(L_2));
ConfiguredTaskAwaiter__ctor_m2103845850((&L_2), (Task_1_t1502828140 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
__this->set_m_configuredTaskAwaiter_0(L_2);
return;
}
}
extern "C" void ConfiguredTaskAwaitable_1__ctor_m2526203514_AdjustorThunk (RuntimeObject * __this, Task_1_t1502828140 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
ConfiguredTaskAwaitable_1_t2695215308 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t2695215308 *>(__this + 1);
ConfiguredTaskAwaitable_1__ctor_m2526203514(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method);
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t1419788950 ConfiguredTaskAwaitable_1_GetAwaiter_m2013000867_gshared (ConfiguredTaskAwaitable_1_t2695215308 * __this, const RuntimeMethod* method)
{
{
ConfiguredTaskAwaiter_t1419788950 L_0 = (ConfiguredTaskAwaiter_t1419788950 )__this->get_m_configuredTaskAwaiter_0();
return L_0;
}
}
extern "C" ConfiguredTaskAwaiter_t1419788950 ConfiguredTaskAwaitable_1_GetAwaiter_m2013000867_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaitable_1_t2695215308 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t2695215308 *>(__this + 1);
return ConfiguredTaskAwaitable_1_GetAwaiter_m2013000867(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m2950476429_gshared (ConfiguredTaskAwaitable_1_t1253905800 * __this, Task_1_t61518632 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
{
Task_1_t61518632 * L_0 = ___task0;
bool L_1 = ___continueOnCapturedContext1;
ConfiguredTaskAwaiter_t4273446738 L_2;
memset(&L_2, 0, sizeof(L_2));
ConfiguredTaskAwaiter__ctor_m2831982449((&L_2), (Task_1_t61518632 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
__this->set_m_configuredTaskAwaiter_0(L_2);
return;
}
}
extern "C" void ConfiguredTaskAwaitable_1__ctor_m2950476429_AdjustorThunk (RuntimeObject * __this, Task_1_t61518632 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
ConfiguredTaskAwaitable_1_t1253905800 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t1253905800 *>(__this + 1);
ConfiguredTaskAwaitable_1__ctor_m2950476429(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method);
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t4273446738 ConfiguredTaskAwaitable_1_GetAwaiter_m2730877693_gshared (ConfiguredTaskAwaitable_1_t1253905800 * __this, const RuntimeMethod* method)
{
{
ConfiguredTaskAwaiter_t4273446738 L_0 = (ConfiguredTaskAwaiter_t4273446738 )__this->get_m_configuredTaskAwaiter_0();
return L_0;
}
}
extern "C" ConfiguredTaskAwaiter_t4273446738 ConfiguredTaskAwaitable_1_GetAwaiter_m2730877693_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaitable_1_t1253905800 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t1253905800 *>(__this + 1);
return ConfiguredTaskAwaitable_1_GetAwaiter_m2730877693(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m1147622556_gshared (ConfiguredTaskAwaitable_1_t1383066211 * __this, Task_1_t190679043 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
{
Task_1_t190679043 * L_0 = ___task0;
bool L_1 = ___continueOnCapturedContext1;
ConfiguredTaskAwaiter_t107639853 L_2;
memset(&L_2, 0, sizeof(L_2));
ConfiguredTaskAwaiter__ctor_m3698204470((&L_2), (Task_1_t190679043 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
__this->set_m_configuredTaskAwaiter_0(L_2);
return;
}
}
extern "C" void ConfiguredTaskAwaitable_1__ctor_m1147622556_AdjustorThunk (RuntimeObject * __this, Task_1_t190679043 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
ConfiguredTaskAwaitable_1_t1383066211 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t1383066211 *>(__this + 1);
ConfiguredTaskAwaitable_1__ctor_m1147622556(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method);
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t107639853 ConfiguredTaskAwaitable_1_GetAwaiter_m2061313211_gshared (ConfiguredTaskAwaitable_1_t1383066211 * __this, const RuntimeMethod* method)
{
{
ConfiguredTaskAwaiter_t107639853 L_0 = (ConfiguredTaskAwaiter_t107639853 )__this->get_m_configuredTaskAwaiter_0();
return L_0;
}
}
extern "C" ConfiguredTaskAwaiter_t107639853 ConfiguredTaskAwaitable_1_GetAwaiter_m2061313211_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaitable_1_t1383066211 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t1383066211 *>(__this + 1);
return ConfiguredTaskAwaitable_1_GetAwaiter_m2061313211(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m767716706_gshared (ConfiguredTaskAwaitable_1_t919548626 * __this, Task_1_t4022128754 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
{
Task_1_t4022128754 * L_0 = ___task0;
bool L_1 = ___continueOnCapturedContext1;
ConfiguredTaskAwaiter_t3939089564 L_2;
memset(&L_2, 0, sizeof(L_2));
ConfiguredTaskAwaiter__ctor_m3958604058((&L_2), (Task_1_t4022128754 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
__this->set_m_configuredTaskAwaiter_0(L_2);
return;
}
}
extern "C" void ConfiguredTaskAwaitable_1__ctor_m767716706_AdjustorThunk (RuntimeObject * __this, Task_1_t4022128754 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method)
{
ConfiguredTaskAwaitable_1_t919548626 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t919548626 *>(__this + 1);
ConfiguredTaskAwaitable_1__ctor_m767716706(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method);
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t3939089564 ConfiguredTaskAwaitable_1_GetAwaiter_m3345426369_gshared (ConfiguredTaskAwaitable_1_t919548626 * __this, const RuntimeMethod* method)
{
{
ConfiguredTaskAwaiter_t3939089564 L_0 = (ConfiguredTaskAwaiter_t3939089564 )__this->get_m_configuredTaskAwaiter_0();
return L_0;
}
}
extern "C" ConfiguredTaskAwaiter_t3939089564 ConfiguredTaskAwaitable_1_GetAwaiter_m3345426369_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfiguredTaskAwaitable_1_t919548626 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t919548626 *>(__this + 1);
return ConfiguredTaskAwaitable_1_GetAwaiter_m3345426369(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m550699798_gshared (TaskAwaiter_1_t2891770396 * __this, Task_1_t1502828140 * ___task0, const RuntimeMethod* method)
{
{
Task_1_t1502828140 * L_0 = ___task0;
__this->set_m_task_0(L_0);
return;
}
}
extern "C" void TaskAwaiter_1__ctor_m550699798_AdjustorThunk (RuntimeObject * __this, Task_1_t1502828140 * ___task0, const RuntimeMethod* method)
{
TaskAwaiter_1_t2891770396 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t2891770396 *>(__this + 1);
TaskAwaiter_1__ctor_m550699798(_thisAdjusted, ___task0, method);
}
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_OnCompleted_m2832733403_gshared (TaskAwaiter_1_t2891770396 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t1502828140 * L_0 = (Task_1_t1502828140 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)1, (bool)1, /*hidden argument*/NULL);
return;
}
}
extern "C" void TaskAwaiter_1_OnCompleted_m2832733403_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
TaskAwaiter_1_t2891770396 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t2891770396 *>(__this + 1);
TaskAwaiter_1_OnCompleted_m2832733403(_thisAdjusted, ___continuation0, method);
}
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m318951708_gshared (TaskAwaiter_1_t2891770396 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t1502828140 * L_0 = (Task_1_t1502828140 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL);
return;
}
}
extern "C" void TaskAwaiter_1_UnsafeOnCompleted_m318951708_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
TaskAwaiter_1_t2891770396 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t2891770396 *>(__this + 1);
TaskAwaiter_1_UnsafeOnCompleted_m318951708(_thisAdjusted, ___continuation0, method);
}
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::GetResult()
extern "C" IL2CPP_METHOD_ATTR bool TaskAwaiter_1_GetResult_m1801915560_gshared (TaskAwaiter_1_t2891770396 * __this, const RuntimeMethod* method)
{
{
Task_1_t1502828140 * L_0 = (Task_1_t1502828140 *)__this->get_m_task_0();
TaskAwaiter_ValidateEnd_m2858169533(NULL /*static, unused*/, (Task_t3187275312 *)L_0, /*hidden argument*/NULL);
Task_1_t1502828140 * L_1 = (Task_1_t1502828140 *)__this->get_m_task_0();
NullCheck((Task_1_t1502828140 *)L_1);
bool L_2 = (( bool (*) (Task_1_t1502828140 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0)->methodPointer)((Task_1_t1502828140 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
return L_2;
}
}
extern "C" bool TaskAwaiter_1_GetResult_m1801915560_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
TaskAwaiter_1_t2891770396 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t2891770396 *>(__this + 1);
return TaskAwaiter_1_GetResult_m1801915560(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m284636341_gshared (TaskAwaiter_1_t1450460888 * __this, Task_1_t61518632 * ___task0, const RuntimeMethod* method)
{
{
Task_1_t61518632 * L_0 = ___task0;
__this->set_m_task_0(L_0);
return;
}
}
extern "C" void TaskAwaiter_1__ctor_m284636341_AdjustorThunk (RuntimeObject * __this, Task_1_t61518632 * ___task0, const RuntimeMethod* method)
{
TaskAwaiter_1_t1450460888 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1450460888 *>(__this + 1);
TaskAwaiter_1__ctor_m284636341(_thisAdjusted, ___task0, method);
}
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_OnCompleted_m3456984506_gshared (TaskAwaiter_1_t1450460888 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t61518632 * L_0 = (Task_1_t61518632 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)1, (bool)1, /*hidden argument*/NULL);
return;
}
}
extern "C" void TaskAwaiter_1_OnCompleted_m3456984506_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
TaskAwaiter_1_t1450460888 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1450460888 *>(__this + 1);
TaskAwaiter_1_OnCompleted_m3456984506(_thisAdjusted, ___continuation0, method);
}
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m3962170564_gshared (TaskAwaiter_1_t1450460888 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t61518632 * L_0 = (Task_1_t61518632 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL);
return;
}
}
extern "C" void TaskAwaiter_1_UnsafeOnCompleted_m3962170564_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
TaskAwaiter_1_t1450460888 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1450460888 *>(__this + 1);
TaskAwaiter_1_UnsafeOnCompleted_m3962170564(_thisAdjusted, ___continuation0, method);
}
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult()
extern "C" IL2CPP_METHOD_ATTR int32_t TaskAwaiter_1_GetResult_m3496793423_gshared (TaskAwaiter_1_t1450460888 * __this, const RuntimeMethod* method)
{
{
Task_1_t61518632 * L_0 = (Task_1_t61518632 *)__this->get_m_task_0();
TaskAwaiter_ValidateEnd_m2858169533(NULL /*static, unused*/, (Task_t3187275312 *)L_0, /*hidden argument*/NULL);
Task_1_t61518632 * L_1 = (Task_1_t61518632 *)__this->get_m_task_0();
NullCheck((Task_1_t61518632 *)L_1);
int32_t L_2 = (( int32_t (*) (Task_1_t61518632 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0)->methodPointer)((Task_1_t61518632 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
return L_2;
}
}
extern "C" int32_t TaskAwaiter_1_GetResult_m3496793423_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
TaskAwaiter_1_t1450460888 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1450460888 *>(__this + 1);
return TaskAwaiter_1_GetResult_m3496793423(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m896688224_gshared (TaskAwaiter_1_t1579621299 * __this, Task_1_t190679043 * ___task0, const RuntimeMethod* method)
{
{
Task_1_t190679043 * L_0 = ___task0;
__this->set_m_task_0(L_0);
return;
}
}
extern "C" void TaskAwaiter_1__ctor_m896688224_AdjustorThunk (RuntimeObject * __this, Task_1_t190679043 * ___task0, const RuntimeMethod* method)
{
TaskAwaiter_1_t1579621299 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1579621299 *>(__this + 1);
TaskAwaiter_1__ctor_m896688224(_thisAdjusted, ___task0, method);
}
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_OnCompleted_m3037935667_gshared (TaskAwaiter_1_t1579621299 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t190679043 * L_0 = (Task_1_t190679043 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)1, (bool)1, /*hidden argument*/NULL);
return;
}
}
extern "C" void TaskAwaiter_1_OnCompleted_m3037935667_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
TaskAwaiter_1_t1579621299 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1579621299 *>(__this + 1);
TaskAwaiter_1_OnCompleted_m3037935667(_thisAdjusted, ___continuation0, method);
}
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m2909677046_gshared (TaskAwaiter_1_t1579621299 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t190679043 * L_0 = (Task_1_t190679043 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL);
return;
}
}
extern "C" void TaskAwaiter_1_UnsafeOnCompleted_m2909677046_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
TaskAwaiter_1_t1579621299 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1579621299 *>(__this + 1);
TaskAwaiter_1_UnsafeOnCompleted_m2909677046(_thisAdjusted, ___continuation0, method);
}
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * TaskAwaiter_1_GetResult_m3577040539_gshared (TaskAwaiter_1_t1579621299 * __this, const RuntimeMethod* method)
{
{
Task_1_t190679043 * L_0 = (Task_1_t190679043 *)__this->get_m_task_0();
TaskAwaiter_ValidateEnd_m2858169533(NULL /*static, unused*/, (Task_t3187275312 *)L_0, /*hidden argument*/NULL);
Task_1_t190679043 * L_1 = (Task_1_t190679043 *)__this->get_m_task_0();
NullCheck((Task_1_t190679043 *)L_1);
RuntimeObject * L_2 = (( RuntimeObject * (*) (Task_1_t190679043 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0)->methodPointer)((Task_1_t190679043 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
return L_2;
}
}
extern "C" RuntimeObject * TaskAwaiter_1_GetResult_m3577040539_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
TaskAwaiter_1_t1579621299 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1579621299 *>(__this + 1);
return TaskAwaiter_1_GetResult_m3577040539(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m1406333919_gshared (TaskAwaiter_1_t1116103714 * __this, Task_1_t4022128754 * ___task0, const RuntimeMethod* method)
{
{
Task_1_t4022128754 * L_0 = ___task0;
__this->set_m_task_0(L_0);
return;
}
}
extern "C" void TaskAwaiter_1__ctor_m1406333919_AdjustorThunk (RuntimeObject * __this, Task_1_t4022128754 * ___task0, const RuntimeMethod* method)
{
TaskAwaiter_1_t1116103714 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1116103714 *>(__this + 1);
TaskAwaiter_1__ctor_m1406333919(_thisAdjusted, ___task0, method);
}
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_OnCompleted_m4099863949_gshared (TaskAwaiter_1_t1116103714 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t4022128754 * L_0 = (Task_1_t4022128754 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)1, (bool)1, /*hidden argument*/NULL);
return;
}
}
extern "C" void TaskAwaiter_1_OnCompleted_m4099863949_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
TaskAwaiter_1_t1116103714 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1116103714 *>(__this + 1);
TaskAwaiter_1_OnCompleted_m4099863949(_thisAdjusted, ___continuation0, method);
}
// System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m1869997860_gshared (TaskAwaiter_1_t1116103714 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
{
Task_1_t4022128754 * L_0 = (Task_1_t4022128754 *)__this->get_m_task_0();
Action_t1264377477 * L_1 = ___continuation0;
TaskAwaiter_OnCompletedInternal_m3370334999(NULL /*static, unused*/, (Task_t3187275312 *)L_0, (Action_t1264377477 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL);
return;
}
}
extern "C" void TaskAwaiter_1_UnsafeOnCompleted_m1869997860_AdjustorThunk (RuntimeObject * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method)
{
TaskAwaiter_1_t1116103714 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1116103714 *>(__this + 1);
TaskAwaiter_1_UnsafeOnCompleted_m1869997860(_thisAdjusted, ___continuation0, method);
}
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::GetResult()
extern "C" IL2CPP_METHOD_ATTR VoidTaskResult_t2616588579 TaskAwaiter_1_GetResult_m1558525817_gshared (TaskAwaiter_1_t1116103714 * __this, const RuntimeMethod* method)
{
{
Task_1_t4022128754 * L_0 = (Task_1_t4022128754 *)__this->get_m_task_0();
TaskAwaiter_ValidateEnd_m2858169533(NULL /*static, unused*/, (Task_t3187275312 *)L_0, /*hidden argument*/NULL);
Task_1_t4022128754 * L_1 = (Task_1_t4022128754 *)__this->get_m_task_0();
NullCheck((Task_1_t4022128754 *)L_1);
VoidTaskResult_t2616588579 L_2 = (( VoidTaskResult_t2616588579 (*) (Task_1_t4022128754 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0)->methodPointer)((Task_1_t4022128754 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
return L_2;
}
}
extern "C" VoidTaskResult_t2616588579 TaskAwaiter_1_GetResult_m1558525817_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
TaskAwaiter_1_t1116103714 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t1116103714 *>(__this + 1);
return TaskAwaiter_1_GetResult_m1558525817(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.RuntimeType/ListBuilder`1<System.Object>::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void ListBuilder_1__ctor_m282577595_gshared (ListBuilder_1_t2117425360 * __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
__this->set__items_0((ObjectU5BU5D_t2843939325*)NULL);
RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of__item_1();
il2cpp_codegen_initobj(L_0, sizeof(RuntimeObject *));
__this->set__count_2(0);
int32_t L_1 = ___capacity0;
__this->set__capacity_3(L_1);
return;
}
}
extern "C" void ListBuilder_1__ctor_m282577595_AdjustorThunk (RuntimeObject * __this, int32_t ___capacity0, const RuntimeMethod* method)
{
ListBuilder_1_t2117425360 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t2117425360 *>(__this + 1);
ListBuilder_1__ctor_m282577595(_thisAdjusted, ___capacity0, method);
}
// T System.RuntimeType/ListBuilder`1<System.Object>::get_Item(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * ListBuilder_1_get_Item_m1396234805_gshared (ListBuilder_1_t2117425360 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__items_0();
if (L_0)
{
goto IL_000f;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)__this->get__item_1();
return L_1;
}
IL_000f:
{
ObjectU5BU5D_t2843939325* L_2 = (ObjectU5BU5D_t2843939325*)__this->get__items_0();
int32_t L_3 = ___index0;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
extern "C" RuntimeObject * ListBuilder_1_get_Item_m1396234805_AdjustorThunk (RuntimeObject * __this, int32_t ___index0, const RuntimeMethod* method)
{
ListBuilder_1_t2117425360 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t2117425360 *>(__this + 1);
return ListBuilder_1_get_Item_m1396234805(_thisAdjusted, ___index0, method);
}
// T[] System.RuntimeType/ListBuilder`1<System.Object>::ToArray()
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* ListBuilder_1_ToArray_m1549891216_gshared (ListBuilder_1_t2117425360 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__count_2();
if (L_0)
{
goto IL_000e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
ObjectU5BU5D_t2843939325* L_1 = ((EmptyArray_1_t3464466611_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0)))->get_Value_0();
return L_1;
}
IL_000e:
{
int32_t L_2 = (int32_t)__this->get__count_2();
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_002b;
}
}
{
ObjectU5BU5D_t2843939325* L_3 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), (uint32_t)1));
RuntimeObject * L_4 = (RuntimeObject *)__this->get__item_1();
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
return L_3;
}
IL_002b:
{
ObjectU5BU5D_t2843939325** L_5 = (ObjectU5BU5D_t2843939325**)__this->get_address_of__items_0();
int32_t L_6 = (int32_t)__this->get__count_2();
(( void (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325**)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
int32_t L_7 = (int32_t)__this->get__count_2();
__this->set__capacity_3(L_7);
ObjectU5BU5D_t2843939325* L_8 = (ObjectU5BU5D_t2843939325*)__this->get__items_0();
return L_8;
}
}
extern "C" ObjectU5BU5D_t2843939325* ListBuilder_1_ToArray_m1549891216_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ListBuilder_1_t2117425360 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t2117425360 *>(__this + 1);
return ListBuilder_1_ToArray_m1549891216(_thisAdjusted, method);
}
// System.Void System.RuntimeType/ListBuilder`1<System.Object>::CopyTo(System.Object[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR void ListBuilder_1_CopyTo_m3688249413_gshared (ListBuilder_1_t2117425360 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__count_2();
if (L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
int32_t L_1 = (int32_t)__this->get__count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
{
goto IL_0021;
}
}
{
ObjectU5BU5D_t2843939325* L_2 = ___array0;
int32_t L_3 = ___index1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get__item_1();
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RuntimeObject *)L_4);
return;
}
IL_0021:
{
ObjectU5BU5D_t2843939325* L_5 = (ObjectU5BU5D_t2843939325*)__this->get__items_0();
ObjectU5BU5D_t2843939325* L_6 = ___array0;
int32_t L_7 = ___index1;
int32_t L_8 = (int32_t)__this->get__count_2();
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/NULL);
return;
}
}
extern "C" void ListBuilder_1_CopyTo_m3688249413_AdjustorThunk (RuntimeObject * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
ListBuilder_1_t2117425360 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t2117425360 *>(__this + 1);
ListBuilder_1_CopyTo_m3688249413(_thisAdjusted, ___array0, ___index1, method);
}
// System.Int32 System.RuntimeType/ListBuilder`1<System.Object>::get_Count()
extern "C" IL2CPP_METHOD_ATTR int32_t ListBuilder_1_get_Count_m1933043653_gshared (ListBuilder_1_t2117425360 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__count_2();
return L_0;
}
}
extern "C" int32_t ListBuilder_1_get_Count_m1933043653_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ListBuilder_1_t2117425360 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t2117425360 *>(__this + 1);
return ListBuilder_1_get_Count_m1933043653(_thisAdjusted, method);
}
// System.Void System.RuntimeType/ListBuilder`1<System.Object>::Add(T)
extern "C" IL2CPP_METHOD_ATTR void ListBuilder_1_Add_m48855945_gshared (ListBuilder_1_t2117425360 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get__count_2();
if (L_0)
{
goto IL_0011;
}
}
{
RuntimeObject * L_1 = ___item0;
__this->set__item_1(L_1);
goto IL_008b;
}
IL_0011:
{
int32_t L_2 = (int32_t)__this->get__count_2();
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_004f;
}
}
{
int32_t L_3 = (int32_t)__this->get__capacity_3();
if ((((int32_t)L_3) >= ((int32_t)2)))
{
goto IL_002a;
}
}
{
__this->set__capacity_3(4);
}
IL_002a:
{
int32_t L_4 = (int32_t)__this->get__capacity_3();
__this->set__items_0(((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), (uint32_t)L_4)));
ObjectU5BU5D_t2843939325* L_5 = (ObjectU5BU5D_t2843939325*)__this->get__items_0();
RuntimeObject * L_6 = (RuntimeObject *)__this->get__item_1();
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6);
goto IL_0079;
}
IL_004f:
{
int32_t L_7 = (int32_t)__this->get__capacity_3();
int32_t L_8 = (int32_t)__this->get__count_2();
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
{
goto IL_0079;
}
}
{
int32_t L_9 = (int32_t)__this->get__capacity_3();
V_0 = (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_9));
ObjectU5BU5D_t2843939325** L_10 = (ObjectU5BU5D_t2843939325**)__this->get_address_of__items_0();
int32_t L_11 = V_0;
(( void (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325**)L_10, (int32_t)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
int32_t L_12 = V_0;
__this->set__capacity_3(L_12);
}
IL_0079:
{
ObjectU5BU5D_t2843939325* L_13 = (ObjectU5BU5D_t2843939325*)__this->get__items_0();
int32_t L_14 = (int32_t)__this->get__count_2();
RuntimeObject * L_15 = ___item0;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (RuntimeObject *)L_15);
}
IL_008b:
{
int32_t L_16 = (int32_t)__this->get__count_2();
__this->set__count_2(((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)));
return;
}
}
extern "C" void ListBuilder_1_Add_m48855945_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
ListBuilder_1_t2117425360 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t2117425360 *>(__this + 1);
ListBuilder_1_Add_m48855945(_thisAdjusted, ___item0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.AsyncLocal`1<System.Object>::.ctor(System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<T>>)
extern "C" IL2CPP_METHOD_ATTR void AsyncLocal_1__ctor_m3435140770_gshared (AsyncLocal_1_t1349483261 * __this, Action_1_t588642880 * ___valueChangedHandler0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
Action_1_t588642880 * L_0 = ___valueChangedHandler0;
__this->set_m_valueChangedHandler_0(L_0);
return;
}
}
// System.Void System.Threading.AsyncLocal`1<System.Object>::set_Value(T)
extern "C" IL2CPP_METHOD_ATTR void AsyncLocal_1_set_Value_m1031767235_gshared (AsyncLocal_1_t1349483261 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncLocal_1_set_Value_m1031767235_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
Action_1_t588642880 * L_1 = (Action_1_t588642880 *)__this->get_m_valueChangedHandler_0();
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_SetLocalValue_m2922585144(NULL /*static, unused*/, (RuntimeObject*)__this, (RuntimeObject *)L_0, (bool)((!(((RuntimeObject*)(Action_1_t588642880 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.AsyncLocal`1<System.Object>::System.Threading.IAsyncLocal.OnValueChanged(System.Object,System.Object,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void AsyncLocal_1_System_Threading_IAsyncLocal_OnValueChanged_m1650495079_gshared (AsyncLocal_1_t1349483261 * __this, RuntimeObject * ___previousValueObj0, RuntimeObject * ___currentValueObj1, bool ___contextChanged2, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
RuntimeObject * V_2 = NULL;
RuntimeObject * G_B3_0 = NULL;
RuntimeObject * G_B6_0 = NULL;
{
RuntimeObject * L_0 = ___previousValueObj0;
if (!L_0)
{
goto IL_000b;
}
}
{
RuntimeObject * L_1 = ___previousValueObj0;
G_B3_0 = ((RuntimeObject *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
goto IL_0014;
}
IL_000b:
{
il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *));
RuntimeObject * L_2 = V_2;
G_B3_0 = L_2;
}
IL_0014:
{
V_0 = (RuntimeObject *)G_B3_0;
RuntimeObject * L_3 = ___currentValueObj1;
if (!L_3)
{
goto IL_0020;
}
}
{
RuntimeObject * L_4 = ___currentValueObj1;
G_B6_0 = ((RuntimeObject *)Castclass((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
goto IL_0029;
}
IL_0020:
{
il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *));
RuntimeObject * L_5 = V_2;
G_B6_0 = L_5;
}
IL_0029:
{
V_1 = (RuntimeObject *)G_B6_0;
Action_1_t588642880 * L_6 = (Action_1_t588642880 *)__this->get_m_valueChangedHandler_0();
RuntimeObject * L_7 = V_0;
RuntimeObject * L_8 = V_1;
bool L_9 = ___contextChanged2;
AsyncLocalValueChangedArgs_1_t416175285 L_10;
memset(&L_10, 0, sizeof(L_10));
AsyncLocalValueChangedArgs_1__ctor_m3853057685((&L_10), (RuntimeObject *)L_7, (RuntimeObject *)L_8, (bool)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
NullCheck((Action_1_t588642880 *)L_6);
(( void (*) (Action_1_t588642880 *, AsyncLocalValueChangedArgs_1_t416175285 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3)->methodPointer)((Action_1_t588642880 *)L_6, (AsyncLocalValueChangedArgs_1_t416175285 )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_PreviousValue(T)
extern "C" IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_PreviousValue_m71981835_gshared (AsyncLocalValueChangedArgs_1_t416175285 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_U3CPreviousValueU3Ek__BackingField_0(L_0);
return;
}
}
extern "C" void AsyncLocalValueChangedArgs_1_set_PreviousValue_m71981835_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
AsyncLocalValueChangedArgs_1_t416175285 * _thisAdjusted = reinterpret_cast<AsyncLocalValueChangedArgs_1_t416175285 *>(__this + 1);
AsyncLocalValueChangedArgs_1_set_PreviousValue_m71981835(_thisAdjusted, ___value0, method);
}
// T System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::get_CurrentValue()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * AsyncLocalValueChangedArgs_1_get_CurrentValue_m1268540845_gshared (AsyncLocalValueChangedArgs_1_t416175285 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CCurrentValueU3Ek__BackingField_1();
return L_0;
}
}
extern "C" RuntimeObject * AsyncLocalValueChangedArgs_1_get_CurrentValue_m1268540845_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
AsyncLocalValueChangedArgs_1_t416175285 * _thisAdjusted = reinterpret_cast<AsyncLocalValueChangedArgs_1_t416175285 *>(__this + 1);
return AsyncLocalValueChangedArgs_1_get_CurrentValue_m1268540845(_thisAdjusted, method);
}
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_CurrentValue(T)
extern "C" IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_CurrentValue_m2181115123_gshared (AsyncLocalValueChangedArgs_1_t416175285 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_U3CCurrentValueU3Ek__BackingField_1(L_0);
return;
}
}
extern "C" void AsyncLocalValueChangedArgs_1_set_CurrentValue_m2181115123_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
AsyncLocalValueChangedArgs_1_t416175285 * _thisAdjusted = reinterpret_cast<AsyncLocalValueChangedArgs_1_t416175285 *>(__this + 1);
AsyncLocalValueChangedArgs_1_set_CurrentValue_m2181115123(_thisAdjusted, ___value0, method);
}
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_ThreadContextChanged(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m2017573335_gshared (AsyncLocalValueChangedArgs_1_t416175285 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CThreadContextChangedU3Ek__BackingField_2(L_0);
return;
}
}
extern "C" void AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m2017573335_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
AsyncLocalValueChangedArgs_1_t416175285 * _thisAdjusted = reinterpret_cast<AsyncLocalValueChangedArgs_1_t416175285 *>(__this + 1);
AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m2017573335(_thisAdjusted, ___value0, method);
}
// System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::.ctor(T,T,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1__ctor_m3853057685_gshared (AsyncLocalValueChangedArgs_1_t416175285 * __this, RuntimeObject * ___previousValue0, RuntimeObject * ___currentValue1, bool ___contextChanged2, const RuntimeMethod* method)
{
{
il2cpp_codegen_initobj(__this, sizeof(AsyncLocalValueChangedArgs_1_t416175285 ));
RuntimeObject * L_0 = ___previousValue0;
AsyncLocalValueChangedArgs_1_set_PreviousValue_m71981835((AsyncLocalValueChangedArgs_1_t416175285 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
RuntimeObject * L_1 = ___currentValue1;
AsyncLocalValueChangedArgs_1_set_CurrentValue_m2181115123((AsyncLocalValueChangedArgs_1_t416175285 *)__this, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
bool L_2 = ___contextChanged2;
AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m2017573335((AsyncLocalValueChangedArgs_1_t416175285 *)__this, (bool)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return;
}
}
extern "C" void AsyncLocalValueChangedArgs_1__ctor_m3853057685_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___previousValue0, RuntimeObject * ___currentValue1, bool ___contextChanged2, const RuntimeMethod* method)
{
AsyncLocalValueChangedArgs_1_t416175285 * _thisAdjusted = reinterpret_cast<AsyncLocalValueChangedArgs_1_t416175285 *>(__this + 1);
AsyncLocalValueChangedArgs_1__ctor_m3853057685(_thisAdjusted, ___previousValue0, ___currentValue1, ___contextChanged2, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.SparselyPopulatedArray`1<System.Object>::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void SparselyPopulatedArray_1__ctor_m1376059292_gshared (SparselyPopulatedArray_1_t3787047113 * __this, int32_t ___initialSize0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___initialSize0;
SparselyPopulatedArrayFragment_1_t2623668647 * L_1 = (SparselyPopulatedArrayFragment_1_t2623668647 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0));
(( void (*) (SparselyPopulatedArrayFragment_1_t2623668647 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(L_1, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
il2cpp_codegen_memory_barrier();
__this->set_m_tail_0(L_1);
return;
}
}
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::get_Tail()
extern "C" IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_t2623668647 * SparselyPopulatedArray_1_get_Tail_m2862110334_gshared (SparselyPopulatedArray_1_t3787047113 * __this, const RuntimeMethod* method)
{
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_0 = (SparselyPopulatedArrayFragment_1_t2623668647 *)__this->get_m_tail_0();
il2cpp_codegen_memory_barrier();
return L_0;
}
}
// System.Threading.SparselyPopulatedArrayAddInfo`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::Add(T)
extern "C" IL2CPP_METHOD_ATTR SparselyPopulatedArrayAddInfo_1_t2980901022 SparselyPopulatedArray_1_Add_m603655249_gshared (SparselyPopulatedArray_1_t3787047113 * __this, RuntimeObject * ___element0, const RuntimeMethod* method)
{
SparselyPopulatedArrayFragment_1_t2623668647 * V_0 = NULL;
SparselyPopulatedArrayFragment_1_t2623668647 * V_1 = NULL;
SparselyPopulatedArrayFragment_1_t2623668647 * V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
RuntimeObject * V_7 = NULL;
int32_t V_8 = 0;
SparselyPopulatedArrayFragment_1_t2623668647 * G_B15_0 = NULL;
SparselyPopulatedArrayFragment_1_t2623668647 * G_B14_0 = NULL;
int32_t G_B16_0 = 0;
SparselyPopulatedArrayFragment_1_t2623668647 * G_B16_1 = NULL;
int32_t G_B24_0 = 0;
IL_0000:
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_0 = (SparselyPopulatedArrayFragment_1_t2623668647 *)__this->get_m_tail_0();
il2cpp_codegen_memory_barrier();
V_0 = (SparselyPopulatedArrayFragment_1_t2623668647 *)L_0;
goto IL_001d;
}
IL_000b:
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_1 = V_0;
NullCheck(L_1);
SparselyPopulatedArrayFragment_1_t2623668647 * L_2 = (SparselyPopulatedArrayFragment_1_t2623668647 *)L_1->get_m_next_2();
il2cpp_codegen_memory_barrier();
SparselyPopulatedArrayFragment_1_t2623668647 * L_3 = (SparselyPopulatedArrayFragment_1_t2623668647 *)L_2;
V_0 = (SparselyPopulatedArrayFragment_1_t2623668647 *)L_3;
il2cpp_codegen_memory_barrier();
__this->set_m_tail_0(L_3);
}
IL_001d:
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_4 = V_0;
NullCheck(L_4);
SparselyPopulatedArrayFragment_1_t2623668647 * L_5 = (SparselyPopulatedArrayFragment_1_t2623668647 *)L_4->get_m_next_2();
il2cpp_codegen_memory_barrier();
if (L_5)
{
goto IL_000b;
}
}
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_6 = V_0;
V_1 = (SparselyPopulatedArrayFragment_1_t2623668647 *)L_6;
goto IL_0115;
}
IL_002e:
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_7 = V_1;
NullCheck(L_7);
int32_t L_8 = (int32_t)L_7->get_m_freeCount_1();
il2cpp_codegen_memory_barrier();
if ((((int32_t)L_8) >= ((int32_t)1)))
{
goto IL_004b;
}
}
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_9 = V_1;
SparselyPopulatedArrayFragment_1_t2623668647 * L_10 = (SparselyPopulatedArrayFragment_1_t2623668647 *)L_9;
NullCheck(L_10);
int32_t L_11 = (int32_t)L_10->get_m_freeCount_1();
il2cpp_codegen_memory_barrier();
NullCheck(L_10);
il2cpp_codegen_memory_barrier();
L_10->set_m_freeCount_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)));
}
IL_004b:
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_12 = V_1;
NullCheck(L_12);
int32_t L_13 = (int32_t)L_12->get_m_freeCount_1();
il2cpp_codegen_memory_barrier();
if ((((int32_t)L_13) > ((int32_t)0)))
{
goto IL_0065;
}
}
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_14 = V_1;
NullCheck(L_14);
int32_t L_15 = (int32_t)L_14->get_m_freeCount_1();
il2cpp_codegen_memory_barrier();
if ((((int32_t)L_15) >= ((int32_t)((int32_t)-10))))
{
goto IL_010c;
}
}
IL_0065:
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_16 = V_1;
NullCheck((SparselyPopulatedArrayFragment_1_t2623668647 *)L_16);
int32_t L_17 = (( int32_t (*) (SparselyPopulatedArrayFragment_1_t2623668647 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((SparselyPopulatedArrayFragment_1_t2623668647 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
V_3 = (int32_t)L_17;
int32_t L_18 = V_3;
SparselyPopulatedArrayFragment_1_t2623668647 * L_19 = V_1;
NullCheck(L_19);
int32_t L_20 = (int32_t)L_19->get_m_freeCount_1();
il2cpp_codegen_memory_barrier();
int32_t L_21 = V_3;
V_4 = (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_20))%(int32_t)L_21));
int32_t L_22 = V_4;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_0094;
}
}
{
V_4 = (int32_t)0;
SparselyPopulatedArrayFragment_1_t2623668647 * L_23 = V_1;
SparselyPopulatedArrayFragment_1_t2623668647 * L_24 = (SparselyPopulatedArrayFragment_1_t2623668647 *)L_23;
NullCheck(L_24);
int32_t L_25 = (int32_t)L_24->get_m_freeCount_1();
il2cpp_codegen_memory_barrier();
NullCheck(L_24);
il2cpp_codegen_memory_barrier();
L_24->set_m_freeCount_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1)));
}
IL_0094:
{
V_5 = (int32_t)0;
goto IL_0107;
}
IL_0099:
{
int32_t L_26 = V_4;
int32_t L_27 = V_5;
int32_t L_28 = V_3;
V_6 = (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27))%(int32_t)L_28));
SparselyPopulatedArrayFragment_1_t2623668647 * L_29 = V_1;
NullCheck(L_29);
ObjectU5BU5D_t2843939325* L_30 = (ObjectU5BU5D_t2843939325*)L_29->get_m_elements_0();
int32_t L_31 = V_6;
NullCheck(L_30);
int32_t L_32 = L_31;
RuntimeObject * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
if (L_33)
{
goto IL_0101;
}
}
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_34 = V_1;
NullCheck(L_34);
ObjectU5BU5D_t2843939325* L_35 = (ObjectU5BU5D_t2843939325*)L_34->get_m_elements_0();
int32_t L_36 = V_6;
NullCheck(L_35);
RuntimeObject * L_37 = ___element0;
il2cpp_codegen_initobj((&V_7), sizeof(RuntimeObject *));
RuntimeObject * L_38 = V_7;
RuntimeObject * L_39 = InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36))), (RuntimeObject *)L_37, (RuntimeObject *)L_38);
if (L_39)
{
goto IL_0101;
}
}
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_40 = V_1;
NullCheck(L_40);
int32_t L_41 = (int32_t)L_40->get_m_freeCount_1();
il2cpp_codegen_memory_barrier();
V_8 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1));
SparselyPopulatedArrayFragment_1_t2623668647 * L_42 = V_1;
int32_t L_43 = V_8;
G_B14_0 = L_42;
if ((((int32_t)L_43) > ((int32_t)0)))
{
G_B15_0 = L_42;
goto IL_00ef;
}
}
{
G_B16_0 = 0;
G_B16_1 = G_B14_0;
goto IL_00f1;
}
IL_00ef:
{
int32_t L_44 = V_8;
G_B16_0 = L_44;
G_B16_1 = G_B15_0;
}
IL_00f1:
{
NullCheck(G_B16_1);
il2cpp_codegen_memory_barrier();
G_B16_1->set_m_freeCount_1(G_B16_0);
SparselyPopulatedArrayFragment_1_t2623668647 * L_45 = V_1;
int32_t L_46 = V_6;
SparselyPopulatedArrayAddInfo_1_t2980901022 L_47;
memset(&L_47, 0, sizeof(L_47));
SparselyPopulatedArrayAddInfo_1__ctor_m1457611507((&L_47), (SparselyPopulatedArrayFragment_1_t2623668647 *)L_45, (int32_t)L_46, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
return L_47;
}
IL_0101:
{
int32_t L_48 = V_5;
V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1));
}
IL_0107:
{
int32_t L_49 = V_5;
int32_t L_50 = V_3;
if ((((int32_t)L_49) < ((int32_t)L_50)))
{
goto IL_0099;
}
}
IL_010c:
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_51 = V_1;
NullCheck(L_51);
SparselyPopulatedArrayFragment_1_t2623668647 * L_52 = (SparselyPopulatedArrayFragment_1_t2623668647 *)L_51->get_m_prev_3();
il2cpp_codegen_memory_barrier();
V_1 = (SparselyPopulatedArrayFragment_1_t2623668647 *)L_52;
}
IL_0115:
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_53 = V_1;
if (L_53)
{
goto IL_002e;
}
}
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_54 = V_0;
NullCheck(L_54);
ObjectU5BU5D_t2843939325* L_55 = (ObjectU5BU5D_t2843939325*)L_54->get_m_elements_0();
NullCheck(L_55);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_55)->max_length))))) == ((int32_t)((int32_t)4096))))
{
goto IL_0136;
}
}
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_56 = V_0;
NullCheck(L_56);
ObjectU5BU5D_t2843939325* L_57 = (ObjectU5BU5D_t2843939325*)L_56->get_m_elements_0();
NullCheck(L_57);
G_B24_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_57)->max_length)))), (int32_t)2));
goto IL_013b;
}
IL_0136:
{
G_B24_0 = ((int32_t)4096);
}
IL_013b:
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_58 = V_0;
SparselyPopulatedArrayFragment_1_t2623668647 * L_59 = (SparselyPopulatedArrayFragment_1_t2623668647 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0));
(( void (*) (SparselyPopulatedArrayFragment_1_t2623668647 *, int32_t, SparselyPopulatedArrayFragment_1_t2623668647 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 7)->methodPointer)(L_59, (int32_t)G_B24_0, (SparselyPopulatedArrayFragment_1_t2623668647 *)L_58, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 7));
V_2 = (SparselyPopulatedArrayFragment_1_t2623668647 *)L_59;
SparselyPopulatedArrayFragment_1_t2623668647 * L_60 = V_0;
NullCheck(L_60);
SparselyPopulatedArrayFragment_1_t2623668647 ** L_61 = (SparselyPopulatedArrayFragment_1_t2623668647 **)L_60->get_address_of_m_next_2();
il2cpp_codegen_memory_barrier();
SparselyPopulatedArrayFragment_1_t2623668647 * L_62 = V_2;
SparselyPopulatedArrayFragment_1_t2623668647 * L_63 = InterlockedCompareExchangeImpl<SparselyPopulatedArrayFragment_1_t2623668647 *>((SparselyPopulatedArrayFragment_1_t2623668647 **)L_61, (SparselyPopulatedArrayFragment_1_t2623668647 *)L_62, (SparselyPopulatedArrayFragment_1_t2623668647 *)NULL);
if (L_63)
{
goto IL_0000;
}
}
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_64 = V_2;
il2cpp_codegen_memory_barrier();
__this->set_m_tail_0(L_64);
goto IL_0000;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void SparselyPopulatedArrayAddInfo_1__ctor_m1457611507_gshared (SparselyPopulatedArrayAddInfo_1_t2980901022 * __this, SparselyPopulatedArrayFragment_1_t2623668647 * ___source0, int32_t ___index1, const RuntimeMethod* method)
{
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_0 = ___source0;
__this->set_m_source_0(L_0);
int32_t L_1 = ___index1;
__this->set_m_index_1(L_1);
return;
}
}
extern "C" void SparselyPopulatedArrayAddInfo_1__ctor_m1457611507_AdjustorThunk (RuntimeObject * __this, SparselyPopulatedArrayFragment_1_t2623668647 * ___source0, int32_t ___index1, const RuntimeMethod* method)
{
SparselyPopulatedArrayAddInfo_1_t2980901022 * _thisAdjusted = reinterpret_cast<SparselyPopulatedArrayAddInfo_1_t2980901022 *>(__this + 1);
SparselyPopulatedArrayAddInfo_1__ctor_m1457611507(_thisAdjusted, ___source0, ___index1, method);
}
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source()
extern "C" IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_t2623668647 * SparselyPopulatedArrayAddInfo_1_get_Source_m3793467541_gshared (SparselyPopulatedArrayAddInfo_1_t2980901022 * __this, const RuntimeMethod* method)
{
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_0 = (SparselyPopulatedArrayFragment_1_t2623668647 *)__this->get_m_source_0();
return L_0;
}
}
extern "C" SparselyPopulatedArrayFragment_1_t2623668647 * SparselyPopulatedArrayAddInfo_1_get_Source_m3793467541_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
SparselyPopulatedArrayAddInfo_1_t2980901022 * _thisAdjusted = reinterpret_cast<SparselyPopulatedArrayAddInfo_1_t2980901022 *>(__this + 1);
return SparselyPopulatedArrayAddInfo_1_get_Source_m3793467541(_thisAdjusted, method);
}
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index()
extern "C" IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m372340994_gshared (SparselyPopulatedArrayAddInfo_1_t2980901022 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_index_1();
return L_0;
}
}
extern "C" int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m372340994_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
SparselyPopulatedArrayAddInfo_1_t2980901022 * _thisAdjusted = reinterpret_cast<SparselyPopulatedArrayAddInfo_1_t2980901022 *>(__this + 1);
return SparselyPopulatedArrayAddInfo_1_get_Index_m372340994(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void SparselyPopulatedArrayFragment_1__ctor_m2308599309_gshared (SparselyPopulatedArrayFragment_1_t2623668647 * __this, int32_t ___size0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___size0;
NullCheck((SparselyPopulatedArrayFragment_1_t2623668647 *)__this);
(( void (*) (SparselyPopulatedArrayFragment_1_t2623668647 *, int32_t, SparselyPopulatedArrayFragment_1_t2623668647 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((SparselyPopulatedArrayFragment_1_t2623668647 *)__this, (int32_t)L_0, (SparselyPopulatedArrayFragment_1_t2623668647 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Void System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::.ctor(System.Int32,System.Threading.SparselyPopulatedArrayFragment`1<T>)
extern "C" IL2CPP_METHOD_ATTR void SparselyPopulatedArrayFragment_1__ctor_m1501454999_gshared (SparselyPopulatedArrayFragment_1_t2623668647 * __this, int32_t ___size0, SparselyPopulatedArrayFragment_1_t2623668647 * ___prev1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___size0;
__this->set_m_elements_0(((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1), (uint32_t)L_0)));
int32_t L_1 = ___size0;
il2cpp_codegen_memory_barrier();
__this->set_m_freeCount_1(L_1);
SparselyPopulatedArrayFragment_1_t2623668647 * L_2 = ___prev1;
il2cpp_codegen_memory_barrier();
__this->set_m_prev_3(L_2);
return;
}
}
// T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Item(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * SparselyPopulatedArrayFragment_1_get_Item_m2186283026_gshared (SparselyPopulatedArrayFragment_1_t2623668647 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get_m_elements_0();
int32_t L_1 = ___index0;
NullCheck(L_0);
RuntimeObject * L_2 = (( RuntimeObject * (*) (RuntimeObject * /* static, unused */, RuntimeObject **, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (RuntimeObject **)((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return L_2;
}
}
// System.Int32 System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Length()
extern "C" IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayFragment_1_get_Length_m2549557733_gshared (SparselyPopulatedArrayFragment_1_t2623668647 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get_m_elements_0();
NullCheck(L_0);
return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))));
}
}
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Prev()
extern "C" IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_t2623668647 * SparselyPopulatedArrayFragment_1_get_Prev_m453311097_gshared (SparselyPopulatedArrayFragment_1_t2623668647 * __this, const RuntimeMethod* method)
{
{
SparselyPopulatedArrayFragment_1_t2623668647 * L_0 = (SparselyPopulatedArrayFragment_1_t2623668647 *)__this->get_m_prev_3();
il2cpp_codegen_memory_barrier();
return L_0;
}
}
// T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::SafeAtomicRemove(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m846094942_gshared (SparselyPopulatedArrayFragment_1_t2623668647 * __this, int32_t ___index0, RuntimeObject * ___expectedElement1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
RuntimeObject * G_B2_0 = NULL;
RuntimeObject * G_B1_0 = NULL;
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get_m_elements_0();
int32_t L_1 = ___index0;
NullCheck(L_0);
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_2 = V_0;
RuntimeObject * L_3 = ___expectedElement1;
RuntimeObject * L_4 = InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1))), (RuntimeObject *)L_2, (RuntimeObject *)L_3);
RuntimeObject * L_5 = (RuntimeObject *)L_4;
G_B1_0 = L_5;
if (!L_5)
{
G_B2_0 = L_5;
goto IL_0035;
}
}
{
int32_t L_6 = (int32_t)__this->get_m_freeCount_1();
il2cpp_codegen_memory_barrier();
il2cpp_codegen_memory_barrier();
__this->set_m_freeCount_1(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)));
G_B2_0 = G_B1_0;
}
IL_0035:
{
return G_B2_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.Shared`1<System.Object>::.ctor(T)
extern "C" IL2CPP_METHOD_ATTR void Shared_1__ctor_m2844813521_gshared (Shared_1_t712168394 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___value0;
__this->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration>::.ctor(T)
extern "C" IL2CPP_METHOD_ATTR void Shared_1__ctor_m3469472104_gshared (Shared_1_t445487134 * __this, CancellationTokenRegistration_t2813424904 ___value0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
CancellationTokenRegistration_t2813424904 L_0 = ___value0;
__this->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.Task`1/<>c<System.Boolean>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m2573183083_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
U3CU3Ec_t2052824854 * L_0 = (U3CU3Ec_t2052824854 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
(( void (*) (U3CU3Ec_t2052824854 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
((U3CU3Ec_t2052824854_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.Threading.Tasks.Task`1/<>c<System.Boolean>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m3227400994_gshared (U3CU3Ec_t2052824854 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Boolean>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>)
extern "C" IL2CPP_METHOD_ATTR Task_1_t1502828140 * U3CU3Ec_U3C_cctorU3Eb__64_0_m1575919760_gshared (U3CU3Ec_t2052824854 * __this, Task_1_t297848191 * ___completed0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__64_0_m1575919760_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Task_1_t297848191 * L_0 = ___completed0;
NullCheck((Task_1_t297848191 *)L_0);
Task_t3187275312 * L_1 = Task_1_get_Result_m1431118879((Task_1_t297848191 *)L_0, /*hidden argument*/Task_1_get_Result_m1431118879_RuntimeMethod_var);
return ((Task_1_t1502828140 *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3)));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.Task`1/<>c<System.Int32>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m2561825558_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
U3CU3Ec_t611515346 * L_0 = (U3CU3Ec_t611515346 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
(( void (*) (U3CU3Ec_t611515346 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
((U3CU3Ec_t611515346_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.Threading.Tasks.Task`1/<>c<System.Int32>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m47184939_gshared (U3CU3Ec_t611515346 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Int32>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>)
extern "C" IL2CPP_METHOD_ATTR Task_1_t61518632 * U3CU3Ec_U3C_cctorU3Eb__64_0_m2214559452_gshared (U3CU3Ec_t611515346 * __this, Task_1_t297848191 * ___completed0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__64_0_m2214559452_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Task_1_t297848191 * L_0 = ___completed0;
NullCheck((Task_1_t297848191 *)L_0);
Task_t3187275312 * L_1 = Task_1_get_Result_m1431118879((Task_1_t297848191 *)L_0, /*hidden argument*/Task_1_get_Result_m1431118879_RuntimeMethod_var);
return ((Task_1_t61518632 *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3)));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.Task`1/<>c<System.Object>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m2294500072_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
U3CU3Ec_t740675757 * L_0 = (U3CU3Ec_t740675757 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
(( void (*) (U3CU3Ec_t740675757 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
((U3CU3Ec_t740675757_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.Threading.Tasks.Task`1/<>c<System.Object>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m840422681_gshared (U3CU3Ec_t740675757 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Object>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>)
extern "C" IL2CPP_METHOD_ATTR Task_1_t190679043 * U3CU3Ec_U3C_cctorU3Eb__64_0_m3933151630_gshared (U3CU3Ec_t740675757 * __this, Task_1_t297848191 * ___completed0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__64_0_m3933151630_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Task_1_t297848191 * L_0 = ___completed0;
NullCheck((Task_1_t297848191 *)L_0);
Task_t3187275312 * L_1 = Task_1_get_Result_m1431118879((Task_1_t297848191 *)L_0, /*hidden argument*/Task_1_get_Result_m1431118879_RuntimeMethod_var);
return ((Task_1_t190679043 *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3)));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m761826463_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
U3CU3Ec_t277158172 * L_0 = (U3CU3Ec_t277158172 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
(( void (*) (U3CU3Ec_t277158172 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
((U3CU3Ec_t277158172_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m2566241734_gshared (U3CU3Ec_t277158172 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>)
extern "C" IL2CPP_METHOD_ATTR Task_1_t4022128754 * U3CU3Ec_U3C_cctorU3Eb__64_0_m1854667377_gshared (U3CU3Ec_t277158172 * __this, Task_1_t297848191 * ___completed0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__64_0_m1854667377_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Task_1_t297848191 * L_0 = ___completed0;
NullCheck((Task_1_t297848191 *)L_0);
Task_t3187275312 * L_1 = Task_1_get_Result_m1431118879((Task_1_t297848191 *)L_0, /*hidden argument*/Task_1_get_Result_m1431118879_RuntimeMethod_var);
return ((Task_1_t4022128754 *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3)));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m3610702888_gshared (Task_1_t1502828140 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m3610702888_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m3380090582((Task_t3187275312 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Object,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m334560660_gshared (Task_1_t1502828140 * __this, RuntimeObject * ___state0, int32_t ___options1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m334560660_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___state0;
int32_t L_1 = ___options1;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m3094793396((Task_t3187275312 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(TResult)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m890104204_gshared (Task_1_t1502828140 * __this, bool ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m890104204_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_0 = V_0;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m2785691336((Task_t3187275312 *)__this, (bool)0, (int32_t)0, (CancellationToken_t784455623 )L_0, /*hidden argument*/NULL);
bool L_1 = ___result0;
__this->set_m_result_22(L_1);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m996240956_gshared (Task_1_t1502828140 * __this, bool ___canceled0, bool ___result1, int32_t ___creationOptions2, CancellationToken_t784455623 ___ct3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m996240956_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___canceled0;
int32_t L_1 = ___creationOptions2;
CancellationToken_t784455623 L_2 = ___ct3;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m2785691336((Task_t3187275312 *)__this, (bool)L_0, (int32_t)L_1, (CancellationToken_t784455623 )L_2, /*hidden argument*/NULL);
bool L_3 = ___canceled0;
if (L_3)
{
goto IL_0014;
}
}
{
bool L_4 = ___result1;
__this->set_m_result_22(L_4);
}
IL_0014:
{
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_m4015352135_gshared (Task_1_t1502828140 * __this, Func_2_t3759279471 * ___function0, RuntimeObject * ___state1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m4015352135_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Func_2_t3759279471 * L_0 = ___function0;
RuntimeObject * L_1 = ___state1;
int32_t L_2 = ___creationOptions3;
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_t3187275312 * L_3 = Task_InternalCurrentIfAttached_m3256135818(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
CancellationToken_t784455623 L_4 = ___cancellationToken2;
int32_t L_5 = ___creationOptions3;
NullCheck((Task_1_t1502828140 *)__this);
(( void (*) (Task_1_t1502828140 *, Delegate_t1188392813 *, RuntimeObject *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Task_1_t1502828140 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)L_1, (Task_t3187275312 *)L_3, (CancellationToken_t784455623 )L_4, (int32_t)L_5, (int32_t)0, (TaskScheduler_t1196198384 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
V_0 = (int32_t)1;
NullCheck((Task_t3187275312 *)__this);
Task_PossiblyCaptureContext_m2078689259((Task_t3187275312 *)__this, (int32_t*)(&V_0), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m2374924913_gshared (Task_1_t1502828140 * __this, Func_1_t3822001908 * ___valueSelector0, Task_t3187275312 * ___parent1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m2374924913_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t3822001908 * L_0 = ___valueSelector0;
Task_t3187275312 * L_1 = ___parent1;
CancellationToken_t784455623 L_2 = ___cancellationToken2;
int32_t L_3 = ___creationOptions3;
int32_t L_4 = ___internalOptions4;
TaskScheduler_t1196198384 * L_5 = ___scheduler5;
NullCheck((Task_1_t1502828140 *)__this);
(( void (*) (Task_1_t1502828140 *, Func_1_t3822001908 *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)((Task_1_t1502828140 *)__this, (Func_1_t3822001908 *)L_0, (Task_t3187275312 *)L_1, (CancellationToken_t784455623 )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t1196198384 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
int32_t* L_6 = ___stackMark6;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_PossiblyCaptureContext_m2078689259((Task_t3187275312 *)__this, (int32_t*)L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m4178786727_gshared (Task_1_t1502828140 * __this, Func_1_t3822001908 * ___valueSelector0, Task_t3187275312 * ___parent1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m4178786727_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t3822001908 * L_0 = ___valueSelector0;
Task_t3187275312 * L_1 = ___parent1;
CancellationToken_t784455623 L_2 = ___cancellationToken2;
int32_t L_3 = ___creationOptions3;
int32_t L_4 = ___internalOptions4;
TaskScheduler_t1196198384 * L_5 = ___scheduler5;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m388757629((Task_t3187275312 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)NULL, (Task_t3187275312 *)L_1, (CancellationToken_t784455623 )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t1196198384 *)L_5, /*hidden argument*/NULL);
int32_t L_6 = ___internalOptions4;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048))))
{
goto IL_002f;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_8 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_8, (String_t*)_stringLiteral2086526269, (String_t*)L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,Task_1__ctor_m4178786727_RuntimeMethod_var);
}
IL_002f:
{
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m2865206581_gshared (Task_1_t1502828140 * __this, Delegate_t1188392813 * ___valueSelector0, RuntimeObject * ___state1, Task_t3187275312 * ___parent2, CancellationToken_t784455623 ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t1196198384 * ___scheduler6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m2865206581_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Delegate_t1188392813 * L_0 = ___valueSelector0;
RuntimeObject * L_1 = ___state1;
Task_t3187275312 * L_2 = ___parent2;
CancellationToken_t784455623 L_3 = ___cancellationToken3;
int32_t L_4 = ___creationOptions4;
int32_t L_5 = ___internalOptions5;
TaskScheduler_t1196198384 * L_6 = ___scheduler6;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m388757629((Task_t3187275312 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)L_1, (Task_t3187275312 *)L_2, (CancellationToken_t784455623 )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t1196198384 *)L_6, /*hidden argument*/NULL);
int32_t L_7 = ___internalOptions5;
if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048))))
{
goto IL_0030;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_9 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_9, (String_t*)_stringLiteral2086526269, (String_t*)L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,Task_1__ctor_m2865206581_RuntimeMethod_var);
}
IL_0030:
{
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&)
extern "C" IL2CPP_METHOD_ATTR Task_1_t1502828140 * Task_1_StartNew_m3672650448_gshared (RuntimeObject * __this /* static, unused */, Task_t3187275312 * ___parent0, Func_1_t3822001908 * ___function1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1_StartNew_m3672650448_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t3822001908 * L_0 = ___function1;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral3941509395, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Task_1_StartNew_m3672650448_RuntimeMethod_var);
}
IL_000e:
{
TaskScheduler_t1196198384 * L_2 = ___scheduler5;
if (L_2)
{
goto IL_001d;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, (String_t*)_stringLiteral3453924054, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Task_1_StartNew_m3672650448_RuntimeMethod_var);
}
IL_001d:
{
int32_t L_4 = ___internalOptions4;
if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048))))
{
goto IL_003c;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_6, (String_t*)_stringLiteral2086526269, (String_t*)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Task_1_StartNew_m3672650448_RuntimeMethod_var);
}
IL_003c:
{
Func_1_t3822001908 * L_7 = ___function1;
Task_t3187275312 * L_8 = ___parent0;
CancellationToken_t784455623 L_9 = ___cancellationToken2;
int32_t L_10 = ___creationOptions3;
int32_t L_11 = ___internalOptions4;
TaskScheduler_t1196198384 * L_12 = ___scheduler5;
int32_t* L_13 = ___stackMark6;
Task_1_t1502828140 * L_14 = (Task_1_t1502828140 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
(( void (*) (Task_1_t1502828140 *, Func_1_t3822001908 *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_t3822001908 *)L_7, (Task_t3187275312 *)L_8, (CancellationToken_t784455623 )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t1196198384 *)L_12, (int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
Task_1_t1502828140 * L_15 = (Task_1_t1502828140 *)L_14;
NullCheck((Task_t3187275312 *)L_15);
Task_ScheduleAndStart_m3697593748((Task_t3187275312 *)L_15, (bool)0, /*hidden argument*/NULL);
return L_15;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m2199458453_gshared (Task_1_t1502828140 * __this, bool ___result0, const RuntimeMethod* method)
{
ContingentProperties_t2170468915 * V_0 = NULL;
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
NullCheck((Task_t3187275312 *)__this);
bool L_1 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0057;
}
}
{
bool L_2 = ___result0;
__this->set_m_result_22(L_2);
int32_t* L_3 = (int32_t*)((Task_t3187275312 *)__this)->get_address_of_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
int32_t L_4 = (int32_t)((Task_t3187275312 *)__this)->get_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
Interlocked_Exchange_m435211442(NULL /*static, unused*/, (int32_t*)L_3, (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216))), /*hidden argument*/NULL);
ContingentProperties_t2170468915 * L_5 = (ContingentProperties_t2170468915 *)((Task_t3187275312 *)__this)->get_m_contingentProperties_15();
il2cpp_codegen_memory_barrier();
V_0 = (ContingentProperties_t2170468915 *)L_5;
ContingentProperties_t2170468915 * L_6 = V_0;
if (!L_6)
{
goto IL_004f;
}
}
{
ContingentProperties_t2170468915 * L_7 = V_0;
NullCheck((ContingentProperties_t2170468915 *)L_7);
ContingentProperties_SetCompleted_m1273683735((ContingentProperties_t2170468915 *)L_7, /*hidden argument*/NULL);
}
IL_004f:
{
NullCheck((Task_t3187275312 *)__this);
Task_FinishStageThree_m655196368((Task_t3187275312 *)__this, /*hidden argument*/NULL);
return (bool)1;
}
IL_0057:
{
return (bool)0;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Boolean>::DangerousSetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_m2250113021_gshared (Task_1_t1502828140 * __this, bool ___result0, const RuntimeMethod* method)
{
{
Task_t3187275312 * L_0 = (Task_t3187275312 *)((Task_t3187275312 *)__this)->get_m_parent_8();
if (!L_0)
{
goto IL_0011;
}
}
{
bool L_1 = ___result0;
NullCheck((Task_1_t1502828140 *)__this);
(( bool (*) (Task_1_t1502828140 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)((Task_1_t1502828140 *)__this, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
return;
}
IL_0011:
{
bool L_2 = ___result0;
__this->set_m_result_22(L_2);
int32_t L_3 = (int32_t)((Task_t3187275312 *)__this)->get_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
il2cpp_codegen_memory_barrier();
((Task_t3187275312 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_3|(int32_t)((int32_t)16777216))));
return;
}
}
// TResult System.Threading.Tasks.Task`1<System.Boolean>::get_Result()
extern "C" IL2CPP_METHOD_ATTR bool Task_1_get_Result_m2683233801_gshared (Task_1_t1502828140 * __this, const RuntimeMethod* method)
{
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_m3510871212((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000f;
}
}
{
bool L_1 = (bool)__this->get_m_result_22();
return L_1;
}
IL_000f:
{
NullCheck((Task_1_t1502828140 *)__this);
bool L_2 = (( bool (*) (Task_1_t1502828140 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5)->methodPointer)((Task_1_t1502828140 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5));
return L_2;
}
}
// TResult System.Threading.Tasks.Task`1<System.Boolean>::get_ResultOnSuccess()
extern "C" IL2CPP_METHOD_ATTR bool Task_1_get_ResultOnSuccess_m3520214341_gshared (Task_1_t1502828140 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_m_result_22();
return L_0;
}
}
// TResult System.Threading.Tasks.Task`1<System.Boolean>::GetResultCore(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_GetResultCore_m3282292848_gshared (Task_1_t1502828140 * __this, bool ___waitCompletionNotification0, const RuntimeMethod* method)
{
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_1 = V_0;
NullCheck((Task_t3187275312 *)__this);
Task_InternalWait_m1596119731((Task_t3187275312 *)__this, (int32_t)(-1), (CancellationToken_t784455623 )L_1, /*hidden argument*/NULL);
}
IL_0019:
{
bool L_2 = ___waitCompletionNotification0;
if (!L_2)
{
goto IL_0023;
}
}
{
NullCheck((Task_t3187275312 *)__this);
Task_NotifyDebuggerOfWaitCompletionIfNecessary_m624966664((Task_t3187275312 *)__this, /*hidden argument*/NULL);
}
IL_0023:
{
NullCheck((Task_t3187275312 *)__this);
bool L_3 = Task_get_IsRanToCompletion_m285137934((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0032;
}
}
{
NullCheck((Task_t3187275312 *)__this);
Task_ThrowIfExceptional_m1147093355((Task_t3187275312 *)__this, (bool)1, /*hidden argument*/NULL);
}
IL_0032:
{
bool L_4 = (bool)__this->get_m_result_22();
return L_4;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetException(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m2942983483_gshared (Task_1_t1502828140 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
NullCheck((Task_t3187275312 *)__this);
Task_EnsureContingentPropertiesInitialized_m1531521476((Task_t3187275312 *)__this, (bool)1, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_0)
{
goto IL_002c;
}
}
{
RuntimeObject * L_1 = ___exceptionObject0;
NullCheck((Task_t3187275312 *)__this);
Task_AddException_m1219930878((Task_t3187275312 *)__this, (RuntimeObject *)L_1, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
Task_Finish_m1724979731((Task_t3187275312 *)__this, (bool)0, /*hidden argument*/NULL);
V_0 = (bool)1;
}
IL_002c:
{
bool L_2 = V_0;
return L_2;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetCanceled(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m649607902_gshared (Task_1_t1502828140 * __this, CancellationToken_t784455623 ___tokenToRecord0, const RuntimeMethod* method)
{
{
CancellationToken_t784455623 L_0 = ___tokenToRecord0;
NullCheck((Task_1_t1502828140 *)__this);
bool L_1 = (( bool (*) (Task_1_t1502828140 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((Task_1_t1502828140 *)__this, (CancellationToken_t784455623 )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
return L_1;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetCanceled(System.Threading.CancellationToken,System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m1777216794_gshared (Task_1_t1502828140 * __this, CancellationToken_t784455623 ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0024;
}
}
{
CancellationToken_t784455623 L_1 = ___tokenToRecord0;
RuntimeObject * L_2 = ___cancellationException1;
NullCheck((Task_t3187275312 *)__this);
Task_RecordInternalCancellationRequest_m904000580((Task_t3187275312 *)__this, (CancellationToken_t784455623 )L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
Task_CancellationCleanupLogic_m1481515712((Task_t3187275312 *)__this, /*hidden argument*/NULL);
V_0 = (bool)1;
}
IL_0024:
{
bool L_3 = V_0;
return L_3;
}
}
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::get_Factory()
extern "C" IL2CPP_METHOD_ATTR TaskFactory_1_t156716511 * Task_1_get_Factory_m1012299956_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7));
TaskFactory_1_t156716511 * L_0 = ((Task_1_t1502828140_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->get_s_Factory_23();
return L_0;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Boolean>::InnerInvoke()
extern "C" IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m313383311_gshared (Task_1_t1502828140 * __this, const RuntimeMethod* method)
{
Func_1_t3822001908 * V_0 = NULL;
Func_2_t3759279471 * V_1 = NULL;
{
RuntimeObject * L_0 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_action_5();
V_0 = (Func_1_t3822001908 *)((Func_1_t3822001908 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 8)));
Func_1_t3822001908 * L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
Func_1_t3822001908 * L_2 = V_0;
NullCheck((Func_1_t3822001908 *)L_2);
bool L_3 = (( bool (*) (Func_1_t3822001908 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 9)->methodPointer)((Func_1_t3822001908 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 9));
__this->set_m_result_22(L_3);
return;
}
IL_001c:
{
RuntimeObject * L_4 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_action_5();
V_1 = (Func_2_t3759279471 *)((Func_2_t3759279471 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 10)));
Func_2_t3759279471 * L_5 = V_1;
if (!L_5)
{
goto IL_003e;
}
}
{
Func_2_t3759279471 * L_6 = V_1;
RuntimeObject * L_7 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_stateObject_6();
NullCheck((Func_2_t3759279471 *)L_6);
bool L_8 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 11)->methodPointer)((Func_2_t3759279471 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 11));
__this->set_m_result_22(L_8);
return;
}
IL_003e:
{
return;
}
}
// System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR TaskAwaiter_1_t2891770396 Task_1_GetAwaiter_m1353846373_gshared (Task_1_t1502828140 * __this, const RuntimeMethod* method)
{
{
TaskAwaiter_1_t2891770396 L_0;
memset(&L_0, 0, sizeof(L_0));
TaskAwaiter_1__ctor_m550699798((&L_0), (Task_1_t1502828140 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 13));
return L_0;
}
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::ConfigureAwait(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t2695215308 Task_1_ConfigureAwait_m2273955335_gshared (Task_1_t1502828140 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method)
{
{
bool L_0 = ___continueOnCapturedContext0;
ConfiguredTaskAwaitable_1_t2695215308 L_1;
memset(&L_1, 0, sizeof(L_1));
ConfiguredTaskAwaitable_1__ctor_m2526203514((&L_1), (Task_1_t1502828140 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 15));
return L_1;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Boolean>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void Task_1__cctor_m4144856669_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
TaskFactory_1_t156716511 * L_0 = (TaskFactory_1_t156716511 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 16));
(( void (*) (TaskFactory_1_t156716511 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 17)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 17));
((Task_1_t1502828140_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->set_s_Factory_23(L_0);
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 18));
U3CU3Ec_t2052824854 * L_1 = ((U3CU3Ec_t2052824854_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 18)))->get_U3CU3E9_0();
intptr_t L_2 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 19);
Func_2_t1314258023 * L_3 = (Func_2_t1314258023 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 20));
(( void (*) (Func_2_t1314258023 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 21)->methodPointer)(L_3, (RuntimeObject *)L_1, (intptr_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 21));
((Task_1_t1502828140_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->set_TaskWhenAnyCast_24(L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m444141246_gshared (Task_1_t61518632 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m444141246_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m3380090582((Task_t3187275312 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Object,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m1531810756_gshared (Task_1_t61518632 * __this, RuntimeObject * ___state0, int32_t ___options1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m1531810756_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___state0;
int32_t L_1 = ___options1;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m3094793396((Task_t3187275312 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(TResult)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m2621095337_gshared (Task_1_t61518632 * __this, int32_t ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m2621095337_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_0 = V_0;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m2785691336((Task_t3187275312 *)__this, (bool)0, (int32_t)0, (CancellationToken_t784455623 )L_0, /*hidden argument*/NULL);
int32_t L_1 = ___result0;
__this->set_m_result_22(L_1);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m3190153900_gshared (Task_1_t61518632 * __this, bool ___canceled0, int32_t ___result1, int32_t ___creationOptions2, CancellationToken_t784455623 ___ct3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m3190153900_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___canceled0;
int32_t L_1 = ___creationOptions2;
CancellationToken_t784455623 L_2 = ___ct3;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m2785691336((Task_t3187275312 *)__this, (bool)L_0, (int32_t)L_1, (CancellationToken_t784455623 )L_2, /*hidden argument*/NULL);
bool L_3 = ___canceled0;
if (L_3)
{
goto IL_0014;
}
}
{
int32_t L_4 = ___result1;
__this->set_m_result_22(L_4);
}
IL_0014:
{
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_m3838407800_gshared (Task_1_t61518632 * __this, Func_2_t2317969963 * ___function0, RuntimeObject * ___state1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m3838407800_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Func_2_t2317969963 * L_0 = ___function0;
RuntimeObject * L_1 = ___state1;
int32_t L_2 = ___creationOptions3;
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_t3187275312 * L_3 = Task_InternalCurrentIfAttached_m3256135818(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
CancellationToken_t784455623 L_4 = ___cancellationToken2;
int32_t L_5 = ___creationOptions3;
NullCheck((Task_1_t61518632 *)__this);
(( void (*) (Task_1_t61518632 *, Delegate_t1188392813 *, RuntimeObject *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Task_1_t61518632 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)L_1, (Task_t3187275312 *)L_3, (CancellationToken_t784455623 )L_4, (int32_t)L_5, (int32_t)0, (TaskScheduler_t1196198384 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
V_0 = (int32_t)1;
NullCheck((Task_t3187275312 *)__this);
Task_PossiblyCaptureContext_m2078689259((Task_t3187275312 *)__this, (int32_t*)(&V_0), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m3822389707_gshared (Task_1_t61518632 * __this, Func_1_t2380692400 * ___valueSelector0, Task_t3187275312 * ___parent1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m3822389707_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2380692400 * L_0 = ___valueSelector0;
Task_t3187275312 * L_1 = ___parent1;
CancellationToken_t784455623 L_2 = ___cancellationToken2;
int32_t L_3 = ___creationOptions3;
int32_t L_4 = ___internalOptions4;
TaskScheduler_t1196198384 * L_5 = ___scheduler5;
NullCheck((Task_1_t61518632 *)__this);
(( void (*) (Task_1_t61518632 *, Func_1_t2380692400 *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)((Task_1_t61518632 *)__this, (Func_1_t2380692400 *)L_0, (Task_t3187275312 *)L_1, (CancellationToken_t784455623 )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t1196198384 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
int32_t* L_6 = ___stackMark6;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_PossiblyCaptureContext_m2078689259((Task_t3187275312 *)__this, (int32_t*)L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m1493792860_gshared (Task_1_t61518632 * __this, Func_1_t2380692400 * ___valueSelector0, Task_t3187275312 * ___parent1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m1493792860_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2380692400 * L_0 = ___valueSelector0;
Task_t3187275312 * L_1 = ___parent1;
CancellationToken_t784455623 L_2 = ___cancellationToken2;
int32_t L_3 = ___creationOptions3;
int32_t L_4 = ___internalOptions4;
TaskScheduler_t1196198384 * L_5 = ___scheduler5;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m388757629((Task_t3187275312 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)NULL, (Task_t3187275312 *)L_1, (CancellationToken_t784455623 )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t1196198384 *)L_5, /*hidden argument*/NULL);
int32_t L_6 = ___internalOptions4;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048))))
{
goto IL_002f;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_8 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_8, (String_t*)_stringLiteral2086526269, (String_t*)L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,Task_1__ctor_m1493792860_RuntimeMethod_var);
}
IL_002f:
{
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m965163921_gshared (Task_1_t61518632 * __this, Delegate_t1188392813 * ___valueSelector0, RuntimeObject * ___state1, Task_t3187275312 * ___parent2, CancellationToken_t784455623 ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t1196198384 * ___scheduler6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m965163921_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Delegate_t1188392813 * L_0 = ___valueSelector0;
RuntimeObject * L_1 = ___state1;
Task_t3187275312 * L_2 = ___parent2;
CancellationToken_t784455623 L_3 = ___cancellationToken3;
int32_t L_4 = ___creationOptions4;
int32_t L_5 = ___internalOptions5;
TaskScheduler_t1196198384 * L_6 = ___scheduler6;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m388757629((Task_t3187275312 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)L_1, (Task_t3187275312 *)L_2, (CancellationToken_t784455623 )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t1196198384 *)L_6, /*hidden argument*/NULL);
int32_t L_7 = ___internalOptions5;
if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048))))
{
goto IL_0030;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_9 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_9, (String_t*)_stringLiteral2086526269, (String_t*)L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,Task_1__ctor_m965163921_RuntimeMethod_var);
}
IL_0030:
{
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&)
extern "C" IL2CPP_METHOD_ATTR Task_1_t61518632 * Task_1_StartNew_m931933459_gshared (RuntimeObject * __this /* static, unused */, Task_t3187275312 * ___parent0, Func_1_t2380692400 * ___function1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1_StartNew_m931933459_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2380692400 * L_0 = ___function1;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral3941509395, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Task_1_StartNew_m931933459_RuntimeMethod_var);
}
IL_000e:
{
TaskScheduler_t1196198384 * L_2 = ___scheduler5;
if (L_2)
{
goto IL_001d;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, (String_t*)_stringLiteral3453924054, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Task_1_StartNew_m931933459_RuntimeMethod_var);
}
IL_001d:
{
int32_t L_4 = ___internalOptions4;
if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048))))
{
goto IL_003c;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_6, (String_t*)_stringLiteral2086526269, (String_t*)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Task_1_StartNew_m931933459_RuntimeMethod_var);
}
IL_003c:
{
Func_1_t2380692400 * L_7 = ___function1;
Task_t3187275312 * L_8 = ___parent0;
CancellationToken_t784455623 L_9 = ___cancellationToken2;
int32_t L_10 = ___creationOptions3;
int32_t L_11 = ___internalOptions4;
TaskScheduler_t1196198384 * L_12 = ___scheduler5;
int32_t* L_13 = ___stackMark6;
Task_1_t61518632 * L_14 = (Task_1_t61518632 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
(( void (*) (Task_1_t61518632 *, Func_1_t2380692400 *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_t2380692400 *)L_7, (Task_t3187275312 *)L_8, (CancellationToken_t784455623 )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t1196198384 *)L_12, (int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
Task_1_t61518632 * L_15 = (Task_1_t61518632 *)L_14;
NullCheck((Task_t3187275312 *)L_15);
Task_ScheduleAndStart_m3697593748((Task_t3187275312 *)L_15, (bool)0, /*hidden argument*/NULL);
return L_15;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m1195275050_gshared (Task_1_t61518632 * __this, int32_t ___result0, const RuntimeMethod* method)
{
ContingentProperties_t2170468915 * V_0 = NULL;
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
NullCheck((Task_t3187275312 *)__this);
bool L_1 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0057;
}
}
{
int32_t L_2 = ___result0;
__this->set_m_result_22(L_2);
int32_t* L_3 = (int32_t*)((Task_t3187275312 *)__this)->get_address_of_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
int32_t L_4 = (int32_t)((Task_t3187275312 *)__this)->get_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
Interlocked_Exchange_m435211442(NULL /*static, unused*/, (int32_t*)L_3, (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216))), /*hidden argument*/NULL);
ContingentProperties_t2170468915 * L_5 = (ContingentProperties_t2170468915 *)((Task_t3187275312 *)__this)->get_m_contingentProperties_15();
il2cpp_codegen_memory_barrier();
V_0 = (ContingentProperties_t2170468915 *)L_5;
ContingentProperties_t2170468915 * L_6 = V_0;
if (!L_6)
{
goto IL_004f;
}
}
{
ContingentProperties_t2170468915 * L_7 = V_0;
NullCheck((ContingentProperties_t2170468915 *)L_7);
ContingentProperties_SetCompleted_m1273683735((ContingentProperties_t2170468915 *)L_7, /*hidden argument*/NULL);
}
IL_004f:
{
NullCheck((Task_t3187275312 *)__this);
Task_FinishStageThree_m655196368((Task_t3187275312 *)__this, /*hidden argument*/NULL);
return (bool)1;
}
IL_0057:
{
return (bool)0;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Int32>::DangerousSetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_m3567079444_gshared (Task_1_t61518632 * __this, int32_t ___result0, const RuntimeMethod* method)
{
{
Task_t3187275312 * L_0 = (Task_t3187275312 *)((Task_t3187275312 *)__this)->get_m_parent_8();
if (!L_0)
{
goto IL_0011;
}
}
{
int32_t L_1 = ___result0;
NullCheck((Task_1_t61518632 *)__this);
(( bool (*) (Task_1_t61518632 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)((Task_1_t61518632 *)__this, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
return;
}
IL_0011:
{
int32_t L_2 = ___result0;
__this->set_m_result_22(L_2);
int32_t L_3 = (int32_t)((Task_t3187275312 *)__this)->get_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
il2cpp_codegen_memory_barrier();
((Task_t3187275312 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_3|(int32_t)((int32_t)16777216))));
return;
}
}
// TResult System.Threading.Tasks.Task`1<System.Int32>::get_Result()
extern "C" IL2CPP_METHOD_ATTR int32_t Task_1_get_Result_m791386820_gshared (Task_1_t61518632 * __this, const RuntimeMethod* method)
{
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_m3510871212((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000f;
}
}
{
int32_t L_1 = (int32_t)__this->get_m_result_22();
return L_1;
}
IL_000f:
{
NullCheck((Task_1_t61518632 *)__this);
int32_t L_2 = (( int32_t (*) (Task_1_t61518632 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5)->methodPointer)((Task_1_t61518632 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5));
return L_2;
}
}
// TResult System.Threading.Tasks.Task`1<System.Int32>::get_ResultOnSuccess()
extern "C" IL2CPP_METHOD_ATTR int32_t Task_1_get_ResultOnSuccess_m2546683502_gshared (Task_1_t61518632 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_result_22();
return L_0;
}
}
// TResult System.Threading.Tasks.Task`1<System.Int32>::GetResultCore(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR int32_t Task_1_GetResultCore_m3309246697_gshared (Task_1_t61518632 * __this, bool ___waitCompletionNotification0, const RuntimeMethod* method)
{
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_1 = V_0;
NullCheck((Task_t3187275312 *)__this);
Task_InternalWait_m1596119731((Task_t3187275312 *)__this, (int32_t)(-1), (CancellationToken_t784455623 )L_1, /*hidden argument*/NULL);
}
IL_0019:
{
bool L_2 = ___waitCompletionNotification0;
if (!L_2)
{
goto IL_0023;
}
}
{
NullCheck((Task_t3187275312 *)__this);
Task_NotifyDebuggerOfWaitCompletionIfNecessary_m624966664((Task_t3187275312 *)__this, /*hidden argument*/NULL);
}
IL_0023:
{
NullCheck((Task_t3187275312 *)__this);
bool L_3 = Task_get_IsRanToCompletion_m285137934((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0032;
}
}
{
NullCheck((Task_t3187275312 *)__this);
Task_ThrowIfExceptional_m1147093355((Task_t3187275312 *)__this, (bool)1, /*hidden argument*/NULL);
}
IL_0032:
{
int32_t L_4 = (int32_t)__this->get_m_result_22();
return L_4;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetException(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m2415893046_gshared (Task_1_t61518632 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
NullCheck((Task_t3187275312 *)__this);
Task_EnsureContingentPropertiesInitialized_m1531521476((Task_t3187275312 *)__this, (bool)1, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_0)
{
goto IL_002c;
}
}
{
RuntimeObject * L_1 = ___exceptionObject0;
NullCheck((Task_t3187275312 *)__this);
Task_AddException_m1219930878((Task_t3187275312 *)__this, (RuntimeObject *)L_1, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
Task_Finish_m1724979731((Task_t3187275312 *)__this, (bool)0, /*hidden argument*/NULL);
V_0 = (bool)1;
}
IL_002c:
{
bool L_2 = V_0;
return L_2;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetCanceled(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m2548025594_gshared (Task_1_t61518632 * __this, CancellationToken_t784455623 ___tokenToRecord0, const RuntimeMethod* method)
{
{
CancellationToken_t784455623 L_0 = ___tokenToRecord0;
NullCheck((Task_1_t61518632 *)__this);
bool L_1 = (( bool (*) (Task_1_t61518632 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((Task_1_t61518632 *)__this, (CancellationToken_t784455623 )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
return L_1;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetCanceled(System.Threading.CancellationToken,System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m2773252335_gshared (Task_1_t61518632 * __this, CancellationToken_t784455623 ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0024;
}
}
{
CancellationToken_t784455623 L_1 = ___tokenToRecord0;
RuntimeObject * L_2 = ___cancellationException1;
NullCheck((Task_t3187275312 *)__this);
Task_RecordInternalCancellationRequest_m904000580((Task_t3187275312 *)__this, (CancellationToken_t784455623 )L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
Task_CancellationCleanupLogic_m1481515712((Task_t3187275312 *)__this, /*hidden argument*/NULL);
V_0 = (bool)1;
}
IL_0024:
{
bool L_3 = V_0;
return L_3;
}
}
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::get_Factory()
extern "C" IL2CPP_METHOD_ATTR TaskFactory_1_t3010374299 * Task_1_get_Factory_m1217330832_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7));
TaskFactory_1_t3010374299 * L_0 = ((Task_1_t61518632_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->get_s_Factory_23();
return L_0;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Int32>::InnerInvoke()
extern "C" IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m192022879_gshared (Task_1_t61518632 * __this, const RuntimeMethod* method)
{
Func_1_t2380692400 * V_0 = NULL;
Func_2_t2317969963 * V_1 = NULL;
{
RuntimeObject * L_0 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_action_5();
V_0 = (Func_1_t2380692400 *)((Func_1_t2380692400 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 8)));
Func_1_t2380692400 * L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
Func_1_t2380692400 * L_2 = V_0;
NullCheck((Func_1_t2380692400 *)L_2);
int32_t L_3 = (( int32_t (*) (Func_1_t2380692400 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 9)->methodPointer)((Func_1_t2380692400 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 9));
__this->set_m_result_22(L_3);
return;
}
IL_001c:
{
RuntimeObject * L_4 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_action_5();
V_1 = (Func_2_t2317969963 *)((Func_2_t2317969963 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 10)));
Func_2_t2317969963 * L_5 = V_1;
if (!L_5)
{
goto IL_003e;
}
}
{
Func_2_t2317969963 * L_6 = V_1;
RuntimeObject * L_7 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_stateObject_6();
NullCheck((Func_2_t2317969963 *)L_6);
int32_t L_8 = (( int32_t (*) (Func_2_t2317969963 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 11)->methodPointer)((Func_2_t2317969963 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 11));
__this->set_m_result_22(L_8);
return;
}
IL_003e:
{
return;
}
}
// System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR TaskAwaiter_1_t1450460888 Task_1_GetAwaiter_m2918406059_gshared (Task_1_t61518632 * __this, const RuntimeMethod* method)
{
{
TaskAwaiter_1_t1450460888 L_0;
memset(&L_0, 0, sizeof(L_0));
TaskAwaiter_1__ctor_m284636341((&L_0), (Task_1_t61518632 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 13));
return L_0;
}
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::ConfigureAwait(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t1253905800 Task_1_ConfigureAwait_m2040180629_gshared (Task_1_t61518632 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method)
{
{
bool L_0 = ___continueOnCapturedContext0;
ConfiguredTaskAwaitable_1_t1253905800 L_1;
memset(&L_1, 0, sizeof(L_1));
ConfiguredTaskAwaitable_1__ctor_m2950476429((&L_1), (Task_1_t61518632 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 15));
return L_1;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Int32>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void Task_1__cctor_m1666781989_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
TaskFactory_1_t3010374299 * L_0 = (TaskFactory_1_t3010374299 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 16));
(( void (*) (TaskFactory_1_t3010374299 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 17)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 17));
((Task_1_t61518632_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->set_s_Factory_23(L_0);
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 18));
U3CU3Ec_t611515346 * L_1 = ((U3CU3Ec_t611515346_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 18)))->get_U3CU3E9_0();
intptr_t L_2 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 19);
Func_2_t4167915811 * L_3 = (Func_2_t4167915811 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 20));
(( void (*) (Func_2_t4167915811 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 21)->methodPointer)(L_3, (RuntimeObject *)L_1, (intptr_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 21));
((Task_1_t61518632_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->set_TaskWhenAnyCast_24(L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m1775205562_gshared (Task_1_t190679043 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m1775205562_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m3380090582((Task_t3187275312 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Object,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m3883996075_gshared (Task_1_t190679043 * __this, RuntimeObject * ___state0, int32_t ___options1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m3883996075_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___state0;
int32_t L_1 = ___options1;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m3094793396((Task_t3187275312 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(TResult)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m1903312075_gshared (Task_1_t190679043 * __this, RuntimeObject * ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m1903312075_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_0 = V_0;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m2785691336((Task_t3187275312 *)__this, (bool)0, (int32_t)0, (CancellationToken_t784455623 )L_0, /*hidden argument*/NULL);
RuntimeObject * L_1 = ___result0;
__this->set_m_result_22(L_1);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m4018142183_gshared (Task_1_t190679043 * __this, bool ___canceled0, RuntimeObject * ___result1, int32_t ___creationOptions2, CancellationToken_t784455623 ___ct3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m4018142183_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___canceled0;
int32_t L_1 = ___creationOptions2;
CancellationToken_t784455623 L_2 = ___ct3;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m2785691336((Task_t3187275312 *)__this, (bool)L_0, (int32_t)L_1, (CancellationToken_t784455623 )L_2, /*hidden argument*/NULL);
bool L_3 = ___canceled0;
if (L_3)
{
goto IL_0014;
}
}
{
RuntimeObject * L_4 = ___result1;
__this->set_m_result_22(L_4);
}
IL_0014:
{
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_m2534605143_gshared (Task_1_t190679043 * __this, Func_2_t2447130374 * ___function0, RuntimeObject * ___state1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m2534605143_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Func_2_t2447130374 * L_0 = ___function0;
RuntimeObject * L_1 = ___state1;
int32_t L_2 = ___creationOptions3;
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_t3187275312 * L_3 = Task_InternalCurrentIfAttached_m3256135818(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
CancellationToken_t784455623 L_4 = ___cancellationToken2;
int32_t L_5 = ___creationOptions3;
NullCheck((Task_1_t190679043 *)__this);
(( void (*) (Task_1_t190679043 *, Delegate_t1188392813 *, RuntimeObject *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Task_1_t190679043 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)L_1, (Task_t3187275312 *)L_3, (CancellationToken_t784455623 )L_4, (int32_t)L_5, (int32_t)0, (TaskScheduler_t1196198384 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
V_0 = (int32_t)1;
NullCheck((Task_t3187275312 *)__this);
Task_PossiblyCaptureContext_m2078689259((Task_t3187275312 *)__this, (int32_t*)(&V_0), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m3234348895_gshared (Task_1_t190679043 * __this, Func_1_t2509852811 * ___valueSelector0, Task_t3187275312 * ___parent1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m3234348895_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2509852811 * L_0 = ___valueSelector0;
Task_t3187275312 * L_1 = ___parent1;
CancellationToken_t784455623 L_2 = ___cancellationToken2;
int32_t L_3 = ___creationOptions3;
int32_t L_4 = ___internalOptions4;
TaskScheduler_t1196198384 * L_5 = ___scheduler5;
NullCheck((Task_1_t190679043 *)__this);
(( void (*) (Task_1_t190679043 *, Func_1_t2509852811 *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)((Task_1_t190679043 *)__this, (Func_1_t2509852811 *)L_0, (Task_t3187275312 *)L_1, (CancellationToken_t784455623 )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t1196198384 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
int32_t* L_6 = ___stackMark6;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_PossiblyCaptureContext_m2078689259((Task_t3187275312 *)__this, (int32_t*)L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m631286152_gshared (Task_1_t190679043 * __this, Func_1_t2509852811 * ___valueSelector0, Task_t3187275312 * ___parent1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m631286152_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2509852811 * L_0 = ___valueSelector0;
Task_t3187275312 * L_1 = ___parent1;
CancellationToken_t784455623 L_2 = ___cancellationToken2;
int32_t L_3 = ___creationOptions3;
int32_t L_4 = ___internalOptions4;
TaskScheduler_t1196198384 * L_5 = ___scheduler5;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m388757629((Task_t3187275312 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)NULL, (Task_t3187275312 *)L_1, (CancellationToken_t784455623 )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t1196198384 *)L_5, /*hidden argument*/NULL);
int32_t L_6 = ___internalOptions4;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048))))
{
goto IL_002f;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_8 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_8, (String_t*)_stringLiteral2086526269, (String_t*)L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,Task_1__ctor_m631286152_RuntimeMethod_var);
}
IL_002f:
{
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m244026664_gshared (Task_1_t190679043 * __this, Delegate_t1188392813 * ___valueSelector0, RuntimeObject * ___state1, Task_t3187275312 * ___parent2, CancellationToken_t784455623 ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t1196198384 * ___scheduler6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m244026664_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Delegate_t1188392813 * L_0 = ___valueSelector0;
RuntimeObject * L_1 = ___state1;
Task_t3187275312 * L_2 = ___parent2;
CancellationToken_t784455623 L_3 = ___cancellationToken3;
int32_t L_4 = ___creationOptions4;
int32_t L_5 = ___internalOptions5;
TaskScheduler_t1196198384 * L_6 = ___scheduler6;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m388757629((Task_t3187275312 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)L_1, (Task_t3187275312 *)L_2, (CancellationToken_t784455623 )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t1196198384 *)L_6, /*hidden argument*/NULL);
int32_t L_7 = ___internalOptions5;
if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048))))
{
goto IL_0030;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_9 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_9, (String_t*)_stringLiteral2086526269, (String_t*)L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,Task_1__ctor_m244026664_RuntimeMethod_var);
}
IL_0030:
{
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Object>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&)
extern "C" IL2CPP_METHOD_ATTR Task_1_t190679043 * Task_1_StartNew_m3099410454_gshared (RuntimeObject * __this /* static, unused */, Task_t3187275312 * ___parent0, Func_1_t2509852811 * ___function1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1_StartNew_m3099410454_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2509852811 * L_0 = ___function1;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral3941509395, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Task_1_StartNew_m3099410454_RuntimeMethod_var);
}
IL_000e:
{
TaskScheduler_t1196198384 * L_2 = ___scheduler5;
if (L_2)
{
goto IL_001d;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, (String_t*)_stringLiteral3453924054, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Task_1_StartNew_m3099410454_RuntimeMethod_var);
}
IL_001d:
{
int32_t L_4 = ___internalOptions4;
if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048))))
{
goto IL_003c;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_6, (String_t*)_stringLiteral2086526269, (String_t*)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Task_1_StartNew_m3099410454_RuntimeMethod_var);
}
IL_003c:
{
Func_1_t2509852811 * L_7 = ___function1;
Task_t3187275312 * L_8 = ___parent0;
CancellationToken_t784455623 L_9 = ___cancellationToken2;
int32_t L_10 = ___creationOptions3;
int32_t L_11 = ___internalOptions4;
TaskScheduler_t1196198384 * L_12 = ___scheduler5;
int32_t* L_13 = ___stackMark6;
Task_1_t190679043 * L_14 = (Task_1_t190679043 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
(( void (*) (Task_1_t190679043 *, Func_1_t2509852811 *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_t2509852811 *)L_7, (Task_t3187275312 *)L_8, (CancellationToken_t784455623 )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t1196198384 *)L_12, (int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
Task_1_t190679043 * L_15 = (Task_1_t190679043 *)L_14;
NullCheck((Task_t3187275312 *)L_15);
Task_ScheduleAndStart_m3697593748((Task_t3187275312 *)L_15, (bool)0, /*hidden argument*/NULL);
return L_15;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m2205464726_gshared (Task_1_t190679043 * __this, RuntimeObject * ___result0, const RuntimeMethod* method)
{
ContingentProperties_t2170468915 * V_0 = NULL;
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
NullCheck((Task_t3187275312 *)__this);
bool L_1 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0057;
}
}
{
RuntimeObject * L_2 = ___result0;
__this->set_m_result_22(L_2);
int32_t* L_3 = (int32_t*)((Task_t3187275312 *)__this)->get_address_of_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
int32_t L_4 = (int32_t)((Task_t3187275312 *)__this)->get_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
Interlocked_Exchange_m435211442(NULL /*static, unused*/, (int32_t*)L_3, (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216))), /*hidden argument*/NULL);
ContingentProperties_t2170468915 * L_5 = (ContingentProperties_t2170468915 *)((Task_t3187275312 *)__this)->get_m_contingentProperties_15();
il2cpp_codegen_memory_barrier();
V_0 = (ContingentProperties_t2170468915 *)L_5;
ContingentProperties_t2170468915 * L_6 = V_0;
if (!L_6)
{
goto IL_004f;
}
}
{
ContingentProperties_t2170468915 * L_7 = V_0;
NullCheck((ContingentProperties_t2170468915 *)L_7);
ContingentProperties_SetCompleted_m1273683735((ContingentProperties_t2170468915 *)L_7, /*hidden argument*/NULL);
}
IL_004f:
{
NullCheck((Task_t3187275312 *)__this);
Task_FinishStageThree_m655196368((Task_t3187275312 *)__this, /*hidden argument*/NULL);
return (bool)1;
}
IL_0057:
{
return (bool)0;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Object>::DangerousSetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_m3877763007_gshared (Task_1_t190679043 * __this, RuntimeObject * ___result0, const RuntimeMethod* method)
{
{
Task_t3187275312 * L_0 = (Task_t3187275312 *)((Task_t3187275312 *)__this)->get_m_parent_8();
if (!L_0)
{
goto IL_0011;
}
}
{
RuntimeObject * L_1 = ___result0;
NullCheck((Task_1_t190679043 *)__this);
(( bool (*) (Task_1_t190679043 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)((Task_1_t190679043 *)__this, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
return;
}
IL_0011:
{
RuntimeObject * L_2 = ___result0;
__this->set_m_result_22(L_2);
int32_t L_3 = (int32_t)((Task_t3187275312 *)__this)->get_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
il2cpp_codegen_memory_barrier();
((Task_t3187275312 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_3|(int32_t)((int32_t)16777216))));
return;
}
}
// TResult System.Threading.Tasks.Task`1<System.Object>::get_Result()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Task_1_get_Result_m3610557823_gshared (Task_1_t190679043 * __this, const RuntimeMethod* method)
{
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_m3510871212((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000f;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_result_22();
return L_1;
}
IL_000f:
{
NullCheck((Task_1_t190679043 *)__this);
RuntimeObject * L_2 = (( RuntimeObject * (*) (Task_1_t190679043 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5)->methodPointer)((Task_1_t190679043 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5));
return L_2;
}
}
// TResult System.Threading.Tasks.Task`1<System.Object>::get_ResultOnSuccess()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Task_1_get_ResultOnSuccess_m4125743003_gshared (Task_1_t190679043 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_result_22();
return L_0;
}
}
// TResult System.Threading.Tasks.Task`1<System.Object>::GetResultCore(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Task_1_GetResultCore_m2065851129_gshared (Task_1_t190679043 * __this, bool ___waitCompletionNotification0, const RuntimeMethod* method)
{
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_1 = V_0;
NullCheck((Task_t3187275312 *)__this);
Task_InternalWait_m1596119731((Task_t3187275312 *)__this, (int32_t)(-1), (CancellationToken_t784455623 )L_1, /*hidden argument*/NULL);
}
IL_0019:
{
bool L_2 = ___waitCompletionNotification0;
if (!L_2)
{
goto IL_0023;
}
}
{
NullCheck((Task_t3187275312 *)__this);
Task_NotifyDebuggerOfWaitCompletionIfNecessary_m624966664((Task_t3187275312 *)__this, /*hidden argument*/NULL);
}
IL_0023:
{
NullCheck((Task_t3187275312 *)__this);
bool L_3 = Task_get_IsRanToCompletion_m285137934((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0032;
}
}
{
NullCheck((Task_t3187275312 *)__this);
Task_ThrowIfExceptional_m1147093355((Task_t3187275312 *)__this, (bool)1, /*hidden argument*/NULL);
}
IL_0032:
{
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_result_22();
return L_4;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetException(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m1737631413_gshared (Task_1_t190679043 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
NullCheck((Task_t3187275312 *)__this);
Task_EnsureContingentPropertiesInitialized_m1531521476((Task_t3187275312 *)__this, (bool)1, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_0)
{
goto IL_002c;
}
}
{
RuntimeObject * L_1 = ___exceptionObject0;
NullCheck((Task_t3187275312 *)__this);
Task_AddException_m1219930878((Task_t3187275312 *)__this, (RuntimeObject *)L_1, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
Task_Finish_m1724979731((Task_t3187275312 *)__this, (bool)0, /*hidden argument*/NULL);
V_0 = (bool)1;
}
IL_002c:
{
bool L_2 = V_0;
return L_2;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetCanceled(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m548930421_gshared (Task_1_t190679043 * __this, CancellationToken_t784455623 ___tokenToRecord0, const RuntimeMethod* method)
{
{
CancellationToken_t784455623 L_0 = ___tokenToRecord0;
NullCheck((Task_1_t190679043 *)__this);
bool L_1 = (( bool (*) (Task_1_t190679043 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((Task_1_t190679043 *)__this, (CancellationToken_t784455623 )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
return L_1;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetCanceled(System.Threading.CancellationToken,System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m265241852_gshared (Task_1_t190679043 * __this, CancellationToken_t784455623 ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0024;
}
}
{
CancellationToken_t784455623 L_1 = ___tokenToRecord0;
RuntimeObject * L_2 = ___cancellationException1;
NullCheck((Task_t3187275312 *)__this);
Task_RecordInternalCancellationRequest_m904000580((Task_t3187275312 *)__this, (CancellationToken_t784455623 )L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
Task_CancellationCleanupLogic_m1481515712((Task_t3187275312 *)__this, /*hidden argument*/NULL);
V_0 = (bool)1;
}
IL_0024:
{
bool L_3 = V_0;
return L_3;
}
}
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.Object>::get_Factory()
extern "C" IL2CPP_METHOD_ATTR TaskFactory_1_t3139534710 * Task_1_get_Factory_m359957607_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7));
TaskFactory_1_t3139534710 * L_0 = ((Task_1_t190679043_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->get_s_Factory_23();
return L_0;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Object>::InnerInvoke()
extern "C" IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m271980932_gshared (Task_1_t190679043 * __this, const RuntimeMethod* method)
{
Func_1_t2509852811 * V_0 = NULL;
Func_2_t2447130374 * V_1 = NULL;
{
RuntimeObject * L_0 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_action_5();
V_0 = (Func_1_t2509852811 *)((Func_1_t2509852811 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 8)));
Func_1_t2509852811 * L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
Func_1_t2509852811 * L_2 = V_0;
NullCheck((Func_1_t2509852811 *)L_2);
RuntimeObject * L_3 = (( RuntimeObject * (*) (Func_1_t2509852811 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 9)->methodPointer)((Func_1_t2509852811 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 9));
__this->set_m_result_22(L_3);
return;
}
IL_001c:
{
RuntimeObject * L_4 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_action_5();
V_1 = (Func_2_t2447130374 *)((Func_2_t2447130374 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 10)));
Func_2_t2447130374 * L_5 = V_1;
if (!L_5)
{
goto IL_003e;
}
}
{
Func_2_t2447130374 * L_6 = V_1;
RuntimeObject * L_7 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_stateObject_6();
NullCheck((Func_2_t2447130374 *)L_6);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 11)->methodPointer)((Func_2_t2447130374 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 11));
__this->set_m_result_22(L_8);
return;
}
IL_003e:
{
return;
}
}
// System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Object>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR TaskAwaiter_1_t1579621299 Task_1_GetAwaiter_m3356487292_gshared (Task_1_t190679043 * __this, const RuntimeMethod* method)
{
{
TaskAwaiter_1_t1579621299 L_0;
memset(&L_0, 0, sizeof(L_0));
TaskAwaiter_1__ctor_m896688224((&L_0), (Task_1_t190679043 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 13));
return L_0;
}
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Object>::ConfigureAwait(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t1383066211 Task_1_ConfigureAwait_m2546782974_gshared (Task_1_t190679043 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method)
{
{
bool L_0 = ___continueOnCapturedContext0;
ConfiguredTaskAwaitable_1_t1383066211 L_1;
memset(&L_1, 0, sizeof(L_1));
ConfiguredTaskAwaitable_1__ctor_m1147622556((&L_1), (Task_1_t190679043 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 15));
return L_1;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Object>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void Task_1__cctor_m3437534071_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
TaskFactory_1_t3139534710 * L_0 = (TaskFactory_1_t3139534710 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 16));
(( void (*) (TaskFactory_1_t3139534710 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 17)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 17));
((Task_1_t190679043_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->set_s_Factory_23(L_0);
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 18));
U3CU3Ec_t740675757 * L_1 = ((U3CU3Ec_t740675757_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 18)))->get_U3CU3E9_0();
intptr_t L_2 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 19);
Func_2_t2108926 * L_3 = (Func_2_t2108926 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 20));
(( void (*) (Func_2_t2108926 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 21)->methodPointer)(L_3, (RuntimeObject *)L_1, (intptr_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 21));
((Task_1_t190679043_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->set_TaskWhenAnyCast_24(L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m2030236653_gshared (Task_1_t4022128754 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m2030236653_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m3380090582((Task_t3187275312 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Object,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m2616143098_gshared (Task_1_t4022128754 * __this, RuntimeObject * ___state0, int32_t ___options1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m2616143098_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___state0;
int32_t L_1 = ___options1;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m3094793396((Task_t3187275312 *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(TResult)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m1191158001_gshared (Task_1_t4022128754 * __this, VoidTaskResult_t2616588579 ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m1191158001_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_0 = V_0;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m2785691336((Task_t3187275312 *)__this, (bool)0, (int32_t)0, (CancellationToken_t784455623 )L_0, /*hidden argument*/NULL);
VoidTaskResult_t2616588579 L_1 = ___result0;
__this->set_m_result_22(L_1);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m3537226067_gshared (Task_1_t4022128754 * __this, bool ___canceled0, VoidTaskResult_t2616588579 ___result1, int32_t ___creationOptions2, CancellationToken_t784455623 ___ct3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m3537226067_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___canceled0;
int32_t L_1 = ___creationOptions2;
CancellationToken_t784455623 L_2 = ___ct3;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m2785691336((Task_t3187275312 *)__this, (bool)L_0, (int32_t)L_1, (CancellationToken_t784455623 )L_2, /*hidden argument*/NULL);
bool L_3 = ___canceled0;
if (L_3)
{
goto IL_0014;
}
}
{
VoidTaskResult_t2616588579 L_4 = ___result1;
__this->set_m_result_22(L_4);
}
IL_0014:
{
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_m1363854870_gshared (Task_1_t4022128754 * __this, Func_2_t1983612789 * ___function0, RuntimeObject * ___state1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m1363854870_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Func_2_t1983612789 * L_0 = ___function0;
RuntimeObject * L_1 = ___state1;
int32_t L_2 = ___creationOptions3;
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_t3187275312 * L_3 = Task_InternalCurrentIfAttached_m3256135818(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
CancellationToken_t784455623 L_4 = ___cancellationToken2;
int32_t L_5 = ___creationOptions3;
NullCheck((Task_1_t4022128754 *)__this);
(( void (*) (Task_1_t4022128754 *, Delegate_t1188392813 *, RuntimeObject *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Task_1_t4022128754 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)L_1, (Task_t3187275312 *)L_3, (CancellationToken_t784455623 )L_4, (int32_t)L_5, (int32_t)0, (TaskScheduler_t1196198384 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
V_0 = (int32_t)1;
NullCheck((Task_t3187275312 *)__this);
Task_PossiblyCaptureContext_m2078689259((Task_t3187275312 *)__this, (int32_t*)(&V_0), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m2364468312_gshared (Task_1_t4022128754 * __this, Func_1_t2046335226 * ___valueSelector0, Task_t3187275312 * ___parent1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m2364468312_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2046335226 * L_0 = ___valueSelector0;
Task_t3187275312 * L_1 = ___parent1;
CancellationToken_t784455623 L_2 = ___cancellationToken2;
int32_t L_3 = ___creationOptions3;
int32_t L_4 = ___internalOptions4;
TaskScheduler_t1196198384 * L_5 = ___scheduler5;
NullCheck((Task_1_t4022128754 *)__this);
(( void (*) (Task_1_t4022128754 *, Func_1_t2046335226 *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)((Task_1_t4022128754 *)__this, (Func_1_t2046335226 *)L_0, (Task_t3187275312 *)L_1, (CancellationToken_t784455623 )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t1196198384 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
int32_t* L_6 = ___stackMark6;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_PossiblyCaptureContext_m2078689259((Task_t3187275312 *)__this, (int32_t*)L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m591947948_gshared (Task_1_t4022128754 * __this, Func_1_t2046335226 * ___valueSelector0, Task_t3187275312 * ___parent1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m591947948_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2046335226 * L_0 = ___valueSelector0;
Task_t3187275312 * L_1 = ___parent1;
CancellationToken_t784455623 L_2 = ___cancellationToken2;
int32_t L_3 = ___creationOptions3;
int32_t L_4 = ___internalOptions4;
TaskScheduler_t1196198384 * L_5 = ___scheduler5;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m388757629((Task_t3187275312 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)NULL, (Task_t3187275312 *)L_1, (CancellationToken_t784455623 )L_2, (int32_t)L_3, (int32_t)L_4, (TaskScheduler_t1196198384 *)L_5, /*hidden argument*/NULL);
int32_t L_6 = ___internalOptions4;
if (!((int32_t)((int32_t)L_6&(int32_t)((int32_t)2048))))
{
goto IL_002f;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_8 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_8, (String_t*)_stringLiteral2086526269, (String_t*)L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,Task_1__ctor_m591947948_RuntimeMethod_var);
}
IL_002f:
{
return;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void Task_1__ctor_m3400751269_gshared (Task_1_t4022128754 * __this, Delegate_t1188392813 * ___valueSelector0, RuntimeObject * ___state1, Task_t3187275312 * ___parent2, CancellationToken_t784455623 ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t1196198384 * ___scheduler6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1__ctor_m3400751269_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Delegate_t1188392813 * L_0 = ___valueSelector0;
RuntimeObject * L_1 = ___state1;
Task_t3187275312 * L_2 = ___parent2;
CancellationToken_t784455623 L_3 = ___cancellationToken3;
int32_t L_4 = ___creationOptions4;
int32_t L_5 = ___internalOptions5;
TaskScheduler_t1196198384 * L_6 = ___scheduler6;
NullCheck((Task_t3187275312 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task__ctor_m388757629((Task_t3187275312 *)__this, (Delegate_t1188392813 *)L_0, (RuntimeObject *)L_1, (Task_t3187275312 *)L_2, (CancellationToken_t784455623 )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t1196198384 *)L_6, /*hidden argument*/NULL);
int32_t L_7 = ___internalOptions5;
if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048))))
{
goto IL_0030;
}
}
{
String_t* L_8 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_9 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_9, (String_t*)_stringLiteral2086526269, (String_t*)L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,Task_1__ctor_m3400751269_RuntimeMethod_var);
}
IL_0030:
{
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&)
extern "C" IL2CPP_METHOD_ATTR Task_1_t4022128754 * Task_1_StartNew_m3580749969_gshared (RuntimeObject * __this /* static, unused */, Task_t3187275312 * ___parent0, Func_1_t2046335226 * ___function1, CancellationToken_t784455623 ___cancellationToken2, int32_t ___creationOptions3, int32_t ___internalOptions4, TaskScheduler_t1196198384 * ___scheduler5, int32_t* ___stackMark6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_1_StartNew_m3580749969_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2046335226 * L_0 = ___function1;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral3941509395, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Task_1_StartNew_m3580749969_RuntimeMethod_var);
}
IL_000e:
{
TaskScheduler_t1196198384 * L_2 = ___scheduler5;
if (L_2)
{
goto IL_001d;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, (String_t*)_stringLiteral3453924054, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Task_1_StartNew_m3580749969_RuntimeMethod_var);
}
IL_001d:
{
int32_t L_4 = ___internalOptions4;
if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)2048))))
{
goto IL_003c;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3860971233, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_6, (String_t*)_stringLiteral2086526269, (String_t*)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Task_1_StartNew_m3580749969_RuntimeMethod_var);
}
IL_003c:
{
Func_1_t2046335226 * L_7 = ___function1;
Task_t3187275312 * L_8 = ___parent0;
CancellationToken_t784455623 L_9 = ___cancellationToken2;
int32_t L_10 = ___creationOptions3;
int32_t L_11 = ___internalOptions4;
TaskScheduler_t1196198384 * L_12 = ___scheduler5;
int32_t* L_13 = ___stackMark6;
Task_1_t4022128754 * L_14 = (Task_1_t4022128754 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
(( void (*) (Task_1_t4022128754 *, Func_1_t2046335226 *, Task_t3187275312 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3)->methodPointer)(L_14, (Func_1_t2046335226 *)L_7, (Task_t3187275312 *)L_8, (CancellationToken_t784455623 )L_9, (int32_t)L_10, (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)8192))), (TaskScheduler_t1196198384 *)L_12, (int32_t*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
Task_1_t4022128754 * L_15 = (Task_1_t4022128754 *)L_14;
NullCheck((Task_t3187275312 *)L_15);
Task_ScheduleAndStart_m3697593748((Task_t3187275312 *)L_15, (bool)0, /*hidden argument*/NULL);
return L_15;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m331415447_gshared (Task_1_t4022128754 * __this, VoidTaskResult_t2616588579 ___result0, const RuntimeMethod* method)
{
ContingentProperties_t2170468915 * V_0 = NULL;
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
NullCheck((Task_t3187275312 *)__this);
bool L_1 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0057;
}
}
{
VoidTaskResult_t2616588579 L_2 = ___result0;
__this->set_m_result_22(L_2);
int32_t* L_3 = (int32_t*)((Task_t3187275312 *)__this)->get_address_of_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
int32_t L_4 = (int32_t)((Task_t3187275312 *)__this)->get_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
Interlocked_Exchange_m435211442(NULL /*static, unused*/, (int32_t*)L_3, (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216))), /*hidden argument*/NULL);
ContingentProperties_t2170468915 * L_5 = (ContingentProperties_t2170468915 *)((Task_t3187275312 *)__this)->get_m_contingentProperties_15();
il2cpp_codegen_memory_barrier();
V_0 = (ContingentProperties_t2170468915 *)L_5;
ContingentProperties_t2170468915 * L_6 = V_0;
if (!L_6)
{
goto IL_004f;
}
}
{
ContingentProperties_t2170468915 * L_7 = V_0;
NullCheck((ContingentProperties_t2170468915 *)L_7);
ContingentProperties_SetCompleted_m1273683735((ContingentProperties_t2170468915 *)L_7, /*hidden argument*/NULL);
}
IL_004f:
{
NullCheck((Task_t3187275312 *)__this);
Task_FinishStageThree_m655196368((Task_t3187275312 *)__this, /*hidden argument*/NULL);
return (bool)1;
}
IL_0057:
{
return (bool)0;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::DangerousSetResult(TResult)
extern "C" IL2CPP_METHOD_ATTR void Task_1_DangerousSetResult_m1067084500_gshared (Task_1_t4022128754 * __this, VoidTaskResult_t2616588579 ___result0, const RuntimeMethod* method)
{
{
Task_t3187275312 * L_0 = (Task_t3187275312 *)((Task_t3187275312 *)__this)->get_m_parent_8();
if (!L_0)
{
goto IL_0011;
}
}
{
VoidTaskResult_t2616588579 L_1 = ___result0;
NullCheck((Task_1_t4022128754 *)__this);
(( bool (*) (Task_1_t4022128754 *, VoidTaskResult_t2616588579 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)((Task_1_t4022128754 *)__this, (VoidTaskResult_t2616588579 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
return;
}
IL_0011:
{
VoidTaskResult_t2616588579 L_2 = ___result0;
__this->set_m_result_22(L_2);
int32_t L_3 = (int32_t)((Task_t3187275312 *)__this)->get_m_stateFlags_9();
il2cpp_codegen_memory_barrier();
il2cpp_codegen_memory_barrier();
((Task_t3187275312 *)__this)->set_m_stateFlags_9(((int32_t)((int32_t)L_3|(int32_t)((int32_t)16777216))));
return;
}
}
// TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_Result()
extern "C" IL2CPP_METHOD_ATTR VoidTaskResult_t2616588579 Task_1_get_Result_m1642328908_gshared (Task_1_t4022128754 * __this, const RuntimeMethod* method)
{
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_m3510871212((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000f;
}
}
{
VoidTaskResult_t2616588579 L_1 = (VoidTaskResult_t2616588579 )__this->get_m_result_22();
return L_1;
}
IL_000f:
{
NullCheck((Task_1_t4022128754 *)__this);
VoidTaskResult_t2616588579 L_2 = (( VoidTaskResult_t2616588579 (*) (Task_1_t4022128754 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5)->methodPointer)((Task_1_t4022128754 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5));
return L_2;
}
}
// TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_ResultOnSuccess()
extern "C" IL2CPP_METHOD_ATTR VoidTaskResult_t2616588579 Task_1_get_ResultOnSuccess_m3789350116_gshared (Task_1_t4022128754 * __this, const RuntimeMethod* method)
{
{
VoidTaskResult_t2616588579 L_0 = (VoidTaskResult_t2616588579 )__this->get_m_result_22();
return L_0;
}
}
// TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::GetResultCore(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR VoidTaskResult_t2616588579 Task_1_GetResultCore_m1998668629_gshared (Task_1_t4022128754 * __this, bool ___waitCompletionNotification0, const RuntimeMethod* method)
{
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_get_IsCompleted_m1406118445((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_1 = V_0;
NullCheck((Task_t3187275312 *)__this);
Task_InternalWait_m1596119731((Task_t3187275312 *)__this, (int32_t)(-1), (CancellationToken_t784455623 )L_1, /*hidden argument*/NULL);
}
IL_0019:
{
bool L_2 = ___waitCompletionNotification0;
if (!L_2)
{
goto IL_0023;
}
}
{
NullCheck((Task_t3187275312 *)__this);
Task_NotifyDebuggerOfWaitCompletionIfNecessary_m624966664((Task_t3187275312 *)__this, /*hidden argument*/NULL);
}
IL_0023:
{
NullCheck((Task_t3187275312 *)__this);
bool L_3 = Task_get_IsRanToCompletion_m285137934((Task_t3187275312 *)__this, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0032;
}
}
{
NullCheck((Task_t3187275312 *)__this);
Task_ThrowIfExceptional_m1147093355((Task_t3187275312 *)__this, (bool)1, /*hidden argument*/NULL);
}
IL_0032:
{
VoidTaskResult_t2616588579 L_4 = (VoidTaskResult_t2616588579 )__this->get_m_result_22();
return L_4;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetException(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m820477486_gshared (Task_1_t4022128754 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
NullCheck((Task_t3187275312 *)__this);
Task_EnsureContingentPropertiesInitialized_m1531521476((Task_t3187275312 *)__this, (bool)1, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_0)
{
goto IL_002c;
}
}
{
RuntimeObject * L_1 = ___exceptionObject0;
NullCheck((Task_t3187275312 *)__this);
Task_AddException_m1219930878((Task_t3187275312 *)__this, (RuntimeObject *)L_1, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
Task_Finish_m1724979731((Task_t3187275312 *)__this, (bool)0, /*hidden argument*/NULL);
V_0 = (bool)1;
}
IL_002c:
{
bool L_2 = V_0;
return L_2;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetCanceled(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m1966763390_gshared (Task_1_t4022128754 * __this, CancellationToken_t784455623 ___tokenToRecord0, const RuntimeMethod* method)
{
{
CancellationToken_t784455623 L_0 = ___tokenToRecord0;
NullCheck((Task_1_t4022128754 *)__this);
bool L_1 = (( bool (*) (Task_1_t4022128754 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((Task_1_t4022128754 *)__this, (CancellationToken_t784455623 )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
return L_1;
}
}
// System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m195994708_gshared (Task_1_t4022128754 * __this, CancellationToken_t784455623 ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
NullCheck((Task_t3187275312 *)__this);
bool L_0 = Task_AtomicStateUpdate_m3413171995((Task_t3187275312 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0024;
}
}
{
CancellationToken_t784455623 L_1 = ___tokenToRecord0;
RuntimeObject * L_2 = ___cancellationException1;
NullCheck((Task_t3187275312 *)__this);
Task_RecordInternalCancellationRequest_m904000580((Task_t3187275312 *)__this, (CancellationToken_t784455623 )L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL);
NullCheck((Task_t3187275312 *)__this);
Task_CancellationCleanupLogic_m1481515712((Task_t3187275312 *)__this, /*hidden argument*/NULL);
V_0 = (bool)1;
}
IL_0024:
{
bool L_3 = V_0;
return L_3;
}
}
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_Factory()
extern "C" IL2CPP_METHOD_ATTR TaskFactory_1_t2676017125 * Task_1_get_Factory_m3938633565_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7));
TaskFactory_1_t2676017125 * L_0 = ((Task_1_t4022128754_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->get_s_Factory_23();
return L_0;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::InnerInvoke()
extern "C" IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m35546143_gshared (Task_1_t4022128754 * __this, const RuntimeMethod* method)
{
Func_1_t2046335226 * V_0 = NULL;
Func_2_t1983612789 * V_1 = NULL;
{
RuntimeObject * L_0 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_action_5();
V_0 = (Func_1_t2046335226 *)((Func_1_t2046335226 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 8)));
Func_1_t2046335226 * L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
Func_1_t2046335226 * L_2 = V_0;
NullCheck((Func_1_t2046335226 *)L_2);
VoidTaskResult_t2616588579 L_3 = (( VoidTaskResult_t2616588579 (*) (Func_1_t2046335226 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 9)->methodPointer)((Func_1_t2046335226 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 9));
__this->set_m_result_22(L_3);
return;
}
IL_001c:
{
RuntimeObject * L_4 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_action_5();
V_1 = (Func_2_t1983612789 *)((Func_2_t1983612789 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 10)));
Func_2_t1983612789 * L_5 = V_1;
if (!L_5)
{
goto IL_003e;
}
}
{
Func_2_t1983612789 * L_6 = V_1;
RuntimeObject * L_7 = (RuntimeObject *)((Task_t3187275312 *)__this)->get_m_stateObject_6();
NullCheck((Func_2_t1983612789 *)L_6);
VoidTaskResult_t2616588579 L_8 = (( VoidTaskResult_t2616588579 (*) (Func_2_t1983612789 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 11)->methodPointer)((Func_2_t1983612789 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 11));
__this->set_m_result_22(L_8);
return;
}
IL_003e:
{
return;
}
}
// System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR TaskAwaiter_1_t1116103714 Task_1_GetAwaiter_m1530307733_gshared (Task_1_t4022128754 * __this, const RuntimeMethod* method)
{
{
TaskAwaiter_1_t1116103714 L_0;
memset(&L_0, 0, sizeof(L_0));
TaskAwaiter_1__ctor_m1406333919((&L_0), (Task_1_t4022128754 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 13));
return L_0;
}
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::ConfigureAwait(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t919548626 Task_1_ConfigureAwait_m236486677_gshared (Task_1_t4022128754 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method)
{
{
bool L_0 = ___continueOnCapturedContext0;
ConfiguredTaskAwaitable_1_t919548626 L_1;
memset(&L_1, 0, sizeof(L_1));
ConfiguredTaskAwaitable_1__ctor_m767716706((&L_1), (Task_1_t4022128754 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 15));
return L_1;
}
}
// System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void Task_1__cctor_m3302095657_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
TaskFactory_1_t2676017125 * L_0 = (TaskFactory_1_t2676017125 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 16));
(( void (*) (TaskFactory_1_t2676017125 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 17)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 17));
((Task_1_t4022128754_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->set_s_Factory_23(L_0);
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 18));
U3CU3Ec_t277158172 * L_1 = ((U3CU3Ec_t277158172_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 18)))->get_U3CU3E9_0();
intptr_t L_2 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 19);
Func_2_t3833558637 * L_3 = (Func_2_t3833558637 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 20));
(( void (*) (Func_2_t3833558637 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 21)->methodPointer)(L_3, (RuntimeObject *)L_1, (intptr_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 21));
((Task_1_t4022128754_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 7)))->set_TaskWhenAnyCast_24(L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Boolean>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_0__ctor_m3352467365_gshared (U3CU3Ec__DisplayClass35_0_t293768410 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Boolean>::<FromAsyncImpl>b__0(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_0_U3CFromAsyncImplU3Eb__0_m1143344325_gshared (U3CU3Ec__DisplayClass35_0_t293768410 * __this, RuntimeObject* ___iar0, const RuntimeMethod* method)
{
{
AtomicBoolean_t2634115295 * L_0 = (AtomicBoolean_t2634115295 *)__this->get_invoked_0();
NullCheck((AtomicBoolean_t2634115295 *)L_0);
bool L_1 = AtomicBoolean_TryRelaxedSet_m184349447((AtomicBoolean_t2634115295 *)L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0035;
}
}
{
RuntimeObject* L_2 = ___iar0;
U3CU3Ec__DisplayClass35_1_t707366106 * L_3 = (U3CU3Ec__DisplayClass35_1_t707366106 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_3);
Func_2_t391681124 * L_4 = (Func_2_t391681124 *)L_3->get_endFunction_0();
U3CU3Ec__DisplayClass35_1_t707366106 * L_5 = (U3CU3Ec__DisplayClass35_1_t707366106 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_5);
Action_1_t939472046 * L_6 = (Action_1_t939472046 *)L_5->get_endAction_1();
U3CU3Ec__DisplayClass35_1_t707366106 * L_7 = (U3CU3Ec__DisplayClass35_1_t707366106 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_7);
Task_1_t1502828140 * L_8 = (Task_1_t1502828140 *)L_7->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t391681124 *, Action_1_t939472046 *, Task_1_t1502828140 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_2, (Func_2_t391681124 *)L_4, (Action_1_t939472046 *)L_6, (Task_1_t1502828140 *)L_8, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
}
IL_0035:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Int32>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_0__ctor_m1864947585_gshared (U3CU3Ec__DisplayClass35_0_t3147426198 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Int32>::<FromAsyncImpl>b__0(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_0_U3CFromAsyncImplU3Eb__0_m1236551656_gshared (U3CU3Ec__DisplayClass35_0_t3147426198 * __this, RuntimeObject* ___iar0, const RuntimeMethod* method)
{
{
AtomicBoolean_t2634115295 * L_0 = (AtomicBoolean_t2634115295 *)__this->get_invoked_0();
NullCheck((AtomicBoolean_t2634115295 *)L_0);
bool L_1 = AtomicBoolean_TryRelaxedSet_m184349447((AtomicBoolean_t2634115295 *)L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0035;
}
}
{
RuntimeObject* L_2 = ___iar0;
U3CU3Ec__DisplayClass35_1_t3561023894 * L_3 = (U3CU3Ec__DisplayClass35_1_t3561023894 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_3);
Func_2_t3245338912 * L_4 = (Func_2_t3245338912 *)L_3->get_endFunction_0();
U3CU3Ec__DisplayClass35_1_t3561023894 * L_5 = (U3CU3Ec__DisplayClass35_1_t3561023894 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_5);
Action_1_t939472046 * L_6 = (Action_1_t939472046 *)L_5->get_endAction_1();
U3CU3Ec__DisplayClass35_1_t3561023894 * L_7 = (U3CU3Ec__DisplayClass35_1_t3561023894 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_7);
Task_1_t61518632 * L_8 = (Task_1_t61518632 *)L_7->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t3245338912 *, Action_1_t939472046 *, Task_1_t61518632 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_2, (Func_2_t3245338912 *)L_4, (Action_1_t939472046 *)L_6, (Task_1_t61518632 *)L_8, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
}
IL_0035:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Object>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_0__ctor_m3272325558_gshared (U3CU3Ec__DisplayClass35_0_t3276586609 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Object>::<FromAsyncImpl>b__0(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_0_U3CFromAsyncImplU3Eb__0_m3623876143_gshared (U3CU3Ec__DisplayClass35_0_t3276586609 * __this, RuntimeObject* ___iar0, const RuntimeMethod* method)
{
{
AtomicBoolean_t2634115295 * L_0 = (AtomicBoolean_t2634115295 *)__this->get_invoked_0();
NullCheck((AtomicBoolean_t2634115295 *)L_0);
bool L_1 = AtomicBoolean_TryRelaxedSet_m184349447((AtomicBoolean_t2634115295 *)L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0035;
}
}
{
RuntimeObject* L_2 = ___iar0;
U3CU3Ec__DisplayClass35_1_t3690184305 * L_3 = (U3CU3Ec__DisplayClass35_1_t3690184305 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_3);
Func_2_t3374499323 * L_4 = (Func_2_t3374499323 *)L_3->get_endFunction_0();
U3CU3Ec__DisplayClass35_1_t3690184305 * L_5 = (U3CU3Ec__DisplayClass35_1_t3690184305 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_5);
Action_1_t939472046 * L_6 = (Action_1_t939472046 *)L_5->get_endAction_1();
U3CU3Ec__DisplayClass35_1_t3690184305 * L_7 = (U3CU3Ec__DisplayClass35_1_t3690184305 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_7);
Task_1_t190679043 * L_8 = (Task_1_t190679043 *)L_7->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t3374499323 *, Action_1_t939472046 *, Task_1_t190679043 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_2, (Func_2_t3374499323 *)L_4, (Action_1_t939472046 *)L_6, (Task_1_t190679043 *)L_8, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
}
IL_0035:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Threading.Tasks.VoidTaskResult>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_0__ctor_m1880956421_gshared (U3CU3Ec__DisplayClass35_0_t2813069024 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_0<System.Threading.Tasks.VoidTaskResult>::<FromAsyncImpl>b__0(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_0_U3CFromAsyncImplU3Eb__0_m974794736_gshared (U3CU3Ec__DisplayClass35_0_t2813069024 * __this, RuntimeObject* ___iar0, const RuntimeMethod* method)
{
{
AtomicBoolean_t2634115295 * L_0 = (AtomicBoolean_t2634115295 *)__this->get_invoked_0();
NullCheck((AtomicBoolean_t2634115295 *)L_0);
bool L_1 = AtomicBoolean_TryRelaxedSet_m184349447((AtomicBoolean_t2634115295 *)L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0035;
}
}
{
RuntimeObject* L_2 = ___iar0;
U3CU3Ec__DisplayClass35_1_t3226666720 * L_3 = (U3CU3Ec__DisplayClass35_1_t3226666720 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_3);
Func_2_t2910981738 * L_4 = (Func_2_t2910981738 *)L_3->get_endFunction_0();
U3CU3Ec__DisplayClass35_1_t3226666720 * L_5 = (U3CU3Ec__DisplayClass35_1_t3226666720 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_5);
Action_1_t939472046 * L_6 = (Action_1_t939472046 *)L_5->get_endAction_1();
U3CU3Ec__DisplayClass35_1_t3226666720 * L_7 = (U3CU3Ec__DisplayClass35_1_t3226666720 *)__this->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_7);
Task_1_t4022128754 * L_8 = (Task_1_t4022128754 *)L_7->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t2910981738 *, Action_1_t939472046 *, Task_1_t4022128754 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_2, (Func_2_t2910981738 *)L_4, (Action_1_t939472046 *)L_6, (Task_1_t4022128754 *)L_8, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
}
IL_0035:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Boolean>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_1__ctor_m2761937072_gshared (U3CU3Ec__DisplayClass35_1_t707366106 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Boolean>::<FromAsyncImpl>b__1(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_1_U3CFromAsyncImplU3Eb__1_m4197809314_gshared (U3CU3Ec__DisplayClass35_1_t707366106 * __this, RuntimeObject* ___iar0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___iar0;
Func_2_t391681124 * L_1 = (Func_2_t391681124 *)__this->get_endFunction_0();
Action_1_t939472046 * L_2 = (Action_1_t939472046 *)__this->get_endAction_1();
Task_1_t1502828140 * L_3 = (Task_1_t1502828140 *)__this->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t391681124 *, Action_1_t939472046 *, Task_1_t1502828140 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_0, (Func_2_t391681124 *)L_1, (Action_1_t939472046 *)L_2, (Task_1_t1502828140 *)L_3, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Int32>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_1__ctor_m1444450172_gshared (U3CU3Ec__DisplayClass35_1_t3561023894 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Int32>::<FromAsyncImpl>b__1(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_1_U3CFromAsyncImplU3Eb__1_m1499423879_gshared (U3CU3Ec__DisplayClass35_1_t3561023894 * __this, RuntimeObject* ___iar0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___iar0;
Func_2_t3245338912 * L_1 = (Func_2_t3245338912 *)__this->get_endFunction_0();
Action_1_t939472046 * L_2 = (Action_1_t939472046 *)__this->get_endAction_1();
Task_1_t61518632 * L_3 = (Task_1_t61518632 *)__this->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t3245338912 *, Action_1_t939472046 *, Task_1_t61518632 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_0, (Func_2_t3245338912 *)L_1, (Action_1_t939472046 *)L_2, (Task_1_t61518632 *)L_3, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Object>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_1__ctor_m3054389760_gshared (U3CU3Ec__DisplayClass35_1_t3690184305 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Object>::<FromAsyncImpl>b__1(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_1_U3CFromAsyncImplU3Eb__1_m1057083649_gshared (U3CU3Ec__DisplayClass35_1_t3690184305 * __this, RuntimeObject* ___iar0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___iar0;
Func_2_t3374499323 * L_1 = (Func_2_t3374499323 *)__this->get_endFunction_0();
Action_1_t939472046 * L_2 = (Action_1_t939472046 *)__this->get_endAction_1();
Task_1_t190679043 * L_3 = (Task_1_t190679043 *)__this->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t3374499323 *, Action_1_t939472046 *, Task_1_t190679043 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_0, (Func_2_t3374499323 *)L_1, (Action_1_t939472046 *)L_2, (Task_1_t190679043 *)L_3, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Threading.Tasks.VoidTaskResult>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_1__ctor_m2568909780_gshared (U3CU3Ec__DisplayClass35_1_t3226666720 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/<>c__DisplayClass35_1<System.Threading.Tasks.VoidTaskResult>::<FromAsyncImpl>b__1(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_1_U3CFromAsyncImplU3Eb__1_m3077071414_gshared (U3CU3Ec__DisplayClass35_1_t3226666720 * __this, RuntimeObject* ___iar0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___iar0;
Func_2_t2910981738 * L_1 = (Func_2_t2910981738 *)__this->get_endFunction_0();
Action_1_t939472046 * L_2 = (Action_1_t939472046 *)__this->get_endAction_1();
Task_1_t4022128754 * L_3 = (Task_1_t4022128754 *)__this->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t2910981738 *, Action_1_t939472046 *, Task_1_t4022128754 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_0, (Func_2_t2910981738 *)L_1, (Action_1_t939472046 *)L_2, (Task_1_t4022128754 *)L_3, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::.ctor(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>)
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1__ctor_m1759214770_gshared (FromAsyncTrimPromise_1_t1479234185 * __this, RuntimeObject * ___thisRef0, Func_3_t4196817919 * ___endMethod1, const RuntimeMethod* method)
{
{
NullCheck((Task_1_t61518632 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Task_1_t61518632 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Task_1_t61518632 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
RuntimeObject * L_0 = ___thisRef0;
__this->set_m_thisRef_26(L_0);
Func_3_t4196817919 * L_1 = ___endMethod1;
__this->set_m_endMethod_27(L_1);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::CompleteFromAsyncResult(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1_CompleteFromAsyncResult_m3465491676_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FromAsyncTrimPromise_1_CompleteFromAsyncResult_m3465491676_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
FromAsyncTrimPromise_1_t1479234185 * V_0 = NULL;
RuntimeObject * V_1 = NULL;
Func_3_t4196817919 * V_2 = NULL;
{
RuntimeObject* L_0 = ___asyncResult0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral844061258, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,FromAsyncTrimPromise_1_CompleteFromAsyncResult_m3465491676_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___asyncResult0;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.IAsyncResult::get_AsyncState() */, IAsyncResult_t767004451_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
V_0 = (FromAsyncTrimPromise_1_t1479234185 *)((FromAsyncTrimPromise_1_t1479234185 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)));
FromAsyncTrimPromise_1_t1479234185 * L_4 = V_0;
if (L_4)
{
goto IL_0032;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral457728032, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_6, (String_t*)L_5, (String_t*)_stringLiteral844061258, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,FromAsyncTrimPromise_1_CompleteFromAsyncResult_m3465491676_RuntimeMethod_var);
}
IL_0032:
{
FromAsyncTrimPromise_1_t1479234185 * L_7 = V_0;
NullCheck(L_7);
RuntimeObject * L_8 = (RuntimeObject *)L_7->get_m_thisRef_26();
V_1 = (RuntimeObject *)L_8;
FromAsyncTrimPromise_1_t1479234185 * L_9 = V_0;
NullCheck(L_9);
Func_3_t4196817919 * L_10 = (Func_3_t4196817919 *)L_9->get_m_endMethod_27();
V_2 = (Func_3_t4196817919 *)L_10;
FromAsyncTrimPromise_1_t1479234185 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject ** L_12 = (RuntimeObject **)L_11->get_address_of_m_thisRef_26();
il2cpp_codegen_initobj(L_12, sizeof(RuntimeObject *));
FromAsyncTrimPromise_1_t1479234185 * L_13 = V_0;
NullCheck(L_13);
L_13->set_m_endMethod_27((Func_3_t4196817919 *)NULL);
Func_3_t4196817919 * L_14 = V_2;
if (L_14)
{
goto IL_006b;
}
}
{
String_t* L_15 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral457728032, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_16 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_16, (String_t*)L_15, (String_t*)_stringLiteral844061258, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16,FromAsyncTrimPromise_1_CompleteFromAsyncResult_m3465491676_RuntimeMethod_var);
}
IL_006b:
{
RuntimeObject* L_17 = ___asyncResult0;
NullCheck((RuntimeObject*)L_17);
bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_t767004451_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if (L_18)
{
goto IL_007d;
}
}
{
FromAsyncTrimPromise_1_t1479234185 * L_19 = V_0;
RuntimeObject * L_20 = V_1;
Func_3_t4196817919 * L_21 = V_2;
RuntimeObject* L_22 = ___asyncResult0;
NullCheck((FromAsyncTrimPromise_1_t1479234185 *)L_19);
(( void (*) (FromAsyncTrimPromise_1_t1479234185 *, RuntimeObject *, Func_3_t4196817919 *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3)->methodPointer)((FromAsyncTrimPromise_1_t1479234185 *)L_19, (RuntimeObject *)L_20, (Func_3_t4196817919 *)L_21, (RuntimeObject*)L_22, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
}
IL_007d:
{
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1_Complete_m3947771803_gshared (FromAsyncTrimPromise_1_t1479234185 * __this, RuntimeObject * ___thisRef0, Func_3_t4196817919 * ___endMethod1, RuntimeObject* ___asyncResult2, bool ___requiresSynchronization3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FromAsyncTrimPromise_1_Complete_m3947771803_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
OperationCanceledException_t926488448 * V_1 = NULL;
Exception_t * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
Func_3_t4196817919 * L_0 = ___endMethod1;
RuntimeObject * L_1 = ___thisRef0;
RuntimeObject* L_2 = ___asyncResult2;
NullCheck((Func_3_t4196817919 *)L_0);
int32_t L_3 = (( int32_t (*) (Func_3_t4196817919 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)((Func_3_t4196817919 *)L_0, (RuntimeObject *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
V_0 = (int32_t)L_3;
bool L_4 = ___requiresSynchronization3;
if (!L_4)
{
goto IL_0017;
}
}
IL_000d:
{
int32_t L_5 = V_0;
NullCheck((Task_1_t61518632 *)__this);
(( bool (*) (Task_1_t61518632 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5)->methodPointer)((Task_1_t61518632 *)__this, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5));
goto IL_001e;
}
IL_0017:
{
int32_t L_6 = V_0;
NullCheck((Task_1_t61518632 *)__this);
(( void (*) (Task_1_t61518632 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((Task_1_t61518632 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_001e:
{
goto IL_003c;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (OperationCanceledException_t926488448_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0020;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0031;
throw e;
}
CATCH_0020:
{ // begin catch(System.OperationCanceledException)
V_1 = (OperationCanceledException_t926488448 *)((OperationCanceledException_t926488448 *)__exception_local);
OperationCanceledException_t926488448 * L_7 = V_1;
NullCheck((OperationCanceledException_t926488448 *)L_7);
CancellationToken_t784455623 L_8 = OperationCanceledException_get_CancellationToken_m1943835608((OperationCanceledException_t926488448 *)L_7, /*hidden argument*/NULL);
OperationCanceledException_t926488448 * L_9 = V_1;
NullCheck((Task_1_t61518632 *)__this);
(( bool (*) (Task_1_t61518632 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 7)->methodPointer)((Task_1_t61518632 *)__this, (CancellationToken_t784455623 )L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 7));
goto IL_003c;
} // end catch (depth: 1)
CATCH_0031:
{ // begin catch(System.Exception)
V_2 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_10 = V_2;
NullCheck((Task_1_t61518632 *)__this);
(( bool (*) (Task_1_t61518632 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 8)->methodPointer)((Task_1_t61518632 *)__this, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 8));
goto IL_003c;
} // end catch (depth: 1)
IL_003c:
{
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1__cctor_m3606345977_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FromAsyncTrimPromise_1__cctor_m3606345977_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
intptr_t L_0 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9);
AsyncCallback_t3962456242 * L_1 = (AsyncCallback_t3962456242 *)il2cpp_codegen_object_new(AsyncCallback_t3962456242_il2cpp_TypeInfo_var);
AsyncCallback__ctor_m530647953(L_1, (RuntimeObject *)NULL, (intptr_t)L_0, /*hidden argument*/NULL);
((FromAsyncTrimPromise_1_t1479234185_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10)))->set_s_completeFromAsyncResult_25(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::.ctor(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>)
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1__ctor_m3920223710_gshared (FromAsyncTrimPromise_1_t3937927138 * __this, RuntimeObject * ___thisRef0, Func_3_t31011034 * ___endMethod1, const RuntimeMethod* method)
{
{
NullCheck((Task_1_t190679043 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Task_1_t190679043 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Task_1_t190679043 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
RuntimeObject * L_0 = ___thisRef0;
__this->set_m_thisRef_26(L_0);
Func_3_t31011034 * L_1 = ___endMethod1;
__this->set_m_endMethod_27(L_1);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::CompleteFromAsyncResult(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1_CompleteFromAsyncResult_m919975746_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FromAsyncTrimPromise_1_CompleteFromAsyncResult_m919975746_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
FromAsyncTrimPromise_1_t3937927138 * V_0 = NULL;
RuntimeObject * V_1 = NULL;
Func_3_t31011034 * V_2 = NULL;
{
RuntimeObject* L_0 = ___asyncResult0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral844061258, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,FromAsyncTrimPromise_1_CompleteFromAsyncResult_m919975746_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___asyncResult0;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.IAsyncResult::get_AsyncState() */, IAsyncResult_t767004451_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
V_0 = (FromAsyncTrimPromise_1_t3937927138 *)((FromAsyncTrimPromise_1_t3937927138 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)));
FromAsyncTrimPromise_1_t3937927138 * L_4 = V_0;
if (L_4)
{
goto IL_0032;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral457728032, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_6, (String_t*)L_5, (String_t*)_stringLiteral844061258, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,FromAsyncTrimPromise_1_CompleteFromAsyncResult_m919975746_RuntimeMethod_var);
}
IL_0032:
{
FromAsyncTrimPromise_1_t3937927138 * L_7 = V_0;
NullCheck(L_7);
RuntimeObject * L_8 = (RuntimeObject *)L_7->get_m_thisRef_26();
V_1 = (RuntimeObject *)L_8;
FromAsyncTrimPromise_1_t3937927138 * L_9 = V_0;
NullCheck(L_9);
Func_3_t31011034 * L_10 = (Func_3_t31011034 *)L_9->get_m_endMethod_27();
V_2 = (Func_3_t31011034 *)L_10;
FromAsyncTrimPromise_1_t3937927138 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject ** L_12 = (RuntimeObject **)L_11->get_address_of_m_thisRef_26();
il2cpp_codegen_initobj(L_12, sizeof(RuntimeObject *));
FromAsyncTrimPromise_1_t3937927138 * L_13 = V_0;
NullCheck(L_13);
L_13->set_m_endMethod_27((Func_3_t31011034 *)NULL);
Func_3_t31011034 * L_14 = V_2;
if (L_14)
{
goto IL_006b;
}
}
{
String_t* L_15 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral457728032, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_16 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_16, (String_t*)L_15, (String_t*)_stringLiteral844061258, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16,FromAsyncTrimPromise_1_CompleteFromAsyncResult_m919975746_RuntimeMethod_var);
}
IL_006b:
{
RuntimeObject* L_17 = ___asyncResult0;
NullCheck((RuntimeObject*)L_17);
bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_t767004451_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if (L_18)
{
goto IL_007d;
}
}
{
FromAsyncTrimPromise_1_t3937927138 * L_19 = V_0;
RuntimeObject * L_20 = V_1;
Func_3_t31011034 * L_21 = V_2;
RuntimeObject* L_22 = ___asyncResult0;
NullCheck((FromAsyncTrimPromise_1_t3937927138 *)L_19);
(( void (*) (FromAsyncTrimPromise_1_t3937927138 *, RuntimeObject *, Func_3_t31011034 *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3)->methodPointer)((FromAsyncTrimPromise_1_t3937927138 *)L_19, (RuntimeObject *)L_20, (Func_3_t31011034 *)L_21, (RuntimeObject*)L_22, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
}
IL_007d:
{
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1_Complete_m1864304702_gshared (FromAsyncTrimPromise_1_t3937927138 * __this, RuntimeObject * ___thisRef0, Func_3_t31011034 * ___endMethod1, RuntimeObject* ___asyncResult2, bool ___requiresSynchronization3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FromAsyncTrimPromise_1_Complete_m1864304702_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
OperationCanceledException_t926488448 * V_1 = NULL;
Exception_t * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
Func_3_t31011034 * L_0 = ___endMethod1;
RuntimeObject * L_1 = ___thisRef0;
RuntimeObject* L_2 = ___asyncResult2;
NullCheck((Func_3_t31011034 *)L_0);
RuntimeObject * L_3 = (( RuntimeObject * (*) (Func_3_t31011034 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)((Func_3_t31011034 *)L_0, (RuntimeObject *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
V_0 = (RuntimeObject *)L_3;
bool L_4 = ___requiresSynchronization3;
if (!L_4)
{
goto IL_0017;
}
}
IL_000d:
{
RuntimeObject * L_5 = V_0;
NullCheck((Task_1_t190679043 *)__this);
(( bool (*) (Task_1_t190679043 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5)->methodPointer)((Task_1_t190679043 *)__this, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5));
goto IL_001e;
}
IL_0017:
{
RuntimeObject * L_6 = V_0;
NullCheck((Task_1_t190679043 *)__this);
(( void (*) (Task_1_t190679043 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((Task_1_t190679043 *)__this, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_001e:
{
goto IL_003c;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (OperationCanceledException_t926488448_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0020;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0031;
throw e;
}
CATCH_0020:
{ // begin catch(System.OperationCanceledException)
V_1 = (OperationCanceledException_t926488448 *)((OperationCanceledException_t926488448 *)__exception_local);
OperationCanceledException_t926488448 * L_7 = V_1;
NullCheck((OperationCanceledException_t926488448 *)L_7);
CancellationToken_t784455623 L_8 = OperationCanceledException_get_CancellationToken_m1943835608((OperationCanceledException_t926488448 *)L_7, /*hidden argument*/NULL);
OperationCanceledException_t926488448 * L_9 = V_1;
NullCheck((Task_1_t190679043 *)__this);
(( bool (*) (Task_1_t190679043 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 7)->methodPointer)((Task_1_t190679043 *)__this, (CancellationToken_t784455623 )L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 7));
goto IL_003c;
} // end catch (depth: 1)
CATCH_0031:
{ // begin catch(System.Exception)
V_2 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_10 = V_2;
NullCheck((Task_1_t190679043 *)__this);
(( bool (*) (Task_1_t190679043 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 8)->methodPointer)((Task_1_t190679043 *)__this, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 8));
goto IL_003c;
} // end catch (depth: 1)
IL_003c:
{
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1__cctor_m1081384427_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FromAsyncTrimPromise_1__cctor_m1081384427_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
intptr_t L_0 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9);
AsyncCallback_t3962456242 * L_1 = (AsyncCallback_t3962456242 *)il2cpp_codegen_object_new(AsyncCallback_t3962456242_il2cpp_TypeInfo_var);
AsyncCallback__ctor_m530647953(L_1, (RuntimeObject *)NULL, (intptr_t)L_0, /*hidden argument*/NULL);
((FromAsyncTrimPromise_1_t3937927138_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10)))->set_s_completeFromAsyncResult_25(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::.ctor(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>)
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1__ctor_m967276000_gshared (FromAsyncTrimPromise_1_t1953969367 * __this, RuntimeObject * ___thisRef0, Func_3_t3862460745 * ___endMethod1, const RuntimeMethod* method)
{
{
NullCheck((Task_1_t4022128754 *)__this);
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Task_1_t4022128754 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Task_1_t4022128754 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
RuntimeObject * L_0 = ___thisRef0;
__this->set_m_thisRef_26(L_0);
Func_3_t3862460745 * L_1 = ___endMethod1;
__this->set_m_endMethod_27(L_1);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::CompleteFromAsyncResult(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1_CompleteFromAsyncResult_m1307441291_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FromAsyncTrimPromise_1_CompleteFromAsyncResult_m1307441291_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
FromAsyncTrimPromise_1_t1953969367 * V_0 = NULL;
RuntimeObject * V_1 = NULL;
Func_3_t3862460745 * V_2 = NULL;
{
RuntimeObject* L_0 = ___asyncResult0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral844061258, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,FromAsyncTrimPromise_1_CompleteFromAsyncResult_m1307441291_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___asyncResult0;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.IAsyncResult::get_AsyncState() */, IAsyncResult_t767004451_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
V_0 = (FromAsyncTrimPromise_1_t1953969367 *)((FromAsyncTrimPromise_1_t1953969367 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)));
FromAsyncTrimPromise_1_t1953969367 * L_4 = V_0;
if (L_4)
{
goto IL_0032;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral457728032, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_6, (String_t*)L_5, (String_t*)_stringLiteral844061258, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,FromAsyncTrimPromise_1_CompleteFromAsyncResult_m1307441291_RuntimeMethod_var);
}
IL_0032:
{
FromAsyncTrimPromise_1_t1953969367 * L_7 = V_0;
NullCheck(L_7);
RuntimeObject * L_8 = (RuntimeObject *)L_7->get_m_thisRef_26();
V_1 = (RuntimeObject *)L_8;
FromAsyncTrimPromise_1_t1953969367 * L_9 = V_0;
NullCheck(L_9);
Func_3_t3862460745 * L_10 = (Func_3_t3862460745 *)L_9->get_m_endMethod_27();
V_2 = (Func_3_t3862460745 *)L_10;
FromAsyncTrimPromise_1_t1953969367 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject ** L_12 = (RuntimeObject **)L_11->get_address_of_m_thisRef_26();
il2cpp_codegen_initobj(L_12, sizeof(RuntimeObject *));
FromAsyncTrimPromise_1_t1953969367 * L_13 = V_0;
NullCheck(L_13);
L_13->set_m_endMethod_27((Func_3_t3862460745 *)NULL);
Func_3_t3862460745 * L_14 = V_2;
if (L_14)
{
goto IL_006b;
}
}
{
String_t* L_15 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral457728032, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_16 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_16, (String_t*)L_15, (String_t*)_stringLiteral844061258, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16,FromAsyncTrimPromise_1_CompleteFromAsyncResult_m1307441291_RuntimeMethod_var);
}
IL_006b:
{
RuntimeObject* L_17 = ___asyncResult0;
NullCheck((RuntimeObject*)L_17);
bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_t767004451_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if (L_18)
{
goto IL_007d;
}
}
{
FromAsyncTrimPromise_1_t1953969367 * L_19 = V_0;
RuntimeObject * L_20 = V_1;
Func_3_t3862460745 * L_21 = V_2;
RuntimeObject* L_22 = ___asyncResult0;
NullCheck((FromAsyncTrimPromise_1_t1953969367 *)L_19);
(( void (*) (FromAsyncTrimPromise_1_t1953969367 *, RuntimeObject *, Func_3_t3862460745 *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3)->methodPointer)((FromAsyncTrimPromise_1_t1953969367 *)L_19, (RuntimeObject *)L_20, (Func_3_t3862460745 *)L_21, (RuntimeObject*)L_22, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
}
IL_007d:
{
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1_Complete_m470245923_gshared (FromAsyncTrimPromise_1_t1953969367 * __this, RuntimeObject * ___thisRef0, Func_3_t3862460745 * ___endMethod1, RuntimeObject* ___asyncResult2, bool ___requiresSynchronization3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FromAsyncTrimPromise_1_Complete_m470245923_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
VoidTaskResult_t2616588579 V_0;
memset(&V_0, 0, sizeof(V_0));
OperationCanceledException_t926488448 * V_1 = NULL;
Exception_t * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
Func_3_t3862460745 * L_0 = ___endMethod1;
RuntimeObject * L_1 = ___thisRef0;
RuntimeObject* L_2 = ___asyncResult2;
NullCheck((Func_3_t3862460745 *)L_0);
VoidTaskResult_t2616588579 L_3 = (( VoidTaskResult_t2616588579 (*) (Func_3_t3862460745 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)((Func_3_t3862460745 *)L_0, (RuntimeObject *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
V_0 = (VoidTaskResult_t2616588579 )L_3;
bool L_4 = ___requiresSynchronization3;
if (!L_4)
{
goto IL_0017;
}
}
IL_000d:
{
VoidTaskResult_t2616588579 L_5 = V_0;
NullCheck((Task_1_t4022128754 *)__this);
(( bool (*) (Task_1_t4022128754 *, VoidTaskResult_t2616588579 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5)->methodPointer)((Task_1_t4022128754 *)__this, (VoidTaskResult_t2616588579 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5));
goto IL_001e;
}
IL_0017:
{
VoidTaskResult_t2616588579 L_6 = V_0;
NullCheck((Task_1_t4022128754 *)__this);
(( void (*) (Task_1_t4022128754 *, VoidTaskResult_t2616588579 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((Task_1_t4022128754 *)__this, (VoidTaskResult_t2616588579 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_001e:
{
goto IL_003c;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (OperationCanceledException_t926488448_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0020;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0031;
throw e;
}
CATCH_0020:
{ // begin catch(System.OperationCanceledException)
V_1 = (OperationCanceledException_t926488448 *)((OperationCanceledException_t926488448 *)__exception_local);
OperationCanceledException_t926488448 * L_7 = V_1;
NullCheck((OperationCanceledException_t926488448 *)L_7);
CancellationToken_t784455623 L_8 = OperationCanceledException_get_CancellationToken_m1943835608((OperationCanceledException_t926488448 *)L_7, /*hidden argument*/NULL);
OperationCanceledException_t926488448 * L_9 = V_1;
NullCheck((Task_1_t4022128754 *)__this);
(( bool (*) (Task_1_t4022128754 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 7)->methodPointer)((Task_1_t4022128754 *)__this, (CancellationToken_t784455623 )L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 7));
goto IL_003c;
} // end catch (depth: 1)
CATCH_0031:
{ // begin catch(System.Exception)
V_2 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_10 = V_2;
NullCheck((Task_1_t4022128754 *)__this);
(( bool (*) (Task_1_t4022128754 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 8)->methodPointer)((Task_1_t4022128754 *)__this, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 8));
goto IL_003c;
} // end catch (depth: 1)
IL_003c:
{
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::.cctor()
extern "C" IL2CPP_METHOD_ATTR void FromAsyncTrimPromise_1__cctor_m1687729421_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FromAsyncTrimPromise_1__cctor_m1687729421_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
intptr_t L_0 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9);
AsyncCallback_t3962456242 * L_1 = (AsyncCallback_t3962456242 *)il2cpp_codegen_object_new(AsyncCallback_t3962456242_il2cpp_TypeInfo_var);
AsyncCallback__ctor_m530647953(L_1, (RuntimeObject *)NULL, (intptr_t)L_0, /*hidden argument*/NULL);
((FromAsyncTrimPromise_1_t1953969367_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10)))->set_s_completeFromAsyncResult_25(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1<System.Boolean>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m1854055530_gshared (TaskFactory_1_t156716511 * __this, const RuntimeMethod* method)
{
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_0 = V_0;
NullCheck((TaskFactory_1_t156716511 *)__this);
(( void (*) (TaskFactory_1_t156716511 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((TaskFactory_1_t156716511 *)__this, (CancellationToken_t784455623 )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t1196198384 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1<System.Boolean>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m2962166622_gshared (TaskFactory_1_t156716511 * __this, CancellationToken_t784455623 ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t1196198384 * ___scheduler3, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___continuationOptions2;
TaskFactory_CheckMultiTaskContinuationOptions_m4248755655(NULL /*static, unused*/, (int32_t)L_0, /*hidden argument*/NULL);
int32_t L_1 = ___creationOptions1;
TaskFactory_CheckCreationOptions_m1813633372(NULL /*static, unused*/, (int32_t)L_1, /*hidden argument*/NULL);
CancellationToken_t784455623 L_2 = ___cancellationToken0;
__this->set_m_defaultCancellationToken_0(L_2);
TaskScheduler_t1196198384 * L_3 = ___scheduler3;
__this->set_m_defaultScheduler_1(L_3);
int32_t L_4 = ___creationOptions1;
__this->set_m_defaultCreationOptions_2(L_4);
int32_t L_5 = ___continuationOptions2;
__this->set_m_defaultContinuationOptions_3(L_5);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1<System.Boolean>::FromAsyncCoreLogic(System.IAsyncResult,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1_FromAsyncCoreLogic_m1183001924_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___iar0, Func_2_t391681124 * ___endFunction1, Action_1_t939472046 * ___endAction2, Task_1_t1502828140 * ___promise3, bool ___requiresSynchronization4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TaskFactory_1_FromAsyncCoreLogic_m1183001924_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
OperationCanceledException_t926488448 * V_1 = NULL;
bool V_2 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (Exception_t *)NULL;
V_1 = (OperationCanceledException_t926488448 *)NULL;
il2cpp_codegen_initobj((&V_2), sizeof(bool));
}
IL_000c:
try
{ // begin try (depth: 1)
try
{ // begin try (depth: 2)
{
Func_2_t391681124 * L_0 = ___endFunction1;
if (!L_0)
{
goto IL_0019;
}
}
IL_000f:
{
Func_2_t391681124 * L_1 = ___endFunction1;
RuntimeObject* L_2 = ___iar0;
NullCheck((Func_2_t391681124 *)L_1);
bool L_3 = (( bool (*) (Func_2_t391681124 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1)->methodPointer)((Func_2_t391681124 *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
V_2 = (bool)L_3;
goto IL_0020;
}
IL_0019:
{
Action_1_t939472046 * L_4 = ___endAction2;
RuntimeObject* L_5 = ___iar0;
NullCheck((Action_1_t939472046 *)L_4);
Action_1_Invoke_m2928931602((Action_1_t939472046 *)L_4, (RuntimeObject*)L_5, /*hidden argument*/Action_1_Invoke_m2928931602_RuntimeMethod_var);
}
IL_0020:
{
IL2CPP_LEAVE(0xA5, FINALLY_002b);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (OperationCanceledException_t926488448_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0025;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0028;
throw e;
}
CATCH_0025:
{ // begin catch(System.OperationCanceledException)
V_1 = (OperationCanceledException_t926488448 *)((OperationCanceledException_t926488448 *)__exception_local);
IL2CPP_LEAVE(0xA5, FINALLY_002b);
} // end catch (depth: 2)
CATCH_0028:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
IL2CPP_LEAVE(0xA5, FINALLY_002b);
} // end catch (depth: 2)
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002b;
}
FINALLY_002b:
{ // begin finally (depth: 1)
{
OperationCanceledException_t926488448 * L_6 = V_1;
if (!L_6)
{
goto IL_003e;
}
}
IL_002e:
{
Task_1_t1502828140 * L_7 = ___promise3;
OperationCanceledException_t926488448 * L_8 = V_1;
NullCheck((OperationCanceledException_t926488448 *)L_8);
CancellationToken_t784455623 L_9 = OperationCanceledException_get_CancellationToken_m1943835608((OperationCanceledException_t926488448 *)L_8, /*hidden argument*/NULL);
OperationCanceledException_t926488448 * L_10 = V_1;
NullCheck((Task_1_t1502828140 *)L_7);
(( bool (*) (Task_1_t1502828140 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Task_1_t1502828140 *)L_7, (CancellationToken_t784455623 )L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
goto IL_00a4;
}
IL_003e:
{
Exception_t * L_11 = V_0;
if (!L_11)
{
goto IL_0069;
}
}
IL_0041:
{
Task_1_t1502828140 * L_12 = ___promise3;
Exception_t * L_13 = V_0;
NullCheck((Task_1_t1502828140 *)L_12);
bool L_14 = (( bool (*) (Task_1_t1502828140 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3)->methodPointer)((Task_1_t1502828140 *)L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
if (!L_14)
{
goto IL_00a4;
}
}
IL_004a:
{
Exception_t * L_15 = V_0;
if (!((ThreadAbortException_t4074510458 *)IsInst((RuntimeObject*)L_15, ThreadAbortException_t4074510458_il2cpp_TypeInfo_var)))
{
goto IL_00a4;
}
}
IL_0052:
{
Task_1_t1502828140 * L_16 = ___promise3;
NullCheck(L_16);
ContingentProperties_t2170468915 * L_17 = (ContingentProperties_t2170468915 *)((Task_t3187275312 *)L_16)->get_m_contingentProperties_15();
il2cpp_codegen_memory_barrier();
NullCheck(L_17);
TaskExceptionHolder_t1800584989 * L_18 = (TaskExceptionHolder_t1800584989 *)L_17->get_m_exceptionsHolder_2();
il2cpp_codegen_memory_barrier();
NullCheck((TaskExceptionHolder_t1800584989 *)L_18);
TaskExceptionHolder_MarkAsHandled_m3629939554((TaskExceptionHolder_t1800584989 *)L_18, (bool)0, /*hidden argument*/NULL);
goto IL_00a4;
}
IL_0069:
{
bool L_19 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_007d;
}
}
IL_0070:
{
Task_1_t1502828140 * L_20 = ___promise3;
NullCheck((Task_t3187275312 *)L_20);
int32_t L_21 = Task_get_Id_m119004446((Task_t3187275312 *)L_20, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_21, (int32_t)1, /*hidden argument*/NULL);
}
IL_007d:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_22 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_22)
{
goto IL_008f;
}
}
IL_0084:
{
Task_1_t1502828140 * L_23 = ___promise3;
NullCheck((Task_t3187275312 *)L_23);
int32_t L_24 = Task_get_Id_m119004446((Task_t3187275312 *)L_23, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_24, /*hidden argument*/NULL);
}
IL_008f:
{
bool L_25 = ___requiresSynchronization4;
if (!L_25)
{
goto IL_009d;
}
}
IL_0093:
{
Task_1_t1502828140 * L_26 = ___promise3;
bool L_27 = V_2;
NullCheck((Task_1_t1502828140 *)L_26);
(( bool (*) (Task_1_t1502828140 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t1502828140 *)L_26, (bool)L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
goto IL_00a4;
}
IL_009d:
{
Task_1_t1502828140 * L_28 = ___promise3;
bool L_29 = V_2;
NullCheck((Task_1_t1502828140 *)L_28);
(( void (*) (Task_1_t1502828140 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5)->methodPointer)((Task_1_t1502828140 *)L_28, (bool)L_29, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
}
IL_00a4:
{
IL2CPP_END_FINALLY(43)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(43)
{
IL2CPP_JUMP_TBL(0xA5, IL_00a5)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00a5:
{
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Boolean>::FromAsync(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Object)
extern "C" IL2CPP_METHOD_ATTR Task_1_t1502828140 * TaskFactory_1_FromAsync_m1258643386_gshared (TaskFactory_1_t156716511 * __this, Func_3_t82022818 * ___beginMethod0, Func_2_t391681124 * ___endMethod1, RuntimeObject * ___state2, const RuntimeMethod* method)
{
{
Func_3_t82022818 * L_0 = ___beginMethod0;
Func_2_t391681124 * L_1 = ___endMethod1;
RuntimeObject * L_2 = ___state2;
int32_t L_3 = (int32_t)__this->get_m_defaultCreationOptions_2();
Task_1_t1502828140 * L_4 = (( Task_1_t1502828140 * (*) (RuntimeObject * /* static, unused */, Func_3_t82022818 *, Func_2_t391681124 *, Action_1_t939472046 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (Func_3_t82022818 *)L_0, (Func_2_t391681124 *)L_1, (Action_1_t939472046 *)NULL, (RuntimeObject *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
return L_4;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Boolean>::FromAsyncImpl(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_METHOD_ATTR Task_1_t1502828140 * TaskFactory_1_FromAsyncImpl_m1082666411_gshared (RuntimeObject * __this /* static, unused */, Func_3_t82022818 * ___beginMethod0, Func_2_t391681124 * ___endFunction1, Action_1_t939472046 * ___endAction2, RuntimeObject * ___state3, int32_t ___creationOptions4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TaskFactory_1_FromAsyncImpl_m1082666411_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass35_1_t707366106 * V_0 = NULL;
U3CU3Ec__DisplayClass35_0_t293768410 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
U3CU3Ec__DisplayClass35_1_t707366106 * L_0 = (U3CU3Ec__DisplayClass35_1_t707366106 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8));
(( void (*) (U3CU3Ec__DisplayClass35_1_t707366106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9));
V_0 = (U3CU3Ec__DisplayClass35_1_t707366106 *)L_0;
U3CU3Ec__DisplayClass35_1_t707366106 * L_1 = V_0;
Func_2_t391681124 * L_2 = ___endFunction1;
NullCheck(L_1);
L_1->set_endFunction_0(L_2);
U3CU3Ec__DisplayClass35_1_t707366106 * L_3 = V_0;
Action_1_t939472046 * L_4 = ___endAction2;
NullCheck(L_3);
L_3->set_endAction_1(L_4);
Func_3_t82022818 * L_5 = ___beginMethod0;
if (L_5)
{
goto IL_0022;
}
}
{
ArgumentNullException_t1615371798 * L_6 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_6, (String_t*)_stringLiteral1969460926, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,TaskFactory_1_FromAsyncImpl_m1082666411_RuntimeMethod_var);
}
IL_0022:
{
U3CU3Ec__DisplayClass35_1_t707366106 * L_7 = V_0;
NullCheck(L_7);
Func_2_t391681124 * L_8 = (Func_2_t391681124 *)L_7->get_endFunction_0();
if (L_8)
{
goto IL_003d;
}
}
{
U3CU3Ec__DisplayClass35_1_t707366106 * L_9 = V_0;
NullCheck(L_9);
Action_1_t939472046 * L_10 = (Action_1_t939472046 *)L_9->get_endAction_1();
if (L_10)
{
goto IL_003d;
}
}
{
ArgumentNullException_t1615371798 * L_11 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_11, (String_t*)_stringLiteral153292483, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,TaskFactory_1_FromAsyncImpl_m1082666411_RuntimeMethod_var);
}
IL_003d:
{
int32_t L_12 = ___creationOptions4;
TaskFactory_CheckFromAsyncOptions_m4125018144(NULL /*static, unused*/, (int32_t)L_12, (bool)1, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass35_1_t707366106 * L_13 = V_0;
RuntimeObject * L_14 = ___state3;
int32_t L_15 = ___creationOptions4;
Task_1_t1502828140 * L_16 = (Task_1_t1502828140 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
(( void (*) (Task_1_t1502828140 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)->methodPointer)(L_16, (RuntimeObject *)L_14, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
NullCheck(L_13);
L_13->set_promise_2(L_16);
bool L_17 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_0082;
}
}
{
U3CU3Ec__DisplayClass35_1_t707366106 * L_18 = V_0;
NullCheck(L_18);
Task_1_t1502828140 * L_19 = (Task_1_t1502828140 *)L_18->get_promise_2();
NullCheck((Task_t3187275312 *)L_19);
int32_t L_20 = Task_get_Id_m119004446((Task_t3187275312 *)L_19, /*hidden argument*/NULL);
Func_3_t82022818 * L_21 = ___beginMethod0;
NullCheck((Delegate_t1188392813 *)L_21);
MethodInfo_t * L_22 = Delegate_get_Method_m3071622864((Delegate_t1188392813 *)L_21, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_22);
String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_22);
String_t* L_24 = String_Concat_m3937257545(NULL /*static, unused*/, (String_t*)_stringLiteral3179058573, (String_t*)L_23, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCreation_m3940971853(NULL /*static, unused*/, (int32_t)0, (int32_t)L_20, (String_t*)L_24, (uint64_t)(((int64_t)((int64_t)0))), /*hidden argument*/NULL);
}
IL_0082:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_25 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_25)
{
goto IL_0095;
}
}
{
U3CU3Ec__DisplayClass35_1_t707366106 * L_26 = V_0;
NullCheck(L_26);
Task_1_t1502828140 * L_27 = (Task_1_t1502828140 *)L_26->get_promise_2();
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_AddToActiveTasks_m1867860841(NULL /*static, unused*/, (Task_t3187275312 *)L_27, /*hidden argument*/NULL);
}
IL_0095:
{
}
IL_0096:
try
{ // begin try (depth: 1)
{
IL2CPP_RUNTIME_CLASS_INIT(BinaryCompatibility_t3378813580_il2cpp_TypeInfo_var);
bool L_28 = ((BinaryCompatibility_t3378813580_StaticFields*)il2cpp_codegen_static_fields_for(BinaryCompatibility_t3378813580_il2cpp_TypeInfo_var))->get_TargetsAtLeast_Desktop_V4_5_0();
if (!L_28)
{
goto IL_010b;
}
}
IL_009d:
{
U3CU3Ec__DisplayClass35_0_t293768410 * L_29 = (U3CU3Ec__DisplayClass35_0_t293768410 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12));
(( void (*) (U3CU3Ec__DisplayClass35_0_t293768410 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13)->methodPointer)(L_29, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13));
V_1 = (U3CU3Ec__DisplayClass35_0_t293768410 *)L_29;
U3CU3Ec__DisplayClass35_0_t293768410 * L_30 = V_1;
U3CU3Ec__DisplayClass35_1_t707366106 * L_31 = V_0;
NullCheck(L_30);
L_30->set_CSU24U3CU3E8__locals1_1(L_31);
U3CU3Ec__DisplayClass35_0_t293768410 * L_32 = V_1;
AtomicBoolean_t2634115295 * L_33 = (AtomicBoolean_t2634115295 *)il2cpp_codegen_object_new(AtomicBoolean_t2634115295_il2cpp_TypeInfo_var);
AtomicBoolean__ctor_m2830875096(L_33, /*hidden argument*/NULL);
NullCheck(L_32);
L_32->set_invoked_0(L_33);
Func_3_t82022818 * L_34 = ___beginMethod0;
U3CU3Ec__DisplayClass35_0_t293768410 * L_35 = V_1;
intptr_t L_36 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 14);
AsyncCallback_t3962456242 * L_37 = (AsyncCallback_t3962456242 *)il2cpp_codegen_object_new(AsyncCallback_t3962456242_il2cpp_TypeInfo_var);
AsyncCallback__ctor_m530647953(L_37, (RuntimeObject *)L_35, (intptr_t)L_36, /*hidden argument*/NULL);
RuntimeObject * L_38 = ___state3;
NullCheck((Func_3_t82022818 *)L_34);
RuntimeObject* L_39 = Func_3_Invoke_m528074778((Func_3_t82022818 *)L_34, (AsyncCallback_t3962456242 *)L_37, (RuntimeObject *)L_38, /*hidden argument*/Func_3_Invoke_m528074778_RuntimeMethod_var);
V_2 = (RuntimeObject*)L_39;
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_011f;
}
}
IL_00cc:
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
bool L_42 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_t767004451_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
if (!L_42)
{
goto IL_011f;
}
}
IL_00d4:
{
U3CU3Ec__DisplayClass35_0_t293768410 * L_43 = V_1;
NullCheck(L_43);
AtomicBoolean_t2634115295 * L_44 = (AtomicBoolean_t2634115295 *)L_43->get_invoked_0();
NullCheck((AtomicBoolean_t2634115295 *)L_44);
bool L_45 = AtomicBoolean_TryRelaxedSet_m184349447((AtomicBoolean_t2634115295 *)L_44, /*hidden argument*/NULL);
if (!L_45)
{
goto IL_011f;
}
}
IL_00e1:
{
RuntimeObject* L_46 = V_2;
U3CU3Ec__DisplayClass35_0_t293768410 * L_47 = V_1;
NullCheck(L_47);
U3CU3Ec__DisplayClass35_1_t707366106 * L_48 = (U3CU3Ec__DisplayClass35_1_t707366106 *)L_47->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_48);
Func_2_t391681124 * L_49 = (Func_2_t391681124 *)L_48->get_endFunction_0();
U3CU3Ec__DisplayClass35_0_t293768410 * L_50 = V_1;
NullCheck(L_50);
U3CU3Ec__DisplayClass35_1_t707366106 * L_51 = (U3CU3Ec__DisplayClass35_1_t707366106 *)L_50->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_51);
Action_1_t939472046 * L_52 = (Action_1_t939472046 *)L_51->get_endAction_1();
U3CU3Ec__DisplayClass35_0_t293768410 * L_53 = V_1;
NullCheck(L_53);
U3CU3Ec__DisplayClass35_1_t707366106 * L_54 = (U3CU3Ec__DisplayClass35_1_t707366106 *)L_53->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_54);
Task_1_t1502828140 * L_55 = (Task_1_t1502828140 *)L_54->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t391681124 *, Action_1_t939472046 *, Task_1_t1502828140 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 15)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_46, (Func_2_t391681124 *)L_49, (Action_1_t939472046 *)L_52, (Task_1_t1502828140 *)L_55, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 15));
goto IL_011f;
}
IL_010b:
{
Func_3_t82022818 * L_56 = ___beginMethod0;
U3CU3Ec__DisplayClass35_1_t707366106 * L_57 = V_0;
intptr_t L_58 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 16);
AsyncCallback_t3962456242 * L_59 = (AsyncCallback_t3962456242 *)il2cpp_codegen_object_new(AsyncCallback_t3962456242_il2cpp_TypeInfo_var);
AsyncCallback__ctor_m530647953(L_59, (RuntimeObject *)L_57, (intptr_t)L_58, /*hidden argument*/NULL);
RuntimeObject * L_60 = ___state3;
NullCheck((Func_3_t82022818 *)L_56);
Func_3_Invoke_m528074778((Func_3_t82022818 *)L_56, (AsyncCallback_t3962456242 *)L_59, (RuntimeObject *)L_60, /*hidden argument*/Func_3_Invoke_m528074778_RuntimeMethod_var);
}
IL_011f:
{
goto IL_0169;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0121;
throw e;
}
CATCH_0121:
{ // begin catch(System.Object)
{
bool L_61 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_61)
{
goto IL_013b;
}
}
IL_0129:
{
U3CU3Ec__DisplayClass35_1_t707366106 * L_62 = V_0;
NullCheck(L_62);
Task_1_t1502828140 * L_63 = (Task_1_t1502828140 *)L_62->get_promise_2();
NullCheck((Task_t3187275312 *)L_63);
int32_t L_64 = Task_get_Id_m119004446((Task_t3187275312 *)L_63, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_64, (int32_t)3, /*hidden argument*/NULL);
}
IL_013b:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_65 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_65)
{
goto IL_0152;
}
}
IL_0142:
{
U3CU3Ec__DisplayClass35_1_t707366106 * L_66 = V_0;
NullCheck(L_66);
Task_1_t1502828140 * L_67 = (Task_1_t1502828140 *)L_66->get_promise_2();
NullCheck((Task_t3187275312 *)L_67);
int32_t L_68 = Task_get_Id_m119004446((Task_t3187275312 *)L_67, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_68, /*hidden argument*/NULL);
}
IL_0152:
{
U3CU3Ec__DisplayClass35_1_t707366106 * L_69 = V_0;
NullCheck(L_69);
Task_1_t1502828140 * L_70 = (Task_1_t1502828140 *)L_69->get_promise_2();
il2cpp_codegen_initobj((&V_3), sizeof(bool));
bool L_71 = V_3;
NullCheck((Task_1_t1502828140 *)L_70);
(( bool (*) (Task_1_t1502828140 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t1502828140 *)L_70, (bool)L_71, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local,NULL);
}
} // end catch (depth: 1)
IL_0169:
{
U3CU3Ec__DisplayClass35_1_t707366106 * L_72 = V_0;
NullCheck(L_72);
Task_1_t1502828140 * L_73 = (Task_1_t1502828140 *)L_72->get_promise_2();
return L_73;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1<System.Int32>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m3344056887_gshared (TaskFactory_1_t3010374299 * __this, const RuntimeMethod* method)
{
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_0 = V_0;
NullCheck((TaskFactory_1_t3010374299 *)__this);
(( void (*) (TaskFactory_1_t3010374299 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((TaskFactory_1_t3010374299 *)__this, (CancellationToken_t784455623 )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t1196198384 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1<System.Int32>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m1624361561_gshared (TaskFactory_1_t3010374299 * __this, CancellationToken_t784455623 ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t1196198384 * ___scheduler3, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___continuationOptions2;
TaskFactory_CheckMultiTaskContinuationOptions_m4248755655(NULL /*static, unused*/, (int32_t)L_0, /*hidden argument*/NULL);
int32_t L_1 = ___creationOptions1;
TaskFactory_CheckCreationOptions_m1813633372(NULL /*static, unused*/, (int32_t)L_1, /*hidden argument*/NULL);
CancellationToken_t784455623 L_2 = ___cancellationToken0;
__this->set_m_defaultCancellationToken_0(L_2);
TaskScheduler_t1196198384 * L_3 = ___scheduler3;
__this->set_m_defaultScheduler_1(L_3);
int32_t L_4 = ___creationOptions1;
__this->set_m_defaultCreationOptions_2(L_4);
int32_t L_5 = ___continuationOptions2;
__this->set_m_defaultContinuationOptions_3(L_5);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1<System.Int32>::FromAsyncCoreLogic(System.IAsyncResult,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1_FromAsyncCoreLogic_m2119495785_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___iar0, Func_2_t3245338912 * ___endFunction1, Action_1_t939472046 * ___endAction2, Task_1_t61518632 * ___promise3, bool ___requiresSynchronization4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TaskFactory_1_FromAsyncCoreLogic_m2119495785_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
OperationCanceledException_t926488448 * V_1 = NULL;
int32_t V_2 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (Exception_t *)NULL;
V_1 = (OperationCanceledException_t926488448 *)NULL;
il2cpp_codegen_initobj((&V_2), sizeof(int32_t));
}
IL_000c:
try
{ // begin try (depth: 1)
try
{ // begin try (depth: 2)
{
Func_2_t3245338912 * L_0 = ___endFunction1;
if (!L_0)
{
goto IL_0019;
}
}
IL_000f:
{
Func_2_t3245338912 * L_1 = ___endFunction1;
RuntimeObject* L_2 = ___iar0;
NullCheck((Func_2_t3245338912 *)L_1);
int32_t L_3 = (( int32_t (*) (Func_2_t3245338912 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1)->methodPointer)((Func_2_t3245338912 *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
V_2 = (int32_t)L_3;
goto IL_0020;
}
IL_0019:
{
Action_1_t939472046 * L_4 = ___endAction2;
RuntimeObject* L_5 = ___iar0;
NullCheck((Action_1_t939472046 *)L_4);
Action_1_Invoke_m2928931602((Action_1_t939472046 *)L_4, (RuntimeObject*)L_5, /*hidden argument*/Action_1_Invoke_m2928931602_RuntimeMethod_var);
}
IL_0020:
{
IL2CPP_LEAVE(0xA5, FINALLY_002b);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (OperationCanceledException_t926488448_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0025;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0028;
throw e;
}
CATCH_0025:
{ // begin catch(System.OperationCanceledException)
V_1 = (OperationCanceledException_t926488448 *)((OperationCanceledException_t926488448 *)__exception_local);
IL2CPP_LEAVE(0xA5, FINALLY_002b);
} // end catch (depth: 2)
CATCH_0028:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
IL2CPP_LEAVE(0xA5, FINALLY_002b);
} // end catch (depth: 2)
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002b;
}
FINALLY_002b:
{ // begin finally (depth: 1)
{
OperationCanceledException_t926488448 * L_6 = V_1;
if (!L_6)
{
goto IL_003e;
}
}
IL_002e:
{
Task_1_t61518632 * L_7 = ___promise3;
OperationCanceledException_t926488448 * L_8 = V_1;
NullCheck((OperationCanceledException_t926488448 *)L_8);
CancellationToken_t784455623 L_9 = OperationCanceledException_get_CancellationToken_m1943835608((OperationCanceledException_t926488448 *)L_8, /*hidden argument*/NULL);
OperationCanceledException_t926488448 * L_10 = V_1;
NullCheck((Task_1_t61518632 *)L_7);
(( bool (*) (Task_1_t61518632 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Task_1_t61518632 *)L_7, (CancellationToken_t784455623 )L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
goto IL_00a4;
}
IL_003e:
{
Exception_t * L_11 = V_0;
if (!L_11)
{
goto IL_0069;
}
}
IL_0041:
{
Task_1_t61518632 * L_12 = ___promise3;
Exception_t * L_13 = V_0;
NullCheck((Task_1_t61518632 *)L_12);
bool L_14 = (( bool (*) (Task_1_t61518632 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3)->methodPointer)((Task_1_t61518632 *)L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
if (!L_14)
{
goto IL_00a4;
}
}
IL_004a:
{
Exception_t * L_15 = V_0;
if (!((ThreadAbortException_t4074510458 *)IsInst((RuntimeObject*)L_15, ThreadAbortException_t4074510458_il2cpp_TypeInfo_var)))
{
goto IL_00a4;
}
}
IL_0052:
{
Task_1_t61518632 * L_16 = ___promise3;
NullCheck(L_16);
ContingentProperties_t2170468915 * L_17 = (ContingentProperties_t2170468915 *)((Task_t3187275312 *)L_16)->get_m_contingentProperties_15();
il2cpp_codegen_memory_barrier();
NullCheck(L_17);
TaskExceptionHolder_t1800584989 * L_18 = (TaskExceptionHolder_t1800584989 *)L_17->get_m_exceptionsHolder_2();
il2cpp_codegen_memory_barrier();
NullCheck((TaskExceptionHolder_t1800584989 *)L_18);
TaskExceptionHolder_MarkAsHandled_m3629939554((TaskExceptionHolder_t1800584989 *)L_18, (bool)0, /*hidden argument*/NULL);
goto IL_00a4;
}
IL_0069:
{
bool L_19 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_007d;
}
}
IL_0070:
{
Task_1_t61518632 * L_20 = ___promise3;
NullCheck((Task_t3187275312 *)L_20);
int32_t L_21 = Task_get_Id_m119004446((Task_t3187275312 *)L_20, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_21, (int32_t)1, /*hidden argument*/NULL);
}
IL_007d:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_22 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_22)
{
goto IL_008f;
}
}
IL_0084:
{
Task_1_t61518632 * L_23 = ___promise3;
NullCheck((Task_t3187275312 *)L_23);
int32_t L_24 = Task_get_Id_m119004446((Task_t3187275312 *)L_23, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_24, /*hidden argument*/NULL);
}
IL_008f:
{
bool L_25 = ___requiresSynchronization4;
if (!L_25)
{
goto IL_009d;
}
}
IL_0093:
{
Task_1_t61518632 * L_26 = ___promise3;
int32_t L_27 = V_2;
NullCheck((Task_1_t61518632 *)L_26);
(( bool (*) (Task_1_t61518632 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t61518632 *)L_26, (int32_t)L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
goto IL_00a4;
}
IL_009d:
{
Task_1_t61518632 * L_28 = ___promise3;
int32_t L_29 = V_2;
NullCheck((Task_1_t61518632 *)L_28);
(( void (*) (Task_1_t61518632 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5)->methodPointer)((Task_1_t61518632 *)L_28, (int32_t)L_29, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
}
IL_00a4:
{
IL2CPP_END_FINALLY(43)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(43)
{
IL2CPP_JUMP_TBL(0xA5, IL_00a5)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00a5:
{
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Int32>::FromAsync(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Object)
extern "C" IL2CPP_METHOD_ATTR Task_1_t61518632 * TaskFactory_1_FromAsync_m2423254051_gshared (TaskFactory_1_t3010374299 * __this, Func_3_t82022818 * ___beginMethod0, Func_2_t3245338912 * ___endMethod1, RuntimeObject * ___state2, const RuntimeMethod* method)
{
{
Func_3_t82022818 * L_0 = ___beginMethod0;
Func_2_t3245338912 * L_1 = ___endMethod1;
RuntimeObject * L_2 = ___state2;
int32_t L_3 = (int32_t)__this->get_m_defaultCreationOptions_2();
Task_1_t61518632 * L_4 = (( Task_1_t61518632 * (*) (RuntimeObject * /* static, unused */, Func_3_t82022818 *, Func_2_t3245338912 *, Action_1_t939472046 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (Func_3_t82022818 *)L_0, (Func_2_t3245338912 *)L_1, (Action_1_t939472046 *)NULL, (RuntimeObject *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
return L_4;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Int32>::FromAsyncImpl(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_METHOD_ATTR Task_1_t61518632 * TaskFactory_1_FromAsyncImpl_m1422716247_gshared (RuntimeObject * __this /* static, unused */, Func_3_t82022818 * ___beginMethod0, Func_2_t3245338912 * ___endFunction1, Action_1_t939472046 * ___endAction2, RuntimeObject * ___state3, int32_t ___creationOptions4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TaskFactory_1_FromAsyncImpl_m1422716247_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass35_1_t3561023894 * V_0 = NULL;
U3CU3Ec__DisplayClass35_0_t3147426198 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
int32_t V_3 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
U3CU3Ec__DisplayClass35_1_t3561023894 * L_0 = (U3CU3Ec__DisplayClass35_1_t3561023894 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8));
(( void (*) (U3CU3Ec__DisplayClass35_1_t3561023894 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9));
V_0 = (U3CU3Ec__DisplayClass35_1_t3561023894 *)L_0;
U3CU3Ec__DisplayClass35_1_t3561023894 * L_1 = V_0;
Func_2_t3245338912 * L_2 = ___endFunction1;
NullCheck(L_1);
L_1->set_endFunction_0(L_2);
U3CU3Ec__DisplayClass35_1_t3561023894 * L_3 = V_0;
Action_1_t939472046 * L_4 = ___endAction2;
NullCheck(L_3);
L_3->set_endAction_1(L_4);
Func_3_t82022818 * L_5 = ___beginMethod0;
if (L_5)
{
goto IL_0022;
}
}
{
ArgumentNullException_t1615371798 * L_6 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_6, (String_t*)_stringLiteral1969460926, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,TaskFactory_1_FromAsyncImpl_m1422716247_RuntimeMethod_var);
}
IL_0022:
{
U3CU3Ec__DisplayClass35_1_t3561023894 * L_7 = V_0;
NullCheck(L_7);
Func_2_t3245338912 * L_8 = (Func_2_t3245338912 *)L_7->get_endFunction_0();
if (L_8)
{
goto IL_003d;
}
}
{
U3CU3Ec__DisplayClass35_1_t3561023894 * L_9 = V_0;
NullCheck(L_9);
Action_1_t939472046 * L_10 = (Action_1_t939472046 *)L_9->get_endAction_1();
if (L_10)
{
goto IL_003d;
}
}
{
ArgumentNullException_t1615371798 * L_11 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_11, (String_t*)_stringLiteral153292483, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,TaskFactory_1_FromAsyncImpl_m1422716247_RuntimeMethod_var);
}
IL_003d:
{
int32_t L_12 = ___creationOptions4;
TaskFactory_CheckFromAsyncOptions_m4125018144(NULL /*static, unused*/, (int32_t)L_12, (bool)1, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass35_1_t3561023894 * L_13 = V_0;
RuntimeObject * L_14 = ___state3;
int32_t L_15 = ___creationOptions4;
Task_1_t61518632 * L_16 = (Task_1_t61518632 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
(( void (*) (Task_1_t61518632 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)->methodPointer)(L_16, (RuntimeObject *)L_14, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
NullCheck(L_13);
L_13->set_promise_2(L_16);
bool L_17 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_0082;
}
}
{
U3CU3Ec__DisplayClass35_1_t3561023894 * L_18 = V_0;
NullCheck(L_18);
Task_1_t61518632 * L_19 = (Task_1_t61518632 *)L_18->get_promise_2();
NullCheck((Task_t3187275312 *)L_19);
int32_t L_20 = Task_get_Id_m119004446((Task_t3187275312 *)L_19, /*hidden argument*/NULL);
Func_3_t82022818 * L_21 = ___beginMethod0;
NullCheck((Delegate_t1188392813 *)L_21);
MethodInfo_t * L_22 = Delegate_get_Method_m3071622864((Delegate_t1188392813 *)L_21, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_22);
String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_22);
String_t* L_24 = String_Concat_m3937257545(NULL /*static, unused*/, (String_t*)_stringLiteral3179058573, (String_t*)L_23, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCreation_m3940971853(NULL /*static, unused*/, (int32_t)0, (int32_t)L_20, (String_t*)L_24, (uint64_t)(((int64_t)((int64_t)0))), /*hidden argument*/NULL);
}
IL_0082:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_25 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_25)
{
goto IL_0095;
}
}
{
U3CU3Ec__DisplayClass35_1_t3561023894 * L_26 = V_0;
NullCheck(L_26);
Task_1_t61518632 * L_27 = (Task_1_t61518632 *)L_26->get_promise_2();
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_AddToActiveTasks_m1867860841(NULL /*static, unused*/, (Task_t3187275312 *)L_27, /*hidden argument*/NULL);
}
IL_0095:
{
}
IL_0096:
try
{ // begin try (depth: 1)
{
IL2CPP_RUNTIME_CLASS_INIT(BinaryCompatibility_t3378813580_il2cpp_TypeInfo_var);
bool L_28 = ((BinaryCompatibility_t3378813580_StaticFields*)il2cpp_codegen_static_fields_for(BinaryCompatibility_t3378813580_il2cpp_TypeInfo_var))->get_TargetsAtLeast_Desktop_V4_5_0();
if (!L_28)
{
goto IL_010b;
}
}
IL_009d:
{
U3CU3Ec__DisplayClass35_0_t3147426198 * L_29 = (U3CU3Ec__DisplayClass35_0_t3147426198 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12));
(( void (*) (U3CU3Ec__DisplayClass35_0_t3147426198 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13)->methodPointer)(L_29, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13));
V_1 = (U3CU3Ec__DisplayClass35_0_t3147426198 *)L_29;
U3CU3Ec__DisplayClass35_0_t3147426198 * L_30 = V_1;
U3CU3Ec__DisplayClass35_1_t3561023894 * L_31 = V_0;
NullCheck(L_30);
L_30->set_CSU24U3CU3E8__locals1_1(L_31);
U3CU3Ec__DisplayClass35_0_t3147426198 * L_32 = V_1;
AtomicBoolean_t2634115295 * L_33 = (AtomicBoolean_t2634115295 *)il2cpp_codegen_object_new(AtomicBoolean_t2634115295_il2cpp_TypeInfo_var);
AtomicBoolean__ctor_m2830875096(L_33, /*hidden argument*/NULL);
NullCheck(L_32);
L_32->set_invoked_0(L_33);
Func_3_t82022818 * L_34 = ___beginMethod0;
U3CU3Ec__DisplayClass35_0_t3147426198 * L_35 = V_1;
intptr_t L_36 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 14);
AsyncCallback_t3962456242 * L_37 = (AsyncCallback_t3962456242 *)il2cpp_codegen_object_new(AsyncCallback_t3962456242_il2cpp_TypeInfo_var);
AsyncCallback__ctor_m530647953(L_37, (RuntimeObject *)L_35, (intptr_t)L_36, /*hidden argument*/NULL);
RuntimeObject * L_38 = ___state3;
NullCheck((Func_3_t82022818 *)L_34);
RuntimeObject* L_39 = Func_3_Invoke_m528074778((Func_3_t82022818 *)L_34, (AsyncCallback_t3962456242 *)L_37, (RuntimeObject *)L_38, /*hidden argument*/Func_3_Invoke_m528074778_RuntimeMethod_var);
V_2 = (RuntimeObject*)L_39;
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_011f;
}
}
IL_00cc:
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
bool L_42 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_t767004451_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
if (!L_42)
{
goto IL_011f;
}
}
IL_00d4:
{
U3CU3Ec__DisplayClass35_0_t3147426198 * L_43 = V_1;
NullCheck(L_43);
AtomicBoolean_t2634115295 * L_44 = (AtomicBoolean_t2634115295 *)L_43->get_invoked_0();
NullCheck((AtomicBoolean_t2634115295 *)L_44);
bool L_45 = AtomicBoolean_TryRelaxedSet_m184349447((AtomicBoolean_t2634115295 *)L_44, /*hidden argument*/NULL);
if (!L_45)
{
goto IL_011f;
}
}
IL_00e1:
{
RuntimeObject* L_46 = V_2;
U3CU3Ec__DisplayClass35_0_t3147426198 * L_47 = V_1;
NullCheck(L_47);
U3CU3Ec__DisplayClass35_1_t3561023894 * L_48 = (U3CU3Ec__DisplayClass35_1_t3561023894 *)L_47->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_48);
Func_2_t3245338912 * L_49 = (Func_2_t3245338912 *)L_48->get_endFunction_0();
U3CU3Ec__DisplayClass35_0_t3147426198 * L_50 = V_1;
NullCheck(L_50);
U3CU3Ec__DisplayClass35_1_t3561023894 * L_51 = (U3CU3Ec__DisplayClass35_1_t3561023894 *)L_50->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_51);
Action_1_t939472046 * L_52 = (Action_1_t939472046 *)L_51->get_endAction_1();
U3CU3Ec__DisplayClass35_0_t3147426198 * L_53 = V_1;
NullCheck(L_53);
U3CU3Ec__DisplayClass35_1_t3561023894 * L_54 = (U3CU3Ec__DisplayClass35_1_t3561023894 *)L_53->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_54);
Task_1_t61518632 * L_55 = (Task_1_t61518632 *)L_54->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t3245338912 *, Action_1_t939472046 *, Task_1_t61518632 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 15)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_46, (Func_2_t3245338912 *)L_49, (Action_1_t939472046 *)L_52, (Task_1_t61518632 *)L_55, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 15));
goto IL_011f;
}
IL_010b:
{
Func_3_t82022818 * L_56 = ___beginMethod0;
U3CU3Ec__DisplayClass35_1_t3561023894 * L_57 = V_0;
intptr_t L_58 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 16);
AsyncCallback_t3962456242 * L_59 = (AsyncCallback_t3962456242 *)il2cpp_codegen_object_new(AsyncCallback_t3962456242_il2cpp_TypeInfo_var);
AsyncCallback__ctor_m530647953(L_59, (RuntimeObject *)L_57, (intptr_t)L_58, /*hidden argument*/NULL);
RuntimeObject * L_60 = ___state3;
NullCheck((Func_3_t82022818 *)L_56);
Func_3_Invoke_m528074778((Func_3_t82022818 *)L_56, (AsyncCallback_t3962456242 *)L_59, (RuntimeObject *)L_60, /*hidden argument*/Func_3_Invoke_m528074778_RuntimeMethod_var);
}
IL_011f:
{
goto IL_0169;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0121;
throw e;
}
CATCH_0121:
{ // begin catch(System.Object)
{
bool L_61 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_61)
{
goto IL_013b;
}
}
IL_0129:
{
U3CU3Ec__DisplayClass35_1_t3561023894 * L_62 = V_0;
NullCheck(L_62);
Task_1_t61518632 * L_63 = (Task_1_t61518632 *)L_62->get_promise_2();
NullCheck((Task_t3187275312 *)L_63);
int32_t L_64 = Task_get_Id_m119004446((Task_t3187275312 *)L_63, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_64, (int32_t)3, /*hidden argument*/NULL);
}
IL_013b:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_65 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_65)
{
goto IL_0152;
}
}
IL_0142:
{
U3CU3Ec__DisplayClass35_1_t3561023894 * L_66 = V_0;
NullCheck(L_66);
Task_1_t61518632 * L_67 = (Task_1_t61518632 *)L_66->get_promise_2();
NullCheck((Task_t3187275312 *)L_67);
int32_t L_68 = Task_get_Id_m119004446((Task_t3187275312 *)L_67, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_68, /*hidden argument*/NULL);
}
IL_0152:
{
U3CU3Ec__DisplayClass35_1_t3561023894 * L_69 = V_0;
NullCheck(L_69);
Task_1_t61518632 * L_70 = (Task_1_t61518632 *)L_69->get_promise_2();
il2cpp_codegen_initobj((&V_3), sizeof(int32_t));
int32_t L_71 = V_3;
NullCheck((Task_1_t61518632 *)L_70);
(( bool (*) (Task_1_t61518632 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t61518632 *)L_70, (int32_t)L_71, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local,NULL);
}
} // end catch (depth: 1)
IL_0169:
{
U3CU3Ec__DisplayClass35_1_t3561023894 * L_72 = V_0;
NullCheck(L_72);
Task_1_t61518632 * L_73 = (Task_1_t61518632 *)L_72->get_promise_2();
return L_73;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1<System.Object>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m194611712_gshared (TaskFactory_1_t3139534710 * __this, const RuntimeMethod* method)
{
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_0 = V_0;
NullCheck((TaskFactory_1_t3139534710 *)__this);
(( void (*) (TaskFactory_1_t3139534710 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((TaskFactory_1_t3139534710 *)__this, (CancellationToken_t784455623 )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t1196198384 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1<System.Object>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m1324765840_gshared (TaskFactory_1_t3139534710 * __this, CancellationToken_t784455623 ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t1196198384 * ___scheduler3, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___continuationOptions2;
TaskFactory_CheckMultiTaskContinuationOptions_m4248755655(NULL /*static, unused*/, (int32_t)L_0, /*hidden argument*/NULL);
int32_t L_1 = ___creationOptions1;
TaskFactory_CheckCreationOptions_m1813633372(NULL /*static, unused*/, (int32_t)L_1, /*hidden argument*/NULL);
CancellationToken_t784455623 L_2 = ___cancellationToken0;
__this->set_m_defaultCancellationToken_0(L_2);
TaskScheduler_t1196198384 * L_3 = ___scheduler3;
__this->set_m_defaultScheduler_1(L_3);
int32_t L_4 = ___creationOptions1;
__this->set_m_defaultCreationOptions_2(L_4);
int32_t L_5 = ___continuationOptions2;
__this->set_m_defaultContinuationOptions_3(L_5);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1<System.Object>::FromAsyncCoreLogic(System.IAsyncResult,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1_FromAsyncCoreLogic_m385455661_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___iar0, Func_2_t3374499323 * ___endFunction1, Action_1_t939472046 * ___endAction2, Task_1_t190679043 * ___promise3, bool ___requiresSynchronization4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TaskFactory_1_FromAsyncCoreLogic_m385455661_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
OperationCanceledException_t926488448 * V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (Exception_t *)NULL;
V_1 = (OperationCanceledException_t926488448 *)NULL;
il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *));
}
IL_000c:
try
{ // begin try (depth: 1)
try
{ // begin try (depth: 2)
{
Func_2_t3374499323 * L_0 = ___endFunction1;
if (!L_0)
{
goto IL_0019;
}
}
IL_000f:
{
Func_2_t3374499323 * L_1 = ___endFunction1;
RuntimeObject* L_2 = ___iar0;
NullCheck((Func_2_t3374499323 *)L_1);
RuntimeObject * L_3 = (( RuntimeObject * (*) (Func_2_t3374499323 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1)->methodPointer)((Func_2_t3374499323 *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
V_2 = (RuntimeObject *)L_3;
goto IL_0020;
}
IL_0019:
{
Action_1_t939472046 * L_4 = ___endAction2;
RuntimeObject* L_5 = ___iar0;
NullCheck((Action_1_t939472046 *)L_4);
Action_1_Invoke_m2928931602((Action_1_t939472046 *)L_4, (RuntimeObject*)L_5, /*hidden argument*/Action_1_Invoke_m2928931602_RuntimeMethod_var);
}
IL_0020:
{
IL2CPP_LEAVE(0xA5, FINALLY_002b);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (OperationCanceledException_t926488448_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0025;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0028;
throw e;
}
CATCH_0025:
{ // begin catch(System.OperationCanceledException)
V_1 = (OperationCanceledException_t926488448 *)((OperationCanceledException_t926488448 *)__exception_local);
IL2CPP_LEAVE(0xA5, FINALLY_002b);
} // end catch (depth: 2)
CATCH_0028:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
IL2CPP_LEAVE(0xA5, FINALLY_002b);
} // end catch (depth: 2)
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002b;
}
FINALLY_002b:
{ // begin finally (depth: 1)
{
OperationCanceledException_t926488448 * L_6 = V_1;
if (!L_6)
{
goto IL_003e;
}
}
IL_002e:
{
Task_1_t190679043 * L_7 = ___promise3;
OperationCanceledException_t926488448 * L_8 = V_1;
NullCheck((OperationCanceledException_t926488448 *)L_8);
CancellationToken_t784455623 L_9 = OperationCanceledException_get_CancellationToken_m1943835608((OperationCanceledException_t926488448 *)L_8, /*hidden argument*/NULL);
OperationCanceledException_t926488448 * L_10 = V_1;
NullCheck((Task_1_t190679043 *)L_7);
(( bool (*) (Task_1_t190679043 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Task_1_t190679043 *)L_7, (CancellationToken_t784455623 )L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
goto IL_00a4;
}
IL_003e:
{
Exception_t * L_11 = V_0;
if (!L_11)
{
goto IL_0069;
}
}
IL_0041:
{
Task_1_t190679043 * L_12 = ___promise3;
Exception_t * L_13 = V_0;
NullCheck((Task_1_t190679043 *)L_12);
bool L_14 = (( bool (*) (Task_1_t190679043 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3)->methodPointer)((Task_1_t190679043 *)L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
if (!L_14)
{
goto IL_00a4;
}
}
IL_004a:
{
Exception_t * L_15 = V_0;
if (!((ThreadAbortException_t4074510458 *)IsInst((RuntimeObject*)L_15, ThreadAbortException_t4074510458_il2cpp_TypeInfo_var)))
{
goto IL_00a4;
}
}
IL_0052:
{
Task_1_t190679043 * L_16 = ___promise3;
NullCheck(L_16);
ContingentProperties_t2170468915 * L_17 = (ContingentProperties_t2170468915 *)((Task_t3187275312 *)L_16)->get_m_contingentProperties_15();
il2cpp_codegen_memory_barrier();
NullCheck(L_17);
TaskExceptionHolder_t1800584989 * L_18 = (TaskExceptionHolder_t1800584989 *)L_17->get_m_exceptionsHolder_2();
il2cpp_codegen_memory_barrier();
NullCheck((TaskExceptionHolder_t1800584989 *)L_18);
TaskExceptionHolder_MarkAsHandled_m3629939554((TaskExceptionHolder_t1800584989 *)L_18, (bool)0, /*hidden argument*/NULL);
goto IL_00a4;
}
IL_0069:
{
bool L_19 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_007d;
}
}
IL_0070:
{
Task_1_t190679043 * L_20 = ___promise3;
NullCheck((Task_t3187275312 *)L_20);
int32_t L_21 = Task_get_Id_m119004446((Task_t3187275312 *)L_20, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_21, (int32_t)1, /*hidden argument*/NULL);
}
IL_007d:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_22 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_22)
{
goto IL_008f;
}
}
IL_0084:
{
Task_1_t190679043 * L_23 = ___promise3;
NullCheck((Task_t3187275312 *)L_23);
int32_t L_24 = Task_get_Id_m119004446((Task_t3187275312 *)L_23, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_24, /*hidden argument*/NULL);
}
IL_008f:
{
bool L_25 = ___requiresSynchronization4;
if (!L_25)
{
goto IL_009d;
}
}
IL_0093:
{
Task_1_t190679043 * L_26 = ___promise3;
RuntimeObject * L_27 = V_2;
NullCheck((Task_1_t190679043 *)L_26);
(( bool (*) (Task_1_t190679043 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t190679043 *)L_26, (RuntimeObject *)L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
goto IL_00a4;
}
IL_009d:
{
Task_1_t190679043 * L_28 = ___promise3;
RuntimeObject * L_29 = V_2;
NullCheck((Task_1_t190679043 *)L_28);
(( void (*) (Task_1_t190679043 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5)->methodPointer)((Task_1_t190679043 *)L_28, (RuntimeObject *)L_29, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
}
IL_00a4:
{
IL2CPP_END_FINALLY(43)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(43)
{
IL2CPP_JUMP_TBL(0xA5, IL_00a5)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00a5:
{
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Object>::FromAsync(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Object)
extern "C" IL2CPP_METHOD_ATTR Task_1_t190679043 * TaskFactory_1_FromAsync_m580403283_gshared (TaskFactory_1_t3139534710 * __this, Func_3_t82022818 * ___beginMethod0, Func_2_t3374499323 * ___endMethod1, RuntimeObject * ___state2, const RuntimeMethod* method)
{
{
Func_3_t82022818 * L_0 = ___beginMethod0;
Func_2_t3374499323 * L_1 = ___endMethod1;
RuntimeObject * L_2 = ___state2;
int32_t L_3 = (int32_t)__this->get_m_defaultCreationOptions_2();
Task_1_t190679043 * L_4 = (( Task_1_t190679043 * (*) (RuntimeObject * /* static, unused */, Func_3_t82022818 *, Func_2_t3374499323 *, Action_1_t939472046 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (Func_3_t82022818 *)L_0, (Func_2_t3374499323 *)L_1, (Action_1_t939472046 *)NULL, (RuntimeObject *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
return L_4;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Object>::FromAsyncImpl(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_METHOD_ATTR Task_1_t190679043 * TaskFactory_1_FromAsyncImpl_m3898819863_gshared (RuntimeObject * __this /* static, unused */, Func_3_t82022818 * ___beginMethod0, Func_2_t3374499323 * ___endFunction1, Action_1_t939472046 * ___endAction2, RuntimeObject * ___state3, int32_t ___creationOptions4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TaskFactory_1_FromAsyncImpl_m3898819863_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass35_1_t3690184305 * V_0 = NULL;
U3CU3Ec__DisplayClass35_0_t3276586609 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
U3CU3Ec__DisplayClass35_1_t3690184305 * L_0 = (U3CU3Ec__DisplayClass35_1_t3690184305 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8));
(( void (*) (U3CU3Ec__DisplayClass35_1_t3690184305 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9));
V_0 = (U3CU3Ec__DisplayClass35_1_t3690184305 *)L_0;
U3CU3Ec__DisplayClass35_1_t3690184305 * L_1 = V_0;
Func_2_t3374499323 * L_2 = ___endFunction1;
NullCheck(L_1);
L_1->set_endFunction_0(L_2);
U3CU3Ec__DisplayClass35_1_t3690184305 * L_3 = V_0;
Action_1_t939472046 * L_4 = ___endAction2;
NullCheck(L_3);
L_3->set_endAction_1(L_4);
Func_3_t82022818 * L_5 = ___beginMethod0;
if (L_5)
{
goto IL_0022;
}
}
{
ArgumentNullException_t1615371798 * L_6 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_6, (String_t*)_stringLiteral1969460926, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,TaskFactory_1_FromAsyncImpl_m3898819863_RuntimeMethod_var);
}
IL_0022:
{
U3CU3Ec__DisplayClass35_1_t3690184305 * L_7 = V_0;
NullCheck(L_7);
Func_2_t3374499323 * L_8 = (Func_2_t3374499323 *)L_7->get_endFunction_0();
if (L_8)
{
goto IL_003d;
}
}
{
U3CU3Ec__DisplayClass35_1_t3690184305 * L_9 = V_0;
NullCheck(L_9);
Action_1_t939472046 * L_10 = (Action_1_t939472046 *)L_9->get_endAction_1();
if (L_10)
{
goto IL_003d;
}
}
{
ArgumentNullException_t1615371798 * L_11 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_11, (String_t*)_stringLiteral153292483, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,TaskFactory_1_FromAsyncImpl_m3898819863_RuntimeMethod_var);
}
IL_003d:
{
int32_t L_12 = ___creationOptions4;
TaskFactory_CheckFromAsyncOptions_m4125018144(NULL /*static, unused*/, (int32_t)L_12, (bool)1, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass35_1_t3690184305 * L_13 = V_0;
RuntimeObject * L_14 = ___state3;
int32_t L_15 = ___creationOptions4;
Task_1_t190679043 * L_16 = (Task_1_t190679043 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
(( void (*) (Task_1_t190679043 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)->methodPointer)(L_16, (RuntimeObject *)L_14, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
NullCheck(L_13);
L_13->set_promise_2(L_16);
bool L_17 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_0082;
}
}
{
U3CU3Ec__DisplayClass35_1_t3690184305 * L_18 = V_0;
NullCheck(L_18);
Task_1_t190679043 * L_19 = (Task_1_t190679043 *)L_18->get_promise_2();
NullCheck((Task_t3187275312 *)L_19);
int32_t L_20 = Task_get_Id_m119004446((Task_t3187275312 *)L_19, /*hidden argument*/NULL);
Func_3_t82022818 * L_21 = ___beginMethod0;
NullCheck((Delegate_t1188392813 *)L_21);
MethodInfo_t * L_22 = Delegate_get_Method_m3071622864((Delegate_t1188392813 *)L_21, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_22);
String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_22);
String_t* L_24 = String_Concat_m3937257545(NULL /*static, unused*/, (String_t*)_stringLiteral3179058573, (String_t*)L_23, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCreation_m3940971853(NULL /*static, unused*/, (int32_t)0, (int32_t)L_20, (String_t*)L_24, (uint64_t)(((int64_t)((int64_t)0))), /*hidden argument*/NULL);
}
IL_0082:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_25 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_25)
{
goto IL_0095;
}
}
{
U3CU3Ec__DisplayClass35_1_t3690184305 * L_26 = V_0;
NullCheck(L_26);
Task_1_t190679043 * L_27 = (Task_1_t190679043 *)L_26->get_promise_2();
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_AddToActiveTasks_m1867860841(NULL /*static, unused*/, (Task_t3187275312 *)L_27, /*hidden argument*/NULL);
}
IL_0095:
{
}
IL_0096:
try
{ // begin try (depth: 1)
{
IL2CPP_RUNTIME_CLASS_INIT(BinaryCompatibility_t3378813580_il2cpp_TypeInfo_var);
bool L_28 = ((BinaryCompatibility_t3378813580_StaticFields*)il2cpp_codegen_static_fields_for(BinaryCompatibility_t3378813580_il2cpp_TypeInfo_var))->get_TargetsAtLeast_Desktop_V4_5_0();
if (!L_28)
{
goto IL_010b;
}
}
IL_009d:
{
U3CU3Ec__DisplayClass35_0_t3276586609 * L_29 = (U3CU3Ec__DisplayClass35_0_t3276586609 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12));
(( void (*) (U3CU3Ec__DisplayClass35_0_t3276586609 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13)->methodPointer)(L_29, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13));
V_1 = (U3CU3Ec__DisplayClass35_0_t3276586609 *)L_29;
U3CU3Ec__DisplayClass35_0_t3276586609 * L_30 = V_1;
U3CU3Ec__DisplayClass35_1_t3690184305 * L_31 = V_0;
NullCheck(L_30);
L_30->set_CSU24U3CU3E8__locals1_1(L_31);
U3CU3Ec__DisplayClass35_0_t3276586609 * L_32 = V_1;
AtomicBoolean_t2634115295 * L_33 = (AtomicBoolean_t2634115295 *)il2cpp_codegen_object_new(AtomicBoolean_t2634115295_il2cpp_TypeInfo_var);
AtomicBoolean__ctor_m2830875096(L_33, /*hidden argument*/NULL);
NullCheck(L_32);
L_32->set_invoked_0(L_33);
Func_3_t82022818 * L_34 = ___beginMethod0;
U3CU3Ec__DisplayClass35_0_t3276586609 * L_35 = V_1;
intptr_t L_36 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 14);
AsyncCallback_t3962456242 * L_37 = (AsyncCallback_t3962456242 *)il2cpp_codegen_object_new(AsyncCallback_t3962456242_il2cpp_TypeInfo_var);
AsyncCallback__ctor_m530647953(L_37, (RuntimeObject *)L_35, (intptr_t)L_36, /*hidden argument*/NULL);
RuntimeObject * L_38 = ___state3;
NullCheck((Func_3_t82022818 *)L_34);
RuntimeObject* L_39 = Func_3_Invoke_m528074778((Func_3_t82022818 *)L_34, (AsyncCallback_t3962456242 *)L_37, (RuntimeObject *)L_38, /*hidden argument*/Func_3_Invoke_m528074778_RuntimeMethod_var);
V_2 = (RuntimeObject*)L_39;
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_011f;
}
}
IL_00cc:
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
bool L_42 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_t767004451_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
if (!L_42)
{
goto IL_011f;
}
}
IL_00d4:
{
U3CU3Ec__DisplayClass35_0_t3276586609 * L_43 = V_1;
NullCheck(L_43);
AtomicBoolean_t2634115295 * L_44 = (AtomicBoolean_t2634115295 *)L_43->get_invoked_0();
NullCheck((AtomicBoolean_t2634115295 *)L_44);
bool L_45 = AtomicBoolean_TryRelaxedSet_m184349447((AtomicBoolean_t2634115295 *)L_44, /*hidden argument*/NULL);
if (!L_45)
{
goto IL_011f;
}
}
IL_00e1:
{
RuntimeObject* L_46 = V_2;
U3CU3Ec__DisplayClass35_0_t3276586609 * L_47 = V_1;
NullCheck(L_47);
U3CU3Ec__DisplayClass35_1_t3690184305 * L_48 = (U3CU3Ec__DisplayClass35_1_t3690184305 *)L_47->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_48);
Func_2_t3374499323 * L_49 = (Func_2_t3374499323 *)L_48->get_endFunction_0();
U3CU3Ec__DisplayClass35_0_t3276586609 * L_50 = V_1;
NullCheck(L_50);
U3CU3Ec__DisplayClass35_1_t3690184305 * L_51 = (U3CU3Ec__DisplayClass35_1_t3690184305 *)L_50->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_51);
Action_1_t939472046 * L_52 = (Action_1_t939472046 *)L_51->get_endAction_1();
U3CU3Ec__DisplayClass35_0_t3276586609 * L_53 = V_1;
NullCheck(L_53);
U3CU3Ec__DisplayClass35_1_t3690184305 * L_54 = (U3CU3Ec__DisplayClass35_1_t3690184305 *)L_53->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_54);
Task_1_t190679043 * L_55 = (Task_1_t190679043 *)L_54->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t3374499323 *, Action_1_t939472046 *, Task_1_t190679043 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 15)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_46, (Func_2_t3374499323 *)L_49, (Action_1_t939472046 *)L_52, (Task_1_t190679043 *)L_55, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 15));
goto IL_011f;
}
IL_010b:
{
Func_3_t82022818 * L_56 = ___beginMethod0;
U3CU3Ec__DisplayClass35_1_t3690184305 * L_57 = V_0;
intptr_t L_58 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 16);
AsyncCallback_t3962456242 * L_59 = (AsyncCallback_t3962456242 *)il2cpp_codegen_object_new(AsyncCallback_t3962456242_il2cpp_TypeInfo_var);
AsyncCallback__ctor_m530647953(L_59, (RuntimeObject *)L_57, (intptr_t)L_58, /*hidden argument*/NULL);
RuntimeObject * L_60 = ___state3;
NullCheck((Func_3_t82022818 *)L_56);
Func_3_Invoke_m528074778((Func_3_t82022818 *)L_56, (AsyncCallback_t3962456242 *)L_59, (RuntimeObject *)L_60, /*hidden argument*/Func_3_Invoke_m528074778_RuntimeMethod_var);
}
IL_011f:
{
goto IL_0169;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0121;
throw e;
}
CATCH_0121:
{ // begin catch(System.Object)
{
bool L_61 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_61)
{
goto IL_013b;
}
}
IL_0129:
{
U3CU3Ec__DisplayClass35_1_t3690184305 * L_62 = V_0;
NullCheck(L_62);
Task_1_t190679043 * L_63 = (Task_1_t190679043 *)L_62->get_promise_2();
NullCheck((Task_t3187275312 *)L_63);
int32_t L_64 = Task_get_Id_m119004446((Task_t3187275312 *)L_63, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_64, (int32_t)3, /*hidden argument*/NULL);
}
IL_013b:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_65 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_65)
{
goto IL_0152;
}
}
IL_0142:
{
U3CU3Ec__DisplayClass35_1_t3690184305 * L_66 = V_0;
NullCheck(L_66);
Task_1_t190679043 * L_67 = (Task_1_t190679043 *)L_66->get_promise_2();
NullCheck((Task_t3187275312 *)L_67);
int32_t L_68 = Task_get_Id_m119004446((Task_t3187275312 *)L_67, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_68, /*hidden argument*/NULL);
}
IL_0152:
{
U3CU3Ec__DisplayClass35_1_t3690184305 * L_69 = V_0;
NullCheck(L_69);
Task_1_t190679043 * L_70 = (Task_1_t190679043 *)L_69->get_promise_2();
il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject *));
RuntimeObject * L_71 = V_3;
NullCheck((Task_1_t190679043 *)L_70);
(( bool (*) (Task_1_t190679043 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t190679043 *)L_70, (RuntimeObject *)L_71, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local,NULL);
}
} // end catch (depth: 1)
IL_0169:
{
U3CU3Ec__DisplayClass35_1_t3690184305 * L_72 = V_0;
NullCheck(L_72);
Task_1_t190679043 * L_73 = (Task_1_t190679043 *)L_72->get_promise_2();
return L_73;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m1442916261_gshared (TaskFactory_1_t2676017125 * __this, const RuntimeMethod* method)
{
CancellationToken_t784455623 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t784455623 ));
CancellationToken_t784455623 L_0 = V_0;
NullCheck((TaskFactory_1_t2676017125 *)__this);
(( void (*) (TaskFactory_1_t2676017125 *, CancellationToken_t784455623 , int32_t, int32_t, TaskScheduler_t1196198384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((TaskFactory_1_t2676017125 *)__this, (CancellationToken_t784455623 )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t1196198384 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m662712310_gshared (TaskFactory_1_t2676017125 * __this, CancellationToken_t784455623 ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t1196198384 * ___scheduler3, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___continuationOptions2;
TaskFactory_CheckMultiTaskContinuationOptions_m4248755655(NULL /*static, unused*/, (int32_t)L_0, /*hidden argument*/NULL);
int32_t L_1 = ___creationOptions1;
TaskFactory_CheckCreationOptions_m1813633372(NULL /*static, unused*/, (int32_t)L_1, /*hidden argument*/NULL);
CancellationToken_t784455623 L_2 = ___cancellationToken0;
__this->set_m_defaultCancellationToken_0(L_2);
TaskScheduler_t1196198384 * L_3 = ___scheduler3;
__this->set_m_defaultScheduler_1(L_3);
int32_t L_4 = ___creationOptions1;
__this->set_m_defaultCreationOptions_2(L_4);
int32_t L_5 = ___continuationOptions2;
__this->set_m_defaultContinuationOptions_3(L_5);
return;
}
}
// System.Void System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::FromAsyncCoreLogic(System.IAsyncResult,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Threading.Tasks.Task`1<TResult>,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void TaskFactory_1_FromAsyncCoreLogic_m3891675747_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___iar0, Func_2_t2910981738 * ___endFunction1, Action_1_t939472046 * ___endAction2, Task_1_t4022128754 * ___promise3, bool ___requiresSynchronization4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TaskFactory_1_FromAsyncCoreLogic_m3891675747_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
OperationCanceledException_t926488448 * V_1 = NULL;
VoidTaskResult_t2616588579 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (Exception_t *)NULL;
V_1 = (OperationCanceledException_t926488448 *)NULL;
il2cpp_codegen_initobj((&V_2), sizeof(VoidTaskResult_t2616588579 ));
}
IL_000c:
try
{ // begin try (depth: 1)
try
{ // begin try (depth: 2)
{
Func_2_t2910981738 * L_0 = ___endFunction1;
if (!L_0)
{
goto IL_0019;
}
}
IL_000f:
{
Func_2_t2910981738 * L_1 = ___endFunction1;
RuntimeObject* L_2 = ___iar0;
NullCheck((Func_2_t2910981738 *)L_1);
VoidTaskResult_t2616588579 L_3 = (( VoidTaskResult_t2616588579 (*) (Func_2_t2910981738 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1)->methodPointer)((Func_2_t2910981738 *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1));
V_2 = (VoidTaskResult_t2616588579 )L_3;
goto IL_0020;
}
IL_0019:
{
Action_1_t939472046 * L_4 = ___endAction2;
RuntimeObject* L_5 = ___iar0;
NullCheck((Action_1_t939472046 *)L_4);
Action_1_Invoke_m2928931602((Action_1_t939472046 *)L_4, (RuntimeObject*)L_5, /*hidden argument*/Action_1_Invoke_m2928931602_RuntimeMethod_var);
}
IL_0020:
{
IL2CPP_LEAVE(0xA5, FINALLY_002b);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (OperationCanceledException_t926488448_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0025;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0028;
throw e;
}
CATCH_0025:
{ // begin catch(System.OperationCanceledException)
V_1 = (OperationCanceledException_t926488448 *)((OperationCanceledException_t926488448 *)__exception_local);
IL2CPP_LEAVE(0xA5, FINALLY_002b);
} // end catch (depth: 2)
CATCH_0028:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
IL2CPP_LEAVE(0xA5, FINALLY_002b);
} // end catch (depth: 2)
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002b;
}
FINALLY_002b:
{ // begin finally (depth: 1)
{
OperationCanceledException_t926488448 * L_6 = V_1;
if (!L_6)
{
goto IL_003e;
}
}
IL_002e:
{
Task_1_t4022128754 * L_7 = ___promise3;
OperationCanceledException_t926488448 * L_8 = V_1;
NullCheck((OperationCanceledException_t926488448 *)L_8);
CancellationToken_t784455623 L_9 = OperationCanceledException_get_CancellationToken_m1943835608((OperationCanceledException_t926488448 *)L_8, /*hidden argument*/NULL);
OperationCanceledException_t926488448 * L_10 = V_1;
NullCheck((Task_1_t4022128754 *)L_7);
(( bool (*) (Task_1_t4022128754 *, CancellationToken_t784455623 , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Task_1_t4022128754 *)L_7, (CancellationToken_t784455623 )L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
goto IL_00a4;
}
IL_003e:
{
Exception_t * L_11 = V_0;
if (!L_11)
{
goto IL_0069;
}
}
IL_0041:
{
Task_1_t4022128754 * L_12 = ___promise3;
Exception_t * L_13 = V_0;
NullCheck((Task_1_t4022128754 *)L_12);
bool L_14 = (( bool (*) (Task_1_t4022128754 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3)->methodPointer)((Task_1_t4022128754 *)L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
if (!L_14)
{
goto IL_00a4;
}
}
IL_004a:
{
Exception_t * L_15 = V_0;
if (!((ThreadAbortException_t4074510458 *)IsInst((RuntimeObject*)L_15, ThreadAbortException_t4074510458_il2cpp_TypeInfo_var)))
{
goto IL_00a4;
}
}
IL_0052:
{
Task_1_t4022128754 * L_16 = ___promise3;
NullCheck(L_16);
ContingentProperties_t2170468915 * L_17 = (ContingentProperties_t2170468915 *)((Task_t3187275312 *)L_16)->get_m_contingentProperties_15();
il2cpp_codegen_memory_barrier();
NullCheck(L_17);
TaskExceptionHolder_t1800584989 * L_18 = (TaskExceptionHolder_t1800584989 *)L_17->get_m_exceptionsHolder_2();
il2cpp_codegen_memory_barrier();
NullCheck((TaskExceptionHolder_t1800584989 *)L_18);
TaskExceptionHolder_MarkAsHandled_m3629939554((TaskExceptionHolder_t1800584989 *)L_18, (bool)0, /*hidden argument*/NULL);
goto IL_00a4;
}
IL_0069:
{
bool L_19 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_007d;
}
}
IL_0070:
{
Task_1_t4022128754 * L_20 = ___promise3;
NullCheck((Task_t3187275312 *)L_20);
int32_t L_21 = Task_get_Id_m119004446((Task_t3187275312 *)L_20, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_21, (int32_t)1, /*hidden argument*/NULL);
}
IL_007d:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_22 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_22)
{
goto IL_008f;
}
}
IL_0084:
{
Task_1_t4022128754 * L_23 = ___promise3;
NullCheck((Task_t3187275312 *)L_23);
int32_t L_24 = Task_get_Id_m119004446((Task_t3187275312 *)L_23, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_24, /*hidden argument*/NULL);
}
IL_008f:
{
bool L_25 = ___requiresSynchronization4;
if (!L_25)
{
goto IL_009d;
}
}
IL_0093:
{
Task_1_t4022128754 * L_26 = ___promise3;
VoidTaskResult_t2616588579 L_27 = V_2;
NullCheck((Task_1_t4022128754 *)L_26);
(( bool (*) (Task_1_t4022128754 *, VoidTaskResult_t2616588579 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t4022128754 *)L_26, (VoidTaskResult_t2616588579 )L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
goto IL_00a4;
}
IL_009d:
{
Task_1_t4022128754 * L_28 = ___promise3;
VoidTaskResult_t2616588579 L_29 = V_2;
NullCheck((Task_1_t4022128754 *)L_28);
(( void (*) (Task_1_t4022128754 *, VoidTaskResult_t2616588579 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5)->methodPointer)((Task_1_t4022128754 *)L_28, (VoidTaskResult_t2616588579 )L_29, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
}
IL_00a4:
{
IL2CPP_END_FINALLY(43)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(43)
{
IL2CPP_JUMP_TBL(0xA5, IL_00a5)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00a5:
{
return;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::FromAsync(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Object)
extern "C" IL2CPP_METHOD_ATTR Task_1_t4022128754 * TaskFactory_1_FromAsync_m1452980922_gshared (TaskFactory_1_t2676017125 * __this, Func_3_t82022818 * ___beginMethod0, Func_2_t2910981738 * ___endMethod1, RuntimeObject * ___state2, const RuntimeMethod* method)
{
{
Func_3_t82022818 * L_0 = ___beginMethod0;
Func_2_t2910981738 * L_1 = ___endMethod1;
RuntimeObject * L_2 = ___state2;
int32_t L_3 = (int32_t)__this->get_m_defaultCreationOptions_2();
Task_1_t4022128754 * L_4 = (( Task_1_t4022128754 * (*) (RuntimeObject * /* static, unused */, Func_3_t82022818 *, Func_2_t2910981738 *, Action_1_t939472046 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (Func_3_t82022818 *)L_0, (Func_2_t2910981738 *)L_1, (Action_1_t939472046 *)NULL, (RuntimeObject *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
return L_4;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::FromAsyncImpl(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Action`1<System.IAsyncResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)
extern "C" IL2CPP_METHOD_ATTR Task_1_t4022128754 * TaskFactory_1_FromAsyncImpl_m196723106_gshared (RuntimeObject * __this /* static, unused */, Func_3_t82022818 * ___beginMethod0, Func_2_t2910981738 * ___endFunction1, Action_1_t939472046 * ___endAction2, RuntimeObject * ___state3, int32_t ___creationOptions4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TaskFactory_1_FromAsyncImpl_m196723106_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass35_1_t3226666720 * V_0 = NULL;
U3CU3Ec__DisplayClass35_0_t2813069024 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
VoidTaskResult_t2616588579 V_3;
memset(&V_3, 0, sizeof(V_3));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
U3CU3Ec__DisplayClass35_1_t3226666720 * L_0 = (U3CU3Ec__DisplayClass35_1_t3226666720 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 8));
(( void (*) (U3CU3Ec__DisplayClass35_1_t3226666720 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 9));
V_0 = (U3CU3Ec__DisplayClass35_1_t3226666720 *)L_0;
U3CU3Ec__DisplayClass35_1_t3226666720 * L_1 = V_0;
Func_2_t2910981738 * L_2 = ___endFunction1;
NullCheck(L_1);
L_1->set_endFunction_0(L_2);
U3CU3Ec__DisplayClass35_1_t3226666720 * L_3 = V_0;
Action_1_t939472046 * L_4 = ___endAction2;
NullCheck(L_3);
L_3->set_endAction_1(L_4);
Func_3_t82022818 * L_5 = ___beginMethod0;
if (L_5)
{
goto IL_0022;
}
}
{
ArgumentNullException_t1615371798 * L_6 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_6, (String_t*)_stringLiteral1969460926, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,TaskFactory_1_FromAsyncImpl_m196723106_RuntimeMethod_var);
}
IL_0022:
{
U3CU3Ec__DisplayClass35_1_t3226666720 * L_7 = V_0;
NullCheck(L_7);
Func_2_t2910981738 * L_8 = (Func_2_t2910981738 *)L_7->get_endFunction_0();
if (L_8)
{
goto IL_003d;
}
}
{
U3CU3Ec__DisplayClass35_1_t3226666720 * L_9 = V_0;
NullCheck(L_9);
Action_1_t939472046 * L_10 = (Action_1_t939472046 *)L_9->get_endAction_1();
if (L_10)
{
goto IL_003d;
}
}
{
ArgumentNullException_t1615371798 * L_11 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_11, (String_t*)_stringLiteral153292483, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,TaskFactory_1_FromAsyncImpl_m196723106_RuntimeMethod_var);
}
IL_003d:
{
int32_t L_12 = ___creationOptions4;
TaskFactory_CheckFromAsyncOptions_m4125018144(NULL /*static, unused*/, (int32_t)L_12, (bool)1, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass35_1_t3226666720 * L_13 = V_0;
RuntimeObject * L_14 = ___state3;
int32_t L_15 = ___creationOptions4;
Task_1_t4022128754 * L_16 = (Task_1_t4022128754 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 10));
(( void (*) (Task_1_t4022128754 *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11)->methodPointer)(L_16, (RuntimeObject *)L_14, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 11));
NullCheck(L_13);
L_13->set_promise_2(L_16);
bool L_17 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_0082;
}
}
{
U3CU3Ec__DisplayClass35_1_t3226666720 * L_18 = V_0;
NullCheck(L_18);
Task_1_t4022128754 * L_19 = (Task_1_t4022128754 *)L_18->get_promise_2();
NullCheck((Task_t3187275312 *)L_19);
int32_t L_20 = Task_get_Id_m119004446((Task_t3187275312 *)L_19, /*hidden argument*/NULL);
Func_3_t82022818 * L_21 = ___beginMethod0;
NullCheck((Delegate_t1188392813 *)L_21);
MethodInfo_t * L_22 = Delegate_get_Method_m3071622864((Delegate_t1188392813 *)L_21, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_22);
String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_22);
String_t* L_24 = String_Concat_m3937257545(NULL /*static, unused*/, (String_t*)_stringLiteral3179058573, (String_t*)L_23, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCreation_m3940971853(NULL /*static, unused*/, (int32_t)0, (int32_t)L_20, (String_t*)L_24, (uint64_t)(((int64_t)((int64_t)0))), /*hidden argument*/NULL);
}
IL_0082:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_25 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_25)
{
goto IL_0095;
}
}
{
U3CU3Ec__DisplayClass35_1_t3226666720 * L_26 = V_0;
NullCheck(L_26);
Task_1_t4022128754 * L_27 = (Task_1_t4022128754 *)L_26->get_promise_2();
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_AddToActiveTasks_m1867860841(NULL /*static, unused*/, (Task_t3187275312 *)L_27, /*hidden argument*/NULL);
}
IL_0095:
{
}
IL_0096:
try
{ // begin try (depth: 1)
{
IL2CPP_RUNTIME_CLASS_INIT(BinaryCompatibility_t3378813580_il2cpp_TypeInfo_var);
bool L_28 = ((BinaryCompatibility_t3378813580_StaticFields*)il2cpp_codegen_static_fields_for(BinaryCompatibility_t3378813580_il2cpp_TypeInfo_var))->get_TargetsAtLeast_Desktop_V4_5_0();
if (!L_28)
{
goto IL_010b;
}
}
IL_009d:
{
U3CU3Ec__DisplayClass35_0_t2813069024 * L_29 = (U3CU3Ec__DisplayClass35_0_t2813069024 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 12));
(( void (*) (U3CU3Ec__DisplayClass35_0_t2813069024 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13)->methodPointer)(L_29, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 13));
V_1 = (U3CU3Ec__DisplayClass35_0_t2813069024 *)L_29;
U3CU3Ec__DisplayClass35_0_t2813069024 * L_30 = V_1;
U3CU3Ec__DisplayClass35_1_t3226666720 * L_31 = V_0;
NullCheck(L_30);
L_30->set_CSU24U3CU3E8__locals1_1(L_31);
U3CU3Ec__DisplayClass35_0_t2813069024 * L_32 = V_1;
AtomicBoolean_t2634115295 * L_33 = (AtomicBoolean_t2634115295 *)il2cpp_codegen_object_new(AtomicBoolean_t2634115295_il2cpp_TypeInfo_var);
AtomicBoolean__ctor_m2830875096(L_33, /*hidden argument*/NULL);
NullCheck(L_32);
L_32->set_invoked_0(L_33);
Func_3_t82022818 * L_34 = ___beginMethod0;
U3CU3Ec__DisplayClass35_0_t2813069024 * L_35 = V_1;
intptr_t L_36 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 14);
AsyncCallback_t3962456242 * L_37 = (AsyncCallback_t3962456242 *)il2cpp_codegen_object_new(AsyncCallback_t3962456242_il2cpp_TypeInfo_var);
AsyncCallback__ctor_m530647953(L_37, (RuntimeObject *)L_35, (intptr_t)L_36, /*hidden argument*/NULL);
RuntimeObject * L_38 = ___state3;
NullCheck((Func_3_t82022818 *)L_34);
RuntimeObject* L_39 = Func_3_Invoke_m528074778((Func_3_t82022818 *)L_34, (AsyncCallback_t3962456242 *)L_37, (RuntimeObject *)L_38, /*hidden argument*/Func_3_Invoke_m528074778_RuntimeMethod_var);
V_2 = (RuntimeObject*)L_39;
RuntimeObject* L_40 = V_2;
if (!L_40)
{
goto IL_011f;
}
}
IL_00cc:
{
RuntimeObject* L_41 = V_2;
NullCheck((RuntimeObject*)L_41);
bool L_42 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean System.IAsyncResult::get_CompletedSynchronously() */, IAsyncResult_t767004451_il2cpp_TypeInfo_var, (RuntimeObject*)L_41);
if (!L_42)
{
goto IL_011f;
}
}
IL_00d4:
{
U3CU3Ec__DisplayClass35_0_t2813069024 * L_43 = V_1;
NullCheck(L_43);
AtomicBoolean_t2634115295 * L_44 = (AtomicBoolean_t2634115295 *)L_43->get_invoked_0();
NullCheck((AtomicBoolean_t2634115295 *)L_44);
bool L_45 = AtomicBoolean_TryRelaxedSet_m184349447((AtomicBoolean_t2634115295 *)L_44, /*hidden argument*/NULL);
if (!L_45)
{
goto IL_011f;
}
}
IL_00e1:
{
RuntimeObject* L_46 = V_2;
U3CU3Ec__DisplayClass35_0_t2813069024 * L_47 = V_1;
NullCheck(L_47);
U3CU3Ec__DisplayClass35_1_t3226666720 * L_48 = (U3CU3Ec__DisplayClass35_1_t3226666720 *)L_47->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_48);
Func_2_t2910981738 * L_49 = (Func_2_t2910981738 *)L_48->get_endFunction_0();
U3CU3Ec__DisplayClass35_0_t2813069024 * L_50 = V_1;
NullCheck(L_50);
U3CU3Ec__DisplayClass35_1_t3226666720 * L_51 = (U3CU3Ec__DisplayClass35_1_t3226666720 *)L_50->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_51);
Action_1_t939472046 * L_52 = (Action_1_t939472046 *)L_51->get_endAction_1();
U3CU3Ec__DisplayClass35_0_t2813069024 * L_53 = V_1;
NullCheck(L_53);
U3CU3Ec__DisplayClass35_1_t3226666720 * L_54 = (U3CU3Ec__DisplayClass35_1_t3226666720 *)L_53->get_CSU24U3CU3E8__locals1_1();
NullCheck(L_54);
Task_1_t4022128754 * L_55 = (Task_1_t4022128754 *)L_54->get_promise_2();
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t2910981738 *, Action_1_t939472046 *, Task_1_t4022128754 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 15)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_46, (Func_2_t2910981738 *)L_49, (Action_1_t939472046 *)L_52, (Task_1_t4022128754 *)L_55, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 15));
goto IL_011f;
}
IL_010b:
{
Func_3_t82022818 * L_56 = ___beginMethod0;
U3CU3Ec__DisplayClass35_1_t3226666720 * L_57 = V_0;
intptr_t L_58 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 16);
AsyncCallback_t3962456242 * L_59 = (AsyncCallback_t3962456242 *)il2cpp_codegen_object_new(AsyncCallback_t3962456242_il2cpp_TypeInfo_var);
AsyncCallback__ctor_m530647953(L_59, (RuntimeObject *)L_57, (intptr_t)L_58, /*hidden argument*/NULL);
RuntimeObject * L_60 = ___state3;
NullCheck((Func_3_t82022818 *)L_56);
Func_3_Invoke_m528074778((Func_3_t82022818 *)L_56, (AsyncCallback_t3962456242 *)L_59, (RuntimeObject *)L_60, /*hidden argument*/Func_3_Invoke_m528074778_RuntimeMethod_var);
}
IL_011f:
{
goto IL_0169;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0121;
throw e;
}
CATCH_0121:
{ // begin catch(System.Object)
{
bool L_61 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_61)
{
goto IL_013b;
}
}
IL_0129:
{
U3CU3Ec__DisplayClass35_1_t3226666720 * L_62 = V_0;
NullCheck(L_62);
Task_1_t4022128754 * L_63 = (Task_1_t4022128754 *)L_62->get_promise_2();
NullCheck((Task_t3187275312 *)L_63);
int32_t L_64 = Task_get_Id_m119004446((Task_t3187275312 *)L_63, /*hidden argument*/NULL);
AsyncCausalityTracer_TraceOperationCompletion_m2246115603(NULL /*static, unused*/, (int32_t)0, (int32_t)L_64, (int32_t)3, /*hidden argument*/NULL);
}
IL_013b:
{
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
bool L_65 = ((Task_t3187275312_StaticFields*)il2cpp_codegen_static_fields_for(Task_t3187275312_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12();
if (!L_65)
{
goto IL_0152;
}
}
IL_0142:
{
U3CU3Ec__DisplayClass35_1_t3226666720 * L_66 = V_0;
NullCheck(L_66);
Task_1_t4022128754 * L_67 = (Task_1_t4022128754 *)L_66->get_promise_2();
NullCheck((Task_t3187275312 *)L_67);
int32_t L_68 = Task_get_Id_m119004446((Task_t3187275312 *)L_67, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t3187275312_il2cpp_TypeInfo_var);
Task_RemoveFromActiveTasks_m3338298932(NULL /*static, unused*/, (int32_t)L_68, /*hidden argument*/NULL);
}
IL_0152:
{
U3CU3Ec__DisplayClass35_1_t3226666720 * L_69 = V_0;
NullCheck(L_69);
Task_1_t4022128754 * L_70 = (Task_1_t4022128754 *)L_69->get_promise_2();
il2cpp_codegen_initobj((&V_3), sizeof(VoidTaskResult_t2616588579 ));
VoidTaskResult_t2616588579 L_71 = V_3;
NullCheck((Task_1_t4022128754 *)L_70);
(( bool (*) (Task_1_t4022128754 *, VoidTaskResult_t2616588579 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4)->methodPointer)((Task_1_t4022128754 *)L_70, (VoidTaskResult_t2616588579 )L_71, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 4));
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local,NULL);
}
} // end catch (depth: 1)
IL_0169:
{
U3CU3Ec__DisplayClass35_1_t3226666720 * L_72 = V_0;
NullCheck(L_72);
Task_1_t4022128754 * L_73 = (Task_1_t4022128754 *)L_72->get_promise_2();
return L_73;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void SparseArray_1__ctor_m1896557888_gshared (SparseArray_1_t396411150 * __this, int32_t ___initialSize0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___initialSize0;
il2cpp_codegen_memory_barrier();
__this->set_m_array_0(((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0), (uint32_t)L_0)));
return;
}
}
// T[] System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::get_Current()
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* SparseArray_1_get_Current_m1999685199_gshared (SparseArray_1_t396411150 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get_m_array_0();
il2cpp_codegen_memory_barrier();
return L_0;
}
}
// System.Int32 System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::Add(T)
extern "C" IL2CPP_METHOD_ATTR int32_t SparseArray_1_Add_m2525290252_gshared (SparseArray_1_t396411150 * __this, RuntimeObject * ___e0, const RuntimeMethod* method)
{
ObjectU5BU5D_t2843939325* V_0 = NULL;
ObjectU5BU5D_t2843939325* V_1 = NULL;
bool V_2 = false;
int32_t V_3 = 0;
int32_t V_4 = 0;
ObjectU5BU5D_t2843939325* V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get_m_array_0();
il2cpp_codegen_memory_barrier();
V_0 = (ObjectU5BU5D_t2843939325*)L_0;
ObjectU5BU5D_t2843939325* L_1 = V_0;
V_1 = (ObjectU5BU5D_t2843939325*)L_1;
V_2 = (bool)0;
}
IL_000d:
try
{ // begin try (depth: 1)
{
ObjectU5BU5D_t2843939325* L_2 = V_1;
Monitor_Enter_m984175629(NULL /*static, unused*/, (RuntimeObject *)(RuntimeObject *)L_2, (bool*)(&V_2), /*hidden argument*/NULL);
V_3 = (int32_t)0;
goto IL_0083;
}
IL_0019:
{
ObjectU5BU5D_t2843939325* L_3 = V_0;
int32_t L_4 = V_3;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
if (L_6)
{
goto IL_0039;
}
}
IL_0027:
{
ObjectU5BU5D_t2843939325* L_7 = V_0;
int32_t L_8 = V_3;
NullCheck(L_7);
RuntimeObject * L_9 = ___e0;
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject **, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (RuntimeObject **)((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8))), (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
int32_t L_10 = V_3;
V_4 = (int32_t)L_10;
IL2CPP_LEAVE(0x98, FINALLY_008e);
}
IL_0039:
{
int32_t L_11 = V_3;
ObjectU5BU5D_t2843939325* L_12 = V_0;
NullCheck(L_12);
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length)))), (int32_t)1))))))
{
goto IL_007f;
}
}
IL_0041:
{
ObjectU5BU5D_t2843939325* L_13 = V_0;
ObjectU5BU5D_t2843939325* L_14 = (ObjectU5BU5D_t2843939325*)__this->get_m_array_0();
il2cpp_codegen_memory_barrier();
if ((!(((RuntimeObject*)(ObjectU5BU5D_t2843939325*)L_13) == ((RuntimeObject*)(ObjectU5BU5D_t2843939325*)L_14))))
{
goto IL_007f;
}
}
IL_004c:
{
ObjectU5BU5D_t2843939325* L_15 = V_0;
NullCheck(L_15);
V_5 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0), (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_15)->max_length)))), (int32_t)2))));
ObjectU5BU5D_t2843939325* L_16 = V_0;
ObjectU5BU5D_t2843939325* L_17 = V_5;
int32_t L_18 = V_3;
Array_Copy_m1988217701(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_16, (RuntimeArray *)(RuntimeArray *)L_17, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)), /*hidden argument*/NULL);
ObjectU5BU5D_t2843939325* L_19 = V_5;
int32_t L_20 = V_3;
RuntimeObject * L_21 = ___e0;
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))), (RuntimeObject *)L_21);
ObjectU5BU5D_t2843939325* L_22 = V_5;
il2cpp_codegen_memory_barrier();
__this->set_m_array_0(L_22);
int32_t L_23 = V_3;
V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
IL2CPP_LEAVE(0x98, FINALLY_008e);
}
IL_007f:
{
int32_t L_24 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_0083:
{
int32_t L_25 = V_3;
ObjectU5BU5D_t2843939325* L_26 = V_0;
NullCheck(L_26);
if ((((int32_t)L_25) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_26)->max_length)))))))
{
goto IL_0019;
}
}
IL_0089:
{
IL2CPP_LEAVE(0x0, FINALLY_008e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_008e;
}
FINALLY_008e:
{ // begin finally (depth: 1)
{
bool L_27 = V_2;
if (!L_27)
{
goto IL_0097;
}
}
IL_0091:
{
ObjectU5BU5D_t2843939325* L_28 = V_1;
Monitor_Exit_m3585316909(NULL /*static, unused*/, (RuntimeObject *)(RuntimeObject *)L_28, /*hidden argument*/NULL);
}
IL_0097:
{
IL2CPP_END_FINALLY(142)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(142)
{
IL2CPP_JUMP_TBL(0x98, IL_0098)
IL2CPP_JUMP_TBL(0x0, IL_0000)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0098:
{
int32_t L_29 = V_4;
return L_29;
}
}
// System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::Remove(T)
extern "C" IL2CPP_METHOD_ATTR void SparseArray_1_Remove_m2765326941_gshared (SparseArray_1_t396411150 * __this, RuntimeObject * ___e0, const RuntimeMethod* method)
{
ObjectU5BU5D_t2843939325* V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get_m_array_0();
il2cpp_codegen_memory_barrier();
V_0 = (ObjectU5BU5D_t2843939325*)L_0;
V_1 = (bool)0;
}
IL_000b:
try
{ // begin try (depth: 1)
{
ObjectU5BU5D_t2843939325* L_1 = V_0;
Monitor_Enter_m984175629(NULL /*static, unused*/, (RuntimeObject *)(RuntimeObject *)L_1, (bool*)(&V_1), /*hidden argument*/NULL);
V_2 = (int32_t)0;
goto IL_0054;
}
IL_0017:
{
ObjectU5BU5D_t2843939325* L_2 = (ObjectU5BU5D_t2843939325*)__this->get_m_array_0();
il2cpp_codegen_memory_barrier();
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
RuntimeObject * L_6 = ___e0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_5) == ((RuntimeObject*)(RuntimeObject *)L_6))))
{
goto IL_0050;
}
}
IL_0032:
{
ObjectU5BU5D_t2843939325* L_7 = (ObjectU5BU5D_t2843939325*)__this->get_m_array_0();
il2cpp_codegen_memory_barrier();
int32_t L_8 = V_2;
NullCheck(L_7);
il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject *));
RuntimeObject * L_9 = V_3;
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject **, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (RuntimeObject **)((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8))), (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
IL2CPP_LEAVE(0x6D, FINALLY_0063);
}
IL_0050:
{
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0054:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t2843939325* L_12 = (ObjectU5BU5D_t2843939325*)__this->get_m_array_0();
il2cpp_codegen_memory_barrier();
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length)))))))
{
goto IL_0017;
}
}
IL_0061:
{
IL2CPP_LEAVE(0x6D, FINALLY_0063);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0063;
}
FINALLY_0063:
{ // begin finally (depth: 1)
{
bool L_13 = V_1;
if (!L_13)
{
goto IL_006c;
}
}
IL_0066:
{
ObjectU5BU5D_t2843939325* L_14 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, (RuntimeObject *)(RuntimeObject *)L_14, /*hidden argument*/NULL);
}
IL_006c:
{
IL2CPP_END_FINALLY(99)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(99)
{
IL2CPP_JUMP_TBL(0x6D, IL_006d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_006d:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// T1 System.Tuple`2<System.Object,System.Char>::get_Item1()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_m1293042150_gshared (Tuple_2_t3267548213 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Object,System.Char>::get_Item2()
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Tuple_2_get_Item2_m1862217893_gshared (Tuple_2_t3267548213 * __this, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = (Il2CppChar)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Object,System.Char>::.ctor(T1,T2)
extern "C" IL2CPP_METHOD_ATTR void Tuple_2__ctor_m2426004262_gshared (Tuple_2_t3267548213 * __this, RuntimeObject * ___item10, Il2CppChar ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
Il2CppChar L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Object,System.Char>::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m3225610105_gshared (Tuple_2_t3267548213 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_m3225610105_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_1 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_m3652816150_gshared (Tuple_2_t3267548213 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_m3652816150_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t3267548213 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t3267548213 *)((Tuple_2_t3267548213 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_2_t3267548213 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_2_t3267548213 * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_004c;
}
}
{
RuntimeObject* L_8 = ___comparer1;
Il2CppChar L_9 = (Il2CppChar)__this->get_m_Item2_1();
Il2CppChar L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_10);
Tuple_2_t3267548213 * L_12 = V_0;
NullCheck(L_12);
Il2CppChar L_13 = (Il2CppChar)L_12->get_m_Item2_1();
Il2CppChar L_14 = L_13;
RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_14);
NullCheck((RuntimeObject*)L_8);
bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_11, (RuntimeObject *)L_15);
return L_16;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Char>::System.IComparable.CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_m1373145262_gshared (Tuple_2_t3267548213 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_m1373145262_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_t611013387_il2cpp_TypeInfo_var);
LowLevelComparer_t611013387 * L_1 = ((LowLevelComparer_t611013387_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_t611013387_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t3450588467_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m1351464050_gshared (Tuple_2_t3267548213 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_m1351464050_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t3267548213 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t3267548213 *)((Tuple_2_t3267548213 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_2_t3267548213 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m88164663((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m1749913990(NULL /*static, unused*/, (String_t*)_stringLiteral4055290125, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_6, (String_t*)L_5, (String_t*)_stringLiteral2432405111, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Tuple_2_System_Collections_IStructuralComparable_CompareTo_m1351464050_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_2_t3267548213 * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
Il2CppChar L_15 = (Il2CppChar)__this->get_m_Item2_1();
Il2CppChar L_16 = L_15;
RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_16);
Tuple_2_t3267548213 * L_18 = V_0;
NullCheck(L_18);
Il2CppChar L_19 = (Il2CppChar)L_18->get_m_Item2_1();
Il2CppChar L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_20);
NullCheck((RuntimeObject*)L_14);
int32_t L_22 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_17, (RuntimeObject *)L_21);
return L_22;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Char>::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m2036918928_gshared (Tuple_2_t3267548213 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_m2036918928_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_0 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m3110436094_gshared (Tuple_2_t3267548213 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m3110436094_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
Il2CppChar L_4 = (Il2CppChar)__this->get_m_Item2_1();
Il2CppChar L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_5);
NullCheck((RuntimeObject*)L_3);
int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6);
int32_t L_8 = Tuple_CombineHashCodes_m2631077112(NULL /*static, unused*/, (int32_t)L_2, (int32_t)L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.String System.Tuple`2<System.Object,System.Char>::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m715163863_gshared (Tuple_2_t3267548213 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_m715163863_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m3121283359(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_1, (String_t*)_stringLiteral3452614536, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_t3655233963_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Object,System.Char>::System.ITupleInternal.ToString(System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_m103424758_gshared (Tuple_2_t3267548213 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_m103424758_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_2, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
Il2CppChar L_4 = (Il2CppChar)__this->get_m_Item2_1();
Il2CppChar L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_5);
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_3, (RuntimeObject *)L_6, /*hidden argument*/NULL);
StringBuilder_t * L_7 = ___sb0;
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_m2383614642((StringBuilder_t *)L_7, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_8 = ___sb0;
NullCheck((RuntimeObject *)L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_8);
return L_9;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// T1 System.Tuple`2<System.Object,System.Object>::get_Item1()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item1_m1385212797_gshared (Tuple_2_t2713193907 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`2<System.Object,System.Object>::get_Item2()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_2_get_Item2_m959734965_gshared (Tuple_2_t2713193907 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// System.Void System.Tuple`2<System.Object,System.Object>::.ctor(T1,T2)
extern "C" IL2CPP_METHOD_ATTR void Tuple_2__ctor_m596982955_gshared (Tuple_2_t2713193907 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
return;
}
}
// System.Boolean System.Tuple`2<System.Object,System.Object>::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_2_Equals_m1782812392_gshared (Tuple_2_t2713193907 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_Equals_m1782812392_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_1 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_2_System_Collections_IStructuralEquatable_Equals_m1604241532_gshared (Tuple_2_t2713193907 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_Equals_m1604241532_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t2713193907 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t2713193907 *)((Tuple_2_t2713193907 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_2_t2713193907 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_2_t2713193907 * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_004c;
}
}
{
RuntimeObject* L_8 = ___comparer1;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_2_t2713193907 * L_10 = V_0;
NullCheck(L_10);
RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1();
NullCheck((RuntimeObject*)L_8);
bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11);
return L_12;
}
IL_004c:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_2_System_IComparable_CompareTo_m2490824222_gshared (Tuple_2_t2713193907 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_IComparable_CompareTo_m2490824222_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_t611013387_il2cpp_TypeInfo_var);
LowLevelComparer_t611013387 * L_1 = ((LowLevelComparer_t611013387_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_t611013387_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t3450588467_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralComparable_CompareTo_m3897890118_gshared (Tuple_2_t2713193907 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralComparable_CompareTo_m3897890118_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t2713193907 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_2_t2713193907 *)((Tuple_2_t2713193907 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_2_t2713193907 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m88164663((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m1749913990(NULL /*static, unused*/, (String_t*)_stringLiteral4055290125, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_6, (String_t*)L_5, (String_t*)_stringLiteral2432405111, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Tuple_2_System_Collections_IStructuralComparable_CompareTo_m3897890118_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_2_t2713193907 * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_2_t2713193907 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1();
NullCheck((RuntimeObject*)L_14);
int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17);
return L_18;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Object>::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_2_GetHashCode_m2612735482_gshared (Tuple_2_t2713193907 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_GetHashCode_m2612735482_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_0 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m1400802334_gshared (Tuple_2_t2713193907 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_Collections_IStructuralEquatable_GetHashCode_m1400802334_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_3);
int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4);
int32_t L_6 = Tuple_CombineHashCodes_m2631077112(NULL /*static, unused*/, (int32_t)L_2, (int32_t)L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.String System.Tuple`2<System.Object,System.Object>::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_2_ToString_m2595279462_gshared (Tuple_2_t2713193907 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_ToString_m2595279462_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m3121283359(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_1, (String_t*)_stringLiteral3452614536, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_t3655233963_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`2<System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_2_System_ITupleInternal_ToString_m3531129415_gshared (Tuple_2_t2713193907 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_2_System_ITupleInternal_ToString_m3531129415_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_2, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_3, (RuntimeObject *)L_4, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m2383614642((StringBuilder_t *)L_5, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_6 = ___sb0;
NullCheck((RuntimeObject *)L_6);
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_6);
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// T1 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item1()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item1_m2559772859_gshared (Tuple_3_t3230838485 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item2()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item2_m2325773728_gshared (Tuple_3_t3230838485 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// T3 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item3()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_3_get_Item3_m2474005473_gshared (Tuple_3_t3230838485 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item3_2();
return L_0;
}
}
// System.Void System.Tuple`3<System.Object,System.Object,System.Object>::.ctor(T1,T2,T3)
extern "C" IL2CPP_METHOD_ATTR void Tuple_3__ctor_m3774981432_gshared (Tuple_3_t3230838485 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, RuntimeObject * ___item32, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
RuntimeObject * L_2 = ___item32;
__this->set_m_Item3_2(L_2);
return;
}
}
// System.Boolean System.Tuple`3<System.Object,System.Object,System.Object>::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_3_Equals_m2987443164_gshared (Tuple_3_t3230838485 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_Equals_m2987443164_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_1 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_3_System_Collections_IStructuralEquatable_Equals_m3742707436_gshared (Tuple_3_t3230838485 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralEquatable_Equals_m3742707436_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_3_t3230838485 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_3_t3230838485 *)((Tuple_3_t3230838485 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_3_t3230838485 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_3_t3230838485 * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_006a;
}
}
{
RuntimeObject* L_8 = ___comparer1;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_3_t3230838485 * L_10 = V_0;
NullCheck(L_10);
RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1();
NullCheck((RuntimeObject*)L_8);
bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11);
if (!L_12)
{
goto IL_006a;
}
}
{
RuntimeObject* L_13 = ___comparer1;
RuntimeObject * L_14 = (RuntimeObject *)__this->get_m_Item3_2();
Tuple_3_t3230838485 * L_15 = V_0;
NullCheck(L_15);
RuntimeObject * L_16 = (RuntimeObject *)L_15->get_m_Item3_2();
NullCheck((RuntimeObject*)L_13);
bool L_17 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_14, (RuntimeObject *)L_16);
return L_17;
}
IL_006a:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_3_System_IComparable_CompareTo_m1424558715_gshared (Tuple_3_t3230838485 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_IComparable_CompareTo_m1424558715_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_t611013387_il2cpp_TypeInfo_var);
LowLevelComparer_t611013387 * L_1 = ((LowLevelComparer_t611013387_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_t611013387_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t3450588467_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralComparable_CompareTo_m2718412939_gshared (Tuple_3_t3230838485 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralComparable_CompareTo_m2718412939_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_3_t3230838485 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_3_t3230838485 *)((Tuple_3_t3230838485 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_3_t3230838485 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m88164663((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m1749913990(NULL /*static, unused*/, (String_t*)_stringLiteral4055290125, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_6, (String_t*)L_5, (String_t*)_stringLiteral2432405111, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Tuple_3_System_Collections_IStructuralComparable_CompareTo_m2718412939_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_3_t3230838485 * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_3_t3230838485 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1();
NullCheck((RuntimeObject*)L_14);
int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17);
V_1 = (int32_t)L_18;
int32_t L_19 = V_1;
if (!L_19)
{
goto IL_0075;
}
}
{
int32_t L_20 = V_1;
return L_20;
}
IL_0075:
{
RuntimeObject* L_21 = ___comparer1;
RuntimeObject * L_22 = (RuntimeObject *)__this->get_m_Item3_2();
Tuple_3_t3230838485 * L_23 = V_0;
NullCheck(L_23);
RuntimeObject * L_24 = (RuntimeObject *)L_23->get_m_Item3_2();
NullCheck((RuntimeObject*)L_21);
int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_22, (RuntimeObject *)L_24);
return L_25;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_3_GetHashCode_m659657982_gshared (Tuple_3_t3230838485 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_GetHashCode_m659657982_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_0 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m3372596419_gshared (Tuple_3_t3230838485 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_Collections_IStructuralEquatable_GetHashCode_m3372596419_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_3);
int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4);
RuntimeObject* L_6 = ___comparer0;
RuntimeObject * L_7 = (RuntimeObject *)__this->get_m_Item3_2();
NullCheck((RuntimeObject*)L_6);
int32_t L_8 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_7);
int32_t L_9 = Tuple_CombineHashCodes_m2732473132(NULL /*static, unused*/, (int32_t)L_2, (int32_t)L_5, (int32_t)L_8, /*hidden argument*/NULL);
return L_9;
}
}
// System.String System.Tuple`3<System.Object,System.Object,System.Object>::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_3_ToString_m464080828_gshared (Tuple_3_t3230838485 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_ToString_m464080828_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m3121283359(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_1, (String_t*)_stringLiteral3452614536, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_t3655233963_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`3<System.Object,System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_3_System_ITupleInternal_ToString_m3664369537_gshared (Tuple_3_t3230838485 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_3_System_ITupleInternal_ToString_m3664369537_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_2, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_3, (RuntimeObject *)L_4, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_5, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_6 = ___sb0;
RuntimeObject * L_7 = (RuntimeObject *)__this->get_m_Item3_2();
NullCheck((StringBuilder_t *)L_6);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL);
StringBuilder_t * L_8 = ___sb0;
NullCheck((StringBuilder_t *)L_8);
StringBuilder_Append_m2383614642((StringBuilder_t *)L_8, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
NullCheck((RuntimeObject *)L_9);
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_9);
return L_10;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// T1 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::get_Item1()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item1_m4234669382_gshared (Tuple_4_t280230887 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::get_Item2()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item2_m918061395_gshared (Tuple_4_t280230887 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item2_1();
return L_0;
}
}
// T3 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::get_Item3()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item3_m2611632858_gshared (Tuple_4_t280230887 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item3_2();
return L_0;
}
}
// T4 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::get_Item4()
extern "C" IL2CPP_METHOD_ATTR bool Tuple_4_get_Item4_m4198184114_gshared (Tuple_4_t280230887 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_m_Item4_3();
return L_0;
}
}
// System.Void System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::.ctor(T1,T2,T3,T4)
extern "C" IL2CPP_METHOD_ATTR void Tuple_4__ctor_m4179474227_gshared (Tuple_4_t280230887 * __this, int32_t ___item10, int32_t ___item21, int32_t ___item32, bool ___item43, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___item10;
__this->set_m_Item1_0(L_0);
int32_t L_1 = ___item21;
__this->set_m_Item2_1(L_1);
int32_t L_2 = ___item32;
__this->set_m_Item3_2(L_2);
bool L_3 = ___item43;
__this->set_m_Item4_3(L_3);
return;
}
}
// System.Boolean System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_4_Equals_m60921435_gshared (Tuple_4_t280230887 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_Equals_m60921435_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_1 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_4_System_Collections_IStructuralEquatable_Equals_m1615368747_gshared (Tuple_4_t280230887 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_Equals_m1615368747_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t280230887 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t280230887 *)((Tuple_4_t280230887 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_4_t280230887 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
int32_t L_4 = (int32_t)__this->get_m_Item1_0();
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1), &L_5);
Tuple_4_t280230887 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = (int32_t)L_7->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1), &L_9);
NullCheck((RuntimeObject*)L_3);
bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if (!L_11)
{
goto IL_0088;
}
}
{
RuntimeObject* L_12 = ___comparer1;
int32_t L_13 = (int32_t)__this->get_m_Item2_1();
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_14);
Tuple_4_t280230887 * L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = (int32_t)L_16->get_m_Item2_1();
int32_t L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
NullCheck((RuntimeObject*)L_12);
bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19);
if (!L_20)
{
goto IL_0088;
}
}
{
RuntimeObject* L_21 = ___comparer1;
int32_t L_22 = (int32_t)__this->get_m_Item3_2();
int32_t L_23 = L_22;
RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_23);
Tuple_4_t280230887 * L_25 = V_0;
NullCheck(L_25);
int32_t L_26 = (int32_t)L_25->get_m_Item3_2();
int32_t L_27 = L_26;
RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_27);
NullCheck((RuntimeObject*)L_21);
bool L_29 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28);
if (!L_29)
{
goto IL_0088;
}
}
{
RuntimeObject* L_30 = ___comparer1;
bool L_31 = (bool)__this->get_m_Item4_3();
bool L_32 = L_31;
RuntimeObject * L_33 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_32);
Tuple_4_t280230887 * L_34 = V_0;
NullCheck(L_34);
bool L_35 = (bool)L_34->get_m_Item4_3();
bool L_36 = L_35;
RuntimeObject * L_37 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_36);
NullCheck((RuntimeObject*)L_30);
bool L_38 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_30, (RuntimeObject *)L_33, (RuntimeObject *)L_37);
return L_38;
}
IL_0088:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.IComparable.CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_System_IComparable_CompareTo_m2230556958_gshared (Tuple_4_t280230887 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_IComparable_CompareTo_m2230556958_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_t611013387_il2cpp_TypeInfo_var);
LowLevelComparer_t611013387 * L_1 = ((LowLevelComparer_t611013387_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_t611013387_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t3450588467_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m245883596_gshared (Tuple_4_t280230887 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralComparable_CompareTo_m245883596_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t280230887 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t280230887 *)((Tuple_4_t280230887 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_4_t280230887 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m88164663((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m1749913990(NULL /*static, unused*/, (String_t*)_stringLiteral4055290125, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_6, (String_t*)L_5, (String_t*)_stringLiteral2432405111, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Tuple_4_System_Collections_IStructuralComparable_CompareTo_m245883596_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
int32_t L_8 = (int32_t)__this->get_m_Item1_0();
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1), &L_9);
Tuple_4_t280230887 * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = (int32_t)L_11->get_m_Item1_0();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1), &L_13);
NullCheck((RuntimeObject*)L_7);
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_10, (RuntimeObject *)L_14);
V_1 = (int32_t)L_15;
int32_t L_16 = V_1;
if (!L_16)
{
goto IL_0053;
}
}
{
int32_t L_17 = V_1;
return L_17;
}
IL_0053:
{
RuntimeObject* L_18 = ___comparer1;
int32_t L_19 = (int32_t)__this->get_m_Item2_1();
int32_t L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_20);
Tuple_4_t280230887 * L_22 = V_0;
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_m_Item2_1();
int32_t L_24 = L_23;
RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_24);
NullCheck((RuntimeObject*)L_18);
int32_t L_26 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_21, (RuntimeObject *)L_25);
V_1 = (int32_t)L_26;
int32_t L_27 = V_1;
if (!L_27)
{
goto IL_0075;
}
}
{
int32_t L_28 = V_1;
return L_28;
}
IL_0075:
{
RuntimeObject* L_29 = ___comparer1;
int32_t L_30 = (int32_t)__this->get_m_Item3_2();
int32_t L_31 = L_30;
RuntimeObject * L_32 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_31);
Tuple_4_t280230887 * L_33 = V_0;
NullCheck(L_33);
int32_t L_34 = (int32_t)L_33->get_m_Item3_2();
int32_t L_35 = L_34;
RuntimeObject * L_36 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_35);
NullCheck((RuntimeObject*)L_29);
int32_t L_37 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_29, (RuntimeObject *)L_32, (RuntimeObject *)L_36);
V_1 = (int32_t)L_37;
int32_t L_38 = V_1;
if (!L_38)
{
goto IL_0097;
}
}
{
int32_t L_39 = V_1;
return L_39;
}
IL_0097:
{
RuntimeObject* L_40 = ___comparer1;
bool L_41 = (bool)__this->get_m_Item4_3();
bool L_42 = L_41;
RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_42);
Tuple_4_t280230887 * L_44 = V_0;
NullCheck(L_44);
bool L_45 = (bool)L_44->get_m_Item4_3();
bool L_46 = L_45;
RuntimeObject * L_47 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_46);
NullCheck((RuntimeObject*)L_40);
int32_t L_48 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_40, (RuntimeObject *)L_43, (RuntimeObject *)L_47);
return L_48;
}
}
// System.Int32 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_GetHashCode_m4200754752_gshared (Tuple_4_t280230887 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_GetHashCode_m4200754752_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_0 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m3673523563_gshared (Tuple_4_t280230887 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m3673523563_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1), &L_2);
NullCheck((RuntimeObject*)L_0);
int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3);
RuntimeObject* L_5 = ___comparer0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
NullCheck((RuntimeObject*)L_5);
int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8);
RuntimeObject* L_10 = ___comparer0;
int32_t L_11 = (int32_t)__this->get_m_Item3_2();
int32_t L_12 = L_11;
RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_12);
NullCheck((RuntimeObject*)L_10);
int32_t L_14 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13);
RuntimeObject* L_15 = ___comparer0;
bool L_16 = (bool)__this->get_m_Item4_3();
bool L_17 = L_16;
RuntimeObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_17);
NullCheck((RuntimeObject*)L_15);
int32_t L_19 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_15, (RuntimeObject *)L_18);
int32_t L_20 = Tuple_CombineHashCodes_m2815395037(NULL /*static, unused*/, (int32_t)L_4, (int32_t)L_9, (int32_t)L_14, (int32_t)L_19, /*hidden argument*/NULL);
return L_20;
}
}
// System.String System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_4_ToString_m3507888759_gshared (Tuple_4_t280230887 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_ToString_m3507888759_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m3121283359(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_1, (String_t*)_stringLiteral3452614536, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_t3655233963_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>::System.ITupleInternal.ToString(System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_4_System_ITupleInternal_ToString_m1199886910_gshared (Tuple_4_t280230887 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_ITupleInternal_ToString_m1199886910_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = (int32_t)__this->get_m_Item1_0();
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1), &L_2);
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL);
StringBuilder_t * L_4 = ___sb0;
NullCheck((StringBuilder_t *)L_4);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_4, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
int32_t L_6 = (int32_t)__this->get_m_Item2_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_5, (RuntimeObject *)L_8, /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
NullCheck((StringBuilder_t *)L_9);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_9, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
int32_t L_11 = (int32_t)__this->get_m_Item3_2();
int32_t L_12 = L_11;
RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_12);
NullCheck((StringBuilder_t *)L_10);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_10, (RuntimeObject *)L_13, /*hidden argument*/NULL);
StringBuilder_t * L_14 = ___sb0;
NullCheck((StringBuilder_t *)L_14);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_14, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_15 = ___sb0;
bool L_16 = (bool)__this->get_m_Item4_3();
bool L_17 = L_16;
RuntimeObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_17);
NullCheck((StringBuilder_t *)L_15);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_15, (RuntimeObject *)L_18, /*hidden argument*/NULL);
StringBuilder_t * L_19 = ___sb0;
NullCheck((StringBuilder_t *)L_19);
StringBuilder_Append_m2383614642((StringBuilder_t *)L_19, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_20 = ___sb0;
NullCheck((RuntimeObject *)L_20);
String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_20);
return L_21;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// T1 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item1()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item1_m1796389507_gshared (Tuple_4_t10520759 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item2()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item2_m4097298420_gshared (Tuple_4_t10520759 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// T3 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item3()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item3_m3321259469_gshared (Tuple_4_t10520759 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item3_2();
return L_0;
}
}
// T4 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item4()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_get_Item4_m3612132945_gshared (Tuple_4_t10520759 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Item4_3();
return L_0;
}
}
// System.Void System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::.ctor(T1,T2,T3,T4)
extern "C" IL2CPP_METHOD_ATTR void Tuple_4__ctor_m3192627659_gshared (Tuple_4_t10520759 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, int32_t ___item32, int32_t ___item43, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
int32_t L_2 = ___item32;
__this->set_m_Item3_2(L_2);
int32_t L_3 = ___item43;
__this->set_m_Item4_3(L_3);
return;
}
}
// System.Boolean System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_4_Equals_m2233486523_gshared (Tuple_4_t10520759 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_Equals_m2233486523_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_1 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_4_System_Collections_IStructuralEquatable_Equals_m3835351674_gshared (Tuple_4_t10520759 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_Equals_m3835351674_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t10520759 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t10520759 *)((Tuple_4_t10520759 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_4_t10520759 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_4_t10520759 * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_0088;
}
}
{
RuntimeObject* L_8 = ___comparer1;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_4_t10520759 * L_10 = V_0;
NullCheck(L_10);
RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1();
NullCheck((RuntimeObject*)L_8);
bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11);
if (!L_12)
{
goto IL_0088;
}
}
{
RuntimeObject* L_13 = ___comparer1;
int32_t L_14 = (int32_t)__this->get_m_Item3_2();
int32_t L_15 = L_14;
RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_15);
Tuple_4_t10520759 * L_17 = V_0;
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get_m_Item3_2();
int32_t L_19 = L_18;
RuntimeObject * L_20 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_19);
NullCheck((RuntimeObject*)L_13);
bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_16, (RuntimeObject *)L_20);
if (!L_21)
{
goto IL_0088;
}
}
{
RuntimeObject* L_22 = ___comparer1;
int32_t L_23 = (int32_t)__this->get_m_Item4_3();
int32_t L_24 = L_23;
RuntimeObject * L_25 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_24);
Tuple_4_t10520759 * L_26 = V_0;
NullCheck(L_26);
int32_t L_27 = (int32_t)L_26->get_m_Item4_3();
int32_t L_28 = L_27;
RuntimeObject * L_29 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_28);
NullCheck((RuntimeObject*)L_22);
bool L_30 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_22, (RuntimeObject *)L_25, (RuntimeObject *)L_29);
return L_30;
}
IL_0088:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_System_IComparable_CompareTo_m1306698847_gshared (Tuple_4_t10520759 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_IComparable_CompareTo_m1306698847_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_t611013387_il2cpp_TypeInfo_var);
LowLevelComparer_t611013387 * L_1 = ((LowLevelComparer_t611013387_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_t611013387_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t3450588467_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m110849818_gshared (Tuple_4_t10520759 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralComparable_CompareTo_m110849818_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t10520759 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t10520759 *)((Tuple_4_t10520759 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_4_t10520759 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m88164663((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m1749913990(NULL /*static, unused*/, (String_t*)_stringLiteral4055290125, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_6, (String_t*)L_5, (String_t*)_stringLiteral2432405111, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Tuple_4_System_Collections_IStructuralComparable_CompareTo_m110849818_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_4_t10520759 * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_4_t10520759 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1();
NullCheck((RuntimeObject*)L_14);
int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17);
V_1 = (int32_t)L_18;
int32_t L_19 = V_1;
if (!L_19)
{
goto IL_0075;
}
}
{
int32_t L_20 = V_1;
return L_20;
}
IL_0075:
{
RuntimeObject* L_21 = ___comparer1;
int32_t L_22 = (int32_t)__this->get_m_Item3_2();
int32_t L_23 = L_22;
RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_23);
Tuple_4_t10520759 * L_25 = V_0;
NullCheck(L_25);
int32_t L_26 = (int32_t)L_25->get_m_Item3_2();
int32_t L_27 = L_26;
RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_27);
NullCheck((RuntimeObject*)L_21);
int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28);
V_1 = (int32_t)L_29;
int32_t L_30 = V_1;
if (!L_30)
{
goto IL_0097;
}
}
{
int32_t L_31 = V_1;
return L_31;
}
IL_0097:
{
RuntimeObject* L_32 = ___comparer1;
int32_t L_33 = (int32_t)__this->get_m_Item4_3();
int32_t L_34 = L_33;
RuntimeObject * L_35 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_34);
Tuple_4_t10520759 * L_36 = V_0;
NullCheck(L_36);
int32_t L_37 = (int32_t)L_36->get_m_Item4_3();
int32_t L_38 = L_37;
RuntimeObject * L_39 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_38);
NullCheck((RuntimeObject*)L_32);
int32_t L_40 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_32, (RuntimeObject *)L_35, (RuntimeObject *)L_39);
return L_40;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_GetHashCode_m3496458865_gshared (Tuple_4_t10520759 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_GetHashCode_m3496458865_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_0 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m2076237339_gshared (Tuple_4_t10520759 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m2076237339_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_3);
int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4);
RuntimeObject* L_6 = ___comparer0;
int32_t L_7 = (int32_t)__this->get_m_Item3_2();
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_8);
NullCheck((RuntimeObject*)L_6);
int32_t L_10 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_9);
RuntimeObject* L_11 = ___comparer0;
int32_t L_12 = (int32_t)__this->get_m_Item4_3();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_13);
NullCheck((RuntimeObject*)L_11);
int32_t L_15 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_11, (RuntimeObject *)L_14);
int32_t L_16 = Tuple_CombineHashCodes_m2815395037(NULL /*static, unused*/, (int32_t)L_2, (int32_t)L_5, (int32_t)L_10, (int32_t)L_15, /*hidden argument*/NULL);
return L_16;
}
}
// System.String System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_4_ToString_m3336041503_gshared (Tuple_4_t10520759 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_ToString_m3336041503_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m3121283359(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_1, (String_t*)_stringLiteral3452614536, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_t3655233963_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.ITupleInternal.ToString(System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_4_System_ITupleInternal_ToString_m1635418709_gshared (Tuple_4_t10520759 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_ITupleInternal_ToString_m1635418709_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_2, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_3, (RuntimeObject *)L_4, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_5, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_6 = ___sb0;
int32_t L_7 = (int32_t)__this->get_m_Item3_2();
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), &L_8);
NullCheck((StringBuilder_t *)L_6);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_6, (RuntimeObject *)L_9, /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___sb0;
NullCheck((StringBuilder_t *)L_10);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_10, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_11 = ___sb0;
int32_t L_12 = (int32_t)__this->get_m_Item4_3();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4), &L_13);
NullCheck((StringBuilder_t *)L_11);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_11, (RuntimeObject *)L_14, /*hidden argument*/NULL);
StringBuilder_t * L_15 = ___sb0;
NullCheck((StringBuilder_t *)L_15);
StringBuilder_Append_m2383614642((StringBuilder_t *)L_15, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_16 = ___sb0;
NullCheck((RuntimeObject *)L_16);
String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_16);
return L_17;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// T1 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item1()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item1_m408946885_gshared (Tuple_4_t2598374123 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item1_0();
return L_0;
}
}
// T2 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item2()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item2_m1496237627_gshared (Tuple_4_t2598374123 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item2_1();
return L_0;
}
}
// T3 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item3()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item3_m2961527995_gshared (Tuple_4_t2598374123 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item3_2();
return L_0;
}
}
// T4 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item4()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Tuple_4_get_Item4_m1153150586_gshared (Tuple_4_t2598374123 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Item4_3();
return L_0;
}
}
// System.Void System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::.ctor(T1,T2,T3,T4)
extern "C" IL2CPP_METHOD_ATTR void Tuple_4__ctor_m2128365118_gshared (Tuple_4_t2598374123 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, RuntimeObject * ___item32, RuntimeObject * ___item43, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___item10;
__this->set_m_Item1_0(L_0);
RuntimeObject * L_1 = ___item21;
__this->set_m_Item2_1(L_1);
RuntimeObject * L_2 = ___item32;
__this->set_m_Item3_2(L_2);
RuntimeObject * L_3 = ___item43;
__this->set_m_Item4_3(L_3);
return;
}
}
// System.Boolean System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_4_Equals_m618710271_gshared (Tuple_4_t2598374123 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_Equals_m618710271_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_1 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
bool L_2 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IStructuralEquatable::Equals(System.Object,System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Boolean System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR bool Tuple_4_System_Collections_IStructuralEquatable_Equals_m3337480863_gshared (Tuple_4_t2598374123 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_Equals_m3337480863_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t2598374123 * V_0 = NULL;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t2598374123 *)((Tuple_4_t2598374123 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_4_t2598374123 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (bool)0;
}
IL_0011:
{
RuntimeObject* L_3 = ___comparer1;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_4_t2598374123 * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = (RuntimeObject *)L_5->get_m_Item1_0();
NullCheck((RuntimeObject*)L_3);
bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6);
if (!L_7)
{
goto IL_0088;
}
}
{
RuntimeObject* L_8 = ___comparer1;
RuntimeObject * L_9 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_4_t2598374123 * L_10 = V_0;
NullCheck(L_10);
RuntimeObject * L_11 = (RuntimeObject *)L_10->get_m_Item2_1();
NullCheck((RuntimeObject*)L_8);
bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11);
if (!L_12)
{
goto IL_0088;
}
}
{
RuntimeObject* L_13 = ___comparer1;
RuntimeObject * L_14 = (RuntimeObject *)__this->get_m_Item3_2();
Tuple_4_t2598374123 * L_15 = V_0;
NullCheck(L_15);
RuntimeObject * L_16 = (RuntimeObject *)L_15->get_m_Item3_2();
NullCheck((RuntimeObject*)L_13);
bool L_17 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_14, (RuntimeObject *)L_16);
if (!L_17)
{
goto IL_0088;
}
}
{
RuntimeObject* L_18 = ___comparer1;
RuntimeObject * L_19 = (RuntimeObject *)__this->get_m_Item4_3();
Tuple_4_t2598374123 * L_20 = V_0;
NullCheck(L_20);
RuntimeObject * L_21 = (RuntimeObject *)L_20->get_m_Item4_3();
NullCheck((RuntimeObject*)L_18);
bool L_22 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (RuntimeObject *)L_19, (RuntimeObject *)L_21);
return L_22;
}
IL_0088:
{
return (bool)0;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_System_IComparable_CompareTo_m864434890_gshared (Tuple_4_t2598374123 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_IComparable_CompareTo_m864434890_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_t611013387_il2cpp_TypeInfo_var);
LowLevelComparer_t611013387 * L_1 = ((LowLevelComparer_t611013387_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_t611013387_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_2 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IStructuralComparable::CompareTo(System.Object,System.Collections.IComparer) */, IStructuralComparable_t3450588467_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject *)L_0, (RuntimeObject*)L_1);
return L_2;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralComparable_CompareTo_m991048049_gshared (Tuple_4_t2598374123 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralComparable_CompareTo_m991048049_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Tuple_4_t2598374123 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___other0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___other0;
V_0 = (Tuple_4_t2598374123 *)((Tuple_4_t2598374123 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0)));
Tuple_4_t2598374123 * L_2 = V_0;
if (L_2)
{
goto IL_002f;
}
}
{
NullCheck((RuntimeObject *)__this);
Type_t * L_3 = Object_GetType_m88164663((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((RuntimeObject *)L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3);
String_t* L_5 = SR_Format_m1749913990(NULL /*static, unused*/, (String_t*)_stringLiteral4055290125, (RuntimeObject *)L_4, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_6, (String_t*)L_5, (String_t*)_stringLiteral2432405111, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Tuple_4_System_Collections_IStructuralComparable_CompareTo_m991048049_RuntimeMethod_var);
}
IL_002f:
{
V_1 = (int32_t)0;
RuntimeObject* L_7 = ___comparer1;
RuntimeObject * L_8 = (RuntimeObject *)__this->get_m_Item1_0();
Tuple_4_t2598374123 * L_9 = V_0;
NullCheck(L_9);
RuntimeObject * L_10 = (RuntimeObject *)L_9->get_m_Item1_0();
NullCheck((RuntimeObject*)L_7);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10);
V_1 = (int32_t)L_11;
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_0053;
}
}
{
int32_t L_13 = V_1;
return L_13;
}
IL_0053:
{
RuntimeObject* L_14 = ___comparer1;
RuntimeObject * L_15 = (RuntimeObject *)__this->get_m_Item2_1();
Tuple_4_t2598374123 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = (RuntimeObject *)L_16->get_m_Item2_1();
NullCheck((RuntimeObject*)L_14);
int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17);
V_1 = (int32_t)L_18;
int32_t L_19 = V_1;
if (!L_19)
{
goto IL_0075;
}
}
{
int32_t L_20 = V_1;
return L_20;
}
IL_0075:
{
RuntimeObject* L_21 = ___comparer1;
RuntimeObject * L_22 = (RuntimeObject *)__this->get_m_Item3_2();
Tuple_4_t2598374123 * L_23 = V_0;
NullCheck(L_23);
RuntimeObject * L_24 = (RuntimeObject *)L_23->get_m_Item3_2();
NullCheck((RuntimeObject*)L_21);
int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_22, (RuntimeObject *)L_24);
V_1 = (int32_t)L_25;
int32_t L_26 = V_1;
if (!L_26)
{
goto IL_0097;
}
}
{
int32_t L_27 = V_1;
return L_27;
}
IL_0097:
{
RuntimeObject* L_28 = ___comparer1;
RuntimeObject * L_29 = (RuntimeObject *)__this->get_m_Item4_3();
Tuple_4_t2598374123 * L_30 = V_0;
NullCheck(L_30);
RuntimeObject * L_31 = (RuntimeObject *)L_30->get_m_Item4_3();
NullCheck((RuntimeObject*)L_28);
int32_t L_32 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, (RuntimeObject*)L_28, (RuntimeObject *)L_29, (RuntimeObject *)L_31);
return L_32;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_GetHashCode_m839529646_gshared (Tuple_4_t2598374123 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_GetHashCode_m839529646_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var);
ObjectEqualityComparer_t1147032983 * L_0 = ((ObjectEqualityComparer_t1147032983_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t1147032983_il2cpp_TypeInfo_var))->get_Default_0();
NullCheck((RuntimeObject*)__this);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1 /* System.Int32 System.Collections.IStructuralEquatable::GetHashCode(System.Collections.IEqualityComparer) */, IStructuralEquatable_t1532146456_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)
extern "C" IL2CPP_METHOD_ATTR int32_t Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m1331059486_gshared (Tuple_4_t2598374123 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_Collections_IStructuralEquatable_GetHashCode_m1331059486_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___comparer0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((RuntimeObject*)L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1);
RuntimeObject* L_3 = ___comparer0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((RuntimeObject*)L_3);
int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4);
RuntimeObject* L_6 = ___comparer0;
RuntimeObject * L_7 = (RuntimeObject *)__this->get_m_Item3_2();
NullCheck((RuntimeObject*)L_6);
int32_t L_8 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_7);
RuntimeObject* L_9 = ___comparer0;
RuntimeObject * L_10 = (RuntimeObject *)__this->get_m_Item4_3();
NullCheck((RuntimeObject*)L_9);
int32_t L_11 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, (RuntimeObject*)L_9, (RuntimeObject *)L_10);
int32_t L_12 = Tuple_CombineHashCodes_m2815395037(NULL /*static, unused*/, (int32_t)L_2, (int32_t)L_5, (int32_t)L_8, (int32_t)L_11, /*hidden argument*/NULL);
return L_12;
}
}
// System.String System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_4_ToString_m2434313778_gshared (Tuple_4_t2598374123 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_ToString_m2434313778_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m3121283359(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_1, (String_t*)_stringLiteral3452614536, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
NullCheck((RuntimeObject*)__this);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, StringBuilder_t * >::Invoke(0 /* System.String System.ITupleInternal::ToString(System.Text.StringBuilder) */, ITupleInternal_t3655233963_il2cpp_TypeInfo_var, (RuntimeObject*)__this, (StringBuilder_t *)L_2);
return L_3;
}
}
// System.String System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder)
extern "C" IL2CPP_METHOD_ATTR String_t* Tuple_4_System_ITupleInternal_ToString_m1031679431_gshared (Tuple_4_t2598374123 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Tuple_4_System_ITupleInternal_ToString_m1031679431_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = ___sb0;
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_Item1_0();
NullCheck((StringBuilder_t *)L_0);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = ___sb0;
NullCheck((StringBuilder_t *)L_2);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_2, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_3 = ___sb0;
RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_Item2_1();
NullCheck((StringBuilder_t *)L_3);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_3, (RuntimeObject *)L_4, /*hidden argument*/NULL);
StringBuilder_t * L_5 = ___sb0;
NullCheck((StringBuilder_t *)L_5);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_5, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_6 = ___sb0;
RuntimeObject * L_7 = (RuntimeObject *)__this->get_m_Item3_2();
NullCheck((StringBuilder_t *)L_6);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_6, (RuntimeObject *)L_7, /*hidden argument*/NULL);
StringBuilder_t * L_8 = ___sb0;
NullCheck((StringBuilder_t *)L_8);
StringBuilder_Append_m1965104174((StringBuilder_t *)L_8, (String_t*)_stringLiteral3450517380, /*hidden argument*/NULL);
StringBuilder_t * L_9 = ___sb0;
RuntimeObject * L_10 = (RuntimeObject *)__this->get_m_Item4_3();
NullCheck((StringBuilder_t *)L_9);
StringBuilder_Append_m1640838743((StringBuilder_t *)L_9, (RuntimeObject *)L_10, /*hidden argument*/NULL);
StringBuilder_t * L_11 = ___sb0;
NullCheck((StringBuilder_t *)L_11);
StringBuilder_Append_m2383614642((StringBuilder_t *)L_11, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_12 = ___sb0;
NullCheck((RuntimeObject *)L_12);
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_12);
return L_13;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Boolean>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T)
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1__ctor_m3078689395_gshared (CachedInvokableCall_1_t2423483305 * __this, Object_t631007953 * ___target0, MethodInfo_t * ___theFunction1, bool ___argument2, const RuntimeMethod* method)
{
{
Object_t631007953 * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((InvokableCall_1_t214452203 *)__this);
(( void (*) (InvokableCall_1_t214452203 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((InvokableCall_1_t214452203 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
bool L_2 = ___argument2;
__this->set_m_Arg1_1(L_2);
return;
}
}
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Boolean>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1_Invoke_m3002667207_gshared (CachedInvokableCall_1_t2423483305 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_m_Arg1_1();
NullCheck((InvokableCall_1_t214452203 *)__this);
(( void (*) (InvokableCall_1_t214452203 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t214452203 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Boolean>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1_Invoke_m812947504_gshared (CachedInvokableCall_1_t2423483305 * __this, bool ___arg00, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_m_Arg1_1();
NullCheck((InvokableCall_1_t214452203 *)__this);
(( void (*) (InvokableCall_1_t214452203 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t214452203 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Int32>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T)
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1__ctor_m2046334630_gshared (CachedInvokableCall_1_t982173797 * __this, Object_t631007953 * ___target0, MethodInfo_t * ___theFunction1, int32_t ___argument2, const RuntimeMethod* method)
{
{
Object_t631007953 * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((InvokableCall_1_t3068109991 *)__this);
(( void (*) (InvokableCall_1_t3068109991 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((InvokableCall_1_t3068109991 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
int32_t L_2 = ___argument2;
__this->set_m_Arg1_1(L_2);
return;
}
}
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Int32>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1_Invoke_m502907382_gshared (CachedInvokableCall_1_t982173797 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Arg1_1();
NullCheck((InvokableCall_1_t3068109991 *)__this);
(( void (*) (InvokableCall_1_t3068109991 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t3068109991 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Int32>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1_Invoke_m2909479018_gshared (CachedInvokableCall_1_t982173797 * __this, int32_t ___arg00, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Arg1_1();
NullCheck((InvokableCall_1_t3068109991 *)__this);
(( void (*) (InvokableCall_1_t3068109991 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t3068109991 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Object>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T)
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1__ctor_m3714231058_gshared (CachedInvokableCall_1_t1111334208 * __this, Object_t631007953 * ___target0, MethodInfo_t * ___theFunction1, RuntimeObject * ___argument2, const RuntimeMethod* method)
{
{
Object_t631007953 * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((InvokableCall_1_t3197270402 *)__this);
(( void (*) (InvokableCall_1_t3197270402 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((InvokableCall_1_t3197270402 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
RuntimeObject * L_2 = ___argument2;
__this->set_m_Arg1_1(L_2);
return;
}
}
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Object>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1_Invoke_m931536002_gshared (CachedInvokableCall_1_t1111334208 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Arg1_1();
NullCheck((InvokableCall_1_t3197270402 *)__this);
(( void (*) (InvokableCall_1_t3197270402 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t3197270402 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Object>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1_Invoke_m853073645_gshared (CachedInvokableCall_1_t1111334208 * __this, RuntimeObject * ___arg00, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_Arg1_1();
NullCheck((InvokableCall_1_t3197270402 *)__this);
(( void (*) (InvokableCall_1_t3197270402 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t3197270402 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Single>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T)
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1__ctor_m1997047287_gshared (CachedInvokableCall_1_t3723462114 * __this, Object_t631007953 * ___target0, MethodInfo_t * ___theFunction1, float ___argument2, const RuntimeMethod* method)
{
{
Object_t631007953 * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((InvokableCall_1_t1514431012 *)__this);
(( void (*) (InvokableCall_1_t1514431012 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((InvokableCall_1_t1514431012 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
float L_2 = ___argument2;
__this->set_m_Arg1_1(L_2);
return;
}
}
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Single>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1_Invoke_m2734252625_gshared (CachedInvokableCall_1_t3723462114 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
{
float L_0 = (float)__this->get_m_Arg1_1();
NullCheck((InvokableCall_1_t1514431012 *)__this);
(( void (*) (InvokableCall_1_t1514431012 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t1514431012 *)__this, (float)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.CachedInvokableCall`1<System.Single>::Invoke(T)
extern "C" IL2CPP_METHOD_ATTR void CachedInvokableCall_1_Invoke_m1355947625_gshared (CachedInvokableCall_1_t3723462114 * __this, float ___arg00, const RuntimeMethod* method)
{
{
float L_0 = (float)__this->get_m_Arg1_1();
NullCheck((InvokableCall_1_t1514431012 *)__this);
(( void (*) (InvokableCall_1_t1514431012 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t1514431012 *)__this, (float)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::.ctor(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m337513891_gshared (InvokableCall_1_t214452203 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1__ctor_m337513891_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m2110966014((BaseInvokableCall_t2703961024 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/NULL);
MethodInfo_t * L_2 = ___theFunction1;
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = ___target0;
Delegate_t1188392813 * L_6 = NetFxCoreExtensions_CreateDelegate_m751211712(NULL /*static, unused*/, (MethodInfo_t *)L_2, (Type_t *)L_4, (RuntimeObject *)L_5, /*hidden argument*/NULL);
NullCheck((InvokableCall_1_t214452203 *)__this);
(( void (*) (InvokableCall_1_t214452203 *, UnityAction_1_t682124106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t214452203 *)__this, (UnityAction_1_t682124106 *)((UnityAction_1_t682124106 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::.ctor(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m1028560745_gshared (InvokableCall_1_t214452203 * __this, UnityAction_1_t682124106 * ___action0, const RuntimeMethod* method)
{
{
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m768115019((BaseInvokableCall_t2703961024 *)__this, /*hidden argument*/NULL);
UnityAction_1_t682124106 * L_0 = ___action0;
NullCheck((InvokableCall_1_t214452203 *)__this);
(( void (*) (InvokableCall_1_t214452203 *, UnityAction_1_t682124106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t214452203 *)__this, (UnityAction_1_t682124106 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_add_Delegate_m1011133128_gshared (InvokableCall_1_t214452203 * __this, UnityAction_1_t682124106 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t682124106 * V_0 = NULL;
UnityAction_1_t682124106 * V_1 = NULL;
{
UnityAction_1_t682124106 * L_0 = (UnityAction_1_t682124106 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t682124106 *)L_0;
}
IL_0007:
{
UnityAction_1_t682124106 * L_1 = V_0;
V_1 = (UnityAction_1_t682124106 *)L_1;
UnityAction_1_t682124106 ** L_2 = (UnityAction_1_t682124106 **)__this->get_address_of_Delegate_0();
UnityAction_1_t682124106 * L_3 = V_1;
UnityAction_1_t682124106 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Combine_m1859655160(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t682124106 * L_6 = V_0;
UnityAction_1_t682124106 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t682124106 *>((UnityAction_1_t682124106 **)L_2, (UnityAction_1_t682124106 *)((UnityAction_1_t682124106 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t682124106 *)L_6);
V_0 = (UnityAction_1_t682124106 *)L_7;
UnityAction_1_t682124106 * L_8 = V_0;
UnityAction_1_t682124106 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t682124106 *)L_8) == ((RuntimeObject*)(UnityAction_1_t682124106 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_remove_Delegate_m1293546855_gshared (InvokableCall_1_t214452203 * __this, UnityAction_1_t682124106 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t682124106 * V_0 = NULL;
UnityAction_1_t682124106 * V_1 = NULL;
{
UnityAction_1_t682124106 * L_0 = (UnityAction_1_t682124106 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t682124106 *)L_0;
}
IL_0007:
{
UnityAction_1_t682124106 * L_1 = V_0;
V_1 = (UnityAction_1_t682124106 *)L_1;
UnityAction_1_t682124106 ** L_2 = (UnityAction_1_t682124106 **)__this->get_address_of_Delegate_0();
UnityAction_1_t682124106 * L_3 = V_1;
UnityAction_1_t682124106 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Remove_m334097152(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t682124106 * L_6 = V_0;
UnityAction_1_t682124106 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t682124106 *>((UnityAction_1_t682124106 **)L_2, (UnityAction_1_t682124106 *)((UnityAction_1_t682124106 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t682124106 *)L_6);
V_0 = (UnityAction_1_t682124106 *)L_7;
UnityAction_1_t682124106 * L_8 = V_0;
UnityAction_1_t682124106 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t682124106 *)L_8) == ((RuntimeObject*)(UnityAction_1_t682124106 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m3497872319_gshared (InvokableCall_1_t214452203 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1_Invoke_m3497872319_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = ___args0;
NullCheck(L_0);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) == ((int32_t)1)))
{
goto IL_0015;
}
}
{
ArgumentException_t132251570 * L_1 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_1, (String_t*)_stringLiteral1864861238, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,InvokableCall_1_Invoke_m3497872319_RuntimeMethod_var);
}
IL_0015:
{
ObjectU5BU5D_t2843939325* L_2 = ___args0;
NullCheck(L_2);
int32_t L_3 = 0;
RuntimeObject * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
UnityAction_1_t682124106 * L_5 = (UnityAction_1_t682124106 *)__this->get_Delegate_0();
bool L_6 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
UnityAction_1_t682124106 * L_7 = (UnityAction_1_t682124106 *)__this->get_Delegate_0();
ObjectU5BU5D_t2843939325* L_8 = ___args0;
NullCheck(L_8);
int32_t L_9 = 0;
RuntimeObject * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((UnityAction_1_t682124106 *)L_7);
(( void (*) (UnityAction_1_t682124106 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t682124106 *)L_7, (bool)((*(bool*)((bool*)UnBox(L_10, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 5))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_0040:
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::Invoke(T1)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m3859772291_gshared (InvokableCall_1_t214452203 * __this, bool ___args00, const RuntimeMethod* method)
{
{
UnityAction_1_t682124106 * L_0 = (UnityAction_1_t682124106 *)__this->get_Delegate_0();
bool L_1 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001d;
}
}
{
UnityAction_1_t682124106 * L_2 = (UnityAction_1_t682124106 *)__this->get_Delegate_0();
bool L_3 = ___args00;
NullCheck((UnityAction_1_t682124106 *)L_2);
(( void (*) (UnityAction_1_t682124106 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t682124106 *)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_001d:
{
return;
}
}
// System.Boolean UnityEngine.Events.InvokableCall`1<System.Boolean>::Find(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR bool InvokableCall_1_Find_m3228745517_gshared (InvokableCall_1_t214452203 * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
UnityAction_1_t682124106 * L_0 = (UnityAction_1_t682124106 *)__this->get_Delegate_0();
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___targetObj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)L_2))))
{
goto IL_0025;
}
}
{
UnityAction_1_t682124106 * L_3 = (UnityAction_1_t682124106 *)__this->get_Delegate_0();
MethodInfo_t * L_4 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, /*hidden argument*/NULL);
MethodInfo_t * L_5 = ___method1;
NullCheck((RuntimeObject *)L_4);
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_5);
G_B3_0 = ((int32_t)(L_6));
goto IL_0026;
}
IL_0025:
{
G_B3_0 = 0;
}
IL_0026:
{
V_0 = (bool)G_B3_0;
goto IL_002c;
}
IL_002c:
{
bool L_7 = V_0;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::.ctor(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m854286695_gshared (InvokableCall_1_t3068109991 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1__ctor_m854286695_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m2110966014((BaseInvokableCall_t2703961024 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/NULL);
MethodInfo_t * L_2 = ___theFunction1;
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = ___target0;
Delegate_t1188392813 * L_6 = NetFxCoreExtensions_CreateDelegate_m751211712(NULL /*static, unused*/, (MethodInfo_t *)L_2, (Type_t *)L_4, (RuntimeObject *)L_5, /*hidden argument*/NULL);
NullCheck((InvokableCall_1_t3068109991 *)__this);
(( void (*) (InvokableCall_1_t3068109991 *, UnityAction_1_t3535781894 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t3068109991 *)__this, (UnityAction_1_t3535781894 *)((UnityAction_1_t3535781894 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::.ctor(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m250126292_gshared (InvokableCall_1_t3068109991 * __this, UnityAction_1_t3535781894 * ___action0, const RuntimeMethod* method)
{
{
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m768115019((BaseInvokableCall_t2703961024 *)__this, /*hidden argument*/NULL);
UnityAction_1_t3535781894 * L_0 = ___action0;
NullCheck((InvokableCall_1_t3068109991 *)__this);
(( void (*) (InvokableCall_1_t3068109991 *, UnityAction_1_t3535781894 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t3068109991 *)__this, (UnityAction_1_t3535781894 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_add_Delegate_m3984829522_gshared (InvokableCall_1_t3068109991 * __this, UnityAction_1_t3535781894 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t3535781894 * V_0 = NULL;
UnityAction_1_t3535781894 * V_1 = NULL;
{
UnityAction_1_t3535781894 * L_0 = (UnityAction_1_t3535781894 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t3535781894 *)L_0;
}
IL_0007:
{
UnityAction_1_t3535781894 * L_1 = V_0;
V_1 = (UnityAction_1_t3535781894 *)L_1;
UnityAction_1_t3535781894 ** L_2 = (UnityAction_1_t3535781894 **)__this->get_address_of_Delegate_0();
UnityAction_1_t3535781894 * L_3 = V_1;
UnityAction_1_t3535781894 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Combine_m1859655160(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t3535781894 * L_6 = V_0;
UnityAction_1_t3535781894 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t3535781894 *>((UnityAction_1_t3535781894 **)L_2, (UnityAction_1_t3535781894 *)((UnityAction_1_t3535781894 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t3535781894 *)L_6);
V_0 = (UnityAction_1_t3535781894 *)L_7;
UnityAction_1_t3535781894 * L_8 = V_0;
UnityAction_1_t3535781894 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t3535781894 *)L_8) == ((RuntimeObject*)(UnityAction_1_t3535781894 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_remove_Delegate_m1404598405_gshared (InvokableCall_1_t3068109991 * __this, UnityAction_1_t3535781894 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t3535781894 * V_0 = NULL;
UnityAction_1_t3535781894 * V_1 = NULL;
{
UnityAction_1_t3535781894 * L_0 = (UnityAction_1_t3535781894 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t3535781894 *)L_0;
}
IL_0007:
{
UnityAction_1_t3535781894 * L_1 = V_0;
V_1 = (UnityAction_1_t3535781894 *)L_1;
UnityAction_1_t3535781894 ** L_2 = (UnityAction_1_t3535781894 **)__this->get_address_of_Delegate_0();
UnityAction_1_t3535781894 * L_3 = V_1;
UnityAction_1_t3535781894 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Remove_m334097152(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t3535781894 * L_6 = V_0;
UnityAction_1_t3535781894 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t3535781894 *>((UnityAction_1_t3535781894 **)L_2, (UnityAction_1_t3535781894 *)((UnityAction_1_t3535781894 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t3535781894 *)L_6);
V_0 = (UnityAction_1_t3535781894 *)L_7;
UnityAction_1_t3535781894 * L_8 = V_0;
UnityAction_1_t3535781894 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t3535781894 *)L_8) == ((RuntimeObject*)(UnityAction_1_t3535781894 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m891112188_gshared (InvokableCall_1_t3068109991 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1_Invoke_m891112188_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = ___args0;
NullCheck(L_0);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) == ((int32_t)1)))
{
goto IL_0015;
}
}
{
ArgumentException_t132251570 * L_1 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_1, (String_t*)_stringLiteral1864861238, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,InvokableCall_1_Invoke_m891112188_RuntimeMethod_var);
}
IL_0015:
{
ObjectU5BU5D_t2843939325* L_2 = ___args0;
NullCheck(L_2);
int32_t L_3 = 0;
RuntimeObject * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
UnityAction_1_t3535781894 * L_5 = (UnityAction_1_t3535781894 *)__this->get_Delegate_0();
bool L_6 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
UnityAction_1_t3535781894 * L_7 = (UnityAction_1_t3535781894 *)__this->get_Delegate_0();
ObjectU5BU5D_t2843939325* L_8 = ___args0;
NullCheck(L_8);
int32_t L_9 = 0;
RuntimeObject * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((UnityAction_1_t3535781894 *)L_7);
(( void (*) (UnityAction_1_t3535781894 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t3535781894 *)L_7, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_10, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 5))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_0040:
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::Invoke(T1)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m1665111854_gshared (InvokableCall_1_t3068109991 * __this, int32_t ___args00, const RuntimeMethod* method)
{
{
UnityAction_1_t3535781894 * L_0 = (UnityAction_1_t3535781894 *)__this->get_Delegate_0();
bool L_1 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001d;
}
}
{
UnityAction_1_t3535781894 * L_2 = (UnityAction_1_t3535781894 *)__this->get_Delegate_0();
int32_t L_3 = ___args00;
NullCheck((UnityAction_1_t3535781894 *)L_2);
(( void (*) (UnityAction_1_t3535781894 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t3535781894 *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_001d:
{
return;
}
}
// System.Boolean UnityEngine.Events.InvokableCall`1<System.Int32>::Find(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR bool InvokableCall_1_Find_m2748617534_gshared (InvokableCall_1_t3068109991 * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
UnityAction_1_t3535781894 * L_0 = (UnityAction_1_t3535781894 *)__this->get_Delegate_0();
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___targetObj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)L_2))))
{
goto IL_0025;
}
}
{
UnityAction_1_t3535781894 * L_3 = (UnityAction_1_t3535781894 *)__this->get_Delegate_0();
MethodInfo_t * L_4 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, /*hidden argument*/NULL);
MethodInfo_t * L_5 = ___method1;
NullCheck((RuntimeObject *)L_4);
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_5);
G_B3_0 = ((int32_t)(L_6));
goto IL_0026;
}
IL_0025:
{
G_B3_0 = 0;
}
IL_0026:
{
V_0 = (bool)G_B3_0;
goto IL_002c;
}
IL_002c:
{
bool L_7 = V_0;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.InvokableCall`1<System.Object>::.ctor(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m974734014_gshared (InvokableCall_1_t3197270402 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1__ctor_m974734014_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m2110966014((BaseInvokableCall_t2703961024 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/NULL);
MethodInfo_t * L_2 = ___theFunction1;
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = ___target0;
Delegate_t1188392813 * L_6 = NetFxCoreExtensions_CreateDelegate_m751211712(NULL /*static, unused*/, (MethodInfo_t *)L_2, (Type_t *)L_4, (RuntimeObject *)L_5, /*hidden argument*/NULL);
NullCheck((InvokableCall_1_t3197270402 *)__this);
(( void (*) (InvokableCall_1_t3197270402 *, UnityAction_1_t3664942305 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t3197270402 *)__this, (UnityAction_1_t3664942305 *)((UnityAction_1_t3664942305 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Object>::.ctor(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m2204476693_gshared (InvokableCall_1_t3197270402 * __this, UnityAction_1_t3664942305 * ___action0, const RuntimeMethod* method)
{
{
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m768115019((BaseInvokableCall_t2703961024 *)__this, /*hidden argument*/NULL);
UnityAction_1_t3664942305 * L_0 = ___action0;
NullCheck((InvokableCall_1_t3197270402 *)__this);
(( void (*) (InvokableCall_1_t3197270402 *, UnityAction_1_t3664942305 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t3197270402 *)__this, (UnityAction_1_t3664942305 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Object>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_add_Delegate_m1149657958_gshared (InvokableCall_1_t3197270402 * __this, UnityAction_1_t3664942305 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t3664942305 * V_0 = NULL;
UnityAction_1_t3664942305 * V_1 = NULL;
{
UnityAction_1_t3664942305 * L_0 = (UnityAction_1_t3664942305 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t3664942305 *)L_0;
}
IL_0007:
{
UnityAction_1_t3664942305 * L_1 = V_0;
V_1 = (UnityAction_1_t3664942305 *)L_1;
UnityAction_1_t3664942305 ** L_2 = (UnityAction_1_t3664942305 **)__this->get_address_of_Delegate_0();
UnityAction_1_t3664942305 * L_3 = V_1;
UnityAction_1_t3664942305 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Combine_m1859655160(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t3664942305 * L_6 = V_0;
UnityAction_1_t3664942305 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t3664942305 *>((UnityAction_1_t3664942305 **)L_2, (UnityAction_1_t3664942305 *)((UnityAction_1_t3664942305 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t3664942305 *)L_6);
V_0 = (UnityAction_1_t3664942305 *)L_7;
UnityAction_1_t3664942305 * L_8 = V_0;
UnityAction_1_t3664942305 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t3664942305 *)L_8) == ((RuntimeObject*)(UnityAction_1_t3664942305 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Object>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_remove_Delegate_m1459577645_gshared (InvokableCall_1_t3197270402 * __this, UnityAction_1_t3664942305 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t3664942305 * V_0 = NULL;
UnityAction_1_t3664942305 * V_1 = NULL;
{
UnityAction_1_t3664942305 * L_0 = (UnityAction_1_t3664942305 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t3664942305 *)L_0;
}
IL_0007:
{
UnityAction_1_t3664942305 * L_1 = V_0;
V_1 = (UnityAction_1_t3664942305 *)L_1;
UnityAction_1_t3664942305 ** L_2 = (UnityAction_1_t3664942305 **)__this->get_address_of_Delegate_0();
UnityAction_1_t3664942305 * L_3 = V_1;
UnityAction_1_t3664942305 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Remove_m334097152(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t3664942305 * L_6 = V_0;
UnityAction_1_t3664942305 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t3664942305 *>((UnityAction_1_t3664942305 **)L_2, (UnityAction_1_t3664942305 *)((UnityAction_1_t3664942305 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t3664942305 *)L_6);
V_0 = (UnityAction_1_t3664942305 *)L_7;
UnityAction_1_t3664942305 * L_8 = V_0;
UnityAction_1_t3664942305 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t3664942305 *)L_8) == ((RuntimeObject*)(UnityAction_1_t3664942305 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Object>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m4071643321_gshared (InvokableCall_1_t3197270402 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1_Invoke_m4071643321_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = ___args0;
NullCheck(L_0);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) == ((int32_t)1)))
{
goto IL_0015;
}
}
{
ArgumentException_t132251570 * L_1 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_1, (String_t*)_stringLiteral1864861238, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,InvokableCall_1_Invoke_m4071643321_RuntimeMethod_var);
}
IL_0015:
{
ObjectU5BU5D_t2843939325* L_2 = ___args0;
NullCheck(L_2);
int32_t L_3 = 0;
RuntimeObject * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
UnityAction_1_t3664942305 * L_5 = (UnityAction_1_t3664942305 *)__this->get_Delegate_0();
bool L_6 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
UnityAction_1_t3664942305 * L_7 = (UnityAction_1_t3664942305 *)__this->get_Delegate_0();
ObjectU5BU5D_t2843939325* L_8 = ___args0;
NullCheck(L_8);
int32_t L_9 = 0;
RuntimeObject * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((UnityAction_1_t3664942305 *)L_7);
(( void (*) (UnityAction_1_t3664942305 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t3664942305 *)L_7, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_10, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 5))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_0040:
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Object>::Invoke(T1)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m1111745191_gshared (InvokableCall_1_t3197270402 * __this, RuntimeObject * ___args00, const RuntimeMethod* method)
{
{
UnityAction_1_t3664942305 * L_0 = (UnityAction_1_t3664942305 *)__this->get_Delegate_0();
bool L_1 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001d;
}
}
{
UnityAction_1_t3664942305 * L_2 = (UnityAction_1_t3664942305 *)__this->get_Delegate_0();
RuntimeObject * L_3 = ___args00;
NullCheck((UnityAction_1_t3664942305 *)L_2);
(( void (*) (UnityAction_1_t3664942305 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t3664942305 *)L_2, (RuntimeObject *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_001d:
{
return;
}
}
// System.Boolean UnityEngine.Events.InvokableCall`1<System.Object>::Find(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR bool InvokableCall_1_Find_m667253485_gshared (InvokableCall_1_t3197270402 * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
UnityAction_1_t3664942305 * L_0 = (UnityAction_1_t3664942305 *)__this->get_Delegate_0();
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___targetObj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)L_2))))
{
goto IL_0025;
}
}
{
UnityAction_1_t3664942305 * L_3 = (UnityAction_1_t3664942305 *)__this->get_Delegate_0();
MethodInfo_t * L_4 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, /*hidden argument*/NULL);
MethodInfo_t * L_5 = ___method1;
NullCheck((RuntimeObject *)L_4);
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_5);
G_B3_0 = ((int32_t)(L_6));
goto IL_0026;
}
IL_0025:
{
G_B3_0 = 0;
}
IL_0026:
{
V_0 = (bool)G_B3_0;
goto IL_002c;
}
IL_002c:
{
bool L_7 = V_0;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.InvokableCall`1<System.Single>::.ctor(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m4147324340_gshared (InvokableCall_1_t1514431012 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1__ctor_m4147324340_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m2110966014((BaseInvokableCall_t2703961024 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/NULL);
MethodInfo_t * L_2 = ___theFunction1;
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = ___target0;
Delegate_t1188392813 * L_6 = NetFxCoreExtensions_CreateDelegate_m751211712(NULL /*static, unused*/, (MethodInfo_t *)L_2, (Type_t *)L_4, (RuntimeObject *)L_5, /*hidden argument*/NULL);
NullCheck((InvokableCall_1_t1514431012 *)__this);
(( void (*) (InvokableCall_1_t1514431012 *, UnityAction_1_t1982102915 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t1514431012 *)__this, (UnityAction_1_t1982102915 *)((UnityAction_1_t1982102915 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Single>::.ctor(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m550191732_gshared (InvokableCall_1_t1514431012 * __this, UnityAction_1_t1982102915 * ___action0, const RuntimeMethod* method)
{
{
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m768115019((BaseInvokableCall_t2703961024 *)__this, /*hidden argument*/NULL);
UnityAction_1_t1982102915 * L_0 = ___action0;
NullCheck((InvokableCall_1_t1514431012 *)__this);
(( void (*) (InvokableCall_1_t1514431012 *, UnityAction_1_t1982102915 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t1514431012 *)__this, (UnityAction_1_t1982102915 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Single>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_add_Delegate_m1440777569_gshared (InvokableCall_1_t1514431012 * __this, UnityAction_1_t1982102915 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t1982102915 * V_0 = NULL;
UnityAction_1_t1982102915 * V_1 = NULL;
{
UnityAction_1_t1982102915 * L_0 = (UnityAction_1_t1982102915 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t1982102915 *)L_0;
}
IL_0007:
{
UnityAction_1_t1982102915 * L_1 = V_0;
V_1 = (UnityAction_1_t1982102915 *)L_1;
UnityAction_1_t1982102915 ** L_2 = (UnityAction_1_t1982102915 **)__this->get_address_of_Delegate_0();
UnityAction_1_t1982102915 * L_3 = V_1;
UnityAction_1_t1982102915 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Combine_m1859655160(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t1982102915 * L_6 = V_0;
UnityAction_1_t1982102915 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t1982102915 *>((UnityAction_1_t1982102915 **)L_2, (UnityAction_1_t1982102915 *)((UnityAction_1_t1982102915 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t1982102915 *)L_6);
V_0 = (UnityAction_1_t1982102915 *)L_7;
UnityAction_1_t1982102915 * L_8 = V_0;
UnityAction_1_t1982102915 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t1982102915 *)L_8) == ((RuntimeObject*)(UnityAction_1_t1982102915 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Single>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_remove_Delegate_m790146436_gshared (InvokableCall_1_t1514431012 * __this, UnityAction_1_t1982102915 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t1982102915 * V_0 = NULL;
UnityAction_1_t1982102915 * V_1 = NULL;
{
UnityAction_1_t1982102915 * L_0 = (UnityAction_1_t1982102915 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t1982102915 *)L_0;
}
IL_0007:
{
UnityAction_1_t1982102915 * L_1 = V_0;
V_1 = (UnityAction_1_t1982102915 *)L_1;
UnityAction_1_t1982102915 ** L_2 = (UnityAction_1_t1982102915 **)__this->get_address_of_Delegate_0();
UnityAction_1_t1982102915 * L_3 = V_1;
UnityAction_1_t1982102915 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Remove_m334097152(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t1982102915 * L_6 = V_0;
UnityAction_1_t1982102915 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t1982102915 *>((UnityAction_1_t1982102915 **)L_2, (UnityAction_1_t1982102915 *)((UnityAction_1_t1982102915 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t1982102915 *)L_6);
V_0 = (UnityAction_1_t1982102915 *)L_7;
UnityAction_1_t1982102915 * L_8 = V_0;
UnityAction_1_t1982102915 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t1982102915 *)L_8) == ((RuntimeObject*)(UnityAction_1_t1982102915 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Single>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m4150391468_gshared (InvokableCall_1_t1514431012 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1_Invoke_m4150391468_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = ___args0;
NullCheck(L_0);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) == ((int32_t)1)))
{
goto IL_0015;
}
}
{
ArgumentException_t132251570 * L_1 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_1, (String_t*)_stringLiteral1864861238, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,InvokableCall_1_Invoke_m4150391468_RuntimeMethod_var);
}
IL_0015:
{
ObjectU5BU5D_t2843939325* L_2 = ___args0;
NullCheck(L_2);
int32_t L_3 = 0;
RuntimeObject * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
UnityAction_1_t1982102915 * L_5 = (UnityAction_1_t1982102915 *)__this->get_Delegate_0();
bool L_6 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
UnityAction_1_t1982102915 * L_7 = (UnityAction_1_t1982102915 *)__this->get_Delegate_0();
ObjectU5BU5D_t2843939325* L_8 = ___args0;
NullCheck(L_8);
int32_t L_9 = 0;
RuntimeObject * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((UnityAction_1_t1982102915 *)L_7);
(( void (*) (UnityAction_1_t1982102915 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t1982102915 *)L_7, (float)((*(float*)((float*)UnBox(L_10, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 5))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_0040:
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<System.Single>::Invoke(T1)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m1920505169_gshared (InvokableCall_1_t1514431012 * __this, float ___args00, const RuntimeMethod* method)
{
{
UnityAction_1_t1982102915 * L_0 = (UnityAction_1_t1982102915 *)__this->get_Delegate_0();
bool L_1 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001d;
}
}
{
UnityAction_1_t1982102915 * L_2 = (UnityAction_1_t1982102915 *)__this->get_Delegate_0();
float L_3 = ___args00;
NullCheck((UnityAction_1_t1982102915 *)L_2);
(( void (*) (UnityAction_1_t1982102915 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t1982102915 *)L_2, (float)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_001d:
{
return;
}
}
// System.Boolean UnityEngine.Events.InvokableCall`1<System.Single>::Find(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR bool InvokableCall_1_Find_m1741895083_gshared (InvokableCall_1_t1514431012 * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
UnityAction_1_t1982102915 * L_0 = (UnityAction_1_t1982102915 *)__this->get_Delegate_0();
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___targetObj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)L_2))))
{
goto IL_0025;
}
}
{
UnityAction_1_t1982102915 * L_3 = (UnityAction_1_t1982102915 *)__this->get_Delegate_0();
MethodInfo_t * L_4 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, /*hidden argument*/NULL);
MethodInfo_t * L_5 = ___method1;
NullCheck((RuntimeObject *)L_4);
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_5);
G_B3_0 = ((int32_t)(L_6));
goto IL_0026;
}
IL_0025:
{
G_B3_0 = 0;
}
IL_0026:
{
V_0 = (bool)G_B3_0;
goto IL_002c;
}
IL_002c:
{
bool L_7 = V_0;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::.ctor(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m3910153236_gshared (InvokableCall_1_t2672850562 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1__ctor_m3910153236_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m2110966014((BaseInvokableCall_t2703961024 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/NULL);
MethodInfo_t * L_2 = ___theFunction1;
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = ___target0;
Delegate_t1188392813 * L_6 = NetFxCoreExtensions_CreateDelegate_m751211712(NULL /*static, unused*/, (MethodInfo_t *)L_2, (Type_t *)L_4, (RuntimeObject *)L_5, /*hidden argument*/NULL);
NullCheck((InvokableCall_1_t2672850562 *)__this);
(( void (*) (InvokableCall_1_t2672850562 *, UnityAction_1_t3140522465 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t2672850562 *)__this, (UnityAction_1_t3140522465 *)((UnityAction_1_t3140522465 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::.ctor(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m2610016537_gshared (InvokableCall_1_t2672850562 * __this, UnityAction_1_t3140522465 * ___action0, const RuntimeMethod* method)
{
{
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m768115019((BaseInvokableCall_t2703961024 *)__this, /*hidden argument*/NULL);
UnityAction_1_t3140522465 * L_0 = ___action0;
NullCheck((InvokableCall_1_t2672850562 *)__this);
(( void (*) (InvokableCall_1_t2672850562 *, UnityAction_1_t3140522465 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t2672850562 *)__this, (UnityAction_1_t3140522465 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_add_Delegate_m1240362230_gshared (InvokableCall_1_t2672850562 * __this, UnityAction_1_t3140522465 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t3140522465 * V_0 = NULL;
UnityAction_1_t3140522465 * V_1 = NULL;
{
UnityAction_1_t3140522465 * L_0 = (UnityAction_1_t3140522465 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t3140522465 *)L_0;
}
IL_0007:
{
UnityAction_1_t3140522465 * L_1 = V_0;
V_1 = (UnityAction_1_t3140522465 *)L_1;
UnityAction_1_t3140522465 ** L_2 = (UnityAction_1_t3140522465 **)__this->get_address_of_Delegate_0();
UnityAction_1_t3140522465 * L_3 = V_1;
UnityAction_1_t3140522465 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Combine_m1859655160(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t3140522465 * L_6 = V_0;
UnityAction_1_t3140522465 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t3140522465 *>((UnityAction_1_t3140522465 **)L_2, (UnityAction_1_t3140522465 *)((UnityAction_1_t3140522465 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t3140522465 *)L_6);
V_0 = (UnityAction_1_t3140522465 *)L_7;
UnityAction_1_t3140522465 * L_8 = V_0;
UnityAction_1_t3140522465 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t3140522465 *)L_8) == ((RuntimeObject*)(UnityAction_1_t3140522465 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_remove_Delegate_m1889626100_gshared (InvokableCall_1_t2672850562 * __this, UnityAction_1_t3140522465 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t3140522465 * V_0 = NULL;
UnityAction_1_t3140522465 * V_1 = NULL;
{
UnityAction_1_t3140522465 * L_0 = (UnityAction_1_t3140522465 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t3140522465 *)L_0;
}
IL_0007:
{
UnityAction_1_t3140522465 * L_1 = V_0;
V_1 = (UnityAction_1_t3140522465 *)L_1;
UnityAction_1_t3140522465 ** L_2 = (UnityAction_1_t3140522465 **)__this->get_address_of_Delegate_0();
UnityAction_1_t3140522465 * L_3 = V_1;
UnityAction_1_t3140522465 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Remove_m334097152(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t3140522465 * L_6 = V_0;
UnityAction_1_t3140522465 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t3140522465 *>((UnityAction_1_t3140522465 **)L_2, (UnityAction_1_t3140522465 *)((UnityAction_1_t3140522465 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t3140522465 *)L_6);
V_0 = (UnityAction_1_t3140522465 *)L_7;
UnityAction_1_t3140522465 * L_8 = V_0;
UnityAction_1_t3140522465 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t3140522465 *)L_8) == ((RuntimeObject*)(UnityAction_1_t3140522465 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m1524307439_gshared (InvokableCall_1_t2672850562 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1_Invoke_m1524307439_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = ___args0;
NullCheck(L_0);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) == ((int32_t)1)))
{
goto IL_0015;
}
}
{
ArgumentException_t132251570 * L_1 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_1, (String_t*)_stringLiteral1864861238, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,InvokableCall_1_Invoke_m1524307439_RuntimeMethod_var);
}
IL_0015:
{
ObjectU5BU5D_t2843939325* L_2 = ___args0;
NullCheck(L_2);
int32_t L_3 = 0;
RuntimeObject * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
UnityAction_1_t3140522465 * L_5 = (UnityAction_1_t3140522465 *)__this->get_Delegate_0();
bool L_6 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
UnityAction_1_t3140522465 * L_7 = (UnityAction_1_t3140522465 *)__this->get_Delegate_0();
ObjectU5BU5D_t2843939325* L_8 = ___args0;
NullCheck(L_8);
int32_t L_9 = 0;
RuntimeObject * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((UnityAction_1_t3140522465 *)L_7);
(( void (*) (UnityAction_1_t3140522465 *, Color_t2555686324 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t3140522465 *)L_7, (Color_t2555686324 )((*(Color_t2555686324 *)((Color_t2555686324 *)UnBox(L_10, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 5))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_0040:
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::Invoke(T1)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m2622045618_gshared (InvokableCall_1_t2672850562 * __this, Color_t2555686324 ___args00, const RuntimeMethod* method)
{
{
UnityAction_1_t3140522465 * L_0 = (UnityAction_1_t3140522465 *)__this->get_Delegate_0();
bool L_1 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001d;
}
}
{
UnityAction_1_t3140522465 * L_2 = (UnityAction_1_t3140522465 *)__this->get_Delegate_0();
Color_t2555686324 L_3 = ___args00;
NullCheck((UnityAction_1_t3140522465 *)L_2);
(( void (*) (UnityAction_1_t3140522465 *, Color_t2555686324 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t3140522465 *)L_2, (Color_t2555686324 )L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_001d:
{
return;
}
}
// System.Boolean UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::Find(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR bool InvokableCall_1_Find_m3206830158_gshared (InvokableCall_1_t2672850562 * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
UnityAction_1_t3140522465 * L_0 = (UnityAction_1_t3140522465 *)__this->get_Delegate_0();
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___targetObj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)L_2))))
{
goto IL_0025;
}
}
{
UnityAction_1_t3140522465 * L_3 = (UnityAction_1_t3140522465 *)__this->get_Delegate_0();
MethodInfo_t * L_4 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, /*hidden argument*/NULL);
MethodInfo_t * L_5 = ___method1;
NullCheck((RuntimeObject *)L_4);
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_5);
G_B3_0 = ((int32_t)(L_6));
goto IL_0026;
}
IL_0025:
{
G_B3_0 = 0;
}
IL_0026:
{
V_0 = (bool)G_B3_0;
goto IL_002c;
}
IL_002c:
{
bool L_7 = V_0;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::.ctor(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m2254957474_gshared (InvokableCall_1_t2273393761 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1__ctor_m2254957474_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m2110966014((BaseInvokableCall_t2703961024 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/NULL);
MethodInfo_t * L_2 = ___theFunction1;
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = ___target0;
Delegate_t1188392813 * L_6 = NetFxCoreExtensions_CreateDelegate_m751211712(NULL /*static, unused*/, (MethodInfo_t *)L_2, (Type_t *)L_4, (RuntimeObject *)L_5, /*hidden argument*/NULL);
NullCheck((InvokableCall_1_t2273393761 *)__this);
(( void (*) (InvokableCall_1_t2273393761 *, UnityAction_1_t2741065664 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t2273393761 *)__this, (UnityAction_1_t2741065664 *)((UnityAction_1_t2741065664 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::.ctor(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1__ctor_m1888496133_gshared (InvokableCall_1_t2273393761 * __this, UnityAction_1_t2741065664 * ___action0, const RuntimeMethod* method)
{
{
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m768115019((BaseInvokableCall_t2703961024 *)__this, /*hidden argument*/NULL);
UnityAction_1_t2741065664 * L_0 = ___action0;
NullCheck((InvokableCall_1_t2273393761 *)__this);
(( void (*) (InvokableCall_1_t2273393761 *, UnityAction_1_t2741065664 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)((InvokableCall_1_t2273393761 *)__this, (UnityAction_1_t2741065664 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_add_Delegate_m4123929146_gshared (InvokableCall_1_t2273393761 * __this, UnityAction_1_t2741065664 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t2741065664 * V_0 = NULL;
UnityAction_1_t2741065664 * V_1 = NULL;
{
UnityAction_1_t2741065664 * L_0 = (UnityAction_1_t2741065664 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t2741065664 *)L_0;
}
IL_0007:
{
UnityAction_1_t2741065664 * L_1 = V_0;
V_1 = (UnityAction_1_t2741065664 *)L_1;
UnityAction_1_t2741065664 ** L_2 = (UnityAction_1_t2741065664 **)__this->get_address_of_Delegate_0();
UnityAction_1_t2741065664 * L_3 = V_1;
UnityAction_1_t2741065664 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Combine_m1859655160(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t2741065664 * L_6 = V_0;
UnityAction_1_t2741065664 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t2741065664 *>((UnityAction_1_t2741065664 **)L_2, (UnityAction_1_t2741065664 *)((UnityAction_1_t2741065664 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t2741065664 *)L_6);
V_0 = (UnityAction_1_t2741065664 *)L_7;
UnityAction_1_t2741065664 * L_8 = V_0;
UnityAction_1_t2741065664 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t2741065664 *)L_8) == ((RuntimeObject*)(UnityAction_1_t2741065664 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_remove_Delegate_m667188944_gshared (InvokableCall_1_t2273393761 * __this, UnityAction_1_t2741065664 * ___value0, const RuntimeMethod* method)
{
UnityAction_1_t2741065664 * V_0 = NULL;
UnityAction_1_t2741065664 * V_1 = NULL;
{
UnityAction_1_t2741065664 * L_0 = (UnityAction_1_t2741065664 *)__this->get_Delegate_0();
V_0 = (UnityAction_1_t2741065664 *)L_0;
}
IL_0007:
{
UnityAction_1_t2741065664 * L_1 = V_0;
V_1 = (UnityAction_1_t2741065664 *)L_1;
UnityAction_1_t2741065664 ** L_2 = (UnityAction_1_t2741065664 **)__this->get_address_of_Delegate_0();
UnityAction_1_t2741065664 * L_3 = V_1;
UnityAction_1_t2741065664 * L_4 = ___value0;
Delegate_t1188392813 * L_5 = Delegate_Remove_m334097152(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
UnityAction_1_t2741065664 * L_6 = V_0;
UnityAction_1_t2741065664 * L_7 = InterlockedCompareExchangeImpl<UnityAction_1_t2741065664 *>((UnityAction_1_t2741065664 **)L_2, (UnityAction_1_t2741065664 *)((UnityAction_1_t2741065664 *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))), (UnityAction_1_t2741065664 *)L_6);
V_0 = (UnityAction_1_t2741065664 *)L_7;
UnityAction_1_t2741065664 * L_8 = V_0;
UnityAction_1_t2741065664 * L_9 = V_1;
if ((!(((RuntimeObject*)(UnityAction_1_t2741065664 *)L_8) == ((RuntimeObject*)(UnityAction_1_t2741065664 *)L_9))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m1160628299_gshared (InvokableCall_1_t2273393761 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_1_Invoke_m1160628299_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = ___args0;
NullCheck(L_0);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) == ((int32_t)1)))
{
goto IL_0015;
}
}
{
ArgumentException_t132251570 * L_1 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_1, (String_t*)_stringLiteral1864861238, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,InvokableCall_1_Invoke_m1160628299_RuntimeMethod_var);
}
IL_0015:
{
ObjectU5BU5D_t2843939325* L_2 = ___args0;
NullCheck(L_2);
int32_t L_3 = 0;
RuntimeObject * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
UnityAction_1_t2741065664 * L_5 = (UnityAction_1_t2741065664 *)__this->get_Delegate_0();
bool L_6 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
UnityAction_1_t2741065664 * L_7 = (UnityAction_1_t2741065664 *)__this->get_Delegate_0();
ObjectU5BU5D_t2843939325* L_8 = ___args0;
NullCheck(L_8);
int32_t L_9 = 0;
RuntimeObject * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((UnityAction_1_t2741065664 *)L_7);
(( void (*) (UnityAction_1_t2741065664 *, Vector2_t2156229523 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t2741065664 *)L_7, (Vector2_t2156229523 )((*(Vector2_t2156229523 *)((Vector2_t2156229523 *)UnBox(L_10, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 5))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_0040:
{
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::Invoke(T1)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_1_Invoke_m3205384408_gshared (InvokableCall_1_t2273393761 * __this, Vector2_t2156229523 ___args00, const RuntimeMethod* method)
{
{
UnityAction_1_t2741065664 * L_0 = (UnityAction_1_t2741065664 *)__this->get_Delegate_0();
bool L_1 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001d;
}
}
{
UnityAction_1_t2741065664 * L_2 = (UnityAction_1_t2741065664 *)__this->get_Delegate_0();
Vector2_t2156229523 L_3 = ___args00;
NullCheck((UnityAction_1_t2741065664 *)L_2);
(( void (*) (UnityAction_1_t2741065664 *, Vector2_t2156229523 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_1_t2741065664 *)L_2, (Vector2_t2156229523 )L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_001d:
{
return;
}
}
// System.Boolean UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::Find(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR bool InvokableCall_1_Find_m2468125381_gshared (InvokableCall_1_t2273393761 * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
UnityAction_1_t2741065664 * L_0 = (UnityAction_1_t2741065664 *)__this->get_Delegate_0();
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___targetObj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)L_2))))
{
goto IL_0025;
}
}
{
UnityAction_1_t2741065664 * L_3 = (UnityAction_1_t2741065664 *)__this->get_Delegate_0();
MethodInfo_t * L_4 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, /*hidden argument*/NULL);
MethodInfo_t * L_5 = ___method1;
NullCheck((RuntimeObject *)L_4);
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_5);
G_B3_0 = ((int32_t)(L_6));
goto IL_0026;
}
IL_0025:
{
G_B3_0 = 0;
}
IL_0026:
{
V_0 = (bool)G_B3_0;
goto IL_002c;
}
IL_002c:
{
bool L_7 = V_0;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.InvokableCall`2<System.Object,System.Object>::.ctor(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_2__ctor_m3619012188_gshared (InvokableCall_2_t362407658 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_2__ctor_m3619012188_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m2110966014((BaseInvokableCall_t2703961024 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/NULL);
MethodInfo_t * L_2 = ___theFunction1;
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = ___target0;
Delegate_t1188392813 * L_6 = NetFxCoreExtensions_CreateDelegate_m751211712(NULL /*static, unused*/, (MethodInfo_t *)L_2, (Type_t *)L_4, (RuntimeObject *)L_5, /*hidden argument*/NULL);
__this->set_Delegate_0(((UnityAction_2_t3283971887 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`2<System.Object,System.Object>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_2_Invoke_m1520082677_gshared (InvokableCall_2_t362407658 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_2_Invoke_m1520082677_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = ___args0;
NullCheck(L_0);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) == ((int32_t)2)))
{
goto IL_0015;
}
}
{
ArgumentException_t132251570 * L_1 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_1, (String_t*)_stringLiteral1864861238, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,InvokableCall_2_Invoke_m1520082677_RuntimeMethod_var);
}
IL_0015:
{
ObjectU5BU5D_t2843939325* L_2 = ___args0;
NullCheck(L_2);
int32_t L_3 = 0;
RuntimeObject * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
ObjectU5BU5D_t2843939325* L_5 = ___args0;
NullCheck(L_5);
int32_t L_6 = 1;
RuntimeObject * L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3));
UnityAction_2_t3283971887 * L_8 = (UnityAction_2_t3283971887 *)__this->get_Delegate_0();
bool L_9 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0050;
}
}
{
UnityAction_2_t3283971887 * L_10 = (UnityAction_2_t3283971887 *)__this->get_Delegate_0();
ObjectU5BU5D_t2843939325* L_11 = ___args0;
NullCheck(L_11);
int32_t L_12 = 0;
RuntimeObject * L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
ObjectU5BU5D_t2843939325* L_14 = ___args0;
NullCheck(L_14);
int32_t L_15 = 1;
RuntimeObject * L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
NullCheck((UnityAction_2_t3283971887 *)L_10);
(( void (*) (UnityAction_2_t3283971887 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6)->methodPointer)((UnityAction_2_t3283971887 *)L_10, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_13, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4))), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_16, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 5))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 6));
}
IL_0050:
{
return;
}
}
// System.Boolean UnityEngine.Events.InvokableCall`2<System.Object,System.Object>::Find(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR bool InvokableCall_2_Find_m265590023_gshared (InvokableCall_2_t362407658 * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
UnityAction_2_t3283971887 * L_0 = (UnityAction_2_t3283971887 *)__this->get_Delegate_0();
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___targetObj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)L_2))))
{
goto IL_0025;
}
}
{
UnityAction_2_t3283971887 * L_3 = (UnityAction_2_t3283971887 *)__this->get_Delegate_0();
MethodInfo_t * L_4 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, /*hidden argument*/NULL);
MethodInfo_t * L_5 = ___method1;
NullCheck((RuntimeObject *)L_4);
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_5);
G_B3_0 = ((int32_t)(L_6));
goto IL_0026;
}
IL_0025:
{
G_B3_0 = 0;
}
IL_0026:
{
V_0 = (bool)G_B3_0;
goto IL_002c;
}
IL_002c:
{
bool L_7 = V_0;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_3__ctor_m4245235439_gshared (InvokableCall_3_t4059188962 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_3__ctor_m4245235439_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m2110966014((BaseInvokableCall_t2703961024 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/NULL);
MethodInfo_t * L_2 = ___theFunction1;
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = ___target0;
Delegate_t1188392813 * L_6 = NetFxCoreExtensions_CreateDelegate_m751211712(NULL /*static, unused*/, (MethodInfo_t *)L_2, (Type_t *)L_4, (RuntimeObject *)L_5, /*hidden argument*/NULL);
__this->set_Delegate_0(((UnityAction_3_t1557236713 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_3_Invoke_m3141788616_gshared (InvokableCall_3_t4059188962 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_3_Invoke_m3141788616_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = ___args0;
NullCheck(L_0);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) == ((int32_t)3)))
{
goto IL_0015;
}
}
{
ArgumentException_t132251570 * L_1 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_1, (String_t*)_stringLiteral1864861238, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,InvokableCall_3_Invoke_m3141788616_RuntimeMethod_var);
}
IL_0015:
{
ObjectU5BU5D_t2843939325* L_2 = ___args0;
NullCheck(L_2);
int32_t L_3 = 0;
RuntimeObject * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
ObjectU5BU5D_t2843939325* L_5 = ___args0;
NullCheck(L_5);
int32_t L_6 = 1;
RuntimeObject * L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3));
ObjectU5BU5D_t2843939325* L_8 = ___args0;
NullCheck(L_8);
int32_t L_9 = 2;
RuntimeObject * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
UnityAction_3_t1557236713 * L_11 = (UnityAction_3_t1557236713 *)__this->get_Delegate_0();
bool L_12 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0060;
}
}
{
UnityAction_3_t1557236713 * L_13 = (UnityAction_3_t1557236713 *)__this->get_Delegate_0();
ObjectU5BU5D_t2843939325* L_14 = ___args0;
NullCheck(L_14);
int32_t L_15 = 0;
RuntimeObject * L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
ObjectU5BU5D_t2843939325* L_17 = ___args0;
NullCheck(L_17);
int32_t L_18 = 1;
RuntimeObject * L_19 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
ObjectU5BU5D_t2843939325* L_20 = ___args0;
NullCheck(L_20);
int32_t L_21 = 2;
RuntimeObject * L_22 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck((UnityAction_3_t1557236713 *)L_13);
(( void (*) (UnityAction_3_t1557236713 *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 8)->methodPointer)((UnityAction_3_t1557236713 *)L_13, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_16, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 5))), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 6))), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 7))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 8));
}
IL_0060:
{
return;
}
}
// System.Boolean UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>::Find(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR bool InvokableCall_3_Find_m26605783_gshared (InvokableCall_3_t4059188962 * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
UnityAction_3_t1557236713 * L_0 = (UnityAction_3_t1557236713 *)__this->get_Delegate_0();
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___targetObj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)L_2))))
{
goto IL_0025;
}
}
{
UnityAction_3_t1557236713 * L_3 = (UnityAction_3_t1557236713 *)__this->get_Delegate_0();
MethodInfo_t * L_4 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, /*hidden argument*/NULL);
MethodInfo_t * L_5 = ___method1;
NullCheck((RuntimeObject *)L_4);
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_5);
G_B3_0 = ((int32_t)(L_6));
goto IL_0026;
}
IL_0025:
{
G_B3_0 = 0;
}
IL_0026:
{
V_0 = (bool)G_B3_0;
goto IL_002c;
}
IL_002c:
{
bool L_7 = V_0;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_4__ctor_m3136187504_gshared (InvokableCall_4_t2756980746 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_4__ctor_m3136187504_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
NullCheck((BaseInvokableCall_t2703961024 *)__this);
BaseInvokableCall__ctor_m2110966014((BaseInvokableCall_t2703961024 *)__this, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/NULL);
MethodInfo_t * L_2 = ___theFunction1;
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
RuntimeObject * L_5 = ___target0;
Delegate_t1188392813 * L_6 = NetFxCoreExtensions_CreateDelegate_m751211712(NULL /*static, unused*/, (MethodInfo_t *)L_2, (Type_t *)L_4, (RuntimeObject *)L_5, /*hidden argument*/NULL);
__this->set_Delegate_0(((UnityAction_4_t682480391 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1))));
return;
}
}
// System.Void UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>::Invoke(System.Object[])
extern "C" IL2CPP_METHOD_ATTR void InvokableCall_4_Invoke_m3371718871_gshared (InvokableCall_4_t2756980746 * __this, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InvokableCall_4_Invoke_m3371718871_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = ___args0;
NullCheck(L_0);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) == ((int32_t)4)))
{
goto IL_0015;
}
}
{
ArgumentException_t132251570 * L_1 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_1, (String_t*)_stringLiteral1864861238, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,InvokableCall_4_Invoke_m3371718871_RuntimeMethod_var);
}
IL_0015:
{
ObjectU5BU5D_t2843939325* L_2 = ___args0;
NullCheck(L_2);
int32_t L_3 = 0;
RuntimeObject * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 2));
ObjectU5BU5D_t2843939325* L_5 = ___args0;
NullCheck(L_5);
int32_t L_6 = 1;
RuntimeObject * L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3));
ObjectU5BU5D_t2843939325* L_8 = ___args0;
NullCheck(L_8);
int32_t L_9 = 2;
RuntimeObject * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
ObjectU5BU5D_t2843939325* L_11 = ___args0;
NullCheck(L_11);
int32_t L_12 = 3;
RuntimeObject * L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5));
UnityAction_4_t682480391 * L_14 = (UnityAction_4_t682480391 *)__this->get_Delegate_0();
bool L_15 = BaseInvokableCall_AllowInvoke_m878393606(NULL /*static, unused*/, (Delegate_t1188392813 *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0070;
}
}
{
UnityAction_4_t682480391 * L_16 = (UnityAction_4_t682480391 *)__this->get_Delegate_0();
ObjectU5BU5D_t2843939325* L_17 = ___args0;
NullCheck(L_17);
int32_t L_18 = 0;
RuntimeObject * L_19 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
ObjectU5BU5D_t2843939325* L_20 = ___args0;
NullCheck(L_20);
int32_t L_21 = 1;
RuntimeObject * L_22 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
ObjectU5BU5D_t2843939325* L_23 = ___args0;
NullCheck(L_23);
int32_t L_24 = 2;
RuntimeObject * L_25 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
ObjectU5BU5D_t2843939325* L_26 = ___args0;
NullCheck(L_26);
int32_t L_27 = 3;
RuntimeObject * L_28 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
NullCheck((UnityAction_4_t682480391 *)L_16);
(( void (*) (UnityAction_4_t682480391 *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 10)->methodPointer)((UnityAction_4_t682480391 *)L_16, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 6))), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 7))), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_25, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 8))), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_28, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 9))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 10));
}
IL_0070:
{
return;
}
}
// System.Boolean UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>::Find(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR bool InvokableCall_4_Find_m2717860129_gshared (InvokableCall_4_t2756980746 * __this, RuntimeObject * ___targetObj0, MethodInfo_t * ___method1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
UnityAction_4_t682480391 * L_0 = (UnityAction_4_t682480391 *)__this->get_Delegate_0();
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___targetObj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)L_2))))
{
goto IL_0025;
}
}
{
UnityAction_4_t682480391 * L_3 = (UnityAction_4_t682480391 *)__this->get_Delegate_0();
MethodInfo_t * L_4 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, /*hidden argument*/NULL);
MethodInfo_t * L_5 = ___method1;
NullCheck((RuntimeObject *)L_4);
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_5);
G_B3_0 = ((int32_t)(L_6));
goto IL_0026;
}
IL_0025:
{
G_B3_0 = 0;
}
IL_0026:
{
V_0 = (bool)G_B3_0;
goto IL_002c;
}
IL_002c:
{
bool L_7 = V_0;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m3007623985_gshared (UnityAction_1_t682124106 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m3535252839_gshared (UnityAction_1_t682124106 * __this, bool ___arg00, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< bool >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, bool, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Boolean>::BeginInvoke(T0,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m3721186338_gshared (UnityAction_1_t682124106 * __this, bool ___arg00, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_m3721186338_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Boolean_t97287965_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m1872049713_gshared (UnityAction_1_t682124106 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`1<System.Int32>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m3569411354_gshared (UnityAction_1_t3535781894 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Int32>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m3388120194_gshared (UnityAction_1_t3535781894 * __this, int32_t ___arg00, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Int32>::BeginInvoke(T0,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m4018737650_gshared (UnityAction_1_t3535781894 * __this, int32_t ___arg00, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_m4018737650_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Int32>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m290165017_gshared (UnityAction_1_t3535781894 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`1<System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m2434317150_gshared (UnityAction_1_t3664942305 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Object>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m2929687399_gshared (UnityAction_1_t3664942305 * __this, RuntimeObject * ___arg00, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker0::Invoke(targetMethod, ___arg00);
else
GenericVirtActionInvoker0::Invoke(targetMethod, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker0::Invoke(targetMethod, ___arg00);
else
GenericVirtActionInvoker0::Invoke(targetMethod, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Object>::BeginInvoke(T0,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m992932529_gshared (UnityAction_1_t3664942305 * __this, RuntimeObject * ___arg00, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___arg00;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Object>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m4173210162_gshared (UnityAction_1_t3664942305 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`1<System.Single>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m336053009_gshared (UnityAction_1_t1982102915 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Single>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m1035307306_gshared (UnityAction_1_t1982102915 * __this, float ___arg00, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< float >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< float >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< float >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< float >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, float, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Single>::BeginInvoke(T0,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m2530432941_gshared (UnityAction_1_t1982102915 * __this, float ___arg00, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_m2530432941_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Single_t1397266774_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Single>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m1615818599_gshared (UnityAction_1_t1982102915 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Color>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m2796929162_gshared (UnityAction_1_t3140522465 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Color>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m927447181_gshared (UnityAction_1_t3140522465 * __this, Color_t2555686324 ___arg00, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, Color_t2555686324 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, Color_t2555686324 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Color_t2555686324 >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< Color_t2555686324 >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Color_t2555686324 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< Color_t2555686324 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Color_t2555686324 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, Color_t2555686324 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, Color_t2555686324 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Color_t2555686324 >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< Color_t2555686324 >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Color_t2555686324 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< Color_t2555686324 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Color_t2555686324 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.Color>::BeginInvoke(T0,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m1166386047_gshared (UnityAction_1_t3140522465 * __this, Color_t2555686324 ___arg00, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_m1166386047_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Color_t2555686324_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Color>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m1121812453_gshared (UnityAction_1_t3140522465 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m63817492_gshared (UnityAction_1_t2933211702 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m3649732398_gshared (UnityAction_1_t2933211702 * __this, Scene_t2348375561 ___arg00, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Scene_t2348375561 >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< Scene_t2348375561 >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Scene_t2348375561 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< Scene_t2348375561 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Scene_t2348375561 >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< Scene_t2348375561 >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Scene_t2348375561 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< Scene_t2348375561 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::BeginInvoke(T0,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m677813163_gshared (UnityAction_1_t2933211702 * __this, Scene_t2348375561 ___arg00, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_m677813163_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Scene_t2348375561_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m367631613_gshared (UnityAction_1_t2933211702 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m1735647206_gshared (UnityAction_1_t2741065664 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m610765085_gshared (UnityAction_1_t2741065664 * __this, Vector2_t2156229523 ___arg00, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, Vector2_t2156229523 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, Vector2_t2156229523 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Vector2_t2156229523 >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< Vector2_t2156229523 >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Vector2_t2156229523 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< Vector2_t2156229523 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Vector2_t2156229523 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, Vector2_t2156229523 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, Vector2_t2156229523 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< Vector2_t2156229523 >::Invoke(targetMethod, targetThis, ___arg00);
else
GenericVirtActionInvoker1< Vector2_t2156229523 >::Invoke(targetMethod, targetThis, ___arg00);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< Vector2_t2156229523 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00);
else
VirtActionInvoker1< Vector2_t2156229523 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Vector2_t2156229523 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::BeginInvoke(T0,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_1_BeginInvoke_m2713840246_gshared (UnityAction_1_t2741065664 * __this, Vector2_t2156229523 ___arg00, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_1_BeginInvoke_m2713840246_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Vector2_t2156229523_il2cpp_TypeInfo_var, &___arg00);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_1_EndInvoke_m542551745_gshared (UnityAction_1_t2741065664 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_2__ctor_m4260941619_gshared (UnityAction_2_t3283971887 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::Invoke(T0,T1)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_2_Invoke_m2304474703_gshared (UnityAction_2_t3283971887 * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, ___arg11, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
else
GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11);
else
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11);
else
GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11);
else
VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, ___arg11, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
else
GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11);
else
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11);
else
GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11);
else
VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`2<System.Object,System.Object>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_2_BeginInvoke_m1322091188_gshared (UnityAction_2_t3283971887 * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___arg00;
__d_args[1] = ___arg11;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_2_EndInvoke_m1292612021_gshared (UnityAction_2_t3283971887 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_2__ctor_m3108471759_gshared (UnityAction_2_t2165061829 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>::Invoke(T0,T1)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_2_Invoke_m1541286357_gshared (UnityAction_2_t2165061829 * __this, Scene_t2348375561 ___arg00, int32_t ___arg11, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, Scene_t2348375561 , int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, ___arg11, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, Scene_t2348375561 , int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< Scene_t2348375561 , int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
else
GenericVirtActionInvoker2< Scene_t2348375561 , int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< Scene_t2348375561 , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11);
else
VirtActionInvoker2< Scene_t2348375561 , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Scene_t2348375561 , int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, Scene_t2348375561 , int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, ___arg11, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, Scene_t2348375561 , int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< Scene_t2348375561 , int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
else
GenericVirtActionInvoker2< Scene_t2348375561 , int32_t >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< Scene_t2348375561 , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11);
else
VirtActionInvoker2< Scene_t2348375561 , int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Scene_t2348375561 , int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_2_BeginInvoke_m1769266175_gshared (UnityAction_2_t2165061829 * __this, Scene_t2348375561 ___arg00, int32_t ___arg11, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_2_BeginInvoke_m1769266175_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Scene_t2348375561_il2cpp_TypeInfo_var, &___arg00);
__d_args[1] = Box(LoadSceneMode_t3251202195_il2cpp_TypeInfo_var, &___arg11);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_2_EndInvoke_m2179051926_gshared (UnityAction_2_t2165061829 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_2__ctor_m2941677221_gshared (UnityAction_2_t1262235195 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::Invoke(T0,T1)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_2_Invoke_m944492567_gshared (UnityAction_2_t1262235195 * __this, Scene_t2348375561 ___arg00, Scene_t2348375561 ___arg11, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, Scene_t2348375561 , Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, ___arg11, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, Scene_t2348375561 , Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< Scene_t2348375561 , Scene_t2348375561 >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
else
GenericVirtActionInvoker2< Scene_t2348375561 , Scene_t2348375561 >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< Scene_t2348375561 , Scene_t2348375561 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11);
else
VirtActionInvoker2< Scene_t2348375561 , Scene_t2348375561 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Scene_t2348375561 , Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, Scene_t2348375561 , Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, ___arg11, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, Scene_t2348375561 , Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< Scene_t2348375561 , Scene_t2348375561 >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
else
GenericVirtActionInvoker2< Scene_t2348375561 , Scene_t2348375561 >::Invoke(targetMethod, targetThis, ___arg00, ___arg11);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< Scene_t2348375561 , Scene_t2348375561 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11);
else
VirtActionInvoker2< Scene_t2348375561 , Scene_t2348375561 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11);
}
}
else
{
typedef void (*FunctionPointerType) (void*, Scene_t2348375561 , Scene_t2348375561 , const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_2_BeginInvoke_m1733258791_gshared (UnityAction_2_t1262235195 * __this, Scene_t2348375561 ___arg00, Scene_t2348375561 ___arg11, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityAction_2_BeginInvoke_m1733258791_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Scene_t2348375561_il2cpp_TypeInfo_var, &___arg00);
__d_args[1] = Box(Scene_t2348375561_il2cpp_TypeInfo_var, &___arg11);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_2_EndInvoke_m2385586247_gshared (UnityAction_2_t1262235195 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_3__ctor_m2228523061_gshared (UnityAction_3_t1557236713 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::Invoke(T0,T1,T2)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_3_Invoke_m1904347475_gshared (UnityAction_3_t1557236713 * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 3)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 3)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22);
else
GenericVirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11, ___arg22);
else
VirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11, ___arg22);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22);
else
GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11, ___arg22);
else
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11, ___arg22);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 3)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 3)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22);
else
GenericVirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11, ___arg22);
else
VirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11, ___arg22);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22);
else
GenericVirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11, ___arg22);
else
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11, ___arg22);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::BeginInvoke(T0,T1,T2,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_3_BeginInvoke_m1515014307_gshared (UnityAction_3_t1557236713 * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, AsyncCallback_t3962456242 * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
void *__d_args[4] = {0};
__d_args[0] = ___arg00;
__d_args[1] = ___arg11;
__d_args[2] = ___arg22;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_3_EndInvoke_m1256921407_gshared (UnityAction_3_t1557236713 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_4__ctor_m4196105227_gshared (UnityAction_4_t682480391 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::Invoke(T0,T1,T2,T3)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_4_Invoke_m218720656_gshared (UnityAction_4_t682480391 * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, RuntimeObject * ___arg33, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((RuntimeMethod*)(__this->get_method_3()));
DelegateU5BU5D_t1703627840* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t1188392813* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 4)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 4)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
else
GenericVirtActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
else
VirtActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22, ___arg33);
else
GenericVirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22, ___arg33);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11, ___arg22, ___arg33);
else
VirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11, ___arg22, ___arg33);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 4)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 4)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
else
GenericVirtActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
else
VirtActionInvoker4< RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___arg00, ___arg11, ___arg22, ___arg33);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22, ___arg33);
else
GenericVirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, ___arg00, ___arg11, ___arg22, ___arg33);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___arg00, ___arg11, ___arg22, ___arg33);
else
VirtActionInvoker3< RuntimeObject *, RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___arg00, ___arg11, ___arg22, ___arg33);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___arg00, ___arg11, ___arg22, ___arg33, targetMethod);
}
}
}
}
}
// System.IAsyncResult UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::BeginInvoke(T0,T1,T2,T3,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityAction_4_BeginInvoke_m2207320832_gshared (UnityAction_4_t682480391 * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, RuntimeObject * ___arg33, AsyncCallback_t3962456242 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
void *__d_args[5] = {0};
__d_args[0] = ___arg00;
__d_args[1] = ___arg11;
__d_args[2] = ___arg22;
__d_args[3] = ___arg33;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void UnityAction_4_EndInvoke_m1236619780_gshared (UnityAction_4_t682480391 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m3777630589_gshared (UnityEvent_1_t978947469 * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_4((ObjectU5BU5D_t2843939325*)NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase__ctor_m1851535676((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m2847988282_gshared (UnityEvent_1_t978947469 * __this, UnityAction_1_t682124106 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t682124106 * L_0 = ___call0;
BaseInvokableCall_t2703961024 * L_1 = (( BaseInvokableCall_t2703961024 * (*) (RuntimeObject * /* static, unused */, UnityAction_1_t682124106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (UnityAction_1_t682124106 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_AddCall_m3539965410((UnityEventBase_t3960448221 *)__this, (BaseInvokableCall_t2703961024 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m3490899137_gshared (UnityEvent_1_t978947469 * __this, UnityAction_1_t682124106 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t682124106 * L_0 = ___call0;
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
UnityAction_1_t682124106 * L_2 = ___call0;
MethodInfo_t * L_3 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_RemoveListener_m3326364145((UnityEventBase_t3960448221 *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Boolean>::FindMethod_Impl(System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m2511430237_gshared (UnityEvent_1_t978947469 * __this, String_t* ___name0, RuntimeObject * ___targetObj1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_m2511430237_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
RuntimeObject * L_0 = ___targetObj1;
String_t* L_1 = ___name0;
TypeU5BU5D_t3940880105* L_2 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1));
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
MethodInfo_t * L_5 = UnityEventBase_GetValidMethodInfo_m3989987635(NULL /*static, unused*/, (RuntimeObject *)L_0, (String_t*)L_1, (TypeU5BU5D_t3940880105*)L_2, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_5;
goto IL_0021;
}
IL_0021:
{
MethodInfo_t * L_6 = V_0;
return L_6;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Boolean>::GetDelegate(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m1518482089_gshared (UnityEvent_1_t978947469 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t214452203 * L_2 = (InvokableCall_1_t214452203 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3));
(( void (*) (InvokableCall_1_t214452203 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
V_0 = (BaseInvokableCall_t2703961024 *)L_2;
goto IL_000e;
}
IL_000e:
{
BaseInvokableCall_t2703961024 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Boolean>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m1212521776_gshared (RuntimeObject * __this /* static, unused */, UnityAction_1_t682124106 * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
UnityAction_1_t682124106 * L_0 = ___action0;
InvokableCall_1_t214452203 * L_1 = (InvokableCall_1_t214452203 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t214452203 *, UnityAction_1_t682124106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t682124106 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
V_0 = (BaseInvokableCall_t2703961024 *)L_1;
goto IL_000d;
}
IL_000d:
{
BaseInvokableCall_t2703961024 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m933614109_gshared (UnityEvent_1_t978947469 * __this, bool ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m933614109_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t4176035766 * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t214452203 * V_2 = NULL;
InvokableCall_t832123510 * V_3 = NULL;
BaseInvokableCall_t2703961024 * V_4 = NULL;
{
NullCheck((UnityEventBase_t3960448221 *)__this);
List_1_t4176035766 * L_0 = UnityEventBase_PrepareInvoke_m1785382128((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
V_0 = (List_1_t4176035766 *)L_0;
V_1 = (int32_t)0;
goto IL_0091;
}
IL_000f:
{
List_1_t4176035766 * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_t4176035766 *)L_1);
BaseInvokableCall_t2703961024 * L_3 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_2 = (InvokableCall_1_t214452203 *)((InvokableCall_1_t214452203 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3)));
InvokableCall_1_t214452203 * L_4 = V_2;
if (!L_4)
{
goto IL_002f;
}
}
{
InvokableCall_1_t214452203 * L_5 = V_2;
bool L_6 = ___arg00;
NullCheck((InvokableCall_1_t214452203 *)L_5);
VirtActionInvoker1< bool >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::Invoke(T1) */, (InvokableCall_1_t214452203 *)L_5, (bool)L_6);
goto IL_008c;
}
IL_002f:
{
List_1_t4176035766 * L_7 = V_0;
int32_t L_8 = V_1;
NullCheck((List_1_t4176035766 *)L_7);
BaseInvokableCall_t2703961024 * L_9 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_7, (int32_t)L_8, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_3 = (InvokableCall_t832123510 *)((InvokableCall_t832123510 *)IsInst((RuntimeObject*)L_9, InvokableCall_t832123510_il2cpp_TypeInfo_var));
InvokableCall_t832123510 * L_10 = V_3;
if (!L_10)
{
goto IL_004e;
}
}
{
InvokableCall_t832123510 * L_11 = V_3;
NullCheck((InvokableCall_t832123510 *)L_11);
InvokableCall_Invoke_m1437964737((InvokableCall_t832123510 *)L_11, /*hidden argument*/NULL);
goto IL_008b;
}
IL_004e:
{
List_1_t4176035766 * L_12 = V_0;
int32_t L_13 = V_1;
NullCheck((List_1_t4176035766 *)L_12);
BaseInvokableCall_t2703961024 * L_14 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_12, (int32_t)L_13, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_4 = (BaseInvokableCall_t2703961024 *)L_14;
ObjectU5BU5D_t2843939325* L_15 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
if (L_15)
{
goto IL_006f;
}
}
{
__this->set_m_InvokeArray_4(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1)));
}
IL_006f:
{
ObjectU5BU5D_t2843939325* L_16 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
bool L_17 = ___arg00;
bool L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 7), &L_18);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_19);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_19);
BaseInvokableCall_t2703961024 * L_20 = V_4;
ObjectU5BU5D_t2843939325* L_21 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
NullCheck((BaseInvokableCall_t2703961024 *)L_20);
VirtActionInvoker1< ObjectU5BU5D_t2843939325* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_t2703961024 *)L_20, (ObjectU5BU5D_t2843939325*)L_21);
}
IL_008b:
{
}
IL_008c:
{
int32_t L_22 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
}
IL_0091:
{
int32_t L_23 = V_1;
List_1_t4176035766 * L_24 = V_0;
NullCheck((List_1_t4176035766 *)L_24);
int32_t L_25 = List_1_get_Count_m1245201994((List_1_t4176035766 *)L_24, /*hidden argument*/List_1_get_Count_m1245201994_RuntimeMethod_var);
if ((((int32_t)L_23) < ((int32_t)L_25)))
{
goto IL_000f;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m3816765192_gshared (UnityEvent_1_t3832605257 * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_4((ObjectU5BU5D_t2843939325*)NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase__ctor_m1851535676((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m3158408092_gshared (UnityEvent_1_t3832605257 * __this, UnityAction_1_t3535781894 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t3535781894 * L_0 = ___call0;
BaseInvokableCall_t2703961024 * L_1 = (( BaseInvokableCall_t2703961024 * (*) (RuntimeObject * /* static, unused */, UnityAction_1_t3535781894 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (UnityAction_1_t3535781894 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_AddCall_m3539965410((UnityEventBase_t3960448221 *)__this, (BaseInvokableCall_t2703961024 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m1953458448_gshared (UnityEvent_1_t3832605257 * __this, UnityAction_1_t3535781894 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t3535781894 * L_0 = ___call0;
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
UnityAction_1_t3535781894 * L_2 = ___call0;
MethodInfo_t * L_3 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_RemoveListener_m3326364145((UnityEventBase_t3960448221 *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Int32>::FindMethod_Impl(System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m1397247356_gshared (UnityEvent_1_t3832605257 * __this, String_t* ___name0, RuntimeObject * ___targetObj1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_m1397247356_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
RuntimeObject * L_0 = ___targetObj1;
String_t* L_1 = ___name0;
TypeU5BU5D_t3940880105* L_2 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1));
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
MethodInfo_t * L_5 = UnityEventBase_GetValidMethodInfo_m3989987635(NULL /*static, unused*/, (RuntimeObject *)L_0, (String_t*)L_1, (TypeU5BU5D_t3940880105*)L_2, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_5;
goto IL_0021;
}
IL_0021:
{
MethodInfo_t * L_6 = V_0;
return L_6;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32>::GetDelegate(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m617150804_gshared (UnityEvent_1_t3832605257 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t3068109991 * L_2 = (InvokableCall_1_t3068109991 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3));
(( void (*) (InvokableCall_1_t3068109991 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
V_0 = (BaseInvokableCall_t2703961024 *)L_2;
goto IL_000e;
}
IL_000e:
{
BaseInvokableCall_t2703961024 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m2283422164_gshared (RuntimeObject * __this /* static, unused */, UnityAction_1_t3535781894 * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
UnityAction_1_t3535781894 * L_0 = ___action0;
InvokableCall_1_t3068109991 * L_1 = (InvokableCall_1_t3068109991 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t3068109991 *, UnityAction_1_t3535781894 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t3535781894 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
V_0 = (BaseInvokableCall_t2703961024 *)L_1;
goto IL_000d;
}
IL_000d:
{
BaseInvokableCall_t2703961024 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m3604335408_gshared (UnityEvent_1_t3832605257 * __this, int32_t ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m3604335408_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t4176035766 * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t3068109991 * V_2 = NULL;
InvokableCall_t832123510 * V_3 = NULL;
BaseInvokableCall_t2703961024 * V_4 = NULL;
{
NullCheck((UnityEventBase_t3960448221 *)__this);
List_1_t4176035766 * L_0 = UnityEventBase_PrepareInvoke_m1785382128((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
V_0 = (List_1_t4176035766 *)L_0;
V_1 = (int32_t)0;
goto IL_0091;
}
IL_000f:
{
List_1_t4176035766 * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_t4176035766 *)L_1);
BaseInvokableCall_t2703961024 * L_3 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_2 = (InvokableCall_1_t3068109991 *)((InvokableCall_1_t3068109991 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3)));
InvokableCall_1_t3068109991 * L_4 = V_2;
if (!L_4)
{
goto IL_002f;
}
}
{
InvokableCall_1_t3068109991 * L_5 = V_2;
int32_t L_6 = ___arg00;
NullCheck((InvokableCall_1_t3068109991 *)L_5);
VirtActionInvoker1< int32_t >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::Invoke(T1) */, (InvokableCall_1_t3068109991 *)L_5, (int32_t)L_6);
goto IL_008c;
}
IL_002f:
{
List_1_t4176035766 * L_7 = V_0;
int32_t L_8 = V_1;
NullCheck((List_1_t4176035766 *)L_7);
BaseInvokableCall_t2703961024 * L_9 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_7, (int32_t)L_8, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_3 = (InvokableCall_t832123510 *)((InvokableCall_t832123510 *)IsInst((RuntimeObject*)L_9, InvokableCall_t832123510_il2cpp_TypeInfo_var));
InvokableCall_t832123510 * L_10 = V_3;
if (!L_10)
{
goto IL_004e;
}
}
{
InvokableCall_t832123510 * L_11 = V_3;
NullCheck((InvokableCall_t832123510 *)L_11);
InvokableCall_Invoke_m1437964737((InvokableCall_t832123510 *)L_11, /*hidden argument*/NULL);
goto IL_008b;
}
IL_004e:
{
List_1_t4176035766 * L_12 = V_0;
int32_t L_13 = V_1;
NullCheck((List_1_t4176035766 *)L_12);
BaseInvokableCall_t2703961024 * L_14 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_12, (int32_t)L_13, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_4 = (BaseInvokableCall_t2703961024 *)L_14;
ObjectU5BU5D_t2843939325* L_15 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
if (L_15)
{
goto IL_006f;
}
}
{
__this->set_m_InvokeArray_4(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1)));
}
IL_006f:
{
ObjectU5BU5D_t2843939325* L_16 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
int32_t L_17 = ___arg00;
int32_t L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 7), &L_18);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_19);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_19);
BaseInvokableCall_t2703961024 * L_20 = V_4;
ObjectU5BU5D_t2843939325* L_21 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
NullCheck((BaseInvokableCall_t2703961024 *)L_20);
VirtActionInvoker1< ObjectU5BU5D_t2843939325* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_t2703961024 *)L_20, (ObjectU5BU5D_t2843939325*)L_21);
}
IL_008b:
{
}
IL_008c:
{
int32_t L_22 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
}
IL_0091:
{
int32_t L_23 = V_1;
List_1_t4176035766 * L_24 = V_0;
NullCheck((List_1_t4176035766 *)L_24);
int32_t L_25 = List_1_get_Count_m1245201994((List_1_t4176035766 *)L_24, /*hidden argument*/List_1_get_Count_m1245201994_RuntimeMethod_var);
if ((((int32_t)L_23) < ((int32_t)L_25)))
{
goto IL_000f;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityEvent`1<System.Object>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m1789019280_gshared (UnityEvent_1_t3961765668 * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_4((ObjectU5BU5D_t2843939325*)NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase__ctor_m1851535676((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Object>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m3703050950_gshared (UnityEvent_1_t3961765668 * __this, UnityAction_1_t3664942305 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t3664942305 * L_0 = ___call0;
BaseInvokableCall_t2703961024 * L_1 = (( BaseInvokableCall_t2703961024 * (*) (RuntimeObject * /* static, unused */, UnityAction_1_t3664942305 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (UnityAction_1_t3664942305 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_AddCall_m3539965410((UnityEventBase_t3960448221 *)__this, (BaseInvokableCall_t2703961024 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Object>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m4140584754_gshared (UnityEvent_1_t3961765668 * __this, UnityAction_1_t3664942305 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t3664942305 * L_0 = ___call0;
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
UnityAction_1_t3664942305 * L_2 = ___call0;
MethodInfo_t * L_3 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_RemoveListener_m3326364145((UnityEventBase_t3960448221 *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Object>::FindMethod_Impl(System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m322741469_gshared (UnityEvent_1_t3961765668 * __this, String_t* ___name0, RuntimeObject * ___targetObj1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_m322741469_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
RuntimeObject * L_0 = ___targetObj1;
String_t* L_1 = ___name0;
TypeU5BU5D_t3940880105* L_2 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1));
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
MethodInfo_t * L_5 = UnityEventBase_GetValidMethodInfo_m3989987635(NULL /*static, unused*/, (RuntimeObject *)L_0, (String_t*)L_1, (TypeU5BU5D_t3940880105*)L_2, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_5;
goto IL_0021;
}
IL_0021:
{
MethodInfo_t * L_6 = V_0;
return L_6;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m1223269239_gshared (UnityEvent_1_t3961765668 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t3197270402 * L_2 = (InvokableCall_1_t3197270402 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3));
(( void (*) (InvokableCall_1_t3197270402 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
V_0 = (BaseInvokableCall_t2703961024 *)L_2;
goto IL_000e;
}
IL_000e:
{
BaseInvokableCall_t2703961024 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Object>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m1604725783_gshared (RuntimeObject * __this /* static, unused */, UnityAction_1_t3664942305 * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
UnityAction_1_t3664942305 * L_0 = ___action0;
InvokableCall_1_t3197270402 * L_1 = (InvokableCall_1_t3197270402 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t3197270402 *, UnityAction_1_t3664942305 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t3664942305 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
V_0 = (BaseInvokableCall_t2703961024 *)L_1;
goto IL_000d;
}
IL_000d:
{
BaseInvokableCall_t2703961024 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Object>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m2734859485_gshared (UnityEvent_1_t3961765668 * __this, RuntimeObject * ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m2734859485_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t4176035766 * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t3197270402 * V_2 = NULL;
InvokableCall_t832123510 * V_3 = NULL;
BaseInvokableCall_t2703961024 * V_4 = NULL;
{
NullCheck((UnityEventBase_t3960448221 *)__this);
List_1_t4176035766 * L_0 = UnityEventBase_PrepareInvoke_m1785382128((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
V_0 = (List_1_t4176035766 *)L_0;
V_1 = (int32_t)0;
goto IL_0091;
}
IL_000f:
{
List_1_t4176035766 * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_t4176035766 *)L_1);
BaseInvokableCall_t2703961024 * L_3 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_2 = (InvokableCall_1_t3197270402 *)((InvokableCall_1_t3197270402 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3)));
InvokableCall_1_t3197270402 * L_4 = V_2;
if (!L_4)
{
goto IL_002f;
}
}
{
InvokableCall_1_t3197270402 * L_5 = V_2;
RuntimeObject * L_6 = ___arg00;
NullCheck((InvokableCall_1_t3197270402 *)L_5);
VirtActionInvoker1< RuntimeObject * >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::Invoke(T1) */, (InvokableCall_1_t3197270402 *)L_5, (RuntimeObject *)L_6);
goto IL_008c;
}
IL_002f:
{
List_1_t4176035766 * L_7 = V_0;
int32_t L_8 = V_1;
NullCheck((List_1_t4176035766 *)L_7);
BaseInvokableCall_t2703961024 * L_9 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_7, (int32_t)L_8, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_3 = (InvokableCall_t832123510 *)((InvokableCall_t832123510 *)IsInst((RuntimeObject*)L_9, InvokableCall_t832123510_il2cpp_TypeInfo_var));
InvokableCall_t832123510 * L_10 = V_3;
if (!L_10)
{
goto IL_004e;
}
}
{
InvokableCall_t832123510 * L_11 = V_3;
NullCheck((InvokableCall_t832123510 *)L_11);
InvokableCall_Invoke_m1437964737((InvokableCall_t832123510 *)L_11, /*hidden argument*/NULL);
goto IL_008b;
}
IL_004e:
{
List_1_t4176035766 * L_12 = V_0;
int32_t L_13 = V_1;
NullCheck((List_1_t4176035766 *)L_12);
BaseInvokableCall_t2703961024 * L_14 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_12, (int32_t)L_13, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_4 = (BaseInvokableCall_t2703961024 *)L_14;
ObjectU5BU5D_t2843939325* L_15 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
if (L_15)
{
goto IL_006f;
}
}
{
__this->set_m_InvokeArray_4(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1)));
}
IL_006f:
{
ObjectU5BU5D_t2843939325* L_16 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
RuntimeObject * L_17 = ___arg00;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_17);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_17);
BaseInvokableCall_t2703961024 * L_18 = V_4;
ObjectU5BU5D_t2843939325* L_19 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
NullCheck((BaseInvokableCall_t2703961024 *)L_18);
VirtActionInvoker1< ObjectU5BU5D_t2843939325* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_t2703961024 *)L_18, (ObjectU5BU5D_t2843939325*)L_19);
}
IL_008b:
{
}
IL_008c:
{
int32_t L_20 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_0091:
{
int32_t L_21 = V_1;
List_1_t4176035766 * L_22 = V_0;
NullCheck((List_1_t4176035766 *)L_22);
int32_t L_23 = List_1_get_Count_m1245201994((List_1_t4176035766 *)L_22, /*hidden argument*/List_1_get_Count_m1245201994_RuntimeMethod_var);
if ((((int32_t)L_21) < ((int32_t)L_23)))
{
goto IL_000f;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m2218582587_gshared (UnityEvent_1_t2278926278 * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_4((ObjectU5BU5D_t2843939325*)NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase__ctor_m1851535676((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m3008008915_gshared (UnityEvent_1_t2278926278 * __this, UnityAction_1_t1982102915 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t1982102915 * L_0 = ___call0;
BaseInvokableCall_t2703961024 * L_1 = (( BaseInvokableCall_t2703961024 * (*) (RuntimeObject * /* static, unused */, UnityAction_1_t1982102915 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (UnityAction_1_t1982102915 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_AddCall_m3539965410((UnityEventBase_t3960448221 *)__this, (BaseInvokableCall_t2703961024 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m4190968495_gshared (UnityEvent_1_t2278926278 * __this, UnityAction_1_t1982102915 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t1982102915 * L_0 = ___call0;
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
UnityAction_1_t1982102915 * L_2 = ___call0;
MethodInfo_t * L_3 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_RemoveListener_m3326364145((UnityEventBase_t3960448221 *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Single>::FindMethod_Impl(System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m555893253_gshared (UnityEvent_1_t2278926278 * __this, String_t* ___name0, RuntimeObject * ___targetObj1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_m555893253_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
RuntimeObject * L_0 = ___targetObj1;
String_t* L_1 = ___name0;
TypeU5BU5D_t3940880105* L_2 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1));
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
MethodInfo_t * L_5 = UnityEventBase_GetValidMethodInfo_m3989987635(NULL /*static, unused*/, (RuntimeObject *)L_0, (String_t*)L_1, (TypeU5BU5D_t3940880105*)L_2, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_5;
goto IL_0021;
}
IL_0021:
{
MethodInfo_t * L_6 = V_0;
return L_6;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Single>::GetDelegate(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m1597732310_gshared (UnityEvent_1_t2278926278 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t1514431012 * L_2 = (InvokableCall_1_t1514431012 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3));
(( void (*) (InvokableCall_1_t1514431012 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
V_0 = (BaseInvokableCall_t2703961024 *)L_2;
goto IL_000e;
}
IL_000e:
{
BaseInvokableCall_t2703961024 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Single>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m25714567_gshared (RuntimeObject * __this /* static, unused */, UnityAction_1_t1982102915 * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
UnityAction_1_t1982102915 * L_0 = ___action0;
InvokableCall_1_t1514431012 * L_1 = (InvokableCall_1_t1514431012 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t1514431012 *, UnityAction_1_t1982102915 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t1982102915 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
V_0 = (BaseInvokableCall_t2703961024 *)L_1;
goto IL_000d;
}
IL_000d:
{
BaseInvokableCall_t2703961024 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m3400677460_gshared (UnityEvent_1_t2278926278 * __this, float ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m3400677460_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t4176035766 * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t1514431012 * V_2 = NULL;
InvokableCall_t832123510 * V_3 = NULL;
BaseInvokableCall_t2703961024 * V_4 = NULL;
{
NullCheck((UnityEventBase_t3960448221 *)__this);
List_1_t4176035766 * L_0 = UnityEventBase_PrepareInvoke_m1785382128((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
V_0 = (List_1_t4176035766 *)L_0;
V_1 = (int32_t)0;
goto IL_0091;
}
IL_000f:
{
List_1_t4176035766 * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_t4176035766 *)L_1);
BaseInvokableCall_t2703961024 * L_3 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_2 = (InvokableCall_1_t1514431012 *)((InvokableCall_1_t1514431012 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3)));
InvokableCall_1_t1514431012 * L_4 = V_2;
if (!L_4)
{
goto IL_002f;
}
}
{
InvokableCall_1_t1514431012 * L_5 = V_2;
float L_6 = ___arg00;
NullCheck((InvokableCall_1_t1514431012 *)L_5);
VirtActionInvoker1< float >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::Invoke(T1) */, (InvokableCall_1_t1514431012 *)L_5, (float)L_6);
goto IL_008c;
}
IL_002f:
{
List_1_t4176035766 * L_7 = V_0;
int32_t L_8 = V_1;
NullCheck((List_1_t4176035766 *)L_7);
BaseInvokableCall_t2703961024 * L_9 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_7, (int32_t)L_8, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_3 = (InvokableCall_t832123510 *)((InvokableCall_t832123510 *)IsInst((RuntimeObject*)L_9, InvokableCall_t832123510_il2cpp_TypeInfo_var));
InvokableCall_t832123510 * L_10 = V_3;
if (!L_10)
{
goto IL_004e;
}
}
{
InvokableCall_t832123510 * L_11 = V_3;
NullCheck((InvokableCall_t832123510 *)L_11);
InvokableCall_Invoke_m1437964737((InvokableCall_t832123510 *)L_11, /*hidden argument*/NULL);
goto IL_008b;
}
IL_004e:
{
List_1_t4176035766 * L_12 = V_0;
int32_t L_13 = V_1;
NullCheck((List_1_t4176035766 *)L_12);
BaseInvokableCall_t2703961024 * L_14 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_12, (int32_t)L_13, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_4 = (BaseInvokableCall_t2703961024 *)L_14;
ObjectU5BU5D_t2843939325* L_15 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
if (L_15)
{
goto IL_006f;
}
}
{
__this->set_m_InvokeArray_4(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1)));
}
IL_006f:
{
ObjectU5BU5D_t2843939325* L_16 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
float L_17 = ___arg00;
float L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 7), &L_18);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_19);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_19);
BaseInvokableCall_t2703961024 * L_20 = V_4;
ObjectU5BU5D_t2843939325* L_21 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
NullCheck((BaseInvokableCall_t2703961024 *)L_20);
VirtActionInvoker1< ObjectU5BU5D_t2843939325* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_t2703961024 *)L_20, (ObjectU5BU5D_t2843939325*)L_21);
}
IL_008b:
{
}
IL_008c:
{
int32_t L_22 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
}
IL_0091:
{
int32_t L_23 = V_1;
List_1_t4176035766 * L_24 = V_0;
NullCheck((List_1_t4176035766 *)L_24);
int32_t L_25 = List_1_get_Count_m1245201994((List_1_t4176035766 *)L_24, /*hidden argument*/List_1_get_Count_m1245201994_RuntimeMethod_var);
if ((((int32_t)L_23) < ((int32_t)L_25)))
{
goto IL_000f;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m1293792034_gshared (UnityEvent_1_t3437345828 * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_4((ObjectU5BU5D_t2843939325*)NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase__ctor_m1851535676((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m1590149461_gshared (UnityEvent_1_t3437345828 * __this, UnityAction_1_t3140522465 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t3140522465 * L_0 = ___call0;
BaseInvokableCall_t2703961024 * L_1 = (( BaseInvokableCall_t2703961024 * (*) (RuntimeObject * /* static, unused */, UnityAction_1_t3140522465 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (UnityAction_1_t3140522465 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_AddCall_m3539965410((UnityEventBase_t3960448221 *)__this, (BaseInvokableCall_t2703961024 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m2625750952_gshared (UnityEvent_1_t3437345828 * __this, UnityAction_1_t3140522465 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t3140522465 * L_0 = ___call0;
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
UnityAction_1_t3140522465 * L_2 = ___call0;
MethodInfo_t * L_3 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_RemoveListener_m3326364145((UnityEventBase_t3960448221 *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::FindMethod_Impl(System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m1420160216_gshared (UnityEvent_1_t3437345828 * __this, String_t* ___name0, RuntimeObject * ___targetObj1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_m1420160216_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
RuntimeObject * L_0 = ___targetObj1;
String_t* L_1 = ___name0;
TypeU5BU5D_t3940880105* L_2 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1));
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
MethodInfo_t * L_5 = UnityEventBase_GetValidMethodInfo_m3989987635(NULL /*static, unused*/, (RuntimeObject *)L_0, (String_t*)L_1, (TypeU5BU5D_t3940880105*)L_2, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_5;
goto IL_0021;
}
IL_0021:
{
MethodInfo_t * L_6 = V_0;
return L_6;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::GetDelegate(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m1771043166_gshared (UnityEvent_1_t3437345828 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t2672850562 * L_2 = (InvokableCall_1_t2672850562 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3));
(( void (*) (InvokableCall_1_t2672850562 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
V_0 = (BaseInvokableCall_t2703961024 *)L_2;
goto IL_000e;
}
IL_000e:
{
BaseInvokableCall_t2703961024 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m274387680_gshared (RuntimeObject * __this /* static, unused */, UnityAction_1_t3140522465 * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
UnityAction_1_t3140522465 * L_0 = ___action0;
InvokableCall_1_t2672850562 * L_1 = (InvokableCall_1_t2672850562 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t2672850562 *, UnityAction_1_t3140522465 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t3140522465 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
V_0 = (BaseInvokableCall_t2703961024 *)L_1;
goto IL_000d;
}
IL_000d:
{
BaseInvokableCall_t2703961024 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m3884411426_gshared (UnityEvent_1_t3437345828 * __this, Color_t2555686324 ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m3884411426_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t4176035766 * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t2672850562 * V_2 = NULL;
InvokableCall_t832123510 * V_3 = NULL;
BaseInvokableCall_t2703961024 * V_4 = NULL;
{
NullCheck((UnityEventBase_t3960448221 *)__this);
List_1_t4176035766 * L_0 = UnityEventBase_PrepareInvoke_m1785382128((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
V_0 = (List_1_t4176035766 *)L_0;
V_1 = (int32_t)0;
goto IL_0091;
}
IL_000f:
{
List_1_t4176035766 * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_t4176035766 *)L_1);
BaseInvokableCall_t2703961024 * L_3 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_2 = (InvokableCall_1_t2672850562 *)((InvokableCall_1_t2672850562 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3)));
InvokableCall_1_t2672850562 * L_4 = V_2;
if (!L_4)
{
goto IL_002f;
}
}
{
InvokableCall_1_t2672850562 * L_5 = V_2;
Color_t2555686324 L_6 = ___arg00;
NullCheck((InvokableCall_1_t2672850562 *)L_5);
VirtActionInvoker1< Color_t2555686324 >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::Invoke(T1) */, (InvokableCall_1_t2672850562 *)L_5, (Color_t2555686324 )L_6);
goto IL_008c;
}
IL_002f:
{
List_1_t4176035766 * L_7 = V_0;
int32_t L_8 = V_1;
NullCheck((List_1_t4176035766 *)L_7);
BaseInvokableCall_t2703961024 * L_9 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_7, (int32_t)L_8, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_3 = (InvokableCall_t832123510 *)((InvokableCall_t832123510 *)IsInst((RuntimeObject*)L_9, InvokableCall_t832123510_il2cpp_TypeInfo_var));
InvokableCall_t832123510 * L_10 = V_3;
if (!L_10)
{
goto IL_004e;
}
}
{
InvokableCall_t832123510 * L_11 = V_3;
NullCheck((InvokableCall_t832123510 *)L_11);
InvokableCall_Invoke_m1437964737((InvokableCall_t832123510 *)L_11, /*hidden argument*/NULL);
goto IL_008b;
}
IL_004e:
{
List_1_t4176035766 * L_12 = V_0;
int32_t L_13 = V_1;
NullCheck((List_1_t4176035766 *)L_12);
BaseInvokableCall_t2703961024 * L_14 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_12, (int32_t)L_13, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_4 = (BaseInvokableCall_t2703961024 *)L_14;
ObjectU5BU5D_t2843939325* L_15 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
if (L_15)
{
goto IL_006f;
}
}
{
__this->set_m_InvokeArray_4(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1)));
}
IL_006f:
{
ObjectU5BU5D_t2843939325* L_16 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
Color_t2555686324 L_17 = ___arg00;
Color_t2555686324 L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 7), &L_18);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_19);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_19);
BaseInvokableCall_t2703961024 * L_20 = V_4;
ObjectU5BU5D_t2843939325* L_21 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
NullCheck((BaseInvokableCall_t2703961024 *)L_20);
VirtActionInvoker1< ObjectU5BU5D_t2843939325* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_t2703961024 *)L_20, (ObjectU5BU5D_t2843939325*)L_21);
}
IL_008b:
{
}
IL_008c:
{
int32_t L_22 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
}
IL_0091:
{
int32_t L_23 = V_1;
List_1_t4176035766 * L_24 = V_0;
NullCheck((List_1_t4176035766 *)L_24);
int32_t L_25 = List_1_get_Count_m1245201994((List_1_t4176035766 *)L_24, /*hidden argument*/List_1_get_Count_m1245201994_RuntimeMethod_var);
if ((((int32_t)L_23) < ((int32_t)L_25)))
{
goto IL_000f;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m3675246889_gshared (UnityEvent_1_t3037889027 * __this, const RuntimeMethod* method)
{
{
__this->set_m_InvokeArray_4((ObjectU5BU5D_t2843939325*)NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase__ctor_m1851535676((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m213733913_gshared (UnityEvent_1_t3037889027 * __this, UnityAction_1_t2741065664 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t2741065664 * L_0 = ___call0;
BaseInvokableCall_t2703961024 * L_1 = (( BaseInvokableCall_t2703961024 * (*) (RuntimeObject * /* static, unused */, UnityAction_1_t2741065664 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (UnityAction_1_t2741065664 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_AddCall_m3539965410((UnityEventBase_t3960448221 *)__this, (BaseInvokableCall_t2703961024 *)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_RemoveListener_m3496608666_gshared (UnityEvent_1_t3037889027 * __this, UnityAction_1_t2741065664 * ___call0, const RuntimeMethod* method)
{
{
UnityAction_1_t2741065664 * L_0 = ___call0;
NullCheck((Delegate_t1188392813 *)L_0);
RuntimeObject * L_1 = Delegate_get_Target_m2361978888((Delegate_t1188392813 *)L_0, /*hidden argument*/NULL);
UnityAction_1_t2741065664 * L_2 = ___call0;
MethodInfo_t * L_3 = NetFxCoreExtensions_GetMethodInfo_m444570327(NULL /*static, unused*/, (Delegate_t1188392813 *)L_2, /*hidden argument*/NULL);
NullCheck((UnityEventBase_t3960448221 *)__this);
UnityEventBase_RemoveListener_m3326364145((UnityEventBase_t3960448221 *)__this, (RuntimeObject *)L_1, (MethodInfo_t *)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::FindMethod_Impl(System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * UnityEvent_1_FindMethod_Impl_m2325208510_gshared (UnityEvent_1_t3037889027 * __this, String_t* ___name0, RuntimeObject * ___targetObj1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_FindMethod_Impl_m2325208510_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
{
RuntimeObject * L_0 = ___targetObj1;
String_t* L_1 = ___name0;
TypeU5BU5D_t3940880105* L_2 = (TypeU5BU5D_t3940880105*)((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1));
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->declaring_type->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
MethodInfo_t * L_5 = UnityEventBase_GetValidMethodInfo_m3989987635(NULL /*static, unused*/, (RuntimeObject *)L_0, (String_t*)L_1, (TypeU5BU5D_t3940880105*)L_2, /*hidden argument*/NULL);
V_0 = (MethodInfo_t *)L_5;
goto IL_0021;
}
IL_0021:
{
MethodInfo_t * L_6 = V_0;
return L_6;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::GetDelegate(System.Object,System.Reflection.MethodInfo)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m2226801754_gshared (UnityEvent_1_t3037889027 * __this, RuntimeObject * ___target0, MethodInfo_t * ___theFunction1, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
RuntimeObject * L_0 = ___target0;
MethodInfo_t * L_1 = ___theFunction1;
InvokableCall_1_t2273393761 * L_2 = (InvokableCall_1_t2273393761 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3));
(( void (*) (InvokableCall_1_t2273393761 *, RuntimeObject *, MethodInfo_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4)->methodPointer)(L_2, (RuntimeObject *)L_0, (MethodInfo_t *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 4));
V_0 = (BaseInvokableCall_t2703961024 *)L_2;
goto IL_000e;
}
IL_000e:
{
BaseInvokableCall_t2703961024 * L_3 = V_0;
return L_3;
}
}
// UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>)
extern "C" IL2CPP_METHOD_ATTR BaseInvokableCall_t2703961024 * UnityEvent_1_GetDelegate_m2265966113_gshared (RuntimeObject * __this /* static, unused */, UnityAction_1_t2741065664 * ___action0, const RuntimeMethod* method)
{
BaseInvokableCall_t2703961024 * V_0 = NULL;
{
UnityAction_1_t2741065664 * L_0 = ___action0;
InvokableCall_1_t2273393761 * L_1 = (InvokableCall_1_t2273393761 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 3));
(( void (*) (InvokableCall_1_t2273393761 *, UnityAction_1_t2741065664 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5)->methodPointer)(L_1, (UnityAction_1_t2741065664 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 5));
V_0 = (BaseInvokableCall_t2703961024 *)L_1;
goto IL_000d;
}
IL_000d:
{
BaseInvokableCall_t2703961024 * L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::Invoke(T0)
extern "C" IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m3432495026_gshared (UnityEvent_1_t3037889027 * __this, Vector2_t2156229523 ___arg00, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityEvent_1_Invoke_m3432495026_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t4176035766 * V_0 = NULL;
int32_t V_1 = 0;
InvokableCall_1_t2273393761 * V_2 = NULL;
InvokableCall_t832123510 * V_3 = NULL;
BaseInvokableCall_t2703961024 * V_4 = NULL;
{
NullCheck((UnityEventBase_t3960448221 *)__this);
List_1_t4176035766 * L_0 = UnityEventBase_PrepareInvoke_m1785382128((UnityEventBase_t3960448221 *)__this, /*hidden argument*/NULL);
V_0 = (List_1_t4176035766 *)L_0;
V_1 = (int32_t)0;
goto IL_0091;
}
IL_000f:
{
List_1_t4176035766 * L_1 = V_0;
int32_t L_2 = V_1;
NullCheck((List_1_t4176035766 *)L_1);
BaseInvokableCall_t2703961024 * L_3 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_1, (int32_t)L_2, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_2 = (InvokableCall_1_t2273393761 *)((InvokableCall_1_t2273393761 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3)));
InvokableCall_1_t2273393761 * L_4 = V_2;
if (!L_4)
{
goto IL_002f;
}
}
{
InvokableCall_1_t2273393761 * L_5 = V_2;
Vector2_t2156229523 L_6 = ___arg00;
NullCheck((InvokableCall_1_t2273393761 *)L_5);
VirtActionInvoker1< Vector2_t2156229523 >::Invoke(6 /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::Invoke(T1) */, (InvokableCall_1_t2273393761 *)L_5, (Vector2_t2156229523 )L_6);
goto IL_008c;
}
IL_002f:
{
List_1_t4176035766 * L_7 = V_0;
int32_t L_8 = V_1;
NullCheck((List_1_t4176035766 *)L_7);
BaseInvokableCall_t2703961024 * L_9 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_7, (int32_t)L_8, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_3 = (InvokableCall_t832123510 *)((InvokableCall_t832123510 *)IsInst((RuntimeObject*)L_9, InvokableCall_t832123510_il2cpp_TypeInfo_var));
InvokableCall_t832123510 * L_10 = V_3;
if (!L_10)
{
goto IL_004e;
}
}
{
InvokableCall_t832123510 * L_11 = V_3;
NullCheck((InvokableCall_t832123510 *)L_11);
InvokableCall_Invoke_m1437964737((InvokableCall_t832123510 *)L_11, /*hidden argument*/NULL);
goto IL_008b;
}
IL_004e:
{
List_1_t4176035766 * L_12 = V_0;
int32_t L_13 = V_1;
NullCheck((List_1_t4176035766 *)L_12);
BaseInvokableCall_t2703961024 * L_14 = List_1_get_Item_m4156046467((List_1_t4176035766 *)L_12, (int32_t)L_13, /*hidden argument*/List_1_get_Item_m4156046467_RuntimeMethod_var);
V_4 = (BaseInvokableCall_t2703961024 *)L_14;
ObjectU5BU5D_t2843939325* L_15 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
if (L_15)
{
goto IL_006f;
}
}
{
__this->set_m_InvokeArray_4(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1)));
}
IL_006f:
{
ObjectU5BU5D_t2843939325* L_16 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
Vector2_t2156229523 L_17 = ___arg00;
Vector2_t2156229523 L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 7), &L_18);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_19);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_19);
BaseInvokableCall_t2703961024 * L_20 = V_4;
ObjectU5BU5D_t2843939325* L_21 = (ObjectU5BU5D_t2843939325*)__this->get_m_InvokeArray_4();
NullCheck((BaseInvokableCall_t2703961024 *)L_20);
VirtActionInvoker1< ObjectU5BU5D_t2843939325* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, (BaseInvokableCall_t2703961024 *)L_20, (ObjectU5BU5D_t2843939325*)L_21);
}
IL_008b:
{
}
IL_008c:
{
int32_t L_22 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
}
IL_0091:
{
int32_t L_23 = V_1;
List_1_t4176035766 * L_24 = V_0;
NullCheck((List_1_t4176035766 *)L_24);
int32_t L_25 = List_1_get_Count_m1245201994((List_1_t4176035766 *)L_24, /*hidden argument*/List_1_get_Count_m1245201994_RuntimeMethod_var);
if ((((int32_t)L_23) < ((int32_t)L_25)))
{
goto IL_000f;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"eirivaa@ntnu.no"
] | eirivaa@ntnu.no |
30061b97c0aaa092185ccb3d34eb7671c70bd99f | d8d7b24fe9a872039e9c1414a25405e4db8f69ca | /engine-jni/src/main/cpp/libengine-jni.cpp | c1ba5ccc30ecff0cc3f41d5392d4d5d0e1e8071a | [] | no_license | 4ntoine/JniBenchmarking | ffa64729acd34915c5fc97f9e7b70b9e18de6a5e | cf92ef508c146ae27fa60d890ba50592a5406a80 | refs/heads/master | 2023-02-17T05:04:42.589062 | 2021-01-19T10:36:23 | 2021-01-19T10:36:23 | 321,945,418 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,309 | cpp | /*
* This file is part of Adblock Plus <https://adblockplus.org/>,
* Copyright (C) 2006-present eyeo GmbH
*
* Adblock Plus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* Adblock Plus is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
#include <string>
#include <vector>
#include <Engine.h>
#include <Utils.h>
// precached in JNI_OnLoad and released in JNI_OnUnload
JniGlobalReference<jclass>* blockingFilterClass;
jmethodID blockingFilterCtor;
std::vector<std::string> listedSubscriptions;
void JniEngine_OnLoad(JavaVM* vm, JNIEnv* env, void* reserved)
{
blockingFilterClass = new JniGlobalReference<jclass>(env,
env->FindClass("com/eyeo/ctu/engine/jni/BlockingFilter"));
blockingFilterCtor = env->GetMethodID(blockingFilterClass->Get(), "<init>", "(J)V");
}
void JniEngine_OnUnload(JavaVM* vm, JNIEnv* env, void* reserved)
{
if (blockingFilterClass)
{
delete blockingFilterClass;
blockingFilterClass = nullptr;
}
}
jint JNI_OnLoad(JavaVM* vm, void* reserved)
{
JNIEnv* env;
if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION) != JNI_OK)
{
return JNI_ERR;
}
JniUtils_OnLoad(vm, env, reserved);
JniEngine_OnLoad(vm, env, reserved);
listedSubscriptions.push_back("https://easylist-downloads.adblockplus.org/easylist.txt");
listedSubscriptions.push_back("https://easylist-downloads.adblockplus.org/ruadlist+easylist.txt");
return JNI_VERSION;
}
void JNI_OnUnload(JavaVM* vm, void* reserved)
{
JNIEnv* env;
if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION) != JNI_OK)
{
return;
}
JniEngine_OnUnload(vm, env, reserved);
JniUtils_OnUnload(vm, env, reserved);
}
// ---
Engine engine;
extern "C"
JNIEXPORT jobject JNICALL
Java_com_eyeo_ctu_engine_jni_Engine_matches(JNIEnv *env,
jobject thiz,
jstring jUrl,
jobject jContentTypes,
jobject jDocumentUrls,
jstring jSitekey,
jboolean jSpecificOnly)
{
// 1. map jni types to std types
auto url = JniJavaToStdString(env, jUrl);
auto contentTypes = 1; // for simplicity (not mapped from `jContentTypes`)
auto documentUrls = JavaStringListToStringVector(env, jDocumentUrls);
auto sitekey = JniJavaToStdString(env, jSitekey);
auto specificOnly = (jSpecificOnly == JNI_TRUE);
// 2. process
auto filter = engine.matches(url, contentTypes, documentUrls, sitekey, specificOnly);
// 3. map back from std to jni type
jobject jFilter = env->NewObject(blockingFilterClass->Get(), blockingFilterCtor, filter->pointer());
delete filter;
return jFilter;
} | [
"a.smirnov@eyeo.com"
] | a.smirnov@eyeo.com |
16a4dd7e9e39cd7f6267bcede9b666f5bace5fa8 | 528ee918965777e76a6c19395c32bc82c816d061 | /2_курс/технологии_программирования/7/7-1.cpp | be410a112a78c6b32a999415c930711821153ccf | [] | no_license | sprnik/labs | 1e587aa8c4e616bf0e3a1ac762bdd6f3968f5b6a | b6a7e08907548d35f9a7bb39b27cca0d4c5b1400 | refs/heads/main | 2023-09-01T08:14:37.273044 | 2021-10-27T14:49:26 | 2021-10-27T14:49:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 849 | cpp | #include <iostream>
#include <algorithm>
#include <string>
#include <cctype>
/*
English alphabet:
abcdefghijklmnopqrstuvwxyz
ABCDEFGHIJKLMNOPQRSTUVWXYZ
*/
bool is_vowel(int j)
{
std::string vowels = "aeouiAEOUI";
return vowels.find(j) != std::string::npos;
}
bool is_consonant(int j)
{
std::string consonant = "bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ";
return consonant.find(j) != std::string::npos;
}
int main()
{
std::string text;
std::getline(std::cin, text);
std::cout << "Vowels:" << count_if(text.begin(), text.end(), is_vowel) << "\n";
std::cout << "Consonant:" << count_if(text.begin(), text.end(), is_consonant) << "\n";
std::cout << "Upper:" << count_if(text.begin(), text.end(), isupper) << "\n";
std::cout << "Lower:" << count_if(text.begin(), text.end(), islower) << "\n";
return 0;
}
| [
"45306973+mrgick@users.noreply.github.com"
] | 45306973+mrgick@users.noreply.github.com |
1f090dceea7991590be7e0df7b46caf20999ab08 | 8ccd168f6b5c5ac8fa52bd0c5f01362f8e6a78b4 | /VANET/AccessPoint.h | 6544b965a7dc1478b3c74db5f39bea59b87054da | [] | no_license | JustWhit/Net3VanetSim | 7a7b63536a8cd1226ad21efe77a8b68cdc9d8deb | 819d6923884a507300603cade05971cec494387f | refs/heads/master | 2020-05-19T02:52:49.326099 | 2019-05-03T16:49:19 | 2019-05-03T16:49:19 | 184,789,181 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,005 | h | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: AccessPoint.h
* Author: ninjagaiden
*
* Created on April 10, 2019, 7:12 PM
*/
#ifndef ACCESSPOINT_H
#define ACCESSPOINT_H
#include "ns3/core-module.h"
#include "ns3/yans-wifi-helper.h"
#include "ns3/wave-helper.h"
//#include "ns3/yans-wave-helper.h"
#include "ns3/ocb-wifi-mac.h"
#include "ns3/wifi-80211p-helper.h"
#include "ns3/wave-mac-helper.h"
using namespace ns3;
class AccessPoint{
public:
NodeContainer Node;
YansWavePhyHelper wavePhy;
Ptr<YansWifiChannel> channel;
YansWifiChannelHelper wifiChannel;
bool verbose;
NetDeviceContainer device;
int Type;
AccessPoint();
AccessPoint(bool verbose);
void setType(int type){
this->Type=type;
}
int getType(){
return this->Type;
}
};
#endif /* ACCESSPOINT_H */
| [
"noreply@github.com"
] | noreply@github.com |
eeca2c61b79d52238a2af13b895764c9823d1699 | 4581f3dac9941a4e67c74c7e735c6d0a6cb1d9e9 | /codeforces/checkPalindromeBinary.cpp | ac76c8abd6b0131df601968c52f5996837728c08 | [] | no_license | kc-karan/My-Competitive-Coding-Journey | 9cf9c6ec150975f05609b845aaa5a6e8a3f2d6d8 | a0e2139bfb7bf1b06695bc4ae8f6e61b41da13da | refs/heads/master | 2023-06-25T21:55:58.718647 | 2021-07-29T09:20:03 | 2021-07-29T09:20:03 | 390,666,718 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 758 | cpp | #include<bits/stdc++.h>
using namespace std;
#define IO ios::sync_with_stdio(0); cin.tie(NULL)
#define MOD 1000000007
#define MAX 1000001
#define ll long long
#define nl cout << "\n"
#define mp make_pair
#define fi first
#define se second
#define dbg cout << "Debug...\n"
#define prt(a) cout << a << "\n"
#define vi vector<int>
#define vb vector<bool>
#define w_is(a) cerr << #a << " " << a << "\n";
#define ull unsigned long long
#define vl vector<ll>
#define pb push_back
bool checkPalindrome(int num) {
int len = 0;
while((1<<len) <= num)
{
len++;
}
len--;
cout << len << endl;
return false;
}
int main() {
IO;
int num;
cin >> num;
prt(checkPalindrome(num));
return 0;
} | [
"kc02072000@gmail.com"
] | kc02072000@gmail.com |
e62756985cbf22e2c55abd2d099f58bc47896d40 | c5abcc4ea4d670cbf2322725caa54892ed041d5b | /solving problem/TC/604_Div2_250.cpp | 453c8e6753b7c43a2d2fecf7f6f9ce1176139998 | [] | no_license | sngvahmed/Problem | c2682f1b24ca61d090030a5e9fae55346c525b6e | b7dc0a8b94a054ce2e7f4e881c176277c5afda31 | refs/heads/master | 2020-04-06T04:01:36.419414 | 2015-03-10T20:29:22 | 2015-03-10T20:29:22 | 25,265,073 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,844 | cpp | #include <cstring>
#include <string.h>
#include <map>
#include <deque>
#include <queue>
#include <stack>
#include <sstream>
#include <bitset>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <fstream>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <algorithm>
#include <vector>
#include <set>
#include <complex>
#include <list>
#include <valarray>
#include <memory.h>
#include <climits>
#include <math.h>
using namespace std;
#define FO(i, a, x) for(int i = a; i < (int)x; i++)
#define FOR(i, x) FO(i, 0, x)
#define RO(i, a, x) for(int i = a; i >= x; i--)
#define ROF(i, x) for(int i = x; i >= 0; i--)
#define FORIT(it, x) for(typeof(x.begin()) it = x.begin(); it != x.end(); it++)
#define FOUND(s, x) find(all(s), x) != s.end()
#define NOTFOUND(s, x) find(all(s), x) == s.end()
#define SZ(x) (int)x.size()
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define pii pair<int, int>
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define MMS(x, v) memset(x, v, sizeof(x))
#define SQ(x) (x) * (x)
typedef long long ll;
typedef unsigned long long ull;
typedef unsigned long ul;
typedef vector<string> vs;
typedef vector<int> vi;
int di[] = { 0, 0, 1, -1, 1, -1, 1, -1 };
int dj[] = { 1, -1, 0, 0, 1, -1, -1, 1 };
string str = "ABCDEF ";
int lvl = -1;
map<pair<string, string>, int> vis;
class FoxAndWord {
public:
int howManyPairs(vector<string> wd) {
int ret = 0;
FO(i,0,SZ(wd)) {
FO(r,i+1,SZ(wd)) {
if (r == i)
continue;
bool ch = 0;
FO(n, 1, SZ(wd[i])) {
string st1, st2;
st1 = st2 = wd[i];
st1 = st1.substr(0, n), st2 = st2.substr(n, SZ(st2));
cout << st1 << " " << st2 << endl;
if (st2 + st1 == wd[r]) {
ch = 1;
break;
}
}
if (ch) {
ret++;
}
}
}
return ret;
}
};
| [
"ahmednasser1993@gmail.com"
] | ahmednasser1993@gmail.com |
5dcfb6020b1ab3caaad57ecff9bd5461e675e96f | 613c31028032b6e0297e81582c59dcdeae02b2b4 | /Static Initialization Fiasco/Dog.h | b79117d1639b5d4f0bed053a0a722d5aa18c7e60 | [] | no_license | CPPBeginnersPrograms/Advanced-C- | 39348c62d991fbd5bc1a37712695f35f6330f10a | 51226e0be336e09152d2146ab21a73eaec18d797 | refs/heads/master | 2021-06-22T09:12:49.394560 | 2019-09-15T01:06:30 | 2019-09-15T01:06:30 | 149,330,677 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 275 | h | /*
* Dog.h
*
* Created on: Apr 18, 2019
* Author: raswantkoushikpeesapati
*/
#ifndef DOG_H_
#define DOG_H_
#include <iostream>
using namespace std;
class Dog {
std::string _name;
public:
Dog(char *name);
void bark();
virtual ~Dog();
};
#endif /* DOG_H_ */
| [
"rashwanth92@gmail.com"
] | rashwanth92@gmail.com |
33f3ad3dd2ba72d6b7619a29b4e0595a926946fd | f5072b04d62be4297f546535e2ca1ed26d800695 | /Core/Utils.cpp | 975bc3ef183138a79aefbbdf56467833438d2ab7 | [
"MIT"
] | permissive | jrouwe/RayCastTest | 1ea4cfb034556f6c2dcc2399d7176f98002cab80 | 6f16eef819bd13f7f7bf063b076dab7091b1886a | refs/heads/master | 2021-06-19T21:51:39.506924 | 2021-05-29T13:53:58 | 2021-05-29T13:53:58 | 209,984,894 | 8 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 748 | cpp | #include <pch.h> // IWYU pragma: keep
#include <fstream>
void FatalError(const char *inFMT, ...)
{
// Format the message
va_list list;
va_start(list, inFMT);
char buffer[1024];
vsprintf(buffer, inFMT, list);
// Throw exception
throw string(buffer);
}
// Read file contents
vector<uint8> ReadData(const char *inFileName)
{
vector<uint8> data;
ifstream input(inFileName, std::ios::binary);
if (!input)
FatalError("Unable to open file: %s", inFileName);
input.seekg(0, ios_base::end);
ifstream::pos_type length = input.tellg();
input.seekg(0, ios_base::beg);
data.resize(length);
input.read((char *)&data[0], length);
if (!input)
FatalError("Unable to read file: %s", inFileName);
return data;
}
| [
"jrouwe@gmail.com"
] | jrouwe@gmail.com |
f3543f07c0f951aa60c4a46235f7643342aa8153 | 523c62a9526f890bf36f1417d1eb264efb3aedf4 | /info_PE/stdafx.cpp | 45da75b5e061c6506a5ae181a906772470d4dca0 | [] | no_license | SeriousLab/info_PE | ea6fdc6c5d6743029e3fd3579be6f7f14950f5fb | f89c83bd786398bd7d7c880aae80fb5014dc6925 | refs/heads/master | 2021-01-01T15:40:45.958275 | 2015-07-29T09:50:35 | 2015-07-29T09:50:35 | 39,886,148 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 201 | cpp |
// stdafx.cpp : source file that includes just the standard includes
// info_PE.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
| [
"dominic.sirius@gmail.com"
] | dominic.sirius@gmail.com |
588c068d19ff123fd04ac064c1a571af0f5da438 | ccea7951928187a33fea8e756c96764a39459210 | /TTMedia/player/TTCodecControl.hpp | 5bb924fcce7c9a725935366927c6bcb1866d06e8 | [] | no_license | betallcoffee/TTMedia | 0f09b40481773e860a4d6b56bf2a878c58d58d71 | da4f6b53c1f4b140b9d47bd03dcf62dcf47a2ea6 | refs/heads/master | 2022-03-07T05:29:16.347940 | 2022-01-22T05:54:35 | 2022-01-22T05:54:35 | 147,061,963 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,526 | hpp | //
// TTCodecControl.hpp
// TTMedia
//
// Created by liang on 2/12/18.
// Copyright © 2018年 tina. All rights reserved.
//
#ifndef TTCodecControl_hpp
#define TTCodecControl_hpp
#include <memory>
#include "TTDef.h"
#include "TTQueue.hpp"
#include "TTFrame.hpp"
namespace TT {
class MessageLoop;
class Message;
class Codec;
class Packet;
class Stream;
typedef enum CodecMessage {
kCodecOpen,
kCodecDecode,
kCodecClose,
} CodecMessage;
class CodecObserver {
public:
CodecObserver() {};
virtual ~CodecObserver() {};
virtual void opened() = 0;
virtual void closed() = 0;
virtual void error() = 0;
virtual void audioDesc(AudioDesc &desc) = 0;
};
class CodecControl {
public:
CodecControl(const char *name);
virtual ~CodecControl();
virtual bool start(std::shared_ptr<Stream> stream);
virtual bool stop();
TT_PROPERTY_DEF_READONLY(std::shared_ptr<MessageLoop>, loop, nullptr);
TT_PROPERTY_DEF_NOINIT(std::weak_ptr<CodecObserver>, observer);
TT_PROPERTY_DEF(std::shared_ptr<Codec>, codec, nullptr);
TT_PROPERTY_DEF_READONLY(std::shared_ptr<Stream>, stream, nullptr);
typedef Queue<std::shared_ptr<Packet>> PacketQueue;
TT_PROPERTY_DEF(std::shared_ptr<PacketQueue>, packetQueue, nullptr);
typedef Queue<std::shared_ptr<Frame>> FrameQueue;
TT_PROPERTY_DEF_READONLY(std::shared_ptr<FrameQueue>, frameQueue, nullptr);
private:
virtual void initMessages();
void handleMessage(std::shared_ptr<Message> message);
protected:
virtual bool open(std::shared_ptr<Stream> stream);
virtual void decodePacket() {};
};
class VideoCodecControl : public CodecControl {
public:
VideoCodecControl();
~VideoCodecControl();
private:
bool open(std::shared_ptr<Stream> stream) override;
void decodePacket() override;
};
class AudioCodecControl : public CodecControl {
public:
AudioCodecControl();
~AudioCodecControl();
TT_PROPERTY_DEF_READONLY(AudioDesc, desc, {0});
private:
bool open(std::shared_ptr<Stream> stream) override;
void decodePacket() override;
void audioCodecCB(AudioDesc &desc);
};
}
#endif /* TTCodecControl_hpp */
| [
"liangliang0918@126.com"
] | liangliang0918@126.com |
f56a2110c11b40f3e617617637fae36363c16305 | a38b766bd3448e969301c9f86057288d62d24efe | /Projeto Instalacao Aquecimento/dp-voice-canvas/Il2CppOutputProject/Source/il2cppOutput/Il2CppComCallableWrappers0.cpp | 134f27721bd6d0f7b5e8dc2db76d31e0f7dd6920 | [] | no_license | lucascviveiros/Projeto-Instalacao-Aquecimento | 3d02a0568f56b46f6cafd6ee9428f1ad816980ae | 3571585919877b35e786411a87375b654a43820f | refs/heads/master | 2020-03-22T03:42:31.388462 | 2019-07-21T12:19:50 | 2019-07-21T12:19:50 | 139,447,649 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 24,558 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "vm/CachedCCWBase.h"
#include "il2cpp-object-internals.h"
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
// System.Runtime.InteropServices.ManagedErrorInfo
struct ManagedErrorInfo_t1050660351;
// System.String
struct String_t;
// System.Exception
struct Exception_t;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t386037858;
extern RuntimeClass* String_t_il2cpp_TypeInfo_var;
extern const uint32_t IErrorInfo_GetGUID_m1050404947_CCW_ManagedErrorInfo_t1050660351_ComCallableWrapper_ManagedErrorInfo_GetGUID_m3937943306_MetadataUsageId;
extern const uint32_t IErrorInfo_GetSource_m3515283667_CCW_ManagedErrorInfo_t1050660351_ComCallableWrapper_ManagedErrorInfo_GetSource_m2789699263_MetadataUsageId;
extern const uint32_t IErrorInfo_GetDescription_m348776341_CCW_ManagedErrorInfo_t1050660351_ComCallableWrapper_ManagedErrorInfo_GetDescription_m2290622299_MetadataUsageId;
extern const uint32_t IErrorInfo_GetHelpFile_m1121637497_CCW_ManagedErrorInfo_t1050660351_ComCallableWrapper_ManagedErrorInfo_GetHelpFile_m3537687028_MetadataUsageId;
extern const uint32_t IErrorInfo_GetHelpContext_m1611286652_CCW_ManagedErrorInfo_t1050660351_ComCallableWrapper_ManagedErrorInfo_GetHelpContext_m2376875466_MetadataUsageId;
struct Guid_t ;
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
// System.Runtime.InteropServices.IErrorInfo
struct NOVTABLE IErrorInfo_t3055706115 : Il2CppIUnknown
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IErrorInfo_GetGUID_m1050404947(Guid_t * ___pGuid0, int32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IErrorInfo_GetSource_m3515283667(Il2CppChar** ___pBstrSource0, int32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IErrorInfo_GetDescription_m348776341(Il2CppChar** ___pbstrDescription0, int32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IErrorInfo_GetHelpFile_m1121637497(Il2CppChar** ___pBstrHelpFile0, int32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IErrorInfo_GetHelpContext_m1611286652(uint32_t* ___pdwHelpContext0, int32_t* comReturnValue) = 0;
};
#ifndef VALUETYPE_T3640485471_H
#define VALUETYPE_T3640485471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t3640485471 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_com
{
};
#endif // VALUETYPE_T3640485471_H
#ifndef STRING_T_H
#define STRING_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((&___Empty_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRING_T_H
#ifndef MANAGEDERRORINFO_T1050660351_H
#define MANAGEDERRORINFO_T1050660351_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.ManagedErrorInfo
struct ManagedErrorInfo_t1050660351 : public RuntimeObject
{
public:
// System.Exception System.Runtime.InteropServices.ManagedErrorInfo::m_Exception
Exception_t * ___m_Exception_0;
public:
inline static int32_t get_offset_of_m_Exception_0() { return static_cast<int32_t>(offsetof(ManagedErrorInfo_t1050660351, ___m_Exception_0)); }
inline Exception_t * get_m_Exception_0() const { return ___m_Exception_0; }
inline Exception_t ** get_address_of_m_Exception_0() { return &___m_Exception_0; }
inline void set_m_Exception_0(Exception_t * value)
{
___m_Exception_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Exception_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MANAGEDERRORINFO_T1050660351_H
#ifndef UINT32_T2560061978_H
#define UINT32_T2560061978_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt32
struct UInt32_t2560061978
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t2560061978, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT32_T2560061978_H
#ifndef GUID_T_H
#define GUID_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_4;
// System.Int16 System.Guid::_b
int16_t ____b_5;
// System.Int16 System.Guid::_c
int16_t ____c_6;
// System.Byte System.Guid::_d
uint8_t ____d_7;
// System.Byte System.Guid::_e
uint8_t ____e_8;
// System.Byte System.Guid::_f
uint8_t ____f_9;
// System.Byte System.Guid::_g
uint8_t ____g_10;
// System.Byte System.Guid::_h
uint8_t ____h_11;
// System.Byte System.Guid::_i
uint8_t ____i_12;
// System.Byte System.Guid::_j
uint8_t ____j_13;
// System.Byte System.Guid::_k
uint8_t ____k_14;
public:
inline static int32_t get_offset_of__a_4() { return static_cast<int32_t>(offsetof(Guid_t, ____a_4)); }
inline int32_t get__a_4() const { return ____a_4; }
inline int32_t* get_address_of__a_4() { return &____a_4; }
inline void set__a_4(int32_t value)
{
____a_4 = value;
}
inline static int32_t get_offset_of__b_5() { return static_cast<int32_t>(offsetof(Guid_t, ____b_5)); }
inline int16_t get__b_5() const { return ____b_5; }
inline int16_t* get_address_of__b_5() { return &____b_5; }
inline void set__b_5(int16_t value)
{
____b_5 = value;
}
inline static int32_t get_offset_of__c_6() { return static_cast<int32_t>(offsetof(Guid_t, ____c_6)); }
inline int16_t get__c_6() const { return ____c_6; }
inline int16_t* get_address_of__c_6() { return &____c_6; }
inline void set__c_6(int16_t value)
{
____c_6 = value;
}
inline static int32_t get_offset_of__d_7() { return static_cast<int32_t>(offsetof(Guid_t, ____d_7)); }
inline uint8_t get__d_7() const { return ____d_7; }
inline uint8_t* get_address_of__d_7() { return &____d_7; }
inline void set__d_7(uint8_t value)
{
____d_7 = value;
}
inline static int32_t get_offset_of__e_8() { return static_cast<int32_t>(offsetof(Guid_t, ____e_8)); }
inline uint8_t get__e_8() const { return ____e_8; }
inline uint8_t* get_address_of__e_8() { return &____e_8; }
inline void set__e_8(uint8_t value)
{
____e_8 = value;
}
inline static int32_t get_offset_of__f_9() { return static_cast<int32_t>(offsetof(Guid_t, ____f_9)); }
inline uint8_t get__f_9() const { return ____f_9; }
inline uint8_t* get_address_of__f_9() { return &____f_9; }
inline void set__f_9(uint8_t value)
{
____f_9 = value;
}
inline static int32_t get_offset_of__g_10() { return static_cast<int32_t>(offsetof(Guid_t, ____g_10)); }
inline uint8_t get__g_10() const { return ____g_10; }
inline uint8_t* get_address_of__g_10() { return &____g_10; }
inline void set__g_10(uint8_t value)
{
____g_10 = value;
}
inline static int32_t get_offset_of__h_11() { return static_cast<int32_t>(offsetof(Guid_t, ____h_11)); }
inline uint8_t get__h_11() const { return ____h_11; }
inline uint8_t* get_address_of__h_11() { return &____h_11; }
inline void set__h_11(uint8_t value)
{
____h_11 = value;
}
inline static int32_t get_offset_of__i_12() { return static_cast<int32_t>(offsetof(Guid_t, ____i_12)); }
inline uint8_t get__i_12() const { return ____i_12; }
inline uint8_t* get_address_of__i_12() { return &____i_12; }
inline void set__i_12(uint8_t value)
{
____i_12 = value;
}
inline static int32_t get_offset_of__j_13() { return static_cast<int32_t>(offsetof(Guid_t, ____j_13)); }
inline uint8_t get__j_13() const { return ____j_13; }
inline uint8_t* get_address_of__j_13() { return &____j_13; }
inline void set__j_13(uint8_t value)
{
____j_13 = value;
}
inline static int32_t get_offset_of__k_14() { return static_cast<int32_t>(offsetof(Guid_t, ____k_14)); }
inline uint8_t get__k_14() const { return ____k_14; }
inline uint8_t* get_address_of__k_14() { return &____k_14; }
inline void set__k_14(uint8_t value)
{
____k_14 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_0;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t386037858 * ____rng_1;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
RandomNumberGenerator_t386037858 * ____fastRng_2;
// System.Guid System.Guid::Empty
Guid_t ___Empty_3;
public:
inline static int32_t get_offset_of__rngAccess_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_0)); }
inline RuntimeObject * get__rngAccess_0() const { return ____rngAccess_0; }
inline RuntimeObject ** get_address_of__rngAccess_0() { return &____rngAccess_0; }
inline void set__rngAccess_0(RuntimeObject * value)
{
____rngAccess_0 = value;
Il2CppCodeGenWriteBarrier((&____rngAccess_0), value);
}
inline static int32_t get_offset_of__rng_1() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_1)); }
inline RandomNumberGenerator_t386037858 * get__rng_1() const { return ____rng_1; }
inline RandomNumberGenerator_t386037858 ** get_address_of__rng_1() { return &____rng_1; }
inline void set__rng_1(RandomNumberGenerator_t386037858 * value)
{
____rng_1 = value;
Il2CppCodeGenWriteBarrier((&____rng_1), value);
}
inline static int32_t get_offset_of__fastRng_2() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_2)); }
inline RandomNumberGenerator_t386037858 * get__fastRng_2() const { return ____fastRng_2; }
inline RandomNumberGenerator_t386037858 ** get_address_of__fastRng_2() { return &____fastRng_2; }
inline void set__fastRng_2(RandomNumberGenerator_t386037858 * value)
{
____fastRng_2 = value;
Il2CppCodeGenWriteBarrier((&____fastRng_2), value);
}
inline static int32_t get_offset_of_Empty_3() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_3)); }
inline Guid_t get_Empty_3() const { return ___Empty_3; }
inline Guid_t * get_address_of_Empty_3() { return &___Empty_3; }
inline void set_Empty_3(Guid_t value)
{
___Empty_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GUID_T_H
// System.Int32 System.Runtime.InteropServices.ManagedErrorInfo::GetGUID(System.Guid&)
extern "C" IL2CPP_METHOD_ATTR int32_t ManagedErrorInfo_GetGUID_m3937943306 (ManagedErrorInfo_t1050660351 * __this, Guid_t * ___guid0, const RuntimeMethod* method);
// System.Int32 System.Runtime.InteropServices.ManagedErrorInfo::GetSource(System.String&)
extern "C" IL2CPP_METHOD_ATTR int32_t ManagedErrorInfo_GetSource_m2789699263 (ManagedErrorInfo_t1050660351 * __this, String_t** ___source0, const RuntimeMethod* method);
// System.Int32 System.Runtime.InteropServices.ManagedErrorInfo::GetDescription(System.String&)
extern "C" IL2CPP_METHOD_ATTR int32_t ManagedErrorInfo_GetDescription_m2290622299 (ManagedErrorInfo_t1050660351 * __this, String_t** ___description0, const RuntimeMethod* method);
// System.Int32 System.Runtime.InteropServices.ManagedErrorInfo::GetHelpFile(System.String&)
extern "C" IL2CPP_METHOD_ATTR int32_t ManagedErrorInfo_GetHelpFile_m3537687028 (ManagedErrorInfo_t1050660351 * __this, String_t** ___helpFile0, const RuntimeMethod* method);
// System.Int32 System.Runtime.InteropServices.ManagedErrorInfo::GetHelpContext(System.UInt32&)
extern "C" IL2CPP_METHOD_ATTR int32_t ManagedErrorInfo_GetHelpContext_m2376875466 (ManagedErrorInfo_t1050660351 * __this, uint32_t* ___helpContext0, const RuntimeMethod* method);
// COM Callable Wrapper for System.Runtime.InteropServices.ManagedErrorInfo
struct ManagedErrorInfo_t1050660351_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ManagedErrorInfo_t1050660351_ComCallableWrapper>, IErrorInfo_t3055706115
{
inline ManagedErrorInfo_t1050660351_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ManagedErrorInfo_t1050660351_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IErrorInfo_t3055706115::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IErrorInfo_t3055706115*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
*iidCount = 0;
*iids = NULL;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IErrorInfo_GetGUID_m1050404947(Guid_t * ___guid0, int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IErrorInfo_GetGUID_m1050404947_CCW_ManagedErrorInfo_t1050660351_ComCallableWrapper_ManagedErrorInfo_GetGUID_m3937943306_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp_native_wrapper_vm_thread_attacher _vmThreadHelper;
// Marshaling of parameter '___guid0' to managed representation
Guid_t ____guid0_empty;
memset(&____guid0_empty, 0, sizeof(____guid0_empty));
// Managed method invocation
int32_t returnValue;
try
{
ManagedErrorInfo_t1050660351 * __thisValue = (ManagedErrorInfo_t1050660351 *)GetManagedObjectInline();
returnValue = ManagedErrorInfo_GetGUID_m3937943306(__thisValue, (&____guid0_empty), NULL);
}
catch (const Il2CppExceptionWrapper& ex)
{
*comReturnValue = 0;
String_t* exceptionStr = NULL;
try
{
exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex);
}
catch (const Il2CppExceptionWrapper&)
{
exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
}
il2cpp_codegen_store_exception_info(ex.ex, exceptionStr);
return ex.ex->hresult;
}
// Marshaling of parameter '___guid0' back from managed representation
*___guid0 = ____guid0_empty;
*comReturnValue = returnValue;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IErrorInfo_GetSource_m3515283667(Il2CppChar** ___source0, int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IErrorInfo_GetSource_m3515283667_CCW_ManagedErrorInfo_t1050660351_ComCallableWrapper_ManagedErrorInfo_GetSource_m2789699263_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp_native_wrapper_vm_thread_attacher _vmThreadHelper;
// Marshaling of parameter '___source0' to managed representation
String_t* ____source0_empty = NULL;
// Managed method invocation
int32_t returnValue;
try
{
ManagedErrorInfo_t1050660351 * __thisValue = (ManagedErrorInfo_t1050660351 *)GetManagedObjectInline();
returnValue = ManagedErrorInfo_GetSource_m2789699263(__thisValue, (&____source0_empty), NULL);
}
catch (const Il2CppExceptionWrapper& ex)
{
*comReturnValue = 0;
String_t* exceptionStr = NULL;
try
{
exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex);
}
catch (const Il2CppExceptionWrapper&)
{
exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
}
il2cpp_codegen_store_exception_info(ex.ex, exceptionStr);
return ex.ex->hresult;
}
// Marshaling of parameter '___source0' back from managed representation
*___source0 = il2cpp_codegen_marshal_bstring(____source0_empty);
*comReturnValue = returnValue;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IErrorInfo_GetDescription_m348776341(Il2CppChar** ___description0, int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IErrorInfo_GetDescription_m348776341_CCW_ManagedErrorInfo_t1050660351_ComCallableWrapper_ManagedErrorInfo_GetDescription_m2290622299_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp_native_wrapper_vm_thread_attacher _vmThreadHelper;
// Marshaling of parameter '___description0' to managed representation
String_t* ____description0_empty = NULL;
// Managed method invocation
int32_t returnValue;
try
{
ManagedErrorInfo_t1050660351 * __thisValue = (ManagedErrorInfo_t1050660351 *)GetManagedObjectInline();
returnValue = ManagedErrorInfo_GetDescription_m2290622299(__thisValue, (&____description0_empty), NULL);
}
catch (const Il2CppExceptionWrapper& ex)
{
*comReturnValue = 0;
String_t* exceptionStr = NULL;
try
{
exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex);
}
catch (const Il2CppExceptionWrapper&)
{
exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
}
il2cpp_codegen_store_exception_info(ex.ex, exceptionStr);
return ex.ex->hresult;
}
// Marshaling of parameter '___description0' back from managed representation
*___description0 = il2cpp_codegen_marshal_bstring(____description0_empty);
*comReturnValue = returnValue;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IErrorInfo_GetHelpFile_m1121637497(Il2CppChar** ___helpFile0, int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IErrorInfo_GetHelpFile_m1121637497_CCW_ManagedErrorInfo_t1050660351_ComCallableWrapper_ManagedErrorInfo_GetHelpFile_m3537687028_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp_native_wrapper_vm_thread_attacher _vmThreadHelper;
// Marshaling of parameter '___helpFile0' to managed representation
String_t* ____helpFile0_empty = NULL;
// Managed method invocation
int32_t returnValue;
try
{
ManagedErrorInfo_t1050660351 * __thisValue = (ManagedErrorInfo_t1050660351 *)GetManagedObjectInline();
returnValue = ManagedErrorInfo_GetHelpFile_m3537687028(__thisValue, (&____helpFile0_empty), NULL);
}
catch (const Il2CppExceptionWrapper& ex)
{
*comReturnValue = 0;
String_t* exceptionStr = NULL;
try
{
exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex);
}
catch (const Il2CppExceptionWrapper&)
{
exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
}
il2cpp_codegen_store_exception_info(ex.ex, exceptionStr);
return ex.ex->hresult;
}
// Marshaling of parameter '___helpFile0' back from managed representation
*___helpFile0 = il2cpp_codegen_marshal_bstring(____helpFile0_empty);
*comReturnValue = returnValue;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL IErrorInfo_GetHelpContext_m1611286652(uint32_t* ___helpContext0, int32_t* comReturnValue) IL2CPP_OVERRIDE
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IErrorInfo_GetHelpContext_m1611286652_CCW_ManagedErrorInfo_t1050660351_ComCallableWrapper_ManagedErrorInfo_GetHelpContext_m2376875466_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
il2cpp_native_wrapper_vm_thread_attacher _vmThreadHelper;
// Marshaling of parameter '___helpContext0' to managed representation
uint32_t ____helpContext0_empty = 0;
// Managed method invocation
int32_t returnValue;
try
{
ManagedErrorInfo_t1050660351 * __thisValue = (ManagedErrorInfo_t1050660351 *)GetManagedObjectInline();
returnValue = ManagedErrorInfo_GetHelpContext_m2376875466(__thisValue, (&____helpContext0_empty), NULL);
}
catch (const Il2CppExceptionWrapper& ex)
{
*comReturnValue = 0;
String_t* exceptionStr = NULL;
try
{
exceptionStr = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, ex.ex);
}
catch (const Il2CppExceptionWrapper&)
{
exceptionStr = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
}
il2cpp_codegen_store_exception_info(ex.ex, exceptionStr);
return ex.ex->hresult;
}
// Marshaling of parameter '___helpContext0' back from managed representation
*___helpContext0 = ____helpContext0_empty;
*comReturnValue = returnValue;
return IL2CPP_S_OK;
}
};
extern "C" Il2CppIUnknown* CreateComCallableWrapperFor_ManagedErrorInfo_t1050660351(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ManagedErrorInfo_t1050660351_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ManagedErrorInfo_t1050660351_ComCallableWrapper(obj));
}
| [
"lucasdicavalcanti@hotmail.com"
] | lucasdicavalcanti@hotmail.com |
a87f7db32c2a96ebbbf58001b7a72693a6fd2085 | 59179e4f655a40b421fa9aeda9c90736b8c11b1b | /compiler/.history/lab1/lexical_20210415003813.cpp | 8571bd50cbb43cf69eecdd4449b8d3cf4b952435 | [] | no_license | wjw136/course_designing_project | ccd39da420f0de22b39fa2fea032054f4cbe8bfd | 2614928bd779bc0d996857b123e2862836d81333 | refs/heads/master | 2023-06-04T12:52:40.501335 | 2021-06-17T13:19:23 | 2021-06-17T13:19:23 | 374,384,252 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 9,319 | cpp | #include <iostream>
#include <windows.h>
#include <string.h>
#include <queue>
#include <math.h>
#include "stdio.h"
#include <fstream>
#include <direct.h>
#include <map>
#define ll long long
#define inf 100000
#define clr1(a) memset(a, -1, sizeof(a))
#define clr(a) memset(a, 0, sizeof(a))
using namespace std;
//reserved word
static char reserveword[35][20] = {
"and", "array", "begin", "bool", "call", "case",
"char", "constant", "dim", "do", "else", "end",
"false", "for", "if", "input", "integer", "not",
"of", "or", "output", "procedure", "program", "read",
"real", "repeat", "set", "stop", "then", "to", "true",
"until", "var", "while", "write"};
//operator
static char myoperator[22][10] = {
"(", ")", "*", "*/", "+", ",", "-",
"..", "/", "/*", ":", ":=", ";", "<",
"<=", "<>", "=", ">", ">=", "[", "]"};
bool isDigit(char ch)
{
if (ch >= '0' && ch <= '9')
return true;
else
{
return false;
}
}
bool isLetter(char ch)
{
if ((ch >= 'a' && ch <= 'z') || (ch <= 'Z' && ch >= 'A') || ch == '_')
return true;
else
{
return false;
}
}
int isReserve(char *s)
{
for (int i = 0; i < 35; ++i)
{
if (strcmp(reserveword[i], s) == 0)
{
return i + 1;
}
}
return -1;
}
//filter
int row = 1;
void filter(char *s, int len)
{
row = 1;
char tmp[10000];
int p = 0;
for (int i = 0; i < len; ++i)
{
//注释
if (s[i] == '/' && s[i + 1] == '*')
{
i += 2;
while (s[i] != '*' || s[i + 1] != '/')
{
if (s[i] == '\0' || s[i] == '\n')
{
cout << "Annotation error!" << endl;
exit(0);
}
i++;
}
i += 2;
}
//检查字符串
if (s[i] == '\'')
{
tmp[p++] = s[i++];
while (s[i] != '\'')
{
if (s[i] == '\n' || s[i] == '\0')
{
printf("字符串(单引号) error!, row: %d\n", row);
exit(0);
}
tmp[p++] = s[i++];
}
}
//检查括号
if (s[i] == '(')
{
tmp[p++] = s[i++];
while (s[i] != ')')
{
if (s[i] == '\0')
{
printf("括号 error!, row: %d\n", row);
exit(0);
}
tmp[p++] = s[i++];
}
}
//检查[]
if (s[i] == '[')
{
tmp[p++] = s[i++];
while (s[i] != ']')
{
if (s[i] == '\0')
{
printf("[] error!, row: %d\n", row);
exit(0);
}
tmp[p++] = s[i++];
}
}
//去除换行等
if (s[i] != '\n' && s[i] != '\t' && s[i] != '\v' && s[i] != '\r')
{
tmp[p] = s[i];
p++;
//i++;
}
else
{
if (s[i] == '\n')
row++;
tmp[p++] = ' ';
}
}
tmp[p] = '\0';
strcpy(s, tmp);
}
//scanner
void scanner(int &syn, char *project, char *token, int &p)
{
int count = 0;
char ch;
ch = project[p];
while (ch == ' ')
{ //white space
++p;
ch = project[p];
}
for (int i = 0; i < 20; i++)
{
token[i] = '\0';
}
if (isLetter(project[p]))
{
token[count++] = project[p++];
//cout<<isLetter(project[p])<<endl;
while (isLetter(project[p]) || isDigit(project[p]))
{
//cout<<project[p]<<endl;
token[count++] = project[p++];
}
token[count] = '\0';
syn = isReserve(token);
if (syn == -1)
{
syn = 36;
}
return;
}
else if (isDigit(project[p]))
{
token[count++] = project[p++];
while (isDigit(project[p]))
{
token[count++] = project[p++];
}
if (isLetter(project[p]))
{
cout << "symbol begin with digit wrong!" << endl;
exit(0);
}
token[count] = '\0';
syn = 37;
return;
}
else if (ch == '<')
{ //可能是< <= <<
token[count++] = project[p];
++p;
if (project[p] == '=') //<=
{
token[count++] = project[p];
syn = 54;
}
else if (project[p] == '>') //<<
{
token[count++] = project[p];
syn = 55;
}
else //<
{
--p;
syn = 53;
}
++p;
return;
}
else if (ch == '>')
{ //可能是> >= >>
token[count++] = project[p];
++p;
if (project[p] == '=') //>=
{
token[count++] = project[p];
syn = 58;
}
else //>
{
--p;
syn = 57;
}
++p;
return;
}
else if (ch == ':')
{ //可能是: :=
token[count++] = project[p];
++p;
if (project[p] == '=') //>=
{
token[count++] = project[p];
syn = 51;
}
else //>
{
--p;
syn = 50;
}
++p;
return;
}
else if (ch == '.')
{ //可能是. ..
token[count++] = project[p];
++p;
if (project[p] == '.') //>=
{
syn = 47;
token[count++] = project[p];
}
else //>
{
--p;
syn = 46;
}
++p;
return;
}
else if (ch == '\0') //文件结束
{
syn = 0;
}
else if (ch == '\'')
{
token[count++] = project[p++];
//cout<<project[p];
while (project[p] != '\'')
{
token[count++] = project[p++]; //
}
token[count++] = project[p++];
syn = 38;
}
else
{
switch (project[p])
{
case '(':
syn = 39;
break;
case ')':
syn = 40;
break;
case '*':
syn = 41;
break;
case '+':
syn = 43;
break;
case ',':
syn = 44;
break;
case '-':
syn = 45;
break;
case '/':
syn = 48;
break;
case ';':
syn = 52;
break;
case '=':
syn = 56;
break;
case '[':
syn = 59;
break;
case ']':
syn = 60;
break;
//无法匹配
default:
//非法字符,提示并自动跳过
syn = -2;
}
token[count++] = project[p++];
}
}
map<string, int> mp;
int main()
{
mp.clear();
//cout << "我i";
cout<<"王建伟 19计联 201930420160"<<endl;
cout << "键入程序名: ";
string s; //cin>>s;
while (cin >> s)
{ cout<<getcwd(NULL, 0)+'\'s + ".txt";
ifstream fin(getcwd(NULL, 0)+s + ".txt");
if (!fin)
{
cout << "The program not exists!" << endl;
}
else
{
char project[10000];
int p = 0;
//fin.get(project[p++]);
while (fin.peek() != EOF)
{
fin.get(project[p++]);
//cout<<project[p-1]<<endl;
}
//cout << project << endl;
project[p++] = '\0';
fin.close();
//cout << project << endl;
filter(project, p - 1);
//cout << project << endl;
p = 0;
int syn = -1;
char token[20] = {};
//cout<<project<<endl;
int cnt = 0;
int cnt1 = 0;
while (true)
{
scanner(syn, project, token, p);
//cout<<syn<<endl;
if (syn == 0)
break;
else if (syn == -2)
{
printf("(非法字符, %s)\t", token);
cnt1++;
}
else if (syn == 36 || syn == 37||syn==38)
{
//cout<<token<<endl;
int tmp = cnt;
if (mp.count(token))
{
tmp = mp[token];
}
else
{
cnt++;
tmp = cnt;
mp[token] = cnt;
}
printf("(%d, %d)\t", syn, tmp);
cnt1++;
}
else
{
//cout<<setw(10)
printf("(%d, ~)\t", syn);
cnt1++;
}
if (cnt1 % 5 == 0)
{
cout << endl;
}
}
cout<<endl;
}
cout << "键入程序名: ";
}
system("pause");
}
| [
"2831419633@qq.com"
] | 2831419633@qq.com |
0ba46848fca0f3abb8d59aeaf384cd9175310390 | cfa27073eadacfb581a0ce09d391272e2d764fc3 | /src/archon/core/test/test_buffered_text_file.cpp | c8257472a84b451c8f208da1d17e594b9060899b | [] | no_license | kspangsege/archon | e1b5cd2413cef95782ee8c8185be0086289fa318 | d8c323efd2d7914cc96d832a070f31168c4b847b | refs/heads/master | 2023-09-01T02:58:03.071535 | 2023-08-31T18:15:41 | 2023-08-31T19:50:37 | 15,814,007 | 2 | 0 | null | 2023-09-13T10:16:58 | 2014-01-11T00:41:43 | C++ | UTF-8 | C++ | false | false | 5,235 | cpp | // This file is part of the Archon project, a suite of C++ libraries.
//
// Copyright (C) 2020 Kristian Spangsege <kristian.spangsege@gmail.com>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#include <array>
#include <string_view>
#include <string>
#include <vector>
#include <archon/core/buffer.hpp>
#include <archon/core/char_mapper.hpp>
#include <archon/core/text_file_impl.hpp>
#include <archon/core/buffered_text_file.hpp>
#include <archon/check.hpp>
using namespace archon;
namespace {
ARCHON_TEST_VARIANTS(impl_variants,
ARCHON_TEST_TYPE(core::BufferedPosixTextFileImpl<char>, Posix),
ARCHON_TEST_TYPE(core::BufferedWindowsTextFileImpl<char>, Windows),
ARCHON_TEST_TYPE(core::BufferedPosixTextFileImpl<wchar_t>, WidePosix),
ARCHON_TEST_TYPE(core::BufferedWindowsTextFileImpl<wchar_t>, WideWindows));
} // unnamed namespace
ARCHON_TEST_BATCH(Core_BufferedTextFile_ReadLine, impl_variants)
{
using impl_type = test_type;
using text_file_type = core::GenericBufferedTextFile<impl_type>;
using char_type = typename text_file_type::char_type;
using string_type = std::basic_string<char_type>;
using string_view_type = std::basic_string_view<char_type>;
std::array<char_type, 16> seed_memory;
core::BasicStringWidener<char_type> widener(test_context.locale, seed_memory);
ARCHON_TEST_FILE(path);
// Create text file with two lines, and verify that those two lines are read
{
text_file_type::save(path, widener.widen("foo\nbar\n"), test_context.locale);
text_file_type file(path, test_context.locale);
core::Buffer<char_type> buffer;
string_view_type line;
std::vector<string_type> lines;
while (file.read_line(buffer, line))
lines.push_back(string_type(line));
string_type expected_lines[] = {
string_type(widener.widen("foo")),
string_type(widener.widen("bar"))
};
ARCHON_CHECK_EQUAL_SEQ(lines, expected_lines);
}
// Create text file with two lines, but with no newline termination on last line, and
// verify that those two lines are read
{
text_file_type::save(path, widener.widen("foo\nbar"), test_context.locale);
text_file_type file(path, test_context.locale);
core::Buffer<char_type> buffer;
string_view_type line;
std::vector<string_type> lines;
while (file.read_line(buffer, line))
lines.push_back(string_type(line));
string_type expected_lines[] = {
string_type(widener.widen("foo")),
string_type(widener.widen("bar"))
};
ARCHON_CHECK_EQUAL_SEQ(lines, expected_lines);
}
// Create text file with two lines, but where last line is empty, and verify that those
// two lines are read
{
text_file_type::save(path, widener.widen("foo\n\n"), test_context.locale);
text_file_type file(path, test_context.locale);
core::Buffer<char_type> buffer;
string_view_type line;
std::vector<string_type> lines;
while (file.read_line(buffer, line))
lines.push_back(string_type(line));
string_type expected_lines[] = {
string_type(widener.widen("foo")),
string_type(widener.widen(""))
};
ARCHON_CHECK_EQUAL_SEQ(lines, expected_lines);
}
}
ARCHON_TEST_BATCH(Core_BufferedTextFile_WriteLine, impl_variants)
{
using impl_type = test_type;
using text_file_type = core::GenericBufferedTextFile<impl_type>;
using char_type = typename text_file_type::char_type;
using string_type = std::basic_string<char_type>;
std::array<char_type, 16> seed_memory;
core::BasicStringWidener<char_type> widener(test_context.locale, seed_memory);
ARCHON_TEST_FILE(path);
{
text_file_type file(path, text_file_type::Mode::write, test_context.locale);
file.write_line(widener.widen("foo"));
file.write_line(widener.widen("bar"));
file.flush();
}
string_type contents = text_file_type::load(path);
ARCHON_CHECK_EQUAL(contents, widener.widen("foo\nbar\n"));
}
| [
"kristian.spangsege@gmail.com"
] | kristian.spangsege@gmail.com |
1b082093953a636b62200a559cd106c1c51e368b | 0ad0e201676e9f884cf0cf3a940833de8a35f6ab | /Codeforces/Line Sweep/CF845-D2-C.cpp | 2bdac118f4da02e0bee975b6b3d19ca3f63c3436 | [] | no_license | MNTahhan/Competitive-Programming | e0e7b8a480b916d2c85798727c2a98b3003fd23f | dee74dc632b0fc18fb258519333b8cdfd3ca4e8c | refs/heads/master | 2021-10-28T05:16:33.689584 | 2019-04-22T09:41:42 | 2019-04-22T09:41:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,758 | cpp | /*
The idea: line sweep, consider event(l,r) as point(x,y), now at every point, insert its y in the active set, and pop the points that
have y value less than the current x, if at any point the active set size is more than 2, the answer is no.
*/
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <time.h>
#include <vector>
#include <stdio.h>
#include <memory.h>
#include <string>
#include <string.h>
#include <map>
#include <algorithm>
#include <queue>
#include <set>
#include <time.h>
#include <assert.h>
#include <sstream>
//#include <unordered_map>
#include <bitset>
#include <utility>
#include <iomanip>
#include <climits>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <numeric>
#include <math.h>
#include <cmath>
#include <complex>
#ifdef MYDEF
#include "inc.h"
#endif
using namespace std;
typedef long long ll;
typedef complex<double> point;
struct Point {
int x, y;
Point() { }
Point(int x, int y):x(x), y(y) { }
};
const int N = 1e5 + 10;
bool cmpX(const Point &a, const Point &b) {
if(a.x != b.x)
return a.x < b.x;
return a.y < b.y;
}
int n, l[N], r[N];
int main() {
#ifdef MYDEF
FILE *file__r = fopen("header.txt", "r");
char __[110]; while(fgets(__, sizeof __, file__r) != NULL) printf("%s", __);
freopen("a.txt", "r", stdin);
//freopen("a.txt", "w", stdout);
decTime;
#endif
scanf("%d", &n);
vector<Point>v(n);
for(int i = 0; i < n; ++i) {
scanf("%d%d", &v[i].x, &v[i].y);
}
sort(v.begin(), v.end(), cmpX);
multiset<int>st;
int l = 0;
for(int r = 0; r < n; ++r) {
while(l < r && *st.begin() < v[r].x) {
st.erase(st.begin());
++l;
}
st.insert(v[r].y);
if(st.size() > 2)
return 0 * puts("NO");
}
puts("YES");
#ifdef MYDEF
printTime;
#endif
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
6821a020f621549f97471d7951940bd8acda7a16 | 2782f4a72137213134b59fe069d4ab659d7c240f | /EarthProject/EarthProject/Model.h | 58512e8a7777b42ccd6a8147204f87442d0b16c4 | [] | no_license | lovenets/EarthProject | ac04935151f38929ac770fe3249bd9bde280922f | 4a879dbf18fd2f05b485b51f74de6f3b01977eff | refs/heads/master | 2020-03-21T09:01:54.410426 | 2016-08-22T12:59:16 | 2016-08-22T12:59:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,009 | h |
#ifndef MODEL_H
#define MODEL_H
#include "MLoader.h"
#include "d3dUtil.h"
#include "cVec.h"
#include "GeoSphere.h"
//***********************************************MODEL CLASS***************************************************
//Model class the impelents the data from my MLoader class tha includes all the verts indices normals tex coord
class Model
{
public:
Model();
~Model();
GeoSphere* geo;
void init(ID3D10Device* device, GeoSphere*);
void init(ID3D10Device* device, ModelType type, float scale, D3DXVECTOR3 Pivot, bool ifAtmos);
void draw(bool ifAtmos);
void draw();
int mSize;
D3DXMATRIX* WorldMat();
void SetWorldMat( D3DXMATRIX );
int GetSize() { return mSize; };
char* Technique() {return &tech[0]; }
Vertex* GetVertexList();
DWORD mNumFaces;
MLoader* model;
private:
ID3D10Device* md3dDevice;
ID3D10Buffer* mVB;
ID3D10Buffer* mIB;
ID3D10Buffer* mVBd;
ID3D10Buffer* mIBd;
D3DXMATRIX world;
char* tech;
};
#endif
| [
"noreply@github.com"
] | noreply@github.com |
b1cd3f43ca25d04243441585dc1a5f48a1f60b0a | 9d6b4a4a8a99775fa99c241230dfa3aca78d2ca2 | /ConsecutiveFactors/main.cpp | 55f5843608714007eac1da9e87e6aa2421ebf87b | [] | no_license | W-David/pat-learn-cpp | 65c6510d896ea86efb25b7b43570533ebfd238c6 | 86aa735d416951a217d190e277ec8896b8905ee3 | refs/heads/master | 2020-12-15T20:52:04.154230 | 2020-03-03T15:03:42 | 2020-03-03T15:03:42 | 235,250,168 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 447 | cpp | #include <bits/stdc++.h>
using namespace std;
const int m = 100;
int main() {
int n;cin>>n;
int front{n},maxCnt{1};
for(int i = 2;i < m;i++){
int cnt{0};
for(int tp = n,start = i;tp % start == 0;tp = tp / start,start++) cnt++;
if(cnt > maxCnt){
maxCnt = cnt;
front = i;
}
}
cout<<maxCnt<<endl<<front;
for(int i = 1;i < maxCnt;i++) cout<<"*"<<front+i;
return 0;
}
| [
"1776867536@qq.com"
] | 1776867536@qq.com |
c7c2578d21ce7a12b18bfac095c8a299d8d1218f | e0c2108654ccb5286534aef463052024ab664057 | /Develop/VC/app/Network/exam_iocpClient/stdafx.cpp | 27c6e388dd9413f6646da1fbb224f92897957735 | [] | no_license | folrang/Acorun | 56048b5d87c299bf49c8a6d1d420081d0143b550 | 4b660f0df93280b254157db26191d8714052236e | refs/heads/master | 2020-05-31T01:07:57.903405 | 2018-09-17T02:45:01 | 2018-09-17T02:45:01 | 29,652,918 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 294 | cpp | // stdafx.cpp : source file that includes just the standard includes
// exam_iocpClient.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"dede@nexon-red.com"
] | dede@nexon-red.com |
4f3aa9aa335ab5e3a873dd3646c90ff3b378fe89 | 880976c7d469f380d76286de6d834f727d9ed578 | /include/bufferInterface.h | 131a16bbfd1f5962795201483064395e9a57524f | [] | no_license | 276585877/struct2x | 2cd7c15d313e6051bab4fa71fb4c6a3a3c1d8a6e | f058c7e9eb3097febc8b611d5032a11c282f4781 | refs/heads/master | 2022-03-05T05:26:28.256980 | 2019-11-23T13:40:36 | 2019-11-23T13:40:36 | 260,838,708 | 1 | 0 | null | 2020-05-03T06:00:46 | 2020-05-03T06:00:45 | null | UTF-8 | C++ | false | false | 1,469 | h | #ifndef __BUFFER_INTERFACE_H__
#define __BUFFER_INTERFACE_H__
#include <cstdint>
#include <vector>
#include <string>
#include <assert.h>
class BufferInterface
{
public:
virtual ~BufferInterface(){}
virtual const char* data() const = 0;
virtual size_t size() const = 0;
virtual void setValue(bool value) = 0;
virtual void setValue(int8_t value) = 0;
virtual void setValue(uint8_t value) = 0;
virtual void setValue(int16_t value) = 0;
virtual void setValue(uint16_t value) = 0;
virtual void setValue(int32_t value) = 0;
virtual void setValue(uint32_t value) = 0;
virtual void setValue(int64_t value) = 0;
virtual void setValue(uint64_t value) = 0;
virtual void setValue(float value) = 0;
virtual void setValue(double value) = 0;
virtual void setValue(const std::string& value) = 0;
virtual void setValue(const char* value) = 0;
virtual void getValue(bool& value) = 0;
virtual void getValue(int8_t& value) = 0;
virtual void getValue(uint8_t& value) = 0;
virtual void getValue(int16_t& value) = 0;
virtual void getValue(uint16_t& value) = 0;
virtual void getValue(int32_t& value) = 0;
virtual void getValue(uint32_t& value) = 0;
virtual void getValue(int64_t& value) = 0;
virtual void getValue(uint64_t& value) = 0;
virtual void getValue(float& value) = 0;
virtual void getValue(double& value) = 0;
virtual void getValue(std::string& value) = 0;
};
#endif | [
"75133872@qq.com"
] | 75133872@qq.com |
9133dd2a3278d416e867ed4f9f3e4a7dbc0da32f | aff44c1ec539a92fb47d72de91d83de980e60e6c | /snippets/c++/priority_queues/ints/ints.cpp | 65645721f848b08948ffe72262a5e0d0842f417f | [] | no_license | KarlMcBride/code_noodling | 510b9a141597a51b6ce9476eb9e843c88bacb9b3 | dd9fec7c58b2a51084d8c73b372c3ba5549257e0 | refs/heads/master | 2023-04-18T06:14:15.753266 | 2021-04-25T20:18:11 | 2021-04-25T21:30:15 | 217,909,370 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,079 | cpp | #include <functional>
#include <queue>
#include <vector>
#include <iostream>
template<typename T> void print_queue(T& q)
{
while(!q.empty())
{
std::cout << q.top() << " ";
q.pop();
}
std::cout << '\n';
}
int main()
{
std::cout << "q1: default sort" << std::endl;
std::priority_queue<int> q1;
for(int n : {1,8,5,6,3,4,0,9,7,2})
{
q1.push(n);
}
std::cout << "q1: ";
print_queue(q1);
std::cout << "q2: inverted sort using operator" << std::endl;
std::priority_queue<int, std::vector<int>, std::greater<int> > q2;
for(int n : {1,8,5,6,3,4,0,9,7,2})
{
q2.push(n);
}
std::cout << "q2: ";
print_queue(q2);
// Using lambda to compare elements.
std::cout << "q3: lamba-sorted queue" << std::endl;
auto cmp = [](int left, int right) { return (left ^ 1) > (right ^ 1); };
std::priority_queue<int, std::vector<int>, decltype(cmp)> q3(cmp);
for(int n : {1,8,5,6,3,4,0,9,7,2})
{
q3.push(n);
}
std::cout << "q3: ";
print_queue(q3);
}
| [
"karlmcbride1992@gmail.com"
] | karlmcbride1992@gmail.com |
039bf6fa606ce69e9b19feb437cfd5143dfdd7bf | 2ba0300a488f9a31c84f81df152d0840fbd6142d | /SQLite3 기본 사용/sqliteTest/sqliteTest/sqliteTestDlg.h | 4d77b7d2b6408be11de845d960b31bd05c790578 | [] | no_license | jess6117/StudyProgramming | f85f46fd23c119eec12e97084a3292e7fb82dde1 | f9a6238f21ba16c90f2a0c0057f0167ba4aa069b | refs/heads/master | 2020-03-11T09:03:40.576242 | 2018-03-18T10:30:23 | 2018-03-18T10:30:23 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 710 | h |
// sqliteTestDlg.h : 헤더 파일
//
#pragma once
#include "afxwin.h"
// CsqliteTestDlg 대화 상자
class CsqliteTestDlg : public CDialogEx
{
// 생성입니다.
public:
CsqliteTestDlg(CWnd* pParent = NULL); // 표준 생성자입니다.
void scanDB();
// 대화 상자 데이터입니다.
enum { IDD = IDD_SQLITETEST_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
// 구현입니다.
protected:
HICON m_hIcon;
// 생성된 메시지 맵 함수
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
CListBox viewDB;
};
| [
"ckj9014@gmail.com"
] | ckj9014@gmail.com |
f86e8874a1706cea01d52f88ce2eaf82d8df218c | dbd376d1ec5e44e7c08fd1bf41a83e07a8c49427 | /7.0/AVR rishav/rishav avr/Tachometer/Tachometer/uart.cpp | 5699ed87982ba4e01c2914852481baa1ce51bc2b | [] | no_license | sampada22/Atmel_Codes | cce8000f95c069230ecf4eb116ee0f58efcc1965 | c2cf71d849710e734aeca809ca4b769d015a490c | refs/heads/master | 2020-04-20T19:44:32.021223 | 2019-02-04T09:57:09 | 2019-02-04T09:57:09 | 169,057,261 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,935 | cpp |
/**************************************************************************
Title : Interrupt UART library with receive/transmit circular buffers
Author : Peter Fleury
Edited : Rishav Dhungel
DESCRIPTION:
An interrupt is generated when the UART has finished transmitting or
receiving a byte. The interrupt handling routines use circular buffers
for buffering received and transmitted data.
The UART_RX_BUFFER_SIZE and UART_TX_BUFFER_SIZE variables define
the buffer size in bytes. Note that these variables must be a
power of 2.
USAGE:
Referred to the header file uart.h for a description of the routines.
*****************************************************************************/
#include <avr/io.h>
#include <stdlib.h>
#include <avr/interrupt.h>
#include <avr/pgmspace.h>
#include "uart.h"
/* size of RX/TX buffers */
#define UART_RX_BUFFER_MASK ( UART_RX_BUFFER_SIZE - 1)
#define UART_TX_BUFFER_MASK ( UART_TX_BUFFER_SIZE - 1)
#if ( UART_RX_BUFFER_SIZE & UART_RX_BUFFER_MASK )
#error RX buffer size is not a power of 2
#endif
#if ( UART_TX_BUFFER_SIZE & UART_TX_BUFFER_MASK )
#error TX buffer size is not a power of 2
#endif
#define UART_RECEIVE_INTERRUPT USART_RXC_vect
#define UART_TRANSMIT_INTERRUPT USART_UDRE_vect
#define UART_STATUS UCSRA
#define UART_CONTROL UCSRB
#define UART_DATA UDR
#define UART_UDRIE UDRIE
/*
* module global variables
*/
static volatile unsigned char UART_TxBuf[UART_TX_BUFFER_SIZE];
static volatile unsigned char UART_RxBuf[UART_RX_BUFFER_SIZE];
static volatile unsigned char UART_TxHead;
static volatile unsigned char UART_TxTail;
static volatile unsigned char UART_RxHead;
static volatile unsigned char UART_RxTail;
static volatile unsigned char UART_LastRxError;
ISR(UART_RECEIVE_INTERRUPT)
/*************************************************************************
Function: UART Receive Complete interrupt
Purpose: called when the UART has received a character
**************************************************************************/
{
unsigned char tmphead;
unsigned char data;
unsigned char usr;
unsigned char lastRxError;
/* read UART status register and UART data register */
usr = UART_STATUS;
data = UART_DATA;
/* */
lastRxError = (usr & (_BV(FE)|_BV(DOR)) );
/* calculate buffer index */
tmphead = ( UART_RxHead + 1) & UART_RX_BUFFER_MASK;
if ( tmphead == UART_RxTail ) {
/* error: receive buffer overflow */
lastRxError = UART_BUFFER_OVERFLOW >> 8;
}else{
/* store new index */
UART_RxHead = tmphead;
/* store received data in buffer */
UART_RxBuf[tmphead] = data;
}
UART_LastRxError = lastRxError;
}
ISR(UART_TRANSMIT_INTERRUPT)
/*************************************************************************
Function: UART Data Register Empty interrupt
Purpose: called when the UART is ready to transmit the next byte
**************************************************************************/
{
unsigned char tmptail;
if ( UART_TxHead != UART_TxTail) {
/* calculate and store new buffer index */
tmptail = (UART_TxTail + 1) & UART_TX_BUFFER_MASK;
UART_TxTail = tmptail;
/* get one byte from buffer and write it to UART */
UART_DATA = UART_TxBuf[tmptail]; /* start transmission */
}else{
/* tx buffer empty, disable UDRE interrupt */
UART_CONTROL &= ~_BV(UART_UDRIE);
}
}
/*************************************************************************
Function: uart_init()
Purpose: initialize UART and set baudrate
Input: baudrate using macro UART_BAUD_SELECT()
Returns: none
**************************************************************************/
void uart_init(unsigned int baudrate)
{
UART_TxHead = 0;
UART_TxTail = 0;
UART_RxHead = 0;
UART_RxTail = 0;
/* Set baud rate */
if ( baudrate & 0x8000 )
{
UART_STATUS = (1<<U2X); //Enable 2x speed
baudrate &= ~0x8000;
}
UBRRH = (unsigned char)(baudrate>>8);
UBRRL = (unsigned char) baudrate;
/* Enable USART receiver and transmitter and receive complete interrupt */
UART_CONTROL = _BV(RXCIE)|(1<<RXEN)|(1<<TXEN);
/* Set frame format: asynchronous, 8data, no parity, 1stop bit */
UCSRC = (1<<URSEL)|(3<<UCSZ0);
UCSRC = (3<<UCSZ0);
}/* uart_init */
/*************************************************************************
Function: uart_getc()
Purpose: return byte from ringbuffer
Returns: lower byte: received byte from ringbuffer
higher byte: last receive error
**************************************************************************/
unsigned int uart_getc(void)
{
unsigned char tmptail;
unsigned char data;
if ( UART_RxHead == UART_RxTail ) {
return UART_NO_DATA; /* no data available */
}
/* calculate /store buffer index */
tmptail = (UART_RxTail + 1) & UART_RX_BUFFER_MASK;
UART_RxTail = tmptail;
/* get data from receive buffer */
data = UART_RxBuf[tmptail];
return (UART_LastRxError << 8) + data;
}/* uart_getc */
/*************************************************************************
Function: uart_putc()
Purpose: write byte to ringbuffer for transmitting via UART
Input: byte to be transmitted
Returns: none
**************************************************************************/
void uart_putc(unsigned char data)
{
unsigned char tmphead;
tmphead = (UART_TxHead + 1) & UART_TX_BUFFER_MASK;
while ( tmphead == UART_TxTail ){
;/* wait for free space in buffer */
}
UART_TxBuf[tmphead] = data;
UART_TxHead = tmphead;
/* enable UDRE interrupt */
UART_CONTROL |= _BV(UART_UDRIE);
}/* uart_putc */
/*************************************************************************
Function: uart_puts()
Purpose: transmit string to UART
Input: string to be transmitted
Returns: none
**************************************************************************/
void uart_puts(const char *s )
{
while (*s)
uart_putc(*s++);
}/* uart_puts */
/*************************************************************************
Function: uart_puts_p()
Purpose: transmit string from program memory to UART
Input: program memory string to be transmitted
Returns: none
**************************************************************************/
void uart_puts_p(const char *progmem_s )
{
register char c;
while ( (c = pgm_read_byte(progmem_s++)) )
uart_putc(c);
}/* uart_puts_p */
/*************************************************************************
Function: uart_available()
Purpose: Determine the number of bytes waiting in the receive buffer
Input: None
Returns: Integer number of bytes in the receive buffer
**************************************************************************/
int uart_available(void)
{
return (UART_RX_BUFFER_MASK + UART_RxHead - UART_RxTail) % UART_RX_BUFFER_MASK;
}/* uart_available */
/*************************************************************************
Function: uart_flush()
Purpose: Flush bytes waiting the receive buffer. Acutally ignores them.
Input: None
Returns: None
**************************************************************************/
void uart_flush(void)
{
UART_RxHead = UART_RxTail;
}/* uart_flush */
/*************************************************************************
Function: uart0_putint()
Purpose: transmit integer to UART0
Input: integer to be transmitted
Returns: none
**************************************************************************/
void uart_putint(int input)
{
char buffer[15];
itoa(input,buffer,10);
char * s = buffer;
while (*s)
uart_putc(*s++);
}
| [
"nepalisampada22@gmail.com"
] | nepalisampada22@gmail.com |
93c4c77e2e4d11ddfdab559e7f737c4e36b52c68 | e79d467952fe29add5456a2909b7358beb6a1028 | /Library/Form.hpp | b73d9b3271a9de604b067000793c464deb668865 | [] | no_license | olegoks/WinApiFormLibrary | 849ec200e59ee4170ee5cb0f4ffa5e79e9296199 | 4b89b126a14b5d0f2c23d3aa5076adc8c45106fd | refs/heads/master | 2023-04-11T00:16:31.252414 | 2021-04-24T20:04:36 | 2021-04-24T20:04:36 | 339,329,224 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,049 | hpp | #pragma once
#ifndef WINDOW_INTERFACE_HPP
#define WINDOW_INTERFACE_HPP
#include <windows.h>
#include <any>
#include "FormTypes.hpp"
class EXPIMP::std::any;
class EXPIMP Form{
private:
std::any impl_;
public:
explicit Form();
~Form()noexcept;
explicit Form(Form&& move_form)noexcept;
explicit Form(const Form& copy_form)noexcept = delete;
Form& operator=(Form&& move_form)noexcept;
Form& operator=(const Form& copy_form)noexcept = delete;
protected:
void Create(const HWND parent_hWnd = NULL);
void Show(int nCmdShow);
void Run();
void Destroy();
public:
void ChangeCaption(const std::wstring& caption);
const HWND GetHandle()const noexcept;
void SetProcessFunction(ProcessMessage messages_processing)noexcept;
void ChangeSize(const uint64_t width, const uint64_t height);
int GetWidth()const noexcept;
int GetHeight()const noexcept;
int GetX()const noexcept;
int GetY()const noexcept;
void ChangeStyle(DWORD ex_dwStyle, DWORD dwStyle);
void ChangePosition(uint64_t x, uint64_t y);
};
#endif //WINDOW_INTERFACE_HPP | [
"oleg.oksenchuk@mail.ru"
] | oleg.oksenchuk@mail.ru |
591453370a64bf5359317f81cd3f0af13a165e77 | 0c4bd1b977cc714a8a6b2839f51c4247ecfd32b1 | /C++/mkl-dnn/src/cpu/jit_uni_eltwise.cpp | 39a8fb3239717c30b26112504df32db4a028d371 | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | ishine/neuralLOGIC | 281d498b40159308815cee6327e6cf79c9426b16 | 3eb3b9980e7f7a7d87a77ef40b1794fb5137c459 | refs/heads/master | 2020-08-14T14:11:54.487922 | 2019-10-14T05:32:53 | 2019-10-14T05:32:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 60,579 | cpp | /*******************************************************************************
* Copyright 2017-2019 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
#include "c_types_map.hpp"
#include "dnnl_thread.hpp"
#include "nstl.hpp"
#include "utils.hpp"
#include "bfloat16.hpp"
#include "jit_avx512_core_bf16cvt.hpp"
#include "jit_uni_eltwise.hpp"
#define GET_OFF(field) offsetof(jit_args, field)
namespace dnnl {
namespace impl {
namespace cpu {
using namespace Xbyak;
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::injector_preamble(
size_t start_idx, size_t end_idx) {
preserved_vecs_count = 0;
vecs_to_preserve = (size_t)aux_vecs_count(alg_);
start_idx_tail = start_idx;
// For sse41 mask register has to be Xmm(0)
if (isa == sse41 && vecs_to_preserve > 0) {
size_t idx = 0;
assert(idx < start_idx);
preserved_vec_idxs[preserved_vecs_count++] = idx;
}
for (size_t idx = preserved_vecs_count; idx < vecs_count; idx++) {
if (preserved_vecs_count >= vecs_to_preserve) break;
if (start_idx <= idx && idx < end_idx) continue;
preserved_vec_idxs[preserved_vecs_count++] = idx;
}
size_t preserved_vecs_count_tail = vecs_to_preserve - preserved_vecs_count;
for (size_t i = 0; i < preserved_vecs_count_tail; i++) {
preserved_vec_idxs[preserved_vecs_count++] = start_idx_tail++;
}
assert(preserved_vecs_count == vecs_to_preserve);
if (save_state_) {
h->push(p_table);
if (preserved_vecs_count) h->sub(h->rsp, preserved_vecs_count * vlen);
for (size_t i = 0; i < preserved_vecs_count; ++i)
h->uni_vmovups(
h->ptr[h->rsp + i * vlen], Vmm(preserved_vec_idxs[i]));
load_table_addr();
}
assign_regs();
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::injector_preamble_tail(
size_t start_idx) {
size_t tail_vecs_to_preserve = start_idx_tail - start_idx;
if (tail_vecs_to_preserve == 0) return;
const int idx_off = vecs_to_preserve - tail_vecs_to_preserve;
if (save_state_) {
if (idx_off) h->add(h->rsp, idx_off * vlen);
for (size_t i = 0; i < tail_vecs_to_preserve; ++i)
h->uni_vmovups(Vmm(preserved_vec_idxs[idx_off + i]),
h->ptr[h->rsp + i * vlen]);
}
for (size_t i = 0; i < tail_vecs_to_preserve; ++i)
preserved_vec_idxs[idx_off + i] += tail_vecs_to_preserve;
if (save_state_) {
for (size_t i = 0; i < tail_vecs_to_preserve; ++i)
h->uni_vmovups(h->ptr[h->rsp + i * vlen],
Vmm(preserved_vec_idxs[idx_off + i]));
if (idx_off) h->sub(h->rsp, idx_off * vlen);
}
assign_regs();
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::injector_postamble() {
if (!save_state_) return;
for (size_t i = 0; i < preserved_vecs_count; ++i)
h->uni_vmovups(Vmm(preserved_vec_idxs[i]), h->ptr[h->rsp + i * vlen]);
if (preserved_vecs_count) h->add(h->rsp, preserved_vecs_count * vlen);
h->pop(p_table);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::assign_regs() {
vmm_mask = Vmm(preserved_vec_idxs[0]);
vmm_aux0 = Vmm(preserved_vec_idxs[0]);
vmm_aux1 = Vmm(preserved_vec_idxs[1]);
vmm_aux2 = Vmm(preserved_vec_idxs[2]);
vmm_aux3 = Vmm(preserved_vec_idxs[3]);
vmm_aux4 = Vmm(preserved_vec_idxs[4]);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::exp_compute_vector(const Vmm &vmm_src) {
// get mask of values lower than log(FLT_MIN) to zero them in the output
if (utils::one_of(isa, avx512_common, avx512_core))
h->vcmpps(k_mask, vmm_src, table_val(11), _cmp_lt_os);
else if (isa == avx2)
h->vcmpltps(vmm_mask, vmm_src, table_val(11));
else if (isa == sse41) {
h->uni_vmovups(vmm_mask, vmm_src);
h->cmpltps(vmm_mask, table_val(11));
}
h->uni_vminps(vmm_src, vmm_src, table_val(10));
h->uni_vmaxps(vmm_src, vmm_src, table_val(11));
h->uni_vmovups(vmm_aux1, vmm_src);
//calculate exp(x)
// fx = x * log2ef + 0.5
h->uni_vmulps(vmm_src, vmm_src, table_val(2));
h->uni_vaddps(vmm_src, vmm_src, table_val(1));
// tmp = floorf(fx)
h->uni_vroundps(vmm_aux2, vmm_src, _op_floor);
//keep fx for further computations
h->uni_vmovups(vmm_src, vmm_aux2); //vmm_src = fx
//x = x - fx * ln2
h->uni_vfnmadd231ps(vmm_aux1, vmm_aux2, table_val(3));
// compute 2^n
h->uni_vcvtps2dq(vmm_aux2, vmm_src);
h->uni_vpaddd(vmm_aux2, vmm_aux2, table_val(4));
h->uni_vpslld(vmm_aux2, vmm_aux2, 23); //Vmm(6) = 2^-fx
// use vmm_src as tmp vmm_zero when applying mask
h->uni_vpxor(vmm_src, vmm_src, vmm_src);
// set zeroes according to the mask
if (utils::one_of(isa, avx512_common, avx512_core))
h->vblendmps(vmm_aux2 | k_mask, vmm_aux2, vmm_src);
else
h->uni_vblendvps(vmm_aux2, vmm_aux2, vmm_src, vmm_mask);
// y = p5
h->uni_vmovups(vmm_src, table_val(9));
// y = y * x + p4
h->uni_vfmadd213ps(vmm_src, vmm_aux1, table_val(8));
// y = y * x + p3
h->uni_vfmadd213ps(vmm_src, vmm_aux1, table_val(7));
// y = y * x + p2
h->uni_vfmadd213ps(vmm_src, vmm_aux1, table_val(6));
// y = y * x + p1
h->uni_vfmadd213ps(vmm_src, vmm_aux1, table_val(0));
// y = y * x + p0
h->uni_vfmadd213ps(vmm_src, vmm_aux1, table_val(5)); //exp(q)
// y = y * 2^n
h->uni_vmulps(vmm_src, vmm_src, vmm_aux2);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::relu_compute_vector(
const Vmm &vmm_src) {
const int alpha_off = 0, zero_off = 1;
h->uni_vmovups(vmm_aux1, vmm_src);
if (isa == sse41) {
h->movups(vmm_mask, vmm_src);
h->mulps(vmm_src, table_val(alpha_off));
h->cmpps(vmm_mask, table_val(zero_off), _cmp_nle_us);
h->blendvps(vmm_src, vmm_aux1);
} else if (isa == avx2) {
h->vmulps(vmm_src, vmm_src, table_val(alpha_off));
h->vcmpgtps(vmm_mask, vmm_aux1, table_val(zero_off));
h->vblendvps(vmm_src, vmm_src, vmm_aux1, vmm_mask);
} else if (utils::one_of(isa, avx512_common, avx512_core)) {
h->vmulps(vmm_src, vmm_src, table_val(alpha_off));
h->vcmpps(k_mask, vmm_aux1, table_val(zero_off), _cmp_nle_us);
h->vblendmps(vmm_src | k_mask, vmm_src, vmm_aux1);
}
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::relu_zero_ns_compute_vector(
const Vmm &vmm_src) {
const int zero_off = 1;
h->uni_vmaxps(vmm_src, vmm_src, table_val(zero_off));
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::elu_compute_vector(const Vmm &vmm_src) {
const int alpha_off = 25, zero_off = 26;
// compute exponent
h->uni_vmovups(vmm_aux3, vmm_src);
exp_compute_vector(vmm_src);
// alpha * (exp(x) - 1)
h->uni_vsubps(vmm_src, vmm_src, table_val(0));
h->uni_vmulps(vmm_src, vmm_src, table_val(alpha_off));
// combine with mask
if (isa == sse41) {
h->pxor(vmm_mask, vmm_mask);
h->cmpps(vmm_mask, vmm_aux3, _cmp_le_os);
h->blendvps(vmm_src, vmm_aux3);
} else if (isa == avx2) {
h->uni_vcmpgtps(vmm_mask, vmm_aux3, table_val(zero_off));
h->uni_vblendvps(vmm_src, vmm_src, vmm_aux3, vmm_mask);
} else if (utils::one_of(isa, avx512_common, avx512_core)) {
h->vcmpps(k_mask, vmm_aux3, table_val(zero_off), _cmp_nle_us);
h->vblendmps(vmm_src | k_mask, vmm_src, vmm_aux3);
}
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::tanh_compute_vector(
const Vmm &vmm_src) {
// # comes from Taylor expansion error bound
// > linear_sat_point = single(sqrt(3) * 1b-12);
// # comes from the exp formula cancellation
// > exp_bound_point = (single(log(3)/2));
// # comes from rounding accuracy in float
// > one_sat_point = round(atanh(1 - 1b-25), single, RU);
// > P = fpminimax(f, [|1, 3, 5, 7, 9|], [|24... |],
// [linear_sat_point, exp_bound_point], relative, floating);
// > err_bound = D(sup(supnorm(P, tanh(x),
// [linear_sat_point, exp_bound_point], relative, theta)));
// 0x1.fffd6f00b9539p-25
// > P;
// x * (0x1.fffffep-1 + x^0x1p1 * (-0x1.55539ep-2 + x^0x1p1 *
// (0x1.10be3ep-3 + x^0x1p1 * (-0x1.ae57b4p-5
// + x^0x1p1 * 0x1.09fa1p-6))))
// register mapping
// vmm_src contains input
// vmm_aux0 contains mask of currently valid results.
// 1 is need computation, 0 is already computed
// vmm_aux1 contains current output
// vmm_aux2, vmm_aux3 contains auxiliary values
// vmm_aux4 contains the original sign of inputs
Label end_tanh_label;
auto test_exit = [&](Xbyak::Address threshold) {
// is not necessary for >AVX, but should not matter on perf
h->uni_vmovups(vmm_aux0, vmm_src);
if (utils::one_of(isa, avx512_common, avx512_core)) {
h->vcmpps(k_mask, vmm_aux0, threshold, 0x5);
h->kortestw(k_mask, k_mask);
} else {
h->uni_vcmpgeps(vmm_aux0, vmm_aux0, threshold);
h->uni_vtestps(vmm_aux0, vmm_aux0);
}
h->jz(end_tanh_label, Xbyak::CodeGenerator::T_NEAR);
};
auto blend_results = [&](Vmm vmm_partial_res) {
if (utils::one_of(isa, avx512_common, avx512_core))
h->vblendmps(vmm_aux1 | k_mask, vmm_aux1, vmm_partial_res);
else
h->uni_vblendvps(vmm_aux1, vmm_aux1, vmm_partial_res, vmm_aux0);
};
// because tanh(x) = -tanh(-x), we extract sign to make x postive
// and reapply sign at the end
// mov is not necessary for >AVX, but should not matter for performance
h->uni_vmovups(vmm_aux4, vmm_src);
h->uni_vandps(vmm_aux4, vmm_aux4, table_val(12));
h->uni_vandps(vmm_src, vmm_src, table_val(17));
// if x < linear_sat_point for all inputs, we just return the input
h->uni_vmovups(vmm_aux1, vmm_src);
test_exit(table_val(13));
// if one of the mask is one, we have to compute an better approx
h->uni_vmovups(vmm_aux2, vmm_src);
h->uni_vmulps(vmm_aux2, vmm_aux2, vmm_aux2);
h->uni_vmovups(vmm_aux3, table_val(22));
h->uni_vfmadd213ps(vmm_aux3, vmm_aux2, table_val(21));
h->uni_vfmadd213ps(vmm_aux3, vmm_aux2, table_val(20));
h->uni_vfmadd213ps(vmm_aux3, vmm_aux2, table_val(19));
h->uni_vfmadd213ps(vmm_aux3, vmm_aux2, table_val(18));
h->uni_vmulps(vmm_aux3, vmm_aux3, vmm_src);
// we blend only the result that need update
blend_results(vmm_aux3);
// if x < exp_bound_point, we go to return point
test_exit(table_val(14));
// if not we use a better approx 1 - 2 / (1 + exp(2x))
// compute 2x
h->uni_vmovups(vmm_aux3, vmm_src);
h->uni_vaddps(vmm_aux3, vmm_aux3, vmm_aux3);
// Compute exp(2x)
// We need to save kmask, vmm_aux0, vmm_aux1, vmm_aux2 and vmm_src as exp
// uses them.
// vmm_src is not more read afterwards, so we do not have to save it
auto stack_size
= 4 * vlen + utils::one_of(isa, avx512_common, avx512_core) * 4;
h->sub(h->rsp, stack_size);
h->uni_vmovups(h->ptr[h->rsp + 0 * vlen], vmm_aux0);
h->uni_vmovups(h->ptr[h->rsp + 1 * vlen], vmm_aux1);
h->uni_vmovups(h->ptr[h->rsp + 2 * vlen], vmm_aux2);
h->uni_vmovups(h->ptr[h->rsp + 3 * vlen], vmm_src);
if (utils::one_of(isa, avx512_common, avx512_core))
h->kmovw(h->ptr[h->rsp + 4 * vlen], k_mask);
exp_compute_vector(vmm_aux3);
h->uni_vmovups(vmm_aux0, h->ptr[h->rsp + 0 * vlen]);
h->uni_vmovups(vmm_aux1, h->ptr[h->rsp + 1 * vlen]);
h->uni_vmovups(vmm_aux2, h->ptr[h->rsp + 2 * vlen]);
h->uni_vmovups(vmm_src, h->ptr[h->rsp + 3 * vlen]);
if (utils::one_of(isa, avx512_common, avx512_core))
h->kmovw(k_mask, h->ptr[h->rsp + 4 * vlen]);
h->add(h->rsp, stack_size);
// 1 + exp(2x)
h->uni_vaddps(vmm_aux3, vmm_aux3, table_val(0));
// 1 - 2 / (1 + exp(2x))
h->uni_vmovups(vmm_aux2, table_val(16));
h->uni_vdivps(vmm_aux2, vmm_aux2, vmm_aux3);
h->uni_vaddps(vmm_aux2, vmm_aux2, table_val(0));
// we blend only the result that need update
blend_results(vmm_aux2);
// finally, we saturate to 1 if needed
// TODO: maybe move that up if most inputs saturate in practice
if (utils::one_of(isa, avx512_common, avx512_core))
h->vcmpps(k_mask, vmm_aux0, table_val(15), 0x5);
else {
h->uni_vmovups(vmm_aux0, vmm_src);
h->uni_vcmpgeps(vmm_aux0, vmm_aux0, table_val(15));
}
h->uni_vmovups(vmm_aux2, table_val(0));
blend_results(vmm_aux2);
h->L(end_tanh_label);
{
// we apply the sign of x to the result and we are done
h->uni_vmovups(vmm_src, vmm_aux1);
h->uni_vpxor(vmm_src, vmm_src, vmm_aux4);
}
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::gelu_compute_vector(
const Vmm &vmm_src) {
h->uni_vmovups(vmm_aux0, vmm_src);
// compute G(x) = a * x * (1 + b * x * x)
h->uni_vmulps(vmm_src, vmm_src, vmm_src);
h->uni_vmovups(vmm_aux1, table_val(23));
h->uni_vfmadd213ps(vmm_src, vmm_aux1, table_val(0));
h->uni_vmulps(vmm_src, vmm_src, vmm_aux0);
h->uni_vmulps(vmm_src, vmm_src, table_val(24));
// save x on stack as tanh uses vmm_aux0
h->sub(h->rsp, vlen);
h->uni_vmovups(h->ptr[h->rsp], vmm_aux0);
// compute tanh G(x)
tanh_compute_vector(vmm_src);
h->uni_vmovups(vmm_aux0, h->ptr[h->rsp]);
h->add(h->rsp, vlen);
// compute 0.5 * x * (1 + tanh)
h->uni_vaddps(vmm_src, vmm_src, table_val(0));
h->uni_vmulps(vmm_src, vmm_src, table_val(1));
h->uni_vmulps(vmm_src, vmm_src, vmm_aux0);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::square_compute_vector(
const Vmm &vmm_src) {
h->uni_vmulps(vmm_src, vmm_src, vmm_src);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::abs_compute_vector(const Vmm &vmm_src) {
// compute abs(x) = _mm_and_ps(x, 01111..111));
h->uni_vandps(vmm_src, vmm_src, table_val(0));
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::sqrt_compute_vector(
const Vmm &vmm_src) {
if (utils::one_of(isa, avx512_common, avx512_core)) {
h->vcmpps(k_mask, vmm_src, table_val(0), _cmp_nle_us);
h->uni_vsqrtps(vmm_aux1, vmm_src);
h->uni_vmovups(vmm_src, table_val(0));
h->vblendmps(vmm_src | k_mask, vmm_src, vmm_aux1);
} else {
h->uni_vmovups(vmm_mask, vmm_src);
h->uni_vcmpgtps(vmm_mask, vmm_mask, table_val(0));
h->uni_vsqrtps(vmm_aux1, vmm_src);
h->uni_vmovups(vmm_src, table_val(0));
h->uni_vblendvps(vmm_src, vmm_src, vmm_aux1, vmm_mask);
}
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::linear_compute_vector(
const Vmm &vmm_src) {
// compute x = alpha * x + beta;
h->uni_vmovups(vmm_aux0, table_val(0));
h->uni_vfmadd213ps(vmm_src, vmm_aux0, table_val(1));
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::bounded_relu_compute_vector(
const Vmm &vmm_src) {
// compute bounded relu */
h->uni_vmaxps(vmm_src, vmm_src, table_val(1));
h->uni_vminps(vmm_src, vmm_src, table_val(0));
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::soft_relu_compute_vector(
const Vmm &vmm_src) {
// duplicate src
h->uni_vmovups(vmm_aux2, vmm_src);
h->uni_vminps(vmm_src, vmm_src, table_val(24));
h->uni_vmaxps(vmm_src, vmm_src, table_val(25));
h->uni_vmovups(vmm_aux1, vmm_src);
// calculate exp(x)
// fx = x * log2ef + 0.5
h->uni_vmulps(vmm_src, vmm_src, table_val(2));
h->uni_vaddps(vmm_src, vmm_src, table_val(1));
// tmp = floorf(fx)
h->uni_vroundps(vmm_aux0, vmm_src, _op_floor);
// keep fx for further computations
h->uni_vmovups(vmm_src, vmm_aux0); //vmm_src = fx
// calculation fx * ln2
h->uni_vmulps(vmm_aux0, vmm_aux0, table_val(3));
// x = x - fx * ln2
h->uni_vsubps(vmm_aux1, vmm_aux1, vmm_aux0);
// y = p5
h->uni_vmovups(vmm_aux3, table_val(22));
// y = y * x + p4
h->uni_vfmadd213ps(vmm_aux3, vmm_aux1, table_val(21));
// y = y * x + p3
h->uni_vfmadd213ps(vmm_aux3, vmm_aux1, table_val(20));
// y = y * x + p2
h->uni_vfmadd213ps(vmm_aux3, vmm_aux1, table_val(19));
// y = y * x + p1
h->uni_vfmadd213ps(vmm_aux3, vmm_aux1, table_val(0));
// y = y * x + p0
h->uni_vfmadd213ps(vmm_aux3, vmm_aux1, table_val(17));
// compute 2^(-n)
if (utils::one_of(isa, avx512_common, avx512_core)) {
h->vmulps(vmm_aux1, vmm_src, table_val(23));
h->vcvtps2dq(vmm_aux1, vmm_aux1);
} else {
h->uni_vcvtps2dq(vmm_aux1, vmm_src);
h->uni_vpsignd(vmm_aux1, vmm_aux1, table_val(23));
}
h->uni_vpaddd(vmm_aux1, vmm_aux1, table_val(4));
h->uni_vpslld(vmm_aux1, vmm_aux1, 23); //vmm_aux1 = 2^-fx
// calculate ln(1 + y)
h->uni_vaddps(vmm_aux3, vmm_aux3, vmm_aux1);
// x = y; y is free; keep x for further computations
h->uni_vmovups(vmm_src, vmm_aux3);
// frexp()
h->uni_vpsrld(vmm_src, vmm_src, 23);
h->uni_vcvtdq2ps(vmm_src, vmm_src);
// got n. where n is x = 2^n * y. y = 0.5 .. 1
h->uni_vsubps(vmm_src, vmm_src, table_val(5));
h->uni_vandps(vmm_aux3, vmm_aux3, table_val(6));
// got y. (mantisa) 0.5 < y < 1
h->uni_vorps(vmm_aux3, vmm_aux3, table_val(7));
// y = y - 1
h->uni_vsubps(vmm_aux3, vmm_aux3, table_val(0));
// y = p8
h->uni_vmovups(vmm_aux1, table_val(16));
// y = y * x + p7
h->uni_vfmadd213ps(vmm_aux1, vmm_aux3, table_val(15));
// y = y * x + p6
h->uni_vfmadd213ps(vmm_aux1, vmm_aux3, table_val(14));
// y = y * x + p5
h->uni_vfmadd213ps(vmm_aux1, vmm_aux3, table_val(13));
// y = y * x + p4
h->uni_vfmadd213ps(vmm_aux1, vmm_aux3, table_val(12));
// y = y * x + p3
h->uni_vfmadd213ps(vmm_aux1, vmm_aux3, table_val(11));
// y = y * x + p2
h->uni_vfmadd213ps(vmm_aux1, vmm_aux3, table_val(10));
// y = y * x + p1
h->uni_vfmadd213ps(vmm_aux1, vmm_aux3, table_val(9));
// y = y * x + p0 ; p0 = 0
h->uni_vfmadd213ps(vmm_aux1, vmm_aux3, table_val(8));
//calculate ln(2) * n
h->uni_vmulps(vmm_src, vmm_src, table_val(3));
h->uni_vaddps(vmm_aux1, vmm_aux1, vmm_src);
h->uni_vaddps(vmm_aux1, vmm_aux1, vmm_aux0);
// get vmm_mask = src > max logf
h->uni_vmovups(vmm_mask, vmm_aux2);
if (utils::one_of(isa, avx512_common, avx512_core)) {
// y = (x < max log f) ? soft_relu(x) : x
h->vcmpps(k_mask, vmm_mask, table_val(24), _cmp_nle_us);
h->vblendmps(vmm_aux1 | k_mask, vmm_aux1, vmm_aux2);
} else {
// y = (x < max log f) ? soft_relu(x) : x
h->uni_vcmpgtps(vmm_mask, vmm_mask, table_val(24));
h->uni_vblendvps(vmm_aux1, vmm_aux1, vmm_aux2, vmm_mask);
}
h->uni_vmovups(vmm_src, vmm_aux1);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::logistic_compute_vector(
const Vmm &vmm_src) {
// we store the original sign and make x negative
// IMPORTANT: we assume vmm_aux0 to be xmm0, as for sse4.1 path it is required
// IMPORTANT: we use vmm_aux3 for the mask as exp_compute does not use it.
h->uni_vmovups(vmm_aux3, vmm_src);
h->uni_vandps(vmm_aux3, vmm_aux3, table_val(12));
h->uni_vorps(vmm_src, vmm_src, table_val(12));
exp_compute_vector(vmm_src);
// dup exp(x)
h->uni_vmovups(vmm_aux1, vmm_src);
// (exp(x) + 1)
h->uni_vaddps(vmm_aux1, vmm_aux1, table_val(0));
// y = exp(x) / (exp(x) + 1)
h->uni_vdivps(vmm_src, vmm_src, vmm_aux1);
// Now we have to apply the "symmetry" based on original sign
h->uni_vmovups(vmm_aux2, table_val(0));
h->uni_vsubps(vmm_aux2, vmm_aux2, vmm_src);
if (utils::one_of(isa, avx512_common, avx512_core)) {
h->vptestmd(k_mask, vmm_aux3, vmm_aux3);
h->vblendmps(vmm_aux2 | k_mask, vmm_aux2, vmm_src);
} else {
h->uni_vmovups(
vmm_aux0, vmm_aux3); // The mask should be xmm0 for sse4.1
h->uni_vblendvps(vmm_aux2, vmm_aux2, vmm_src, vmm_aux0);
}
h->uni_vmovups(vmm_src, vmm_aux2);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::swish_compute_vector(
const Vmm &vmm_src) {
const int alpha_off = 25;
// Save src data on stack for later usage
h->sub(h->rsp, vlen);
h->uni_vmovups(h->ptr[h->rsp], vmm_src);
// x*alpha
h->uni_vmulps(vmm_src, vmm_src, table_val(alpha_off));
// sigmoid(x*alpha)
logistic_compute_vector(vmm_src);
// x*sigmoid(alpha*x)
h->uni_vmovups(vmm_aux0, h->ptr[h->rsp]);
h->add(h->rsp, vlen);
h->uni_vmulps(vmm_src, vmm_src, vmm_aux0);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::relu_prepare_table() {
for (size_t d = 0; d < vlen / sizeof(float); ++d)
h->dd(float2int(alpha_));
for (size_t d = 0; d < vlen / sizeof(float); ++d)
h->dd(0);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::elu_prepare_table() {
const unsigned int cvals[] = {
0x3f800000, // [0] 1.0f
0x3f000000, // [1] 0.5f
0x3fb8aa3b, // [2] log2ef = 1.44269502f
0x3f317218, // [3] ln2f = 0.69314718f
0x0000007f, // [4] 0x7f
// exp(x) polynom
0x3f800001, // [5] p0 = 1.0000001f
0x3efffe85, // [6] p2 = 0.4999887f
0x3e2aaa3e, // [7] p3 = 0.16666505f
0x3d2bb1b1, // [8] p4 = 0.041917507f
0x3c091ec1, // [9] p5 = 0.008369149f
0x42b17218, //[10] logf(FLT_MAX)
0xc2aeac50, //[11] logf(FLT_MIN)
// tanh(x) constants,
0x80000000, //[12] mask to extract sign
0x39ddb3d7, //[13] arg below which tanh(x) = x
0x3f0c9f54, //[14] arg below which pol approx is valid
0x41102cb4, //[15] arg after which tanh(x) = 1
0xc0000000, //[16] -2.0f
0x7fffffff, //[17] mask to make positive
// tanh pol approx
0x3f7fffff, //[18] p0
0xbeaaa9cf, //[19] p1
0x3e085f1f, //[20] p2
0xbd572bda, //[21] p3
0x3c84fd08, //[22] p4
// gelu approx constants
0x3d372713, //[23] 0.044715
0x3f4c4229, //[24] sqrt(2/pi)
};
for (size_t i = 0; i < sizeof(cvals) / sizeof(cvals[0]); ++i) {
for (size_t d = 0; d < vlen / sizeof(float); ++d)
h->dd(cvals[i]);
}
for (size_t d = 0; d < vlen / sizeof(float); ++d)
h->dd(float2int(alpha_));
for (size_t d = 0; d < vlen / sizeof(float); ++d)
h->dd(0);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::soft_relu_prepare_table() {
const unsigned int cvals[] = {
0x3f800000, // [0] 1.0f
0x3f000000, // [1] 0.5f
0x3fb8aa3b, // [2] log2ef = 1.44269502f
0x3f317218, // [3] ln2f = 0.69314718f
0x0000007f, // [4] 0x7f
0x42fc0000, // [5] 126
0x807fffff, // [6] and with (to get 0.5 * mantissa)
0x3f000000, // [7] or with (to get 0.5 * mantissa)
// ln(1 + x) polynomial
0xb2b4637d, // [8] p0 = 0.0000000244f
0x3f7fff8e, // [9] p1 = 0.9999976971f
0xbf001759, //[10] p2 = -0.5002478215f
0x3ea70608, //[11] p3 = 0.3272714505f
0xbea3d7bf, //[12] p4 = -0.3153830071f
0xbe361d04, //[13] p5 = -0.1701777461f
0xbfa8f1e6, //[14] p6 = -1.3254635147f
0xbfe1e812, //[15] p7 = -1.7971917960f
0xbfc4d30e, //[16] p8 = -1.5652673123f
// exp(x) polynomial
0x3f800001, //[17] p0 = 1.0000001f
0x3f800000, //[18] p1 = 1.0f
0x3efffe85, //[19] p2 = 0.4999887f
0x3e2aaa3e, //[20] p3 = 0.16666505f
0x3d2bb1b1, //[21] p4 = 0.041917507f
0x3c091ec1, //[22] p5 = 0.008369149f
0xbf800000, //[23] is required for sign changing
// TODO: update values [24] and [25] from comments as they are more precise
0x42b0c0a5, //[24] max logf = 88.3762589f //0x42b17218, //[24] logf(FLT_MAX)
0xc1766666 //[25] min logf = -14.5f //0xc2aeac50, //[25] logf(FLT_MIN)
};
for (size_t i = 0; i < sizeof(cvals) / sizeof(cvals[0]); ++i) {
for (size_t d = 0; d < vlen / sizeof(float); ++d) {
h->dd(cvals[i]);
}
}
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::abs_prepare_table() {
for (size_t d = 0; d < vlen / sizeof(float); ++d)
h->dd(0x7fffffff);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::sqrt_prepare_table() {
for (size_t d = 0; d < vlen / sizeof(float); ++d)
h->dd(0);
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::linear_prepare_table() {
for (size_t d = 0; d < vlen / sizeof(float); ++d)
h->dd(float2int(alpha_));
for (size_t d = 0; d < vlen / sizeof(float); ++d)
h->dd(float2int(beta_));
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::bounded_relu_prepare_table() {
for (size_t d = 0; d < vlen / sizeof(float); ++d)
h->dd(float2int(alpha_));
for (size_t d = 0; d < vlen / sizeof(float); ++d)
h->dd(0);
}
template <cpu_isa_t isa>
int jit_uni_eltwise_injector_f32<isa>::aux_vecs_count(alg_kind_t alg_) {
switch (alg_) {
case alg_kind::eltwise_relu: return (alpha_ == 0.f) ? 0 : 2;
case alg_kind::eltwise_elu: return 4;
case alg_kind::eltwise_tanh: return 5;
case alg_kind::eltwise_square: return 0;
case alg_kind::eltwise_abs: return 0;
case alg_kind::eltwise_sqrt: return 2;
case alg_kind::eltwise_swish: return 4;
case alg_kind::eltwise_linear: return 1;
case alg_kind::eltwise_bounded_relu: return 0;
case alg_kind::eltwise_soft_relu: return 4;
case alg_kind::eltwise_logistic: return 4;
case alg_kind::eltwise_exp: return 3;
case alg_kind::eltwise_gelu: return 5;
default: assert(!"unsupported eltwise algorithm");
}
return 0;
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::compute_body(
size_t start_idx, size_t end_idx) {
using namespace alg_kind;
for (size_t idx = start_idx; idx < end_idx; idx++) {
switch (alg_) {
case eltwise_relu:
if (alpha_ == 0.f)
relu_zero_ns_compute_vector(Vmm(idx));
else
relu_compute_vector(Vmm(idx));
break;
case eltwise_elu: elu_compute_vector(Vmm(idx)); break;
case eltwise_tanh: tanh_compute_vector(Vmm(idx)); break;
case eltwise_square: square_compute_vector(Vmm(idx)); break;
case eltwise_abs: abs_compute_vector(Vmm(idx)); break;
case eltwise_sqrt: sqrt_compute_vector(Vmm(idx)); break;
case eltwise_swish: swish_compute_vector(Vmm(idx)); break;
case eltwise_linear: linear_compute_vector(Vmm(idx)); break;
case eltwise_bounded_relu:
bounded_relu_compute_vector(Vmm(idx));
break;
case eltwise_soft_relu: soft_relu_compute_vector(Vmm(idx)); break;
case eltwise_logistic: logistic_compute_vector(Vmm(idx)); break;
case eltwise_exp: exp_compute_vector(Vmm(idx)); break;
case eltwise_gelu: gelu_compute_vector(Vmm(idx)); break;
default: assert(!"unsupported eltwise algorithm");
}
}
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::compute_vector_range(
size_t start_idx, size_t end_idx) {
assert(start_idx < end_idx && end_idx <= vecs_count);
injector_preamble(start_idx, end_idx);
compute_body(start_idx_tail, end_idx);
injector_preamble_tail(start_idx);
compute_body(start_idx, start_idx_tail);
injector_postamble();
}
template <cpu_isa_t isa>
void jit_uni_eltwise_injector_f32<isa>::prepare_table(bool gen_table) {
using namespace alg_kind;
h->align(64);
h->L(l_table);
if (gen_table) {
switch (alg_) {
case eltwise_relu: relu_prepare_table(); break;
case eltwise_elu:
case eltwise_tanh:
case eltwise_logistic:
case eltwise_exp:
case eltwise_gelu: elu_prepare_table(); break;
case eltwise_soft_relu: soft_relu_prepare_table(); break;
case eltwise_abs: abs_prepare_table(); break;
case eltwise_sqrt: sqrt_prepare_table(); break;
case eltwise_swish: elu_prepare_table(); break;
case eltwise_linear: linear_prepare_table(); break;
case eltwise_bounded_relu: bounded_relu_prepare_table(); break;
case eltwise_square: break;
default: assert(!"unsupported eltwise algorithm");
}
}
}
template struct jit_uni_eltwise_injector_f32<avx512_common>;
template struct jit_uni_eltwise_injector_f32<avx512_core>;
template struct jit_uni_eltwise_injector_f32<avx2>;
template struct jit_uni_eltwise_injector_f32<sse41>;
struct jit_args {
const void *from;
const void *for_comparison;
const void *to;
size_t work_amount;
};
struct jit_uni_eltwise_kernel : public c_compatible {
const eltwise_desc_t &desc_;
void (*ker_)(const jit_args *);
void operator()(const jit_args *args) {
assert(ker_);
ker_(args);
}
jit_uni_eltwise_kernel(const eltwise_desc_t &desc)
: desc_(desc), ker_(nullptr) {}
virtual ~jit_uni_eltwise_kernel() {}
protected:
bool is_bwd() const { return desc_.prop_kind == prop_kind::backward_data; }
data_type_t data_type() const { return desc_.data_desc.data_type; }
bool is_bf16() const { return data_type() == data_type::bf16; }
int dtype_size() const { return types::data_type_size(data_type()); }
};
/* jit kernels */
namespace {
using namespace Xbyak;
struct jit_bf16_eltwise_injector {
jit_bf16_eltwise_injector(jit_generator *host, Zmm zmm_idx,
Opmask k_mask_cvt, Opmask k_tail_mask, Opmask k_full_mask,
bf16_emulation_t *emu)
: h(host)
, emu_(emu)
, zmm_idx_(zmm_idx)
, k_mask_cvt_(k_mask_cvt)
, k_tail_mask_(k_tail_mask)
, k_full_mask_(k_full_mask) {}
void write_idx_table() {
h->align(64);
h->L(idx_table_);
const uint16_t _idx[] = {0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7,
8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15};
for (size_t i = 0; i < sizeof(_idx) / sizeof(_idx[0]); ++i)
h->dw(_idx[i]);
}
void load_idx_table() {
Reg64 p_idx_table = Xbyak::util::r13;
h->push(p_idx_table);
h->mov(p_idx_table, idx_table_);
h->vmovups(zmm_idx_, h->ptr[p_idx_table]);
h->pop(p_idx_table);
}
void prepare_cvt_mask() {
Reg64 mask_reg = Xbyak::util::r14;
h->push(mask_reg);
h->mov(mask_reg.cvt32(), 0xAAAAAAAA);
h->kmovd(k_mask_cvt_, mask_reg.cvt32());
h->mov(mask_reg.cvt32(), 0x1);
h->kmovd(k_tail_mask_, mask_reg.cvt32());
h->mov(mask_reg.cvt32(), 0xffff);
h->kmovd(k_full_mask_, mask_reg.cvt32());
h->pop(mask_reg);
}
void load_bf16_cvt_to_f32(size_t idx, Reg64 reg_from, bool is_tail = false,
size_t offset = 0) {
Ymm ymm_bf16 = Ymm(idx);
Zmm zmm_f32 = Zmm(idx);
if (!is_tail)
h->vmovups(ymm_bf16, h->ptr[reg_from]);
else
h->vmovdqu16(ymm_bf16 | k_tail_mask_, h->ptr[reg_from + offset]);
h->vpermw(zmm_f32 | k_mask_cvt_ | Xbyak::util::T_z, zmm_idx_, zmm_f32);
}
void cvt_f32_to_bf16_store(
size_t idx, Reg64 reg_to, bool is_tail = false, size_t offset = 0) {
Ymm ymm_bf16 = Ymm(idx);
Zmm zmm_f32 = Zmm(idx);
if (emu_)
emu_->vcvtneps2bf16(ymm_bf16, zmm_f32);
else
h->vcvtneps2bf16(ymm_bf16, zmm_f32);
if (!is_tail)
h->vmovdqu16(h->ptr[reg_to + offset] | k_full_mask_, ymm_bf16);
else
h->vmovdqu16(h->ptr[reg_to + offset] | k_tail_mask_, ymm_bf16);
}
private:
jit_generator *const h;
bf16_emulation_t *const emu_;
Xbyak::Label idx_table_;
Xbyak::Zmm zmm_idx_;
Xbyak::Opmask k_mask_cvt_, k_tail_mask_, k_full_mask_;
};
template <cpu_isa_t isa>
struct jit_uni_relu_kernel_float : public jit_uni_eltwise_kernel,
public jit_generator {
DECLARE_CPU_JIT_AUX_FUNCTIONS(jit_uni_relu_kernel_float)
void compute_step(bool vectorize, const int uf, const int shift) {
auto load_vec = [=](int idx, Reg64 reg_addr, int offset) {
if (is_bf16()) {
bf16_injector_->load_bf16_cvt_to_f32(
idx, reg_addr, false, offset);
} else {
uni_vmovups(Vmm(idx), ptr[reg_addr + offset]);
}
};
auto load_elem = [=](int idx, Reg64 reg_addr, int offset) {
if (is_bf16()) {
bf16_injector_->load_bf16_cvt_to_f32(
idx, reg_addr, true, offset);
} else {
movss(Xmm(idx), ptr[reg_addr + offset]);
}
};
for (int i = 0; i < uf; i++) {
int offset = i * shift;
if (vectorize) {
load_vec(i + 1, reg_from, offset);
if (is_bwd()) {
load_vec(uf + i + 1, reg_for_comparison, offset);
}
} else {
load_elem(i + 1, reg_from, offset);
if (is_bwd()) {
load_elem(uf + i + 1, reg_for_comparison, offset);
}
}
}
if (isa == sse41) {
for (int i = 0; i < uf; i++) {
movups(Vmm(2 * uf + i + 1), Vmm(i + 1));
mulps(Vmm(2 * uf + i + 1), vmm_ns);
Vmm mask = Vmm(0);
if (is_bwd()) {
movups(mask, Vmm(uf + i + 1));
cmpps(mask, vmm_zero, _cmp_nle_us);
} else {
movups(mask, Vmm(i + 1));
cmpps(mask, vmm_zero, _cmp_nle_us);
}
blendvps(Vmm(2 * uf + i + 1), Vmm(i + 1));
}
} else {
for (int i = 0; i < uf; i++) {
vmulps(Vmm(2 * uf + i + 1), Vmm(i + 1), vmm_ns);
if (isa == avx2) {
if (is_bwd())
vcmpgtps(vmm_mask, Vmm(uf + i + 1), vmm_zero);
else
vcmpgtps(vmm_mask, Vmm(i + 1), vmm_zero);
vblendvps(Vmm(2 * uf + i + 1), Vmm(2 * uf + i + 1),
Vmm(i + 1), vmm_mask);
} else {
if (is_bwd())
vcmpps(k_mask, Vmm(uf + i + 1), vmm_zero, _cmp_nle_us);
else
vcmpps(k_mask, Vmm(i + 1), vmm_zero, _cmp_nle_us);
vblendmps(Vmm(2 * uf + i + 1) | k_mask, Vmm(2 * uf + i + 1),
Vmm(i + 1));
}
}
}
for (int i = 0; i < uf; i++) {
size_t idx = 2 * uf + i + 1;
size_t offset = i * shift;
if (vectorize)
if (is_bf16())
bf16_injector_->cvt_f32_to_bf16_store(
idx, reg_to, false, i * shift);
else
uni_vmovups(ptr[reg_to + offset], Vmm(idx));
else if (is_bf16())
bf16_injector_->cvt_f32_to_bf16_store(
idx, reg_to, true, offset);
else
movss(ptr[reg_to + offset], Xmm(idx));
}
}
~jit_uni_relu_kernel_float() {
delete bf16_injector_;
delete bf16_emu_;
}
jit_uni_relu_kernel_float(const eltwise_desc_t &desc)
: jit_uni_eltwise_kernel(desc)
, jit_generator()
, bf16_injector_(nullptr)
, bf16_emu_(nullptr) {
assert(desc.alg_kind == alg_kind::eltwise_relu);
assert(utils::one_of(isa, sse41, avx2, avx512_common, avx512_core));
Reg64 param = abi_param1;
if (is_bf16()) {
if (!mayiuse(avx512_core_bf16))
bf16_emu_ = new bf16_emulation_t(this, bf16_emu_reserv_1,
bf16_emu_reserv_2, bf16_emu_reserv_3, bf16_emu_scratch,
bf16_emu_reserv_4);
bf16_injector_ = new jit_bf16_eltwise_injector(this, zmm_idx,
k_mask_cvt, k_tail_mask, k_full_mask, bf16_emu_);
}
const int loop_dec[] = {simd_w(), 1};
const int uf[] = {1, 1};
const int shift[] = {vlen(), dtype_size()};
const bool loop_vectorize[] = {true, false};
preamble();
if (is_bf16()) {
bf16_injector_->load_idx_table();
bf16_injector_->prepare_cvt_mask();
if (!mayiuse(avx512_core_bf16)) bf16_emu_->init_vcvtneps2bf16();
}
mov(reg_from, ptr[param + GET_OFF(from)]);
if (is_bwd())
mov(reg_for_comparison, ptr[param + GET_OFF(for_comparison)]);
mov(reg_to, ptr[param + GET_OFF(to)]);
mov(reg_work_amount, ptr[param + GET_OFF(work_amount)]);
mov(imm_addr64, float2int(desc.alpha));
movq(xmm_ns, imm_addr64);
uni_vbroadcastss(vmm_ns, xmm_ns);
uni_vpxor(vmm_zero, vmm_zero, vmm_zero);
Label loop_label[3];
for (int id = 0; id < 2; id++) {
L(loop_label[id]);
cmp(reg_work_amount, uf[id] * loop_dec[id] - 1);
jle(loop_label[id + 1], T_NEAR);
compute_step(loop_vectorize[id], uf[id], shift[id]);
add(reg_from, uf[id] * shift[id]);
add(reg_to, uf[id] * shift[id]);
if (is_bwd()) add(reg_for_comparison, uf[id] * shift[id]);
sub(reg_work_amount, uf[id] * loop_dec[id]);
jmp(loop_label[id]);
}
L(loop_label[2]);
postamble();
if (is_bf16()) bf16_injector_->write_idx_table();
ker_ = (decltype(ker_))this->getCode();
}
private:
using Vmm = typename utils::conditional3<isa == sse41, Xmm, isa == avx2,
Ymm, Zmm>::type;
using opmask_t = const Xbyak::Opmask;
int vlen() {
int vlen = cpu_isa_traits<isa>::vlen;
return is_bf16() ? vlen / 2 : vlen;
}
int simd_w() { return vlen() / dtype_size(); }
Reg64 reg_from = rax;
Reg64 reg_for_comparison = is_bwd() ? rdx : reg_from;
Reg64 reg_to = r8;
Reg64 reg_work_amount = rsi;
Reg64 imm_addr64 = rbx;
Xmm xmm_ns = Xmm(14);
Vmm vmm_ns = Vmm(utils::one_of(isa, avx512_common, avx512_core) ? 28 : 14);
Vmm vmm_zero
= Vmm(utils::one_of(isa, avx512_common, avx512_core) ? 29 : 15);
Vmm vmm_mask
= Vmm(utils::one_of(isa, avx512_common, avx512_core) ? 30 : 12);
opmask_t k_mask = k1;
/* bf16 support */
Zmm bf16_emu_reserv_1 = Zmm(24);
Zmm bf16_emu_reserv_2 = Zmm(25);
Zmm bf16_emu_reserv_3 = Zmm(26);
Reg64 bf16_emu_scratch = r14;
Zmm bf16_emu_reserv_4 = Zmm(27);
Zmm zmm_idx = Zmm(31);
opmask_t k_mask_cvt = k7;
opmask_t k_tail_mask = k6;
opmask_t k_full_mask = k5;
jit_bf16_eltwise_injector *bf16_injector_;
bf16_emulation_t *bf16_emu_;
};
template <cpu_isa_t isa>
struct jit_uni_relu_kernel_int : public jit_uni_eltwise_kernel,
public jit_generator {
DECLARE_CPU_JIT_AUX_FUNCTIONS(jit_uni_relu_kernel_int)
jit_uni_relu_kernel_int(const eltwise_desc_t &desc)
: jit_uni_eltwise_kernel(desc), jit_generator() {
using namespace data_type;
// Relu for int types: s32, s8; Only forward direction
assert(desc.alg_kind == alg_kind::eltwise_relu);
assert(utils::one_of(data_type(), s32, s8));
assert(!is_bwd());
assert(utils::one_of(isa, sse41, avx2, avx512_common));
Reg64 param = abi_param1;
// f32 used for processing of any data type
// thus we need to take into account size of f32
const size_t proc_dt_size = sizeof(typename prec_traits<f32>::type);
const size_t vlen = cpu_isa_traits<isa>::vlen;
const size_t simd_w = vlen / proc_dt_size;
const size_t loop_dec[] = {simd_w, 1};
const size_t uf[] = {1, 1};
const size_t shift[]
= {dtype_size() * (vlen / proc_dt_size), (size_t)dtype_size()};
const bool loop_vectorize[] = {true, false};
preamble();
mov(reg_from, ptr[param + GET_OFF(from)]);
mov(reg_to, ptr[param + GET_OFF(to)]);
mov(reg_work_amount, ptr[param + GET_OFF(work_amount)]);
mov(imm_addr64, float2int(desc.alpha));
movq(xmm_ns, imm_addr64);
uni_vbroadcastss(vmm_ns, xmm_ns);
uni_vpxor(vmm_zero, vmm_zero, vmm_zero);
xor_(reg_s8, reg_s8);
if (isa == avx512_common) {
mov(reg_s8.cvt8(), 0x01);
kmovw(k_mask_s8, reg_s8.cvt32());
}
Label loop_label[3];
for (int id = 0; id < 2; id++) {
L(loop_label[id]);
cmp(reg_work_amount, uf[id] * loop_dec[id] - 1);
jle(loop_label[id + 1], T_NEAR);
compute_step(loop_vectorize[id], uf[id], shift[id]);
add(reg_from, uf[id] * shift[id]);
add(reg_to, uf[id] * shift[id]);
sub(reg_work_amount, uf[id] * loop_dec[id]);
jmp(loop_label[id]);
}
L(loop_label[2]);
postamble();
ker_ = (decltype(ker_))this->getCode();
}
private:
enum {
_rnd_trunc = 3u // Round toward zero
};
using Vmm = typename cpu_isa_traits<isa>::Vmm;
using opmask_t = const Xbyak::Opmask;
Reg64 reg_from = rax;
Reg64 reg_to = r8;
Reg64 reg_work_amount = rsi;
Reg64 imm_addr64 = rbx;
Reg64 reg_s8 = r9;
Xmm xmm_ns = Xmm(14);
Vmm vmm_ns = Vmm(isa == avx512_common ? 28 : 14);
Vmm vmm_zero = Vmm(isa == avx512_common ? 29 : 15);
Vmm vmm_mask = Vmm(isa == avx512_common ? 30 : 12);
opmask_t k_mask = k1;
opmask_t k_mask_s8 = k2; // Mask for store 1 byte in case of AVX512
bool is32bit() const {
return utils::one_of(data_type(), data_type::s32, data_type::f32);
}
// Load 32bit data type (s32)
void load_32bit(
const bool vectorize, const Vmm &vr_from, const Address &mem_from) {
if (vectorize) {
// load full Vmm size
uni_vmovups(vr_from, mem_from);
} else {
// load exactly one data item
movss(Xmm(vr_from.getIdx()), mem_from);
}
}
// Load 8bit data type (s8)
void load_8bit(
const bool vectorize, const Vmm &vr_from, const Address &mem_from) {
// data type s8 load as s32
if (vectorize) {
// load full Vmm size
if (isa == sse41)
pmovsxbd(vr_from, mem_from);
else
vpmovsxbd(vr_from, mem_from);
} else {
// load exactly one data item
mov(reg_s8.cvt8(), mem_from);
movsx(reg_s8.cvt32(), reg_s8.cvt8());
movq(Xmm(vr_from.getIdx()), reg_s8);
}
};
// Load vregs with data from mem
void load(
const bool vectorize, const Vmm &vr_from, const Address &mem_from) {
// Branching on data size
if (is32bit())
load_32bit(vectorize, vr_from, mem_from);
else
load_8bit(vectorize, vr_from, mem_from);
}
// Processing
void process(const Vmm &vr_to, const Vmm &vr_from);
// Store s32 for any isa
void store_32bit(
const bool vectorize, const Address &mem_to, const Vmm &vr_to) {
if (vectorize) {
// store full Vmm size
uni_vmovups(mem_to, vr_to);
} else {
// store exactly one data item
movss(mem_to, Xmm(vr_to.getIdx()));
}
}
// Store s8 - isa-dependent
void store_8bit(
const bool vectorize, const Address &mem_to, const Vmm &vr_to);
// Store results from vregs to mem
void store(const bool vectorize, const Address &mem_to, const Vmm &vr_to) {
// Branching on data size
if (is32bit())
store_32bit(vectorize, mem_to, vr_to);
else
store_8bit(vectorize, mem_to, vr_to);
}
void compute_step(bool vectorize, const size_t uf, const size_t shift) {
auto vreg_from = [&](const size_t i) -> Vmm { return Vmm(i + 1); };
auto vreg_to = [&](const size_t i) -> Vmm { return Vmm(uf + i + 1); };
// 1. Load (vregs <- mem)
for (size_t i = 0; i < uf; i++)
load(vectorize, vreg_from(i), ptr[reg_from + i * shift]);
// 2. Process (vregs <- vergs)
for (size_t i = 0; i < uf; i++)
process(vreg_to(i), vreg_from(i));
// 3. Store (mem <- vregs)
for (size_t i = 0; i < uf; i++)
store(vectorize, ptr[reg_to + i * shift], vreg_to(i));
}
};
template <cpu_isa_t isa>
void jit_uni_relu_kernel_int<isa>::process(
const Vmm &vr_to, const Vmm &vr_from) {
assert(!"unsupported isa");
}
template <>
void jit_uni_relu_kernel_int<sse41>::process(
const Vmm &vr_to, const Vmm &vr_from) {
cvtdq2ps(vr_from, vr_from);
movups(vr_to, vr_from);
mulps(vr_to, vmm_ns);
Vmm mask = Vmm(0);
movups(mask, vr_from);
cmpps(mask, vmm_zero, _cmp_nle_us);
blendvps(vr_to, vr_from);
uni_vroundps(vr_to, vr_to, _rnd_trunc);
cvtps2dq(vr_to, vr_to);
}
template <>
void jit_uni_relu_kernel_int<avx2>::process(
const Vmm &vr_to, const Vmm &vr_from) {
vcvtdq2ps(vr_from, vr_from);
vmulps(vr_to, vr_from, vmm_ns);
vcmpgtps(vmm_mask, vr_from, vmm_zero);
vblendvps(vr_to, vr_to, vr_from, vmm_mask);
uni_vroundps(vr_to, vr_to, _rnd_trunc);
vcvtps2dq(vr_to, vr_to);
}
template <>
void jit_uni_relu_kernel_int<avx512_common>::process(
const Vmm &vr_to, const Vmm &vr_from) {
vcvtdq2ps(vr_from, vr_from);
vmulps(vr_to, vr_from, vmm_ns);
vcmpps(k_mask, vr_from, vmm_zero, _cmp_nle_us);
vblendmps(vr_to | k_mask, vr_to, vr_from);
vcvtps2dq(vr_to | T_rz_sae, vr_to);
}
template <cpu_isa_t isa>
void jit_uni_relu_kernel_int<isa>::store_8bit(
const bool vectorize, const Address &mem_to, const Vmm &vr_to) {
assert(!"unsupported isa");
}
template <>
void jit_uni_relu_kernel_int<sse41>::store_8bit(
const bool vectorize, const Address &mem_to, const Vmm &vr_to) {
if (vectorize) {
// store full Vmm size
// s32 -> s16
packssdw(vr_to, vmm_zero);
// s16 -> s8
packsswb(vr_to, vmm_zero);
movd(mem_to, Xmm(vr_to.getIdx()));
} else {
// store exactly one data item
// s32 save as s8
packssdw(vr_to, vmm_zero);
packsswb(vr_to, vmm_zero);
movd(reg_s8.cvt32(), Xmm(vr_to.getIdx()));
mov(mem_to, reg_s8.cvt8());
}
}
template <>
void jit_uni_relu_kernel_int<avx2>::store_8bit(
const bool vectorize, const Address &mem_to, const Vmm &vr_to) {
if (vectorize) {
// store full Vmm size
// s32 -> s16 = {qw0, 0, qw1, 0}
vpackssdw(vr_to, vr_to, vmm_zero);
// permute to restore order{qw0, 0, qw1, 0} -> {qw0, qw1, 0, 0}
vpermq(Ymm(vr_to.getIdx()), Ymm(vr_to.getIdx()), 0x58);
// s16 -> s8 : {16 x s16}{16 x 0} -> {32 x s8}
vpacksswb(vr_to, vr_to, vmm_zero);
vmovq(mem_to, Xmm(vr_to.getIdx()));
} else {
// store exactly one data item
// s32 save as s8
vpackssdw(vr_to, vr_to, vmm_zero);
vpacksswb(vr_to, vr_to, vmm_zero);
vmovd(reg_s8.cvt32(), Xmm(vr_to.getIdx()));
mov(mem_to, reg_s8.cvt8());
}
}
template <>
void jit_uni_relu_kernel_int<avx512_common>::store_8bit(
const bool vectorize, const Address &mem_to, const Vmm &vr_to) {
if (vectorize) {
// store full Vmm size
vpmovsdb(mem_to, vr_to);
} else {
// store exactly one data item
// s32 save as s8
vpmovsdb(mem_to, vr_to | k_mask_s8);
}
}
template <cpu_isa_t isa>
struct jit_uni_kernel_fwd : public jit_uni_eltwise_kernel,
public jit_generator {
DECLARE_CPU_JIT_AUX_FUNCTIONS(jit_uni_kernel_fwd)
jit_uni_kernel_fwd(const eltwise_desc_t &desc)
: jit_uni_eltwise_kernel(desc)
, jit_generator()
, bf16_injector_(nullptr)
, bf16_emu_(nullptr) {
if (is_bf16()) {
if (!mayiuse(avx512_core_bf16))
bf16_emu_ = new bf16_emulation_t(this, bf16_emu_reserv_1,
bf16_emu_reserv_2, bf16_emu_reserv_3, bf16_emu_scratch,
bf16_emu_reserv_5);
bf16_injector_ = new jit_bf16_eltwise_injector(this, zmm_idx,
k_mask_cvt, k_tail_mask, k_full_mask, bf16_emu_);
}
eltwise_injector_ = new jit_uni_eltwise_injector_f32<isa>(this,
desc.alg_kind, desc.alpha, desc.beta, false, r9, Opmask(1));
using namespace alg_kind;
assert(is_bwd() == false);
assert(utils::one_of(desc.alg_kind, eltwise_tanh, eltwise_elu,
eltwise_square, eltwise_abs, eltwise_sqrt, eltwise_linear,
eltwise_bounded_relu, eltwise_soft_relu, eltwise_logistic,
eltwise_exp, eltwise_gelu, eltwise_swish));
preamble();
if (is_bf16()) {
bf16_injector_->load_idx_table();
bf16_injector_->prepare_cvt_mask();
if (!mayiuse(avx512_core_bf16)) bf16_emu_->init_vcvtneps2bf16();
}
Reg64 param = abi_param1;
mov(reg_from, ptr[param + GET_OFF(from)]);
mov(reg_to, ptr[param + GET_OFF(to)]);
mov(reg_work_amount, ptr[param + GET_OFF(work_amount)]);
eltwise_injector_->load_table_addr();
Label reminder_loop_start, reminder_loop_end;
Label vectorized_loop_start, vectorized_loop_end;
cmp(reg_work_amount, simd_w());
jl(reminder_loop_start, T_NEAR);
L(vectorized_loop_start);
if (is_bf16()) {
bf16_injector_->load_bf16_cvt_to_f32(vmm_src.getIdx(), reg_from);
eltwise_injector_->compute_vector(vmm_src.getIdx());
bf16_injector_->cvt_f32_to_bf16_store(vmm_src.getIdx(), reg_to);
} else {
uni_vmovups(vmm_src, ptr[reg_from]);
eltwise_injector_->compute_vector(vmm_src.getIdx());
uni_vmovups(ptr[reg_to], vmm_src);
}
auto shift = vlen();
add(reg_from, shift);
add(reg_to, shift);
sub(reg_work_amount, simd_w());
cmp(reg_work_amount, simd_w());
jge(vectorized_loop_start, T_NEAR);
L(vectorized_loop_end);
L(reminder_loop_start);
cmp(reg_work_amount, 0);
jle(reminder_loop_end, T_NEAR);
if (is_bf16()) {
bf16_injector_->load_bf16_cvt_to_f32(
vmm_src.getIdx(), reg_from, true);
eltwise_injector_->compute_vector(vmm_src.getIdx());
bf16_injector_->cvt_f32_to_bf16_store(
vmm_src.getIdx(), reg_to, true);
} else {
movss(xmm_src, ptr[reg_from]);
eltwise_injector_->compute_vector(xmm_src.getIdx());
movss(ptr[reg_to], xmm_src);
}
add(reg_from, dtype_size());
add(reg_to, dtype_size());
dec(reg_work_amount);
jmp(reminder_loop_start, T_NEAR);
L(reminder_loop_end);
postamble();
if (is_bf16()) bf16_injector_->write_idx_table();
eltwise_injector_->prepare_table();
ker_ = (decltype(ker_))this->getCode();
}
~jit_uni_kernel_fwd() {
delete eltwise_injector_;
delete bf16_injector_;
delete bf16_emu_;
}
private:
using Vmm = typename utils::conditional3<isa == sse41, Xmm, isa == avx2,
Ymm, Zmm>::type;
using opmask_t = const Xbyak::Opmask;
int vlen() {
int vlen = cpu_isa_traits<isa>::vlen;
return is_bf16() ? vlen / 2 : vlen;
}
int simd_w() { return vlen() / dtype_size(); }
Reg64 reg_from = rax;
Reg64 reg_to = r8;
Reg64 reg_work_amount = rsi;
Reg64 imm_addr64 = rbx;
Xmm xmm_src = Xmm(1);
Vmm vmm_src = Vmm(1);
jit_uni_eltwise_injector_f32<isa> *eltwise_injector_;
/* bf16 support */
Zmm bf16_emu_reserv_1 = Zmm(26);
Zmm bf16_emu_reserv_2 = Zmm(27);
Zmm bf16_emu_reserv_3 = Zmm(28);
Reg64 bf16_emu_scratch = r14;
Zmm bf16_emu_reserv_5 = Zmm(29);
Zmm zmm_idx = Zmm(31);
opmask_t k_mask_cvt = k7;
opmask_t k_tail_mask = k6;
opmask_t k_full_mask = k5;
jit_bf16_eltwise_injector *bf16_injector_;
bf16_emulation_t *bf16_emu_;
};
} /* namespace */
template <cpu_isa_t isa, data_type_t d_type>
status_t jit_uni_eltwise_fwd_t<isa, d_type>::pd_t::init() {
using namespace alg_kind;
using namespace data_type;
// relu supports bf16, f32, s32 and s8
bool relu_ok = true && desc()->alg_kind == eltwise_relu
&& utils::one_of(d_type, bf16, f32, s32, s8);
// others supports bf16 and f32
bool non_relu_ok = true
&& utils::one_of(desc()->alg_kind, eltwise_tanh, eltwise_elu,
eltwise_square, eltwise_abs, eltwise_sqrt, eltwise_linear,
eltwise_bounded_relu, eltwise_soft_relu, eltwise_logistic,
eltwise_exp, eltwise_gelu, eltwise_swish)
&& utils::one_of(d_type, bf16, f32);
bool ok = true && mayiuse(isa) && is_fwd()
&& desc()->data_desc.data_type == d_type
&& IMPLICATION(
desc()->data_desc.data_type == bf16, mayiuse(avx512_core))
&& utils::one_of(true, relu_ok, non_relu_ok)
&& !has_zero_dim_memory()
&& memory_desc_wrapper(src_md()).is_dense(true)
&& IMPLICATION(!memory_desc_wrapper(src_md()).is_dense(false),
math::eltwise_fwd_preserves_zero(desc()->alg_kind, true))
&& attr()->has_default_values();
return ok ? status::success : status::unimplemented;
}
template <cpu_isa_t isa, data_type_t d_type>
jit_uni_eltwise_fwd_t<isa, d_type>::jit_uni_eltwise_fwd_t(const pd_t *apd)
: primitive_impl_t(apd), kernel_(nullptr) {
const auto &desc = *pd()->desc();
switch (desc.alg_kind) {
case alg_kind::eltwise_relu:
if (utils::one_of(d_type, data_type::s32, data_type::s8))
kernel_ = new jit_uni_relu_kernel_int<isa>(desc);
else
kernel_ = new jit_uni_relu_kernel_float<isa>(desc);
break;
default: kernel_ = new jit_uni_kernel_fwd<isa>(desc);
}
}
template <cpu_isa_t isa, data_type_t d_type>
jit_uni_eltwise_fwd_t<isa, d_type>::~jit_uni_eltwise_fwd_t() {
delete kernel_;
}
template <cpu_isa_t isa, impl::data_type_t d_type>
void jit_uni_eltwise_fwd_t<isa, d_type>::execute_forward(
const exec_ctx_t &ctx) const {
auto src = CTX_IN_MEM(const data_t *, DNNL_ARG_SRC);
auto dst = CTX_OUT_MEM(data_t *, DNNL_ARG_DST);
const memory_desc_wrapper data_d(pd()->src_md());
const size_t nelems = data_d.nelems(true);
src += data_d.offset0();
dst += data_d.offset0();
const int cache_line = 64 / data_d.data_type_size();
parallel(0, [&](const int ithr, const int nthr) {
size_t start {0}, end {0};
balance211(utils::div_up(nelems, cache_line), nthr, ithr, start, end);
start = nstl::min(nelems, start * cache_line);
end = nstl::min(nelems, end * cache_line);
auto arg = jit_args();
arg.from = (const void *)&src[start];
arg.for_comparison = (const void *)&src[start];
arg.to = (const void *)&dst[start];
arg.work_amount = end - start;
if (arg.work_amount) (*kernel_)(&arg);
});
}
template <cpu_isa_t isa, data_type_t d_type>
status_t jit_uni_eltwise_bwd_t<isa, d_type>::pd_t::init() {
bool ok = true && !is_fwd()
&& utils::one_of(desc()->alg_kind, alg_kind::eltwise_relu)
&& src_md()->data_type == d_type
&& IMPLICATION(desc()->data_desc.data_type == data_type::bf16,
mayiuse(avx512_core))
&& !has_zero_dim_memory() && mayiuse(isa)
&& memory_desc_wrapper(src_md()).is_dense()
&& memory_desc_wrapper(diff_dst_md())
== memory_desc_wrapper(src_md())
&& attr()->has_default_values();
return ok ? status::success : status::unimplemented;
}
template <cpu_isa_t isa, data_type_t d_type>
jit_uni_eltwise_bwd_t<isa, d_type>::jit_uni_eltwise_bwd_t(const pd_t *apd)
: primitive_impl_t(apd), kernel_(nullptr) {
const auto &desc = *pd()->desc();
switch (desc.alg_kind) {
case alg_kind::eltwise_relu:
kernel_ = new jit_uni_relu_kernel_float<isa>(desc);
break;
default: assert(!"unknown eltwise alg_kind");
}
}
template <cpu_isa_t isa, data_type_t d_type>
jit_uni_eltwise_bwd_t<isa, d_type>::~jit_uni_eltwise_bwd_t() {
delete kernel_;
}
template <cpu_isa_t isa, data_type_t d_type>
void jit_uni_eltwise_bwd_t<isa, d_type>::execute_backward(
const exec_ctx_t &ctx) const {
auto src = CTX_IN_MEM(const data_t *, DNNL_ARG_SRC);
auto diff_dst = CTX_IN_MEM(const data_t *, DNNL_ARG_DIFF_DST);
auto diff_src = CTX_OUT_MEM(data_t *, DNNL_ARG_DIFF_SRC);
const memory_desc_wrapper data_d(pd()->src_md());
const memory_desc_wrapper diff_data_d(pd()->diff_src_md());
const size_t nelems = data_d.nelems();
src += data_d.offset0();
diff_dst += diff_data_d.offset0();
diff_src += diff_data_d.offset0();
parallel(0, [&](const int ithr, const int nthr) {
size_t start {0}, end {0};
const int cache_line = 16;
balance211(utils::div_up(nelems, cache_line), nthr, ithr, start, end);
start = nstl::min(nelems, start * cache_line);
end = nstl::min(nelems, end * cache_line);
auto arg = jit_args();
arg.from = (const void *)&diff_dst[start];
arg.to = (const void *)&diff_src[start];
arg.for_comparison = (const void *)&src[start];
arg.work_amount = end - start;
if (arg.work_amount) (*kernel_)(&arg);
});
}
template struct jit_uni_eltwise_fwd_t<sse41, data_type::f32>;
template struct jit_uni_eltwise_fwd_t<sse41, data_type::s32>;
template struct jit_uni_eltwise_fwd_t<sse41, data_type::s8>;
template struct jit_uni_eltwise_bwd_t<sse41, data_type::f32>;
template struct jit_uni_eltwise_fwd_t<avx2, data_type::f32>;
template struct jit_uni_eltwise_fwd_t<avx2, data_type::s32>;
template struct jit_uni_eltwise_fwd_t<avx2, data_type::s8>;
template struct jit_uni_eltwise_bwd_t<avx2, data_type::f32>;
template struct jit_uni_eltwise_fwd_t<avx512_common, data_type::f32>;
template struct jit_uni_eltwise_fwd_t<avx512_core, data_type::bf16>;
template struct jit_uni_eltwise_fwd_t<avx512_common, data_type::s32>;
template struct jit_uni_eltwise_fwd_t<avx512_common, data_type::s8>;
template struct jit_uni_eltwise_bwd_t<avx512_common, data_type::f32>;
template struct jit_uni_eltwise_bwd_t<avx512_core, data_type::bf16>;
} // namespace cpu
} // namespace impl
} // namespace dnnl
| [
"the.new.horizon@outlook.com"
] | the.new.horizon@outlook.com |
1c2bc942731fc87035c40d09a6fd18879d956d8d | 00f96238d7faa1501a1d88786191bf4a5f5d6f76 | /5_/f.cpp | d97576f890b6d848a55bfa45d7b653faee2c2ef7 | [] | no_license | nnikka/algorithms | ab2753de3995cf9e2e42f8c0e27b7d4633f384a0 | b2af321b5add4eb4c3a6530c8a9cfdcee8813528 | refs/heads/master | 2020-04-08T23:36:13.453472 | 2019-01-25T10:22:42 | 2019-01-25T10:22:42 | 159,832,091 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,607 | cpp | #include<iostream>
#include<list>
#include<stdlib.h>
#include <iostream>
#include <string.h>
#include <map>
#include <algorithm>
#include <math.h>
#include <vector>
#include <set>
#include <bits/stdc++.h>
#include <cmath>
using namespace std;
int results[1000000];
int savedResults[27];
int savedResultsPos[27];
int main() {
ios::sync_with_stdio(false);
memset(savedResults, 0, sizeof(savedResults));
memset(savedResultsPos, 0, sizeof(savedResultsPos));
for (int i = 0; i < 1000000; i++) {
int a = i / 100000;
int b = (i - a * 100000) / 10000;
int c = (i - a * 100000 - b * 10000) / 1000;
int a1 = (i - a * 100000 - b * 10000 - c * 1000) / 100;
int b1 = (i - a * 100000 - b * 10000 - c * 1000 - a1 * 100) / 10;
int c1 = (i - a * 100000 - b * 10000 - c * 1000 - a1 * 100 - b1 * 10) / 1;
int resultHere = abs((a + b + c) - (a1 + b1 + c1));
int count = savedResults[resultHere];
for (int j = savedResultsPos[resultHere]; j < i; j++) {
int ja = j / 100000;
int jb = (j - ja * 100000) / 10000;
int jc = (j - ja * 100000 - jb * 10000) / 1000;
int ja1 = (j - ja * 100000 - jb * 10000 - jc * 1000) / 100;
int jb1 = (j - ja * 100000 - jb * 10000 - jc * 1000 - ja1 * 100) / 10;
int jc1 = (j - ja * 100000 - jb * 10000 - jc * 1000 - ja1 * 100 - jb1 * 10) / 1;
int jresultHere = abs((ja + jb + jc) - (ja1 + jb1 + jc1));
if (jresultHere < resultHere) {
count++;
}
}
results[i] = count;
savedResults[resultHere] = count;
savedResultsPos[resultHere] = i;
}
// for (int i = 0; i < 1001; i++) {
// cout << results[i] << endl;
// }
int n;
cin >> n;
for (int i = 0; i < n; i++) {
char a, b, c, a1, b1, c1;
cin >> a;
cin >> b;
cin >> c;
cin >> a1;
cin >> b1;
cin >> c1;
// cout << a << endl;
// cout << b << endl;
// cout << c << endl;
// cout << a1 << endl;
// cout << b1 << endl;
// cout << c1 << endl;
int aint = a - '0';
int bint = b - '0';
int cint = c - '0';
int a1int = a1 - '0';
int b1int = b1 - '0';
int c1int = c1 - '0';
int index = aint * 100000 + bint * 10000 + cint * 1000 + a1int * 100 + b1int * 10 + c1int * 1;
cout << results[index] << endl;
}
return 0;
}
// 000000
// 999000
// 453234
// 654331
// 1
// 0
// 998999
// 121496
// 470362 | [
"nikakhurashvili@gmail.com"
] | nikakhurashvili@gmail.com |
2290ca998a19d9cf9600b4067510b6eaf8978966 | 0e030c3a743f314a64ae66d04758975fc3664470 | /dogbreeds_co_uk/dogbreeds_co_uk.h | 128e3c72079722c8f2cf9328a7a1a48671c96edd | [] | no_license | pddthinh/WebDataExtractor | a844e721e4a1a8ccd3c5ca64c97ef04956d8ebe6 | b1f0c2e4714304821dc5ae900fc6346cf5eda880 | refs/heads/master | 2020-03-07T08:58:42.043730 | 2020-01-18T09:28:01 | 2020-01-18T09:28:01 | 127,394,446 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 565 | h | #ifndef dogbreeds_co_uk_H
#define dogbreeds_co_uk_H
#include "WDEInclude.h"
#include <QDebug>
#include <QWebElement>
#include <QWebElementCollection>
using namespace nsBaseWebEngine;
class dogbreeds_co_uk : public BaseWebEngine
{
Q_OBJECT
public:
dogbreeds_co_uk(QWidget *apParent = 0);
protected:
void doStart();
void doStop(){}
void doWebLoadFinished();
void initDatabase();
void initExtWidget() {
mpExtFileLoading = new ExtFileLoading(this, mpAppPref);
}
private:
void getBreedItems();
void getBreederDetail();
};
#endif // dogbreeds_co_uk_H
| [
"phandangduythinh@gmail.com"
] | phandangduythinh@gmail.com |
ccb86ac54792e60d52f54eaa349790077d6449dc | ec972953eee08d16fe54e22f88d7086c8d944b85 | /laba6/mycontroller.h | 9e6e70905acb722f94f61275313f20852b3b35fb | [] | no_license | moskovets/comp_graphic | 0332d1769d3815901deb0f7f4772f81b757f53f6 | a4b3941e306e555b9668ace3a54ed86701ce120c | refs/heads/master | 2020-05-27T20:23:13.991985 | 2017-06-06T18:07:05 | 2017-06-06T18:07:05 | 82,571,028 | 4 | 2 | null | 2017-04-06T17:35:42 | 2017-02-20T15:09:54 | C++ | UTF-8 | C++ | false | false | 1,650 | h | #ifndef MYCONTROLLER_H
#define MYCONTROLLER_H
//#include "my_scene.h"
//#include "CImage.h"
#include <QWidget>
#include <QtGui>
#include <QErrorMessage>
#include <QString>
#include <QStringList>
#include <QLineEdit>
#include <QGraphicsScene>
#include <string>
#include <stdio.h>
#include <vector>
#include <paintscene.h>
using namespace std;
enum Text_Error { EMPTY, E_SYMBOL, NO_ER };
namespace Ui {
class MyController;
}
class MyController : public QWidget
{
Q_OBJECT
public:
explicit MyController(QWidget *parent = 0);
~MyController();
void GetScene(paintScene *scene);
void ShowPixel();
signals:
//void SceneChange(QGraphicsScene *scene);
private slots:
void on_foncolorButton_clicked();
void on_linecolorButton_clicked();
void on_clearButton_clicked();
void on_drawButton_clicked();
void on_timeButton_clicked();
void on_brushButton_clicked();
void on_clearallButton_clicked();
void on_polynomButton_pressed();
void on_lineButton_pressed();
void on_pixelButton_pressed();
private:
//QString str;
QString GetColor(QColor &color);
double *GetData(vector <QLineEdit*> &vec);
bool ValidPoint(QPoint &p);
//ALGORITHM GetAlgorithm();
void drawEllipse(QPoint ¢er, double rx, double ry);
void drawCircle(QPoint ¢er, double r);
paintScene *scene;
//tPaintParam data;
//CImage image;
Ui::MyController *ui;
QWidget *par;
QColor colorLine;
QColor colorBrush;
int timePause;
// QRegExpValidator *Validator;
QIntValidator *Validator;
};
double Analiz_Text(QString str);
#endif // MYCONTROLLER_H
| [
"moskovets2009@yandex.ru"
] | moskovets2009@yandex.ru |
eda640dbacf4d445b4af82955f802995893cc6be | 7264c1083d93e654a8953d377a73ce3d28af41fb | /Source/Server Side/GameServer/DirPath.h | 70edcca193a38a79f0e617b244360a7d16e1f481 | [] | no_license | samik3k/Mu-GS-Webzen-MC-10093 | 8ae88d0aae232513bfff22d72ec6ba6d1973f35d | d07c0ca7010dedf7bf36447c1a3fb55389bbba9a | refs/heads/master | 2022-12-26T06:07:30.079269 | 2020-10-05T09:55:11 | 2020-10-05T09:55:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 631 | h | // DirPath.h: interface for the CDirPath class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DIRPATH_H__542CAD2B_73AA_479B_8D1E_5E970A4E8D65__INCLUDED_)
#define AFX_DIRPATH_H__542CAD2B_73AA_479B_8D1E_5E970A4E8D65__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CDirPath
{
public:
CDirPath();
virtual ~CDirPath();
void SetFirstPath(char *dir_path);
char* GetNewPath(const char *npath);
char m_path[MAX_PATH];
char m_newpath[MAX_PATH];
};
#include <stdlib.h>
#endif // !defined(AFX_DIRPATH_H__542CAD2B_73AA_479B_8D1E_5E970A4E8D65__INCLUDED_)
| [
"ptr0x@live.com"
] | ptr0x@live.com |
a15639620f768da7a302bc77b91f6bb18e4a1143 | 62512c4b3311d0560db665a7bcea11c6d1de418b | /DCSService.h | e1b5714e35246a450d5c16b3919e73a85b69536a | [] | no_license | whf710919/CPLUS | eb56a143f5b9eb187eea3696d970a972d983c307 | 962bfa801cd964e1a27ddd11bf2052e78f569376 | refs/heads/master | 2021-05-07T05:01:55.891904 | 2017-11-20T10:14:41 | 2017-11-20T10:14:41 | 111,381,515 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,739 | h | #ifndef HFS_DCSSERVICE_H_
#define HFS_DCSSERVICE_H_
#include "ServiceBase.h"
#include "HandleBase.h"
#include "MustExec.h"
#ifdef HFS_KFS
#include "KFSBase.h"
#endif
#ifdef HFS_KDFS
#include "KFSBase.h"
#endif
#ifdef HFS_HDFS
#include "HDFSBase.h"
#endif
class CDCSService:public CServiceBase
{
public:
CDCSService(void);
~CDCSService(void);
virtual hfsbool InitInstance();
hfsint ReadRecord();
hfsint ReadRecordLoop();
static hfsint DoProcessRecord(DOWN_STATE * m_taskData);
hfsbool DoProcessThread();
hfsint RemoveTask(CTaskPtr pTask);
static hfsdword __stdcall TaskThread(LPVOID pParam);
static hfsint AddThreadNumber();
static hfsint MinusThreadNumber();
static hfsint m_CurrentTaskThreadNumber;
static G_Lock m_LockThreadNumber;
bool InitConfigInfo();
bool IsTimeOn(struct tm* ptm,struct tm* ptmnow);
bool IsMayExec();
bool IsMayExecWeek();
bool IsMayExecDay();
bool IsExecuted(struct tm* ptm,struct tm* ptmnow);
bool IsExecutedWeek(struct tm ptm,struct tm ptmnow);
bool IsExecutedDay(struct tm ptm,struct tm ptmnow);
bool DownLoadFile();
bool FindServFile();
void ServFileDownload();
bool CheckLocalFile();
hfsbool ReceiveServerFile();
int GetMonday(struct tm t);
bool Delete2MonthsBeforeData();
hfsint SetMonth(int nMonth);
private:
hfsint m_nTaskMaxThreadsNum;
int m_nAutoRun;
int m_nOncePerMonth;
int m_nDayPerMonth;
int m_nOncePerWeek;
int m_nDayPerWeek;
int m_nOncePerDay;
int m_nHourDay;
int m_nMinute;
int m_nLog;
int m_nPort;
int m_nClearAndInput;
int m_nDowithErrorZip;
struct tm m_PreExecTime;
struct tm m_PreExecTimeWeek;
struct tm m_PreExecTimeDay;
struct SYSTEMINFO m_systemInfo;
char m_szServer[32];
char m_szUser[32];
char m_szPwd[32];
char m_szTableName[MAX_FILE_ID];
char m_szFieldName[MAX_FILE_ID];
char m_szYearMonth[7];
char m_szYear[5];
int m_ftpPort;
char m_szLocDirectory[MAX_PATH];
char m_szServerDirectory[MAX_PATH];
map<hfsstring,DWORD> m_DownloadFileInfo;
vector<hfsstring> m_DownloadFileName;
int m_nAutoDown;
char m_szLocPath[MAX_PATH];
int m_nStartDayPerMonth;
//char m_szStatistic[32];
//vector<int> m_nStatisticVector;
char m_szWorkPath[MAX_PATH];
char m_szCjfdCode[MAX_FILE_ID];
char m_szCdmdCode[MAX_FILE_ID];
char m_szCpmdCode[MAX_FILE_ID];
char m_szCheckCpmd[MAX_FILE_ID];
char m_szIp[16];
char m_szHost[32];
char m_szMsUser[32];
char m_szMsPwd[32];
char m_szDbName[32];
};
#endif | [
"noreply@github.com"
] | noreply@github.com |
dbe8778db3649a208dbd05f670fc8ab719c4c60a | b8decb615b310d0f9e2d9474c9a94115f1f47e8c | /OsiInterface/GameDefinitions/GameHelpers.cpp | b8b302d57d59986f2b480ef7afb3324bcef49bf8 | [
"MIT"
] | permissive | Geeice/ositools | 05f6957eb03ec7a8ce2fcb10291636ea4a49eaf2 | ec82183d9363cf6eda99e194147980a8dac8d68a | refs/heads/master | 2022-11-23T14:34:32.039798 | 2020-07-29T18:24:15 | 2020-07-29T18:24:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 24,281 | cpp | #include "stdafx.h"
#include <GameDefinitions/BaseTypes.h>
#include <GameDefinitions/Symbols.h>
#include <GameDefinitions/Enumerations.h>
#include <GameDefinitions/Ai.h>
#include "OsirisProxy.h"
#include <PropertyMaps.h>
namespace dse
{
StaticSymbols & GetStaticSymbols()
{
static auto sSymbols = new StaticSymbols();
return *sSymbols;
}
void* MSVCMemoryAllocator::Alloc(std::size_t size)
{
return GetStaticSymbols().CrtAlloc(size);
}
void * GameAllocRaw(std::size_t size)
{
#if defined(OSI_EOCAPP)
return GetStaticSymbols().EoCAlloc(nullptr, size);
#else
return GetStaticSymbols().EoCAlloc(nullptr, size, "", 1, "");
#endif
}
void GameFree(void * ptr)
{
GetStaticSymbols().EoCFree(nullptr, ptr);
}
unsigned int Primes[290] = {
2, 3, 5, 7, 0x0B, 0x0D, 0x11, 0x13, 0x17, 0x1D, 0x1F, 0x25,
0x29, 0x2B, 0x2F, 0x35, 0x3B, 0x3D, 0x43, 0x47, 0x49, 0x4F, 0x53,
0x59, 0x61, 0x65, 0x71, 0x7F, 0x83, 0x95, 0x97, 0x0A3, 0x0AD,
0x0B5, 0x0BF, 0x0D3, 0x0DF, 0x0E9, 0x0F1, 0x0FB, 0x107, 0x10F,
0x119, 0x125, 0x133, 0x137, 0x14B, 0x15B, 0x161, 0x16F, 0x175,
0x17F, 0x18D, 0x191, 0x1A3, 0x1A5, 0x1AF, 0x1BB, 0x1C9, 0x1CD,
0x1DF, 0x1E7, 0x1EB, 0x1F7, 0x209, 0x21D, 0x22D, 0x233, 0x23B,
0x24B, 0x251, 0x259, 0x265, 0x277, 0x281, 0x28D, 0x295, 0x2A1,
0x2AB, 0x2B3, 0x2BD, 0x2CF, 0x2D7, 0x2DD, 0x2E7, 0x2EF, 0x2F9,
0x305, 0x313, 0x31D, 0x329, 0x32B, 0x335, 0x347, 0x355, 0x35F,
0x36D, 0x371, 0x38B, 0x38F, 0x3A1, 0x3A9, 0x3AD, 0x3B9, 0x3C7,
0x3CB, 0x3D7, 0x3DF, 0x3F1, 0x41B, 0x44F, 0x47F, 0x4B1, 0x4EB,
0x515, 0x5AB, 0x641, 0x679, 0x6AD, 0x6D9, 0x709, 0x79F, 0x7D3,
0x805, 0x89B, 0x8CB, 0x905, 0x92F, 0x9C7, 0x9F7, 0x0A31, 0x0A61,
0x0A93, 0x0AC1, 0x0AF1, 0x0B23, 0x0B57, 0x0B89, 0x0BB9, 0x0CB3,
0x0CE5, 0x0D1F, 0x0D4F, 0x0D81, 0x0E17, 0x0E4B, 0x0E75, 0x0F0B,
0x0F43, 0x0FD3, 0x1069, 0x109D, 0x1139, 0x1163, 0x119B, 0x122B,
0x125F, 0x128F, 0x12C1, 0x1357, 0x138B, 0x13BB, 0x13ED, 0x1421,
0x1459, 0x14E7, 0x151F, 0x15B5, 0x1645, 0x16DB, 0x170F, 0x1741,
0x1777, 0x17A5, 0x17D5, 0x1807, 0x183B, 0x1871, 0x189D, 0x18D1,
0x19CF, 0x19FD, 0x1A2D, 0x1AC9, 0x1AFB, 0x1B2F, 0x1B59, 0x1B91,
0x1BBF, 0x1BEF, 0x1C27, 0x1C55, 0x1C8B, 0x1CB7, 0x1D53, 0x1D87,
0x1DB3, 0x1E49, 0x1EDD, 0x1F0F, 0x1F49, 0x1F75, 0x1FA5, 0x20A1,
0x2135, 0x2231, 0x2263, 0x22F7, 0x2329, 0x2363, 0x238F, 0x23BF,
0x23F3, 0x2429, 0x24BB, 0x254F, 0x2581, 0x267B, 0x26AD, 0x2717,
0x2905, 0x2AFB, 0x2CEF, 0x2EE7, 0x30D7, 0x32C9, 0x34C9, 0x36B9,
0x38A7, 0x3AA5, 0x3C97, 0x3E81, 0x4087, 0x4273, 0x4465, 0x465D,
0x4847, 0x4A39, 0x4C2D, 0x4E2B, 0x501B, 0x5209, 0x53FF, 0x55F3,
0x57E5, 0x59DB, 0x5BD5, 0x5DC1, 0x5FBD, 0x61B5, 0x63B3, 0x6593,
0x6785, 0x6983, 0x6B75, 0x6D61, 0x6F61, 0x7151, 0x733D, 0x753B,
0x772D, 0x7925, 0x7B17, 0x7D03, 0x7EF7, 0x80F5, 0x82DF, 0x84E3,
0x86C5, 0x88CF, 0x8AB3, 0x8CA7, 0x8EAB, 0x908B, 0x927D, 0x947B,
0x9665, 0x986B, 0x9A4F, 0x9C49, 0x9E3B, 0x0A033, 0x0A223, 0x0A41D,
0x0A60D, 0x0A7FB, 0x0A9FD, 0x0ABF1, 0x0ADD5, 0x0AFCF
};
unsigned int GetNearestLowerPrime(unsigned int num)
{
if (num < 2) return 2;
if (num >= 45007) return 45007;
unsigned start = 0;
unsigned end = (unsigned)std::size(Primes);
while (start < end) {
auto mid = (start + end) >> 1;
auto delta = (int64_t)num - Primes[mid];
if (delta >= 0) {
if (delta == 0) {
return Primes[mid];
}
start = mid + 1;
} else {
end = (start + end) >> 1;
}
}
return Primes[start];
}
void StaticSymbols::CanonicalizePath(STDString & path) const
{
if (path.find('\\') != std::string::npos) {
WARN("Path contains backslashes: \"%s\"; canonical paths should only contain forward slashes.", path.c_str());
}
std::replace(path.begin(), path.end(), '\\', '/');
}
#if defined(OSI_EOCAPP)
STDString StaticSymbols::ToPath(StringView path, PathRootType root, bool canonicalize) const
{
if (PathRoots == nullptr) {
ERR("LibraryManager::ToPath(): Path root API not available!");
return "";
}
STDString canonicalPath(path);
if (canonicalize) {
CanonicalizePath(canonicalPath);
}
auto rootPath = PathRoots[(unsigned)root];
STDString absolutePath(*rootPath);
absolutePath += "/" + canonicalPath;
return absolutePath;
}
FileReaderPin StaticSymbols::MakeFileReader(StringView path, PathRootType root, bool canonicalize) const
{
if (PathRoots == nullptr || FileReaderCtor == nullptr) {
ERR("LibraryManager::MakeFileReader(): File reader API not available!");
return FileReaderPin(nullptr);
}
auto absolutePath = ToPath(path, root, canonicalize);
Path lsPath;
lsPath.Name = absolutePath;
auto reader = new FileReader();
FileReaderCtor(reader, &lsPath, 2);
return FileReaderPin(reader);
}
#else
STDString StaticSymbols::ToPath(StringView path, PathRootType root, bool canonicalize) const
{
if (GetPrefixForRoot == nullptr) {
ERR("LibraryManager::ToPath(): Path root API not available!");
return "";
}
STDString canonicalPath(path);
if (canonicalize) {
CanonicalizePath(canonicalPath);
}
StringView rootPath;
GetPrefixForRoot(&rootPath, (unsigned)root);
STDString absolutePath(rootPath);
absolutePath += "/";
absolutePath += canonicalPath;
return absolutePath;
}
FileReaderPin StaticSymbols::MakeFileReader(StringView path, PathRootType root, bool canonicalize) const
{
if (GetPrefixForRoot == nullptr || FileReaderCtor == nullptr) {
ERR("LibraryManager::MakeFileReader(): File reader API not available!");
return FileReaderPin(nullptr);
}
Path lsPath;
lsPath.Name = ToPath(path, root, canonicalize);
auto reader = new FileReader();
FileReaderCtor(reader, &lsPath, 2);
return FileReaderPin(reader);
}
#endif
bool StaticSymbols::FileExists(StringView path, PathRootType root, bool canonicalize) const
{
// TODO - implement using proper FS file exists call
auto reader = MakeFileReader(path, root, canonicalize);
return reader.IsLoaded();
}
void StaticSymbols::DestroyFileReader(FileReader * reader)
{
if (FileReaderDtor != nullptr) {
FileReaderDtor(reader);
}
}
FileReaderPin::~FileReaderPin()
{
if (reader_ != nullptr) {
GetStaticSymbols().DestroyFileReader(reader_);
}
}
STDString FileReaderPin::ToString() const
{
if (!IsLoaded()) {
OsiErrorS("File not loaded!");
return "";
}
STDString contents;
contents.resize(Size());
memcpy(contents.data(), Buf(), Size());
return contents;
}
void TextBuffer::Replace(WStringView replacement)
{
if (Buf) {
GameFree(Buf);
}
Buf = GameAllocArray<wchar_t>(replacement.size() + 1);
memcpy(Buf, replacement.data(), sizeof(wchar_t) * (replacement.size() + 1));
Capacity = replacement.size() + 1;
Length = replacement.size();
}
void eoc::Text::ReplaceParam(int index, WStringView replacement)
{
if (index < 1 || index > std::size(Params)) {
OsiWarnS("Param index out of bounds");
return;
}
auto & param = Params[index - 1];
if (param.PlaceholderOffset == -1 || param.PlaceholderSize == -1) {
return;
}
STDWString s;
s.resize((std::size_t)Buf->Length);
memcpy(s.data(), Buf->Buf, sizeof(wchar_t) * Buf->Length);
STDWString newS = s.substr(0, param.PlaceholderOffset);
newS += replacement;
newS += s.substr(param.PlaceholderOffset + param.PlaceholderSize);
Buf->Replace(newS);
for (auto i = 0; i < 8; i++) {
if (i != index - 1
&& Params[i].PlaceholderSize != -1
&& Params[i].PlaceholderOffset > param.PlaceholderOffset) {
Params[i].PlaceholderOffset = Params[i].PlaceholderOffset - param.PlaceholderSize + (uint32_t)replacement.size();
}
}
param.PlaceholderOffset = -1;
param.PlaceholderSize = -1;
}
uint32_t murmur3_32(const uint8_t* key, size_t len, uint32_t seed)
{
uint32_t h = seed;
if (len > 3) {
size_t i = len >> 2;
do {
uint32_t k;
memcpy(&k, key, sizeof(uint32_t));
key += sizeof(uint32_t);
k *= 0xcc9e2d51;
k = (k << 15) | (k >> 17);
k *= 0x1b873593;
h ^= k;
h = (h << 13) | (h >> 19);
h = h * 5 + 0xe6546b64;
} while (--i);
}
if (len & 3) {
size_t i = len & 3;
uint32_t k = 0;
do {
k <<= 8;
k |= key[i - 1];
} while (--i);
k *= 0xcc9e2d51;
k = (k << 15) | (k >> 17);
k *= 0x1b873593;
h ^= k;
}
h ^= len;
h ^= h >> 16;
h *= 0x85ebca6b;
h ^= h >> 13;
h *= 0xc2b2ae35;
h ^= h >> 16;
return h;
}
uint32_t GlobalStringTable::Entry::Count() const
{
if (Next) {
return StringPtrItems + Next->Count();
}
else {
return StringPtrItems;
}
}
char const * GlobalStringTable::Entry::Get(uint32_t i) const
{
if (i < StringPtrItems) {
return StringPtrs[i];
}
else {
return Next->Get(i - StringPtrItems);
}
}
const char * GlobalStringTable::Find(char const * s, uint64_t length) const
{
auto const & entry = HashTable[Hash(s, length)];
auto numItems = entry.Count();
for (uint32_t i = 0; i < numItems; i++) {
const char * str = entry.Get(i);
if (str) {
auto metadata = reinterpret_cast<FixedString::Metadata*>(const_cast<char*>(str - 0x10));
if (metadata->Length == length && memcmp(s, str, length) == 0) {
return str;
}
}
}
return nullptr;
}
uint32_t GlobalStringTable::Hash(char const * s, uint64_t length)
{
return murmur3_32((const uint8_t *)s, length, 0) % 0xFFF1;
}
Module const * ModManager::FindModByNameGuid(char const * nameGuid) const
{
auto modUuidFS = NameGuidToFixedString(nameGuid);
if (!modUuidFS) {
return nullptr;
}
for (auto const& mod : BaseModule.LoadOrderedModules) {
if (mod.Info.ModuleUUID == modUuidFS) {
return &mod;
}
}
return nullptr;
}
void PendingStatuses::Add(esv::Status * status)
{
PendingStatus pend { status, false };
statuses_.insert(std::make_pair(status->StatusHandle, pend));
}
void PendingStatuses::Remove(esv::Status * status)
{
auto it = statuses_.find(status->StatusHandle);
if (it != statuses_.end()) {
statuses_.erase(it);
} else {
OsiError("Attempted to remove non-pending status " << std::hex << (int64_t)status->StatusHandle);
}
}
PendingStatus * PendingStatuses::Find(ObjectHandle owner, ObjectHandle handle)
{
auto it = statuses_.find(handle);
if (it != statuses_.end()) {
auto & status = it->second;
if (owner == status.Status->TargetHandle) {
return &status;
} else {
OsiError("Attempted to retrieve pending status " << std::hex << (int64_t)status.Status->StatusHandle
<< " on wrong character!");
return nullptr;
}
} else {
return nullptr;
}
}
esv::Status * esv::StatusMachine::GetStatus(ObjectHandle handle) const
{
for (auto status : Statuses) {
if (status->StatusHandle == handle) {
return status;
}
}
return nullptr;
}
esv::Status* esv::StatusMachine::GetStatus(NetId netId) const
{
return FindByNetId(netId);
}
esv::Status* esv::StatusMachine::GetStatus(FixedString const& statusId) const
{
for (auto status : Statuses) {
if (status->StatusId == statusId) {
return status;
}
}
return nullptr;
}
ecl::Status* ecl::StatusMachine::GetStatus(StatusType type) const
{
for (auto status : Statuses) {
if (status->GetStatusId() == type) {
return status;
}
}
return nullptr;
}
ecl::Status* ecl::StatusMachine::GetStatus(FixedString const& statusId) const
{
for (auto status : Statuses) {
if (status->StatusId == statusId) {
return status;
}
}
return nullptr;
}
ecl::Status* ecl::StatusMachine::GetStatus(NetId netId) const
{
return FindByNetId(netId);
}
esv::Status * esv::Character::GetStatus(ObjectHandle statusHandle, bool returnPending) const
{
if (StatusMachine == nullptr) {
return nullptr;
}
auto status = StatusMachine->GetStatus(statusHandle);
if (status != nullptr) {
return status;
}
if (returnPending) {
ObjectHandle ownerHandle;
this->GetObjectHandle(ownerHandle);
auto pendingStatus = ExtensionState::Get().PendingStatuses.Find(ownerHandle, statusHandle);
if (pendingStatus != nullptr) {
return pendingStatus->Status;
}
}
return nullptr;
}
esv::Status* esv::Character::GetStatus(NetId netId) const
{
if (StatusMachine == nullptr) {
return nullptr;
}
// Pending statuses have no NetID, so we can't check them here
return StatusMachine->GetStatus(netId);
}
esv::Status * esv::Item::GetStatus(ObjectHandle statusHandle, bool returnPending) const
{
if (StatusMachine == nullptr) {
return nullptr;
}
auto status = StatusMachine->GetStatus(statusHandle);
if (status != nullptr) {
return status;
}
if (returnPending) {
ObjectHandle ownerHandle;
this->GetObjectHandle(ownerHandle);
auto pendingStatus = ExtensionState::Get().PendingStatuses.Find(ownerHandle, statusHandle);
if (pendingStatus != nullptr) {
return pendingStatus->Status;
}
}
return nullptr;
}
esv::Status* esv::Item::GetStatus(NetId netId) const
{
if (StatusMachine == nullptr) {
return nullptr;
}
return StatusMachine->GetStatus(netId);
}
ecl::Status* ecl::Character::GetStatus(ObjectHandle statusHandle) const
{
if (StatusMachine == nullptr) {
return nullptr;
}
return StatusMachine->Get(statusHandle);
}
ecl::Status* ecl::Character::GetStatus(NetId netId) const
{
if (StatusMachine == nullptr) {
return nullptr;
}
return StatusMachine->GetStatus(netId);
}
void HitDamageInfo::ClearDamage()
{
TotalDamage = 0;
ArmorAbsorption = 0;
DamageList.Clear();
}
void HitDamageInfo::ClearDamage(dse::DamageType damageType)
{
for (auto const& dmg : DamageList) {
if (dmg.DamageType == damageType) {
TotalDamage -= dmg.Amount;
}
}
DamageList.ClearDamage(damageType);
}
void HitDamageInfo::AddDamage(dse::DamageType damageType, int32_t amount)
{
TotalDamage += amount;
DamageList.AddDamage(damageType, amount);
}
void HitDamageInfo::CopyFrom(HitDamageInfo const& src)
{
Equipment = src.Equipment;
TotalDamage = src.TotalDamage;
DamageDealt = src.DamageDealt;
DeathType = src.DeathType;
DamageType = src.DamageType;
AttackDirection = src.AttackDirection;
ArmorAbsorption = src.ArmorAbsorption;
LifeSteal = src.LifeSteal;
EffectFlags = src.EffectFlags;
HitWithWeapon = src.HitWithWeapon;
DamageList.CopyFrom(src.DamageList);
}
void DamagePairList::ClearDamage(dse::DamageType damageType)
{
for (uint32_t i = 0; i < Size; i++) {
if (Buf[i].DamageType == damageType) {
Remove(i);
i--;
}
}
}
void DamagePairList::AddDamage(DamageType damageType, int32_t amount)
{
if (amount == 0) return;
bool added{ false };
for (uint32_t i = 0; i < Size; i++) {
if (Buf[i].DamageType == damageType) {
auto newAmount = Buf[i].Amount + amount;
if (newAmount == 0) {
Remove(i);
} else {
Buf[i].Amount = newAmount;
}
added = true;
break;
}
}
if (!added && amount != 0) {
TDamagePair dmg;
dmg.DamageType = damageType;
dmg.Amount = amount;
if (!SafeAdd(dmg)) {
OsiErrorS("DamageList capacity exceeded!");
}
}
}
namespace esv
{
char const * const sActionStateNames[] = {
"None",
nullptr,
"Attack",
"Die",
"Hit",
"Idle",
"Animation",
"PrepareSkill",
"UseSkill",
"PickUp",
"Drop",
"MoveItem",
"KnockedDown",
"Summoning",
"Polymorphing",
"UseItem",
"CombineItem",
"TeleportFall",
"Sheath",
"Unsheath",
"Identify",
"Repair",
"Lockpick",
"DisarmTrap",
"Incapacitated",
"JumpFlight",
nullptr
};
PropertyMapBase * ActionState::GetPropertyMap()
{
switch (GetType()) {
case ActionStateType::ASAttack:
return &gASAttackPropertyMap;
case ActionStateType::ASPrepareSkill:
return &gASPrepareSkillPropertyMap;
default:
return nullptr;
}
}
char const * ActionState::GetTypeName()
{
auto type = GetType();
if (type <= ActionStateType::ASJumpFlight) {
return sActionStateNames[(unsigned)type];
} else {
return nullptr;
}
}
}
char const * TempStrings::Make(STDString const & str)
{
auto s = _strdup(str.c_str());
pool_.push_back(s);
return s;
}
char const * TempStrings::Make(std::string const & str)
{
auto s = _strdup(str.c_str());
pool_.push_back(s);
return s;
}
TempStrings gTempStrings;
bool ig::FlashObject::GetValueWorkaround(char const* path, ig::DataType desiredType, InvokeDataValue& value, int arrayIndex)
{
switch (desiredType) {
case ig::DataType::None:
return GetValueWorkaround(path, ig::DataType::Bool, value, arrayIndex)
|| GetValueWorkaround(path, ig::DataType::Double, value, arrayIndex)
|| GetValueWorkaround(path, ig::DataType::String, value, arrayIndex);
// Bool and Double are implemented correctly in EoCApp
case ig::DataType::Bool:
case ig::DataType::Double:
return GetValue(path, desiredType, value, arrayIndex);
// Strings returned by the vanilla GetValue() are truncated at 512 bytes; for some use cases (status description etc.)
// this is too short, so we use a non-static buffer size instead
case ig::DataType::String:
{
ig::IggyValuePath val;
auto const& sym = GetStaticSymbols();
if (!sym.IgValuePathMakeNameRef(&val, IggyValue, path)) {
return false;
}
if (arrayIndex >= 0) {
sym.IgValuePathSetArrayIndex(&val, arrayIndex);
}
int resultLength{ 0 };
// Get length of string
if (sym.IgValueGetStringUTF8(&val, 0, 0, 0x10000, nullptr, &resultLength)) {
return false;
}
// Fetch string directly to STDString buffer
value.TypeId = ig::DataType::String;
value.StringVal.resize(resultLength);
return sym.IgValueGetStringUTF8(&val, 0, 0, resultLength, value.StringVal.data(), &resultLength) == 0;
}
default:
ERR("Attempted to fetch Flash value with unknown type %d", desiredType);
return false;
}
}
UIObject* UIObjectManager::GetByType(int typeId) const
{
for (auto ui : UIObjects) {
if (ui->Type == typeId) {
return ui;
}
}
return nullptr;
}
void UIObject::OnFunctionCalled(const char * a1, unsigned int a2, ig::InvokeDataValue * a3)
{
return GetStaticSymbols().EoCUI__vftable->OnFunctionCalled(this, a1, a2, a3);
}
void UIObject::OnCustomDrawCallback(void * a1)
{
return GetStaticSymbols().EoCUI__vftable->OnCustomDrawCallback(this, a1);
}
void UIObject::Destroy(bool a1)
{
return GetStaticSymbols().EoCUI__vftable->Destroy(this, a1);
}
void UIObject::SetHandle(ObjectHandle * a1)
{
return GetStaticSymbols().EoCUI__vftable->SetHandle(this, a1);
}
ObjectHandle * UIObject::GetHandle(ObjectHandle * a1)
{
return GetStaticSymbols().EoCUI__vftable->GetHandle(this, a1);
}
void UIObject::RequestDelete()
{
return GetStaticSymbols().EoCUI__vftable->RequestDelete(this);
}
void UIObject::SetOwnerPlayerId(uint64_t a1)
{
return GetStaticSymbols().EoCUI__vftable->SetOwnerPlayerId(this, a1);
}
void UIObject::SetPos(int * a1)
{
return GetStaticSymbols().EoCUI__vftable->SetPos(this, a1);
}
void UIObject::KeepWithin(int a1, int a2)
{
return GetStaticSymbols().EoCUI__vftable->KeepWithin(this, a1, a2);
}
void UIObject::Show()
{
return GetStaticSymbols().EoCUI__vftable->Show(this);
}
void UIObject::Hide()
{
return GetStaticSymbols().EoCUI__vftable->Hide(this);
}
const char * UIObject::GetDebugName()
{
return GetStaticSymbols().EoCUI__vftable->GetDebugName(this);
}
bool UIObject::IsControllerUI()
{
return GetStaticSymbols().EoCUI__vftable->IsControllerUI(this);
}
void UIObject::Init()
{
return GetStaticSymbols().EoCUI__vftable->Init(this);
}
void UIObject::InitAPI()
{
return GetStaticSymbols().EoCUI__vftable->InitAPI(this);
}
void UIObject::Update(float a1)
{
return GetStaticSymbols().EoCUI__vftable->Update(this, a1);
}
void UIObject::PostUpdate(float a1)
{
return GetStaticSymbols().EoCUI__vftable->PostUpdate(this, a1);
}
void UIObject::Render(void * a1, void * a2)
{
return GetStaticSymbols().EoCUI__vftable->Render(this, a1, a2);
}
void UIObject::RegisterInvokeNames()
{
return GetStaticSymbols().EoCUI__vftable->RegisterInvokeNames(this);
}
void UIObject::Resize()
{
return GetStaticSymbols().EoCUI__vftable->Resize(this);
}
void * UIObject::OnInputEvent(void * a1, void * a2)
{
return GetStaticSymbols().EoCUI__vftable->OnInputEvent(this, a1, a2);
}
uint8_t * UIObject::SendEventToFlash(uint8_t * a2, void *a3, unsigned int a4)
{
return GetStaticSymbols().EoCUI__vftable->SendEventToFlash(this, a2, a3, a4);
}
void * UIObject::OnInputEventText(void * a1, void * a2)
{
return GetStaticSymbols().EoCUI__vftable->OnInputEventText(this, a1, a2);
}
uint16_t * UIObject::OnUnlinkedInput(uint16_t * a1, uint32_t a2, uint16_t a3)
{
return GetStaticSymbols().EoCUI__vftable->OnUnlinkedInput(this, a1, a2, a3);
}
void UIObject::SetModifierStates(bool a1, bool a2, bool a3, bool a4)
{
return GetStaticSymbols().EoCUI__vftable->SetModifierStates(this, a1, a2, a3, a4);
}
bool UIObject::OnAPIPreResetDevice(void * a1)
{
return GetStaticSymbols().EoCUI__vftable->OnAPIPreResetDevice(this, a1);
}
bool UIObject::OnAPIPostResetDevice(void * a1)
{
return GetStaticSymbols().EoCUI__vftable->OnAPIPostResetDevice(this, a1);
}
void UIObject::OnControllerModeChanged()
{
return GetStaticSymbols().EoCUI__vftable->OnControllerModeChanged(this);
}
void UIObject::OnPlayerDisconnect(int a1)
{
return GetStaticSymbols().EoCUI__vftable->OnPlayerDisconnect(this, a1);
}
void UIObject::ReleaseRenderData()
{
return GetStaticSymbols().EoCUI__vftable->ReleaseRenderData(this);
}
void UIObject::PrepareRenderData()
{
return GetStaticSymbols().EoCUI__vftable->PrepareRenderData(this);
}
void UIObject::DoPrepareRenderData()
{
return GetStaticSymbols().EoCUI__vftable->DoPrepareRenderData(this);
}
void UIObject::Activate()
{
return GetStaticSymbols().EoCUI__vftable->Activate(this);
}
void UIObject::Deactivate()
{
return GetStaticSymbols().EoCUI__vftable->Deactivate(this);
}
void UIObject::LoseFocus()
{
return GetStaticSymbols().EoCUI__vftable->LoseFocus(this);
}
int64_t UIObject::GetBitmapHeight()
{
return GetStaticSymbols().EoCUI__vftable->GetBitmapHeight(this);
}
int64_t UIObject::GetBitmapWidth()
{
return GetStaticSymbols().EoCUI__vftable->GetBitmapWidth(this);
}
void * UIObject::GetCharacter()
{
return GetStaticSymbols().EoCUI__vftable->GetCharacter(this);
}
bool UIObject::SetPlayerHandle(ObjectHandle * handle)
{
return GetStaticSymbols().EoCUI__vftable->SetPlayerHandle(this, handle);
}
ObjectHandle * UIObject::GetPlayerHandle(ObjectHandle * handle)
{
return GetStaticSymbols().EoCUI__vftable->GetPlayerHandle(this, handle);
}
bool UIObject::Unknown1()
{
return GetStaticSymbols().EoCUI__vftable->Unknown1(this);
}
void UIObject::Unknown2()
{
return GetStaticSymbols().EoCUI__vftable->Unknown2(this);
}
void * UIObject::Unknown3()
{
return GetStaticSymbols().EoCUI__vftable->Unknown3(this);
}
void UIObject::Unknown4(void * a1)
{
return GetStaticSymbols().EoCUI__vftable->Unknown4(this, a1);
}
namespace ecl
{
EoCUI::EoCUI(dse::Path * path)
{
GetStaticSymbols().EoCUI__ctor(this, path);
}
}
int16_t eoc::AiGrid::GetSurfaceIndex(AiGridTile* tile, uint8_t layer) const
{
if (tile->SurfaceIndexAndMeta == -1) {
return -1;
}
int16_t surfaceIndex = -1;
if (tile->SurfaceIndexAndMeta & 1) {
uint64_t layerMask;
if (layer == 0) {
layerMask = AiGridTile::BaseSurfaceLayerMask;
} else if (layer == 1) {
layerMask = AiGridTile::CloudSurfaceLayerMask;
} else {
OsiError("Requested unknown surface layer!");
layerMask = 0;
}
if (layerMask & tile->AiFlags) {
surfaceIndex = tile->SurfaceIndexAndMeta >> 1;
}
} else {
auto metadata = Surfaces[tile->SurfaceIndexAndMeta >> 1];
if (layer == 0) {
surfaceIndex = metadata->BaseSurfaceIndex;
} else if (layer == 1) {
surfaceIndex = metadata->CloudSurfaceIndex;
} else {
OsiError("Requested unknown surface layer!");
}
}
return surfaceIndex;
}
eoc::AiMetaData* eoc::AiGrid::GetAiMetaData(AiGridTile* tile) const
{
if (tile->AiMetaDataIndex == -1) {
return nullptr;
}
return AiMetaData[tile->AiMetaDataIndex];
}
}
| [
"infernorb@gmail.com"
] | infernorb@gmail.com |
0b73ad9997ea6ac38c1e869a68e1846f46307b97 | 3ade55f81ee739a9ed9a347b1ac5a8d35e7aa349 | /main/triggerInput.ino | 405b2b592969ff8047e8fdcd7ca2d7633eb49b03 | [] | no_license | FinnsterB/uno-injection | c73d4f269556c001fefda42f1e3f58e96e7934bb | a505a3a298672e53104e791f6192c687c9b2ff89 | refs/heads/main | 2023-04-19T16:18:44.155619 | 2021-05-03T15:17:45 | 2021-05-03T15:17:45 | 361,175,279 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 754 | ino | const byte TRIGGER_PIN = 9;
//////////////////AMOUNT OF TEETH - MISSING TOOTH////////////////////
byte triggerType = 35;
boolean missingTooth = true;
int lastTimeBetweenPulses = 0;
byte lastTrigger = 0;
//////////////////////////FINE TUNE THIS/////////////////////////////
int checkMargin = 10
/////////////////////////////////////////////////////////////////////
void setTriggerType(){
}
void initTriggerInput(){
pinMode(TRIGGER_PIN = OUTPUT);
}
boolean checkMissingToothPassed(){
if(millis()+checkMargin > lastTimeBetweenPulses){
lastTrigger = 0;
return true;
}
return false;
}
byte engineAngle(){
return lastTrigger;
}
boolean checkEngineAngle(int desiredAngle){
if(desiredAngle == engineAngle())
{
return true
}
}
| [
"finnybrueren@gmail.com"
] | finnybrueren@gmail.com |
a3efbbc16d864fdf42cd01e8d0751a45927bc553 | 201c1ebc2ffe56a28c6840aceaca60e3375a4e63 | /src/drawers/triangle_drawer.cpp | 201efffe8b944aaab2180ba4b070e202b44404db | [] | no_license | Joytis/GlutDrawtime | a8df252fba7763ac150e51146107995100062e25 | 6857f1d8381a98733da550311967cbae8f92ced3 | refs/heads/master | 2021-05-09T14:39:50.605317 | 2018-01-29T21:18:29 | 2018-01-29T21:18:29 | 119,070,319 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,086 | cpp | #include "triangle_drawer.hpp"
#ifdef __APPLE__
#include <GLUT/glut.h>
#else
#include <GL/freeglut.h>
#endif
#include <iostream>
using states = triangle_drawer_states;
using std::get;
triangle_drawer::triangle_drawer()
: _fsm(states::no_points)
{
// Transitions for state system.
_fsm.add_transition(states::no_points, states::first_point, triggers::lmouse_up);
_fsm.add_transition(states::first_point, states::second_point, triggers::lmouse_up);
_fsm.add_transition(states::second_point, states::final, triggers::lmouse_up);
}
void triangle_drawer::draw(float x, float y) {
_fsm.update();
switch(_fsm.get_current_state()) {
case states::no_points: {
// Draw nothing.
} break;
// Draw the first point and line to cursor.
case states::first_point: {
point& p = _points[0];
glBegin(GL_LINE_STRIP);
glColor3f(get<0>(p.color), get<1>(p.color), get<2>(p.color));
glVertex2f(p.x, p.y);
glVertex2f(x, y);
glEnd();
} break;
// Draw two points and line to cursor.
case states::second_point: {
glBegin(GL_LINE_STRIP);
for(point& p : _points) {
glColor3f(get<0>(p.color), get<1>(p.color), get<2>(p.color));
glVertex2f(p.x, p.y);
}
glVertex2f(x, y);
glEnd();
} break;
// Just draw a triangle!
case states::final: {
// draw a point we're looking at
glBegin(GL_TRIANGLES);
for(point& p : _points) {
glColor3f(get<0>(p.color), get<1>(p.color), get<2>(p.color));
glVertex2f(p.x, p.y);
}
glEnd();
} break;
}
}
void triangle_drawer::send_trigger(trigger_data trig) {
// Add a point if we're not done.
if(trig.type == triggers::lmouse_up && (!is_complete())) {
// Add a point
point p;
p.x = trig.lmouse_up_data.x;
p.y = trig.lmouse_up_data.y;
p.color = trig.lmouse_up_data.color;
_points.push_back(p);
}
_fsm.set_trigger(trig.type);
}
void triangle_drawer::clear() {
_points.clear();
_fsm.reset(); // screw the mouse.
}
// We aren't complete unless we're in our final state.
bool triangle_drawer::is_complete() {
return _fsm.get_current_state() == states::final;
} | [
"clarkchambers94@gmail.com"
] | clarkchambers94@gmail.com |
df37165aa523bc638145bce0196eb62567f0a69d | ff868597e3b4aaa251cf27868b8e82ada5b8c492 | /GameEngine/physics/Collider.cpp | 66a280208484d34419744ab8cf57910432cfe0a4 | [] | no_license | pfs5/GameEngine | 9a3047206c2cf844a9b4d8de48784fe5052e5003 | bca1f583762f2897eea2c6dc7f50a43f516df559 | refs/heads/master | 2020-06-10T11:23:33.345156 | 2019-07-30T17:55:50 | 2019-07-30T17:55:50 | 75,968,445 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,090 | cpp | #include "Collider.h"
#include "PhysicsEngine.h"
#include "../debug/Debug.h"
Collider::Collider(GameObject * _gameObject, sf::Vector2f _position, sf::Vector2f _size, int _id) :
m_id(_id), m_gameObject(_gameObject), m_position(_position), m_size(_size) {
// Init shape
m_shape.setOutlineColor(COLLIDER_COLOR);
m_shape.setFillColor(sf::Color{COLLIDER_COLOR.r, COLLIDER_COLOR.g, COLLIDER_COLOR.b, 10});
m_shape.setOutlineThickness(m_lineThickness);
updateShape();
}
Collider::~Collider() {
PhysicsEngine::getInstance().deleteCollider(this);
}
const sf::Drawable & Collider::getDrawable() {
return m_shape;
}
void Collider::setTrigger(bool _trigger, RigidBody * _rb) {
if (!_trigger && !_rb) {
Debug::logError("Non trigger colliders require rigid bodies");
throw new std::exception("Non trigger colliders require rigid bodies");
}
m_isTrigger = _trigger;
m_rigidBody = _rb;
}
void Collider::updateShape() {
m_shape.setPosition(m_position);
m_shape.setSize(m_size - sf::Vector2f(m_lineThickness, m_lineThickness) * 2.f);
m_shape.setOrigin(m_shape.getSize() / 2.f);
}
| [
"patrikfs5@gmail.com"
] | patrikfs5@gmail.com |
6953c8c048596983aa8eb028f941f351062697a8 | 092dd56a1bf9357466c05d0f5aedf240cec1a27b | /tests/libtests/bc/data/PointForceDataTet4.hh | f28c851526d4a9184040c122c6c1b730d18bbb5f | [
"MIT"
] | permissive | rwalkerlewis/pylith | cef02d5543e99a3e778a1c530967e6b5f1d5dcba | c5f872c6afff004a06311d36ac078133a30abd99 | refs/heads/main | 2023-08-24T18:27:30.877550 | 2023-06-21T22:03:01 | 2023-06-21T22:03:01 | 154,047,591 | 0 | 0 | MIT | 2018-10-21T20:05:59 | 2018-10-21T20:05:59 | null | UTF-8 | C++ | false | false | 2,134 | hh | // -*- C++ -*-
//
// ======================================================================
//
// Brad T. Aagaard, U.S. Geological Survey
// Charles A. Williams, GNS Science
// Matthew G. Knepley, University at Buffalo
//
// This code was developed as part of the Computational Infrastructure
// for Geodynamics (http://geodynamics.org).
//
// Copyright (c) 2010-2022 University of California, Davis
//
// See LICENSE.md for license information.
//
// ======================================================================
//
#if !defined(pylith_bc_forcedatadatatet4_hh)
#define pylith_bc_forcedatadatatet4_hh
#include "PointForceData.hh"
namespace pylith {
namespace bc {
class PointForceDataTet4;
} // pylith
} // bc
class pylith::bc::PointForceDataTet4 : public PointForceData
{
// PUBLIC METHODS ///////////////////////////////////////////////////////
public:
/// Constructor
PointForceDataTet4(void);
/// Destructor
~PointForceDataTet4(void);
// PRIVATE MEMBERS //////////////////////////////////////////////////////
private:
static const PylithScalar _tRef; ///< Reference time for rate of change of forces.
static const PylithScalar _forceRate; ///< Rate of change of force.
static const PylithScalar _tResidual; ///< Time for computing residual.
static const int _numDOF; ///< Number of degrees of freedom at each point.
static const int _numForceDOF; ///< Number of forces at points.
static const int _numForcePts; ///< Number of points with forces.
static const int _id; ///< Boundary condition identifier
static const char* _label; ///< Label for boundary condition group
static const int _forceDOF[]; ///< Degrees of freedom that are constrained at each point
static const int _forcePoints[]; ///< Array of indices of points with forces.
static const PylithScalar _forceInitial[]; ///< Forces at points.
static const PylithScalar _residual[]; ///< Residual field.
static const char* _meshFilename; ///< Filename for input mesh.
static const char* _dbFilename; ///< Filename of simple spatial database.
};
#endif // pylith_bc_forcedatadatatet4_hh
// End of file
| [
"baagaard@usgs.gov"
] | baagaard@usgs.gov |
12223eb140b0181fddae885bd8dec82bf71bdbb0 | b8dabd95ac1376b04719957f9646666f4275f78c | /Discrete_Fourier_Transform/dft_8_precomputed/hls/solution1/syn/systemc/dft_fmul_32ns_32nfYi.h | 619048eeb088812e5a1e4c9ee15daf8ca82c71e2 | [] | no_license | Zenfendson/my_pp4fpgas_labs | 76a8266531d41521b7659c471e971cbe49e69465 | 479085b27de8a281f43f56becc2a7ef0568c7dff | refs/heads/main | 2023-04-09T19:55:59.959361 | 2021-04-12T02:35:32 | 2021-04-12T02:35:32 | 347,118,574 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,150 | h | // ==============================================================
// Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC v2020.1 (64-bit)
// Copyright 1986-2020 Xilinx, Inc. All Rights Reserved.
// ==============================================================
#ifndef __dft_fmul_32ns_32nfYi__HH__
#define __dft_fmul_32ns_32nfYi__HH__
#include "ACMP_fmul.h"
#include <systemc>
template<
int ID,
int NUM_STAGE,
int din0_WIDTH,
int din1_WIDTH,
int dout_WIDTH>
SC_MODULE(dft_fmul_32ns_32nfYi) {
sc_core::sc_in_clk clk;
sc_core::sc_in<sc_dt::sc_logic> reset;
sc_core::sc_in<sc_dt::sc_logic> ce;
sc_core::sc_in< sc_dt::sc_lv<din0_WIDTH> > din0;
sc_core::sc_in< sc_dt::sc_lv<din1_WIDTH> > din1;
sc_core::sc_out< sc_dt::sc_lv<dout_WIDTH> > dout;
ACMP_fmul<ID, 4, din0_WIDTH, din1_WIDTH, dout_WIDTH> ACMP_fmul_U;
SC_CTOR(dft_fmul_32ns_32nfYi): ACMP_fmul_U ("ACMP_fmul_U") {
ACMP_fmul_U.clk(clk);
ACMP_fmul_U.reset(reset);
ACMP_fmul_U.ce(ce);
ACMP_fmul_U.din0(din0);
ACMP_fmul_U.din1(din1);
ACMP_fmul_U.dout(dout);
}
};
#endif //
| [
"994836613@qq.com"
] | 994836613@qq.com |
de87f7bf726b55a559b7e1bae9ca8211ed26b2c9 | 800fe2a1d6f866bda83df608f07533b6bb6ca270 | /Temp/il2cppOutput/il2cppOutput/Il2CppCompilerCalculateTypeValues_10Table.cpp | b40a54caf8253dc2bfb90ee2c9473e50a2ce3651 | [] | no_license | kimactor/ARphotoViewer | 4ce98d2f927f8b3c1b7add19aa004a71d28e39fe | 446f5575a061aa93cdca86ddcdfddac3104d115b | refs/heads/master | 2020-12-08T16:46:43.180445 | 2018-03-05T01:09:23 | 2018-03-05T01:09:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 304,465 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
// System.Collections.Specialized.NameObjectCollectionBase
struct NameObjectCollectionBase_t2091847364;
// System.AsyncCallback
struct AsyncCallback_t3962456242;
// System.Exception
struct Exception_t;
// System.Threading.ManualResetEvent
struct ManualResetEvent_t451242010;
// Mono.Security.Protocol.Tls.Handshake.HandshakeMessage
struct HandshakeMessage_t3696583168;
// System.Collections.Hashtable
struct Hashtable_t1853889766;
// System.Collections.Specialized.ListDictionary
struct ListDictionary_t1624492310;
// System.Collections.Specialized.ListDictionary/DictionaryNode
struct DictionaryNode_t417719465;
// System.Collections.IComparer
struct IComparer_t1540313114;
// System.Collections.IDictionaryEnumerator
struct IDictionaryEnumerator_t1693217257;
// System.Collections.Specialized.NameObjectCollectionBase/_Item
struct _Item_t2272350267;
// System.Collections.ArrayList
struct ArrayList_t2718874744;
// System.Collections.IHashCodeProvider
struct IHashCodeProvider_t267601189;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t950877179;
// System.Collections.Specialized.NameObjectCollectionBase/KeysCollection
struct KeysCollection_t1318642398;
// System.Collections.IEqualityComparer
struct IEqualityComparer_t1493878338;
// System.String
struct String_t;
// System.Version
struct Version_t3456873960;
// Mono.Security.Protocol.Tls.CipherSuite
struct CipherSuite_t3414744575;
// System.Byte[]
struct ByteU5BU5D_t4116647657;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
struct X509CertificateCollection_t3399372417;
// System.Security.Cryptography.X509Certificates.X509Certificate
struct X509Certificate_t713131622;
// Mono.Security.Cryptography.RSAManaged
struct RSAManaged_t1757093820;
// System.IntPtr[]
struct IntPtrU5BU5D_t4013366056;
// System.Collections.IDictionary
struct IDictionary_t1363984059;
// System.Void
struct Void_t1185182177;
// System.Char[]
struct CharU5BU5D_t3528271667;
// System.String[]
struct StringU5BU5D_t1281789340;
// System.Byte
struct Byte_t1134296376;
// System.Double
struct Double_t594665363;
// System.UInt16
struct UInt16_t2177724958;
// System.Security.Cryptography.RSA
struct RSA_t2385438082;
// System.Security.Cryptography.HashAlgorithm
struct HashAlgorithm_t1432317219;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_t2736202052;
// System.IO.MemoryStream
struct MemoryStream_t94973147;
// Mono.Security.Protocol.Tls.Alert
struct Alert_t4059934885;
// Mono.Security.X509.X509CertificateCollection
struct X509CertificateCollection_t1542168550;
// Mono.Security.Protocol.Tls.Handshake.ClientCertificateType[]
struct ClientCertificateTypeU5BU5D_t4253920197;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.DelegateData
struct DelegateData_t1677132599;
// System.IO.Stream
struct Stream_t1273022909;
// Mono.Security.Protocol.Tls.Context
struct Context_t3971234707;
// Mono.Security.Protocol.Tls.RecordProtocol
struct RecordProtocol_t3759049701;
// Mono.Security.Protocol.Tls.TlsServerSettings
struct TlsServerSettings_t4144396432;
// Mono.Security.Protocol.Tls.TlsClientSettings
struct TlsClientSettings_t2486039503;
// Mono.Security.Protocol.Tls.SecurityParameters
struct SecurityParameters_t2199972650;
// Mono.Security.Protocol.Tls.CipherSuiteCollection
struct CipherSuiteCollection_t1129639304;
// Mono.Security.Protocol.Tls.TlsStream
struct TlsStream_t2365453965;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t386037858;
// System.Security.Cryptography.SymmetricAlgorithm
struct SymmetricAlgorithm_t4254223087;
// System.Security.Cryptography.ICryptoTransform
struct ICryptoTransform_t2733259762;
// System.Security.Cryptography.KeyedHashAlgorithm
struct KeyedHashAlgorithm_t112861511;
// Mono.Security.Protocol.Tls.CertificateValidationCallback
struct CertificateValidationCallback_t4091668218;
// Mono.Security.Protocol.Tls.CertificateSelectionCallback
struct CertificateSelectionCallback_t3743405224;
// Mono.Security.Protocol.Tls.PrivateKeySelectionCallback
struct PrivateKeySelectionCallback_t3240194217;
// Mono.Security.Protocol.Tls.CertificateValidationCallback2
struct CertificateValidationCallback2_t1842476440;
// System.IO.Compression.DeflateStream/UnmanagedReadOrWrite
struct UnmanagedReadOrWrite_t876388624;
// Mono.Math.BigInteger
struct BigInteger_t2902905090;
// System.IAsyncResult
struct IAsyncResult_t767004451;
// System.Int32[]
struct Int32U5BU5D_t385246372;
// System.Security.Cryptography.AsymmetricAlgorithm
struct AsymmetricAlgorithm_t932037087;
// Mono.Security.Protocol.Tls.ValidationResult
struct ValidationResult_t3834298736;
// System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES
struct Win32_IP_ADAPTER_ADDRESSES_t3463526328;
#ifndef U3CMODULEU3E_T692745527_H
#define U3CMODULEU3E_T692745527_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_t692745527
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CMODULEU3E_T692745527_H
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
#ifndef KEYSCOLLECTION_T1318642398_H
#define KEYSCOLLECTION_T1318642398_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.NameObjectCollectionBase/KeysCollection
struct KeysCollection_t1318642398 : public RuntimeObject
{
public:
// System.Collections.Specialized.NameObjectCollectionBase System.Collections.Specialized.NameObjectCollectionBase/KeysCollection::m_collection
NameObjectCollectionBase_t2091847364 * ___m_collection_0;
public:
inline static int32_t get_offset_of_m_collection_0() { return static_cast<int32_t>(offsetof(KeysCollection_t1318642398, ___m_collection_0)); }
inline NameObjectCollectionBase_t2091847364 * get_m_collection_0() const { return ___m_collection_0; }
inline NameObjectCollectionBase_t2091847364 ** get_address_of_m_collection_0() { return &___m_collection_0; }
inline void set_m_collection_0(NameObjectCollectionBase_t2091847364 * value)
{
___m_collection_0 = value;
Il2CppCodeGenWriteBarrier((&___m_collection_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYSCOLLECTION_T1318642398_H
#ifndef TYPECONVERTER_T2249118273_H
#define TYPECONVERTER_T2249118273_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.TypeConverter
struct TypeConverter_t2249118273 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPECONVERTER_T2249118273_H
#ifndef IPINTERFACEPROPERTIES_T3964383369_H
#define IPINTERFACEPROPERTIES_T3964383369_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.IPInterfaceProperties
struct IPInterfaceProperties_t3964383369 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IPINTERFACEPROPERTIES_T3964383369_H
#ifndef IPV4INTERFACESTATISTICS_T3249312820_H
#define IPV4INTERFACESTATISTICS_T3249312820_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.IPv4InterfaceStatistics
struct IPv4InterfaceStatistics_t3249312820 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IPV4INTERFACESTATISTICS_T3249312820_H
#ifndef SENDRECORDASYNCRESULT_T3718352467_H
#define SENDRECORDASYNCRESULT_T3718352467_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.RecordProtocol/SendRecordAsyncResult
struct SendRecordAsyncResult_t3718352467 : public RuntimeObject
{
public:
// System.Object Mono.Security.Protocol.Tls.RecordProtocol/SendRecordAsyncResult::locker
RuntimeObject * ___locker_0;
// System.AsyncCallback Mono.Security.Protocol.Tls.RecordProtocol/SendRecordAsyncResult::_userCallback
AsyncCallback_t3962456242 * ____userCallback_1;
// System.Object Mono.Security.Protocol.Tls.RecordProtocol/SendRecordAsyncResult::_userState
RuntimeObject * ____userState_2;
// System.Exception Mono.Security.Protocol.Tls.RecordProtocol/SendRecordAsyncResult::_asyncException
Exception_t * ____asyncException_3;
// System.Threading.ManualResetEvent Mono.Security.Protocol.Tls.RecordProtocol/SendRecordAsyncResult::handle
ManualResetEvent_t451242010 * ___handle_4;
// Mono.Security.Protocol.Tls.Handshake.HandshakeMessage Mono.Security.Protocol.Tls.RecordProtocol/SendRecordAsyncResult::_message
HandshakeMessage_t3696583168 * ____message_5;
// System.Boolean Mono.Security.Protocol.Tls.RecordProtocol/SendRecordAsyncResult::completed
bool ___completed_6;
public:
inline static int32_t get_offset_of_locker_0() { return static_cast<int32_t>(offsetof(SendRecordAsyncResult_t3718352467, ___locker_0)); }
inline RuntimeObject * get_locker_0() const { return ___locker_0; }
inline RuntimeObject ** get_address_of_locker_0() { return &___locker_0; }
inline void set_locker_0(RuntimeObject * value)
{
___locker_0 = value;
Il2CppCodeGenWriteBarrier((&___locker_0), value);
}
inline static int32_t get_offset_of__userCallback_1() { return static_cast<int32_t>(offsetof(SendRecordAsyncResult_t3718352467, ____userCallback_1)); }
inline AsyncCallback_t3962456242 * get__userCallback_1() const { return ____userCallback_1; }
inline AsyncCallback_t3962456242 ** get_address_of__userCallback_1() { return &____userCallback_1; }
inline void set__userCallback_1(AsyncCallback_t3962456242 * value)
{
____userCallback_1 = value;
Il2CppCodeGenWriteBarrier((&____userCallback_1), value);
}
inline static int32_t get_offset_of__userState_2() { return static_cast<int32_t>(offsetof(SendRecordAsyncResult_t3718352467, ____userState_2)); }
inline RuntimeObject * get__userState_2() const { return ____userState_2; }
inline RuntimeObject ** get_address_of__userState_2() { return &____userState_2; }
inline void set__userState_2(RuntimeObject * value)
{
____userState_2 = value;
Il2CppCodeGenWriteBarrier((&____userState_2), value);
}
inline static int32_t get_offset_of__asyncException_3() { return static_cast<int32_t>(offsetof(SendRecordAsyncResult_t3718352467, ____asyncException_3)); }
inline Exception_t * get__asyncException_3() const { return ____asyncException_3; }
inline Exception_t ** get_address_of__asyncException_3() { return &____asyncException_3; }
inline void set__asyncException_3(Exception_t * value)
{
____asyncException_3 = value;
Il2CppCodeGenWriteBarrier((&____asyncException_3), value);
}
inline static int32_t get_offset_of_handle_4() { return static_cast<int32_t>(offsetof(SendRecordAsyncResult_t3718352467, ___handle_4)); }
inline ManualResetEvent_t451242010 * get_handle_4() const { return ___handle_4; }
inline ManualResetEvent_t451242010 ** get_address_of_handle_4() { return &___handle_4; }
inline void set_handle_4(ManualResetEvent_t451242010 * value)
{
___handle_4 = value;
Il2CppCodeGenWriteBarrier((&___handle_4), value);
}
inline static int32_t get_offset_of__message_5() { return static_cast<int32_t>(offsetof(SendRecordAsyncResult_t3718352467, ____message_5)); }
inline HandshakeMessage_t3696583168 * get__message_5() const { return ____message_5; }
inline HandshakeMessage_t3696583168 ** get_address_of__message_5() { return &____message_5; }
inline void set__message_5(HandshakeMessage_t3696583168 * value)
{
____message_5 = value;
Il2CppCodeGenWriteBarrier((&____message_5), value);
}
inline static int32_t get_offset_of_completed_6() { return static_cast<int32_t>(offsetof(SendRecordAsyncResult_t3718352467, ___completed_6)); }
inline bool get_completed_6() const { return ___completed_6; }
inline bool* get_address_of_completed_6() { return &___completed_6; }
inline void set_completed_6(bool value)
{
___completed_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SENDRECORDASYNCRESULT_T3718352467_H
#ifndef ASYMMETRICSIGNATUREDEFORMATTER_T2681190756_H
#define ASYMMETRICSIGNATUREDEFORMATTER_T2681190756_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.AsymmetricSignatureDeformatter
struct AsymmetricSignatureDeformatter_t2681190756 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYMMETRICSIGNATUREDEFORMATTER_T2681190756_H
#ifndef ASYMMETRICSIGNATUREFORMATTER_T3486936014_H
#define ASYMMETRICSIGNATUREFORMATTER_T3486936014_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.AsymmetricSignatureFormatter
struct AsymmetricSignatureFormatter_t3486936014 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYMMETRICSIGNATUREFORMATTER_T3486936014_H
#ifndef _KEYSENUMERATOR_T4246666432_H
#define _KEYSENUMERATOR_T4246666432_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.NameObjectCollectionBase/_KeysEnumerator
struct _KeysEnumerator_t4246666432 : public RuntimeObject
{
public:
// System.Collections.Specialized.NameObjectCollectionBase System.Collections.Specialized.NameObjectCollectionBase/_KeysEnumerator::m_collection
NameObjectCollectionBase_t2091847364 * ___m_collection_0;
// System.Int32 System.Collections.Specialized.NameObjectCollectionBase/_KeysEnumerator::m_position
int32_t ___m_position_1;
public:
inline static int32_t get_offset_of_m_collection_0() { return static_cast<int32_t>(offsetof(_KeysEnumerator_t4246666432, ___m_collection_0)); }
inline NameObjectCollectionBase_t2091847364 * get_m_collection_0() const { return ___m_collection_0; }
inline NameObjectCollectionBase_t2091847364 ** get_address_of_m_collection_0() { return &___m_collection_0; }
inline void set_m_collection_0(NameObjectCollectionBase_t2091847364 * value)
{
___m_collection_0 = value;
Il2CppCodeGenWriteBarrier((&___m_collection_0), value);
}
inline static int32_t get_offset_of_m_position_1() { return static_cast<int32_t>(offsetof(_KeysEnumerator_t4246666432, ___m_position_1)); }
inline int32_t get_m_position_1() const { return ___m_position_1; }
inline int32_t* get_address_of_m_position_1() { return &___m_position_1; }
inline void set_m_position_1(int32_t value)
{
___m_position_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // _KEYSENUMERATOR_T4246666432_H
#ifndef LOCALE_T4128636109_H
#define LOCALE_T4128636109_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Locale
struct Locale_t4128636109 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOCALE_T4128636109_H
#ifndef HYBRIDDICTIONARY_T4070033136_H
#define HYBRIDDICTIONARY_T4070033136_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.HybridDictionary
struct HybridDictionary_t4070033136 : public RuntimeObject
{
public:
// System.Boolean System.Collections.Specialized.HybridDictionary::caseInsensitive
bool ___caseInsensitive_0;
// System.Collections.Hashtable System.Collections.Specialized.HybridDictionary::hashtable
Hashtable_t1853889766 * ___hashtable_1;
// System.Collections.Specialized.ListDictionary System.Collections.Specialized.HybridDictionary::list
ListDictionary_t1624492310 * ___list_2;
public:
inline static int32_t get_offset_of_caseInsensitive_0() { return static_cast<int32_t>(offsetof(HybridDictionary_t4070033136, ___caseInsensitive_0)); }
inline bool get_caseInsensitive_0() const { return ___caseInsensitive_0; }
inline bool* get_address_of_caseInsensitive_0() { return &___caseInsensitive_0; }
inline void set_caseInsensitive_0(bool value)
{
___caseInsensitive_0 = value;
}
inline static int32_t get_offset_of_hashtable_1() { return static_cast<int32_t>(offsetof(HybridDictionary_t4070033136, ___hashtable_1)); }
inline Hashtable_t1853889766 * get_hashtable_1() const { return ___hashtable_1; }
inline Hashtable_t1853889766 ** get_address_of_hashtable_1() { return &___hashtable_1; }
inline void set_hashtable_1(Hashtable_t1853889766 * value)
{
___hashtable_1 = value;
Il2CppCodeGenWriteBarrier((&___hashtable_1), value);
}
inline static int32_t get_offset_of_list_2() { return static_cast<int32_t>(offsetof(HybridDictionary_t4070033136, ___list_2)); }
inline ListDictionary_t1624492310 * get_list_2() const { return ___list_2; }
inline ListDictionary_t1624492310 ** get_address_of_list_2() { return &___list_2; }
inline void set_list_2(ListDictionary_t1624492310 * value)
{
___list_2 = value;
Il2CppCodeGenWriteBarrier((&___list_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HYBRIDDICTIONARY_T4070033136_H
#ifndef LISTDICTIONARY_T1624492310_H
#define LISTDICTIONARY_T1624492310_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.ListDictionary
struct ListDictionary_t1624492310 : public RuntimeObject
{
public:
// System.Int32 System.Collections.Specialized.ListDictionary::count
int32_t ___count_0;
// System.Int32 System.Collections.Specialized.ListDictionary::version
int32_t ___version_1;
// System.Collections.Specialized.ListDictionary/DictionaryNode System.Collections.Specialized.ListDictionary::head
DictionaryNode_t417719465 * ___head_2;
// System.Collections.IComparer System.Collections.Specialized.ListDictionary::comparer
RuntimeObject* ___comparer_3;
public:
inline static int32_t get_offset_of_count_0() { return static_cast<int32_t>(offsetof(ListDictionary_t1624492310, ___count_0)); }
inline int32_t get_count_0() const { return ___count_0; }
inline int32_t* get_address_of_count_0() { return &___count_0; }
inline void set_count_0(int32_t value)
{
___count_0 = value;
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(ListDictionary_t1624492310, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_head_2() { return static_cast<int32_t>(offsetof(ListDictionary_t1624492310, ___head_2)); }
inline DictionaryNode_t417719465 * get_head_2() const { return ___head_2; }
inline DictionaryNode_t417719465 ** get_address_of_head_2() { return &___head_2; }
inline void set_head_2(DictionaryNode_t417719465 * value)
{
___head_2 = value;
Il2CppCodeGenWriteBarrier((&___head_2), value);
}
inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(ListDictionary_t1624492310, ___comparer_3)); }
inline RuntimeObject* get_comparer_3() const { return ___comparer_3; }
inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; }
inline void set_comparer_3(RuntimeObject* value)
{
___comparer_3 = value;
Il2CppCodeGenWriteBarrier((&___comparer_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LISTDICTIONARY_T1624492310_H
#ifndef DICTIONARYNODE_T417719465_H
#define DICTIONARYNODE_T417719465_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.ListDictionary/DictionaryNode
struct DictionaryNode_t417719465 : public RuntimeObject
{
public:
// System.Object System.Collections.Specialized.ListDictionary/DictionaryNode::key
RuntimeObject * ___key_0;
// System.Object System.Collections.Specialized.ListDictionary/DictionaryNode::value
RuntimeObject * ___value_1;
// System.Collections.Specialized.ListDictionary/DictionaryNode System.Collections.Specialized.ListDictionary/DictionaryNode::next
DictionaryNode_t417719465 * ___next_2;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(DictionaryNode_t417719465, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(DictionaryNode_t417719465, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
inline static int32_t get_offset_of_next_2() { return static_cast<int32_t>(offsetof(DictionaryNode_t417719465, ___next_2)); }
inline DictionaryNode_t417719465 * get_next_2() const { return ___next_2; }
inline DictionaryNode_t417719465 ** get_address_of_next_2() { return &___next_2; }
inline void set_next_2(DictionaryNode_t417719465 * value)
{
___next_2 = value;
Il2CppCodeGenWriteBarrier((&___next_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARYNODE_T417719465_H
#ifndef DICTIONARYNODEENUMERATOR_T1673829610_H
#define DICTIONARYNODEENUMERATOR_T1673829610_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.ListDictionary/DictionaryNodeEnumerator
struct DictionaryNodeEnumerator_t1673829610 : public RuntimeObject
{
public:
// System.Collections.Specialized.ListDictionary System.Collections.Specialized.ListDictionary/DictionaryNodeEnumerator::dict
ListDictionary_t1624492310 * ___dict_0;
// System.Boolean System.Collections.Specialized.ListDictionary/DictionaryNodeEnumerator::isAtStart
bool ___isAtStart_1;
// System.Collections.Specialized.ListDictionary/DictionaryNode System.Collections.Specialized.ListDictionary/DictionaryNodeEnumerator::current
DictionaryNode_t417719465 * ___current_2;
// System.Int32 System.Collections.Specialized.ListDictionary/DictionaryNodeEnumerator::version
int32_t ___version_3;
public:
inline static int32_t get_offset_of_dict_0() { return static_cast<int32_t>(offsetof(DictionaryNodeEnumerator_t1673829610, ___dict_0)); }
inline ListDictionary_t1624492310 * get_dict_0() const { return ___dict_0; }
inline ListDictionary_t1624492310 ** get_address_of_dict_0() { return &___dict_0; }
inline void set_dict_0(ListDictionary_t1624492310 * value)
{
___dict_0 = value;
Il2CppCodeGenWriteBarrier((&___dict_0), value);
}
inline static int32_t get_offset_of_isAtStart_1() { return static_cast<int32_t>(offsetof(DictionaryNodeEnumerator_t1673829610, ___isAtStart_1)); }
inline bool get_isAtStart_1() const { return ___isAtStart_1; }
inline bool* get_address_of_isAtStart_1() { return &___isAtStart_1; }
inline void set_isAtStart_1(bool value)
{
___isAtStart_1 = value;
}
inline static int32_t get_offset_of_current_2() { return static_cast<int32_t>(offsetof(DictionaryNodeEnumerator_t1673829610, ___current_2)); }
inline DictionaryNode_t417719465 * get_current_2() const { return ___current_2; }
inline DictionaryNode_t417719465 ** get_address_of_current_2() { return &___current_2; }
inline void set_current_2(DictionaryNode_t417719465 * value)
{
___current_2 = value;
Il2CppCodeGenWriteBarrier((&___current_2), value);
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(DictionaryNodeEnumerator_t1673829610, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARYNODEENUMERATOR_T1673829610_H
#ifndef DICTIONARYNODECOLLECTION_T819283804_H
#define DICTIONARYNODECOLLECTION_T819283804_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.ListDictionary/DictionaryNodeCollection
struct DictionaryNodeCollection_t819283804 : public RuntimeObject
{
public:
// System.Collections.Specialized.ListDictionary System.Collections.Specialized.ListDictionary/DictionaryNodeCollection::dict
ListDictionary_t1624492310 * ___dict_0;
// System.Boolean System.Collections.Specialized.ListDictionary/DictionaryNodeCollection::isKeyList
bool ___isKeyList_1;
public:
inline static int32_t get_offset_of_dict_0() { return static_cast<int32_t>(offsetof(DictionaryNodeCollection_t819283804, ___dict_0)); }
inline ListDictionary_t1624492310 * get_dict_0() const { return ___dict_0; }
inline ListDictionary_t1624492310 ** get_address_of_dict_0() { return &___dict_0; }
inline void set_dict_0(ListDictionary_t1624492310 * value)
{
___dict_0 = value;
Il2CppCodeGenWriteBarrier((&___dict_0), value);
}
inline static int32_t get_offset_of_isKeyList_1() { return static_cast<int32_t>(offsetof(DictionaryNodeCollection_t819283804, ___isKeyList_1)); }
inline bool get_isKeyList_1() const { return ___isKeyList_1; }
inline bool* get_address_of_isKeyList_1() { return &___isKeyList_1; }
inline void set_isKeyList_1(bool value)
{
___isKeyList_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARYNODECOLLECTION_T819283804_H
#ifndef DICTIONARYNODECOLLECTIONENUMERATOR_T2863182637_H
#define DICTIONARYNODECOLLECTIONENUMERATOR_T2863182637_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.ListDictionary/DictionaryNodeCollection/DictionaryNodeCollectionEnumerator
struct DictionaryNodeCollectionEnumerator_t2863182637 : public RuntimeObject
{
public:
// System.Collections.IDictionaryEnumerator System.Collections.Specialized.ListDictionary/DictionaryNodeCollection/DictionaryNodeCollectionEnumerator::inner
RuntimeObject* ___inner_0;
// System.Boolean System.Collections.Specialized.ListDictionary/DictionaryNodeCollection/DictionaryNodeCollectionEnumerator::isKeyList
bool ___isKeyList_1;
public:
inline static int32_t get_offset_of_inner_0() { return static_cast<int32_t>(offsetof(DictionaryNodeCollectionEnumerator_t2863182637, ___inner_0)); }
inline RuntimeObject* get_inner_0() const { return ___inner_0; }
inline RuntimeObject** get_address_of_inner_0() { return &___inner_0; }
inline void set_inner_0(RuntimeObject* value)
{
___inner_0 = value;
Il2CppCodeGenWriteBarrier((&___inner_0), value);
}
inline static int32_t get_offset_of_isKeyList_1() { return static_cast<int32_t>(offsetof(DictionaryNodeCollectionEnumerator_t2863182637, ___isKeyList_1)); }
inline bool get_isKeyList_1() const { return ___isKeyList_1; }
inline bool* get_address_of_isKeyList_1() { return &___isKeyList_1; }
inline void set_isKeyList_1(bool value)
{
___isKeyList_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARYNODECOLLECTIONENUMERATOR_T2863182637_H
#ifndef NAMEOBJECTCOLLECTIONBASE_T2091847364_H
#define NAMEOBJECTCOLLECTIONBASE_T2091847364_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.NameObjectCollectionBase
struct NameObjectCollectionBase_t2091847364 : public RuntimeObject
{
public:
// System.Collections.Hashtable System.Collections.Specialized.NameObjectCollectionBase::m_ItemsContainer
Hashtable_t1853889766 * ___m_ItemsContainer_0;
// System.Collections.Specialized.NameObjectCollectionBase/_Item System.Collections.Specialized.NameObjectCollectionBase::m_NullKeyItem
_Item_t2272350267 * ___m_NullKeyItem_1;
// System.Collections.ArrayList System.Collections.Specialized.NameObjectCollectionBase::m_ItemsArray
ArrayList_t2718874744 * ___m_ItemsArray_2;
// System.Collections.IHashCodeProvider System.Collections.Specialized.NameObjectCollectionBase::m_hashprovider
RuntimeObject* ___m_hashprovider_3;
// System.Collections.IComparer System.Collections.Specialized.NameObjectCollectionBase::m_comparer
RuntimeObject* ___m_comparer_4;
// System.Int32 System.Collections.Specialized.NameObjectCollectionBase::m_defCapacity
int32_t ___m_defCapacity_5;
// System.Boolean System.Collections.Specialized.NameObjectCollectionBase::m_readonly
bool ___m_readonly_6;
// System.Runtime.Serialization.SerializationInfo System.Collections.Specialized.NameObjectCollectionBase::infoCopy
SerializationInfo_t950877179 * ___infoCopy_7;
// System.Collections.Specialized.NameObjectCollectionBase/KeysCollection System.Collections.Specialized.NameObjectCollectionBase::keyscoll
KeysCollection_t1318642398 * ___keyscoll_8;
// System.Collections.IEqualityComparer System.Collections.Specialized.NameObjectCollectionBase::equality_comparer
RuntimeObject* ___equality_comparer_9;
public:
inline static int32_t get_offset_of_m_ItemsContainer_0() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t2091847364, ___m_ItemsContainer_0)); }
inline Hashtable_t1853889766 * get_m_ItemsContainer_0() const { return ___m_ItemsContainer_0; }
inline Hashtable_t1853889766 ** get_address_of_m_ItemsContainer_0() { return &___m_ItemsContainer_0; }
inline void set_m_ItemsContainer_0(Hashtable_t1853889766 * value)
{
___m_ItemsContainer_0 = value;
Il2CppCodeGenWriteBarrier((&___m_ItemsContainer_0), value);
}
inline static int32_t get_offset_of_m_NullKeyItem_1() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t2091847364, ___m_NullKeyItem_1)); }
inline _Item_t2272350267 * get_m_NullKeyItem_1() const { return ___m_NullKeyItem_1; }
inline _Item_t2272350267 ** get_address_of_m_NullKeyItem_1() { return &___m_NullKeyItem_1; }
inline void set_m_NullKeyItem_1(_Item_t2272350267 * value)
{
___m_NullKeyItem_1 = value;
Il2CppCodeGenWriteBarrier((&___m_NullKeyItem_1), value);
}
inline static int32_t get_offset_of_m_ItemsArray_2() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t2091847364, ___m_ItemsArray_2)); }
inline ArrayList_t2718874744 * get_m_ItemsArray_2() const { return ___m_ItemsArray_2; }
inline ArrayList_t2718874744 ** get_address_of_m_ItemsArray_2() { return &___m_ItemsArray_2; }
inline void set_m_ItemsArray_2(ArrayList_t2718874744 * value)
{
___m_ItemsArray_2 = value;
Il2CppCodeGenWriteBarrier((&___m_ItemsArray_2), value);
}
inline static int32_t get_offset_of_m_hashprovider_3() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t2091847364, ___m_hashprovider_3)); }
inline RuntimeObject* get_m_hashprovider_3() const { return ___m_hashprovider_3; }
inline RuntimeObject** get_address_of_m_hashprovider_3() { return &___m_hashprovider_3; }
inline void set_m_hashprovider_3(RuntimeObject* value)
{
___m_hashprovider_3 = value;
Il2CppCodeGenWriteBarrier((&___m_hashprovider_3), value);
}
inline static int32_t get_offset_of_m_comparer_4() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t2091847364, ___m_comparer_4)); }
inline RuntimeObject* get_m_comparer_4() const { return ___m_comparer_4; }
inline RuntimeObject** get_address_of_m_comparer_4() { return &___m_comparer_4; }
inline void set_m_comparer_4(RuntimeObject* value)
{
___m_comparer_4 = value;
Il2CppCodeGenWriteBarrier((&___m_comparer_4), value);
}
inline static int32_t get_offset_of_m_defCapacity_5() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t2091847364, ___m_defCapacity_5)); }
inline int32_t get_m_defCapacity_5() const { return ___m_defCapacity_5; }
inline int32_t* get_address_of_m_defCapacity_5() { return &___m_defCapacity_5; }
inline void set_m_defCapacity_5(int32_t value)
{
___m_defCapacity_5 = value;
}
inline static int32_t get_offset_of_m_readonly_6() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t2091847364, ___m_readonly_6)); }
inline bool get_m_readonly_6() const { return ___m_readonly_6; }
inline bool* get_address_of_m_readonly_6() { return &___m_readonly_6; }
inline void set_m_readonly_6(bool value)
{
___m_readonly_6 = value;
}
inline static int32_t get_offset_of_infoCopy_7() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t2091847364, ___infoCopy_7)); }
inline SerializationInfo_t950877179 * get_infoCopy_7() const { return ___infoCopy_7; }
inline SerializationInfo_t950877179 ** get_address_of_infoCopy_7() { return &___infoCopy_7; }
inline void set_infoCopy_7(SerializationInfo_t950877179 * value)
{
___infoCopy_7 = value;
Il2CppCodeGenWriteBarrier((&___infoCopy_7), value);
}
inline static int32_t get_offset_of_keyscoll_8() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t2091847364, ___keyscoll_8)); }
inline KeysCollection_t1318642398 * get_keyscoll_8() const { return ___keyscoll_8; }
inline KeysCollection_t1318642398 ** get_address_of_keyscoll_8() { return &___keyscoll_8; }
inline void set_keyscoll_8(KeysCollection_t1318642398 * value)
{
___keyscoll_8 = value;
Il2CppCodeGenWriteBarrier((&___keyscoll_8), value);
}
inline static int32_t get_offset_of_equality_comparer_9() { return static_cast<int32_t>(offsetof(NameObjectCollectionBase_t2091847364, ___equality_comparer_9)); }
inline RuntimeObject* get_equality_comparer_9() const { return ___equality_comparer_9; }
inline RuntimeObject** get_address_of_equality_comparer_9() { return &___equality_comparer_9; }
inline void set_equality_comparer_9(RuntimeObject* value)
{
___equality_comparer_9 = value;
Il2CppCodeGenWriteBarrier((&___equality_comparer_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NAMEOBJECTCOLLECTIONBASE_T2091847364_H
#ifndef _ITEM_T2272350267_H
#define _ITEM_T2272350267_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.NameObjectCollectionBase/_Item
struct _Item_t2272350267 : public RuntimeObject
{
public:
// System.String System.Collections.Specialized.NameObjectCollectionBase/_Item::key
String_t* ___key_0;
// System.Object System.Collections.Specialized.NameObjectCollectionBase/_Item::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(_Item_t2272350267, ___key_0)); }
inline String_t* get_key_0() const { return ___key_0; }
inline String_t** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(String_t* value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(_Item_t2272350267, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // _ITEM_T2272350267_H
#ifndef NETWORKINTERFACE_T271883373_H
#define NETWORKINTERFACE_T271883373_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.NetworkInterface
struct NetworkInterface_t271883373 : public RuntimeObject
{
public:
public:
};
struct NetworkInterface_t271883373_StaticFields
{
public:
// System.Version System.Net.NetworkInformation.NetworkInterface::windowsVer51
Version_t3456873960 * ___windowsVer51_0;
// System.Boolean System.Net.NetworkInformation.NetworkInterface::runningOnUnix
bool ___runningOnUnix_1;
public:
inline static int32_t get_offset_of_windowsVer51_0() { return static_cast<int32_t>(offsetof(NetworkInterface_t271883373_StaticFields, ___windowsVer51_0)); }
inline Version_t3456873960 * get_windowsVer51_0() const { return ___windowsVer51_0; }
inline Version_t3456873960 ** get_address_of_windowsVer51_0() { return &___windowsVer51_0; }
inline void set_windowsVer51_0(Version_t3456873960 * value)
{
___windowsVer51_0 = value;
Il2CppCodeGenWriteBarrier((&___windowsVer51_0), value);
}
inline static int32_t get_offset_of_runningOnUnix_1() { return static_cast<int32_t>(offsetof(NetworkInterface_t271883373_StaticFields, ___runningOnUnix_1)); }
inline bool get_runningOnUnix_1() const { return ___runningOnUnix_1; }
inline bool* get_address_of_runningOnUnix_1() { return &___runningOnUnix_1; }
inline void set_runningOnUnix_1(bool value)
{
___runningOnUnix_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NETWORKINTERFACE_T271883373_H
#ifndef SECURITYPARAMETERS_T2199972650_H
#define SECURITYPARAMETERS_T2199972650_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.SecurityParameters
struct SecurityParameters_t2199972650 : public RuntimeObject
{
public:
// Mono.Security.Protocol.Tls.CipherSuite Mono.Security.Protocol.Tls.SecurityParameters::cipher
CipherSuite_t3414744575 * ___cipher_0;
// System.Byte[] Mono.Security.Protocol.Tls.SecurityParameters::clientWriteMAC
ByteU5BU5D_t4116647657* ___clientWriteMAC_1;
// System.Byte[] Mono.Security.Protocol.Tls.SecurityParameters::serverWriteMAC
ByteU5BU5D_t4116647657* ___serverWriteMAC_2;
public:
inline static int32_t get_offset_of_cipher_0() { return static_cast<int32_t>(offsetof(SecurityParameters_t2199972650, ___cipher_0)); }
inline CipherSuite_t3414744575 * get_cipher_0() const { return ___cipher_0; }
inline CipherSuite_t3414744575 ** get_address_of_cipher_0() { return &___cipher_0; }
inline void set_cipher_0(CipherSuite_t3414744575 * value)
{
___cipher_0 = value;
Il2CppCodeGenWriteBarrier((&___cipher_0), value);
}
inline static int32_t get_offset_of_clientWriteMAC_1() { return static_cast<int32_t>(offsetof(SecurityParameters_t2199972650, ___clientWriteMAC_1)); }
inline ByteU5BU5D_t4116647657* get_clientWriteMAC_1() const { return ___clientWriteMAC_1; }
inline ByteU5BU5D_t4116647657** get_address_of_clientWriteMAC_1() { return &___clientWriteMAC_1; }
inline void set_clientWriteMAC_1(ByteU5BU5D_t4116647657* value)
{
___clientWriteMAC_1 = value;
Il2CppCodeGenWriteBarrier((&___clientWriteMAC_1), value);
}
inline static int32_t get_offset_of_serverWriteMAC_2() { return static_cast<int32_t>(offsetof(SecurityParameters_t2199972650, ___serverWriteMAC_2)); }
inline ByteU5BU5D_t4116647657* get_serverWriteMAC_2() const { return ___serverWriteMAC_2; }
inline ByteU5BU5D_t4116647657** get_address_of_serverWriteMAC_2() { return &___serverWriteMAC_2; }
inline void set_serverWriteMAC_2(ByteU5BU5D_t4116647657* value)
{
___serverWriteMAC_2 = value;
Il2CppCodeGenWriteBarrier((&___serverWriteMAC_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SECURITYPARAMETERS_T2199972650_H
#ifndef TLSCLIENTSETTINGS_T2486039503_H
#define TLSCLIENTSETTINGS_T2486039503_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.TlsClientSettings
struct TlsClientSettings_t2486039503 : public RuntimeObject
{
public:
// System.String Mono.Security.Protocol.Tls.TlsClientSettings::targetHost
String_t* ___targetHost_0;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Security.Protocol.Tls.TlsClientSettings::certificates
X509CertificateCollection_t3399372417 * ___certificates_1;
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Security.Protocol.Tls.TlsClientSettings::clientCertificate
X509Certificate_t713131622 * ___clientCertificate_2;
// Mono.Security.Cryptography.RSAManaged Mono.Security.Protocol.Tls.TlsClientSettings::certificateRSA
RSAManaged_t1757093820 * ___certificateRSA_3;
public:
inline static int32_t get_offset_of_targetHost_0() { return static_cast<int32_t>(offsetof(TlsClientSettings_t2486039503, ___targetHost_0)); }
inline String_t* get_targetHost_0() const { return ___targetHost_0; }
inline String_t** get_address_of_targetHost_0() { return &___targetHost_0; }
inline void set_targetHost_0(String_t* value)
{
___targetHost_0 = value;
Il2CppCodeGenWriteBarrier((&___targetHost_0), value);
}
inline static int32_t get_offset_of_certificates_1() { return static_cast<int32_t>(offsetof(TlsClientSettings_t2486039503, ___certificates_1)); }
inline X509CertificateCollection_t3399372417 * get_certificates_1() const { return ___certificates_1; }
inline X509CertificateCollection_t3399372417 ** get_address_of_certificates_1() { return &___certificates_1; }
inline void set_certificates_1(X509CertificateCollection_t3399372417 * value)
{
___certificates_1 = value;
Il2CppCodeGenWriteBarrier((&___certificates_1), value);
}
inline static int32_t get_offset_of_clientCertificate_2() { return static_cast<int32_t>(offsetof(TlsClientSettings_t2486039503, ___clientCertificate_2)); }
inline X509Certificate_t713131622 * get_clientCertificate_2() const { return ___clientCertificate_2; }
inline X509Certificate_t713131622 ** get_address_of_clientCertificate_2() { return &___clientCertificate_2; }
inline void set_clientCertificate_2(X509Certificate_t713131622 * value)
{
___clientCertificate_2 = value;
Il2CppCodeGenWriteBarrier((&___clientCertificate_2), value);
}
inline static int32_t get_offset_of_certificateRSA_3() { return static_cast<int32_t>(offsetof(TlsClientSettings_t2486039503, ___certificateRSA_3)); }
inline RSAManaged_t1757093820 * get_certificateRSA_3() const { return ___certificateRSA_3; }
inline RSAManaged_t1757093820 ** get_address_of_certificateRSA_3() { return &___certificateRSA_3; }
inline void set_certificateRSA_3(RSAManaged_t1757093820 * value)
{
___certificateRSA_3 = value;
Il2CppCodeGenWriteBarrier((&___certificateRSA_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTSETTINGS_T2486039503_H
#ifndef INTERNALASYNCRESULT_T3504282820_H
#define INTERNALASYNCRESULT_T3504282820_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult
struct InternalAsyncResult_t3504282820 : public RuntimeObject
{
public:
// System.Object Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::locker
RuntimeObject * ___locker_0;
// System.AsyncCallback Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::_userCallback
AsyncCallback_t3962456242 * ____userCallback_1;
// System.Object Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::_userState
RuntimeObject * ____userState_2;
// System.Exception Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::_asyncException
Exception_t * ____asyncException_3;
// System.Threading.ManualResetEvent Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::handle
ManualResetEvent_t451242010 * ___handle_4;
// System.Boolean Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::completed
bool ___completed_5;
// System.Int32 Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::_bytesRead
int32_t ____bytesRead_6;
// System.Boolean Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::_fromWrite
bool ____fromWrite_7;
// System.Boolean Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::_proceedAfterHandshake
bool ____proceedAfterHandshake_8;
// System.Byte[] Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::_buffer
ByteU5BU5D_t4116647657* ____buffer_9;
// System.Int32 Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::_offset
int32_t ____offset_10;
// System.Int32 Mono.Security.Protocol.Tls.SslStreamBase/InternalAsyncResult::_count
int32_t ____count_11;
public:
inline static int32_t get_offset_of_locker_0() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ___locker_0)); }
inline RuntimeObject * get_locker_0() const { return ___locker_0; }
inline RuntimeObject ** get_address_of_locker_0() { return &___locker_0; }
inline void set_locker_0(RuntimeObject * value)
{
___locker_0 = value;
Il2CppCodeGenWriteBarrier((&___locker_0), value);
}
inline static int32_t get_offset_of__userCallback_1() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ____userCallback_1)); }
inline AsyncCallback_t3962456242 * get__userCallback_1() const { return ____userCallback_1; }
inline AsyncCallback_t3962456242 ** get_address_of__userCallback_1() { return &____userCallback_1; }
inline void set__userCallback_1(AsyncCallback_t3962456242 * value)
{
____userCallback_1 = value;
Il2CppCodeGenWriteBarrier((&____userCallback_1), value);
}
inline static int32_t get_offset_of__userState_2() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ____userState_2)); }
inline RuntimeObject * get__userState_2() const { return ____userState_2; }
inline RuntimeObject ** get_address_of__userState_2() { return &____userState_2; }
inline void set__userState_2(RuntimeObject * value)
{
____userState_2 = value;
Il2CppCodeGenWriteBarrier((&____userState_2), value);
}
inline static int32_t get_offset_of__asyncException_3() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ____asyncException_3)); }
inline Exception_t * get__asyncException_3() const { return ____asyncException_3; }
inline Exception_t ** get_address_of__asyncException_3() { return &____asyncException_3; }
inline void set__asyncException_3(Exception_t * value)
{
____asyncException_3 = value;
Il2CppCodeGenWriteBarrier((&____asyncException_3), value);
}
inline static int32_t get_offset_of_handle_4() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ___handle_4)); }
inline ManualResetEvent_t451242010 * get_handle_4() const { return ___handle_4; }
inline ManualResetEvent_t451242010 ** get_address_of_handle_4() { return &___handle_4; }
inline void set_handle_4(ManualResetEvent_t451242010 * value)
{
___handle_4 = value;
Il2CppCodeGenWriteBarrier((&___handle_4), value);
}
inline static int32_t get_offset_of_completed_5() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ___completed_5)); }
inline bool get_completed_5() const { return ___completed_5; }
inline bool* get_address_of_completed_5() { return &___completed_5; }
inline void set_completed_5(bool value)
{
___completed_5 = value;
}
inline static int32_t get_offset_of__bytesRead_6() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ____bytesRead_6)); }
inline int32_t get__bytesRead_6() const { return ____bytesRead_6; }
inline int32_t* get_address_of__bytesRead_6() { return &____bytesRead_6; }
inline void set__bytesRead_6(int32_t value)
{
____bytesRead_6 = value;
}
inline static int32_t get_offset_of__fromWrite_7() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ____fromWrite_7)); }
inline bool get__fromWrite_7() const { return ____fromWrite_7; }
inline bool* get_address_of__fromWrite_7() { return &____fromWrite_7; }
inline void set__fromWrite_7(bool value)
{
____fromWrite_7 = value;
}
inline static int32_t get_offset_of__proceedAfterHandshake_8() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ____proceedAfterHandshake_8)); }
inline bool get__proceedAfterHandshake_8() const { return ____proceedAfterHandshake_8; }
inline bool* get_address_of__proceedAfterHandshake_8() { return &____proceedAfterHandshake_8; }
inline void set__proceedAfterHandshake_8(bool value)
{
____proceedAfterHandshake_8 = value;
}
inline static int32_t get_offset_of__buffer_9() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ____buffer_9)); }
inline ByteU5BU5D_t4116647657* get__buffer_9() const { return ____buffer_9; }
inline ByteU5BU5D_t4116647657** get_address_of__buffer_9() { return &____buffer_9; }
inline void set__buffer_9(ByteU5BU5D_t4116647657* value)
{
____buffer_9 = value;
Il2CppCodeGenWriteBarrier((&____buffer_9), value);
}
inline static int32_t get_offset_of__offset_10() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ____offset_10)); }
inline int32_t get__offset_10() const { return ____offset_10; }
inline int32_t* get_address_of__offset_10() { return &____offset_10; }
inline void set__offset_10(int32_t value)
{
____offset_10 = value;
}
inline static int32_t get_offset_of__count_11() { return static_cast<int32_t>(offsetof(InternalAsyncResult_t3504282820, ____count_11)); }
inline int32_t get__count_11() const { return ____count_11; }
inline int32_t* get_address_of__count_11() { return &____count_11; }
inline void set__count_11(int32_t value)
{
____count_11 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERNALASYNCRESULT_T3504282820_H
#ifndef VALIDATIONRESULT_T3834298736_H
#define VALIDATIONRESULT_T3834298736_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.ValidationResult
struct ValidationResult_t3834298736 : public RuntimeObject
{
public:
// System.Boolean Mono.Security.Protocol.Tls.ValidationResult::trusted
bool ___trusted_0;
// System.Int32 Mono.Security.Protocol.Tls.ValidationResult::error_code
int32_t ___error_code_1;
public:
inline static int32_t get_offset_of_trusted_0() { return static_cast<int32_t>(offsetof(ValidationResult_t3834298736, ___trusted_0)); }
inline bool get_trusted_0() const { return ___trusted_0; }
inline bool* get_address_of_trusted_0() { return &___trusted_0; }
inline void set_trusted_0(bool value)
{
___trusted_0 = value;
}
inline static int32_t get_offset_of_error_code_1() { return static_cast<int32_t>(offsetof(ValidationResult_t3834298736, ___error_code_1)); }
inline int32_t get_error_code_1() const { return ___error_code_1; }
inline int32_t* get_address_of_error_code_1() { return &___error_code_1; }
inline void set_error_code_1(int32_t value)
{
___error_code_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VALIDATIONRESULT_T3834298736_H
#ifndef EVENTARGS_T3591816995_H
#define EVENTARGS_T3591816995_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.EventArgs
struct EventArgs_t3591816995 : public RuntimeObject
{
public:
public:
};
struct EventArgs_t3591816995_StaticFields
{
public:
// System.EventArgs System.EventArgs::Empty
EventArgs_t3591816995 * ___Empty_0;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t3591816995_StaticFields, ___Empty_0)); }
inline EventArgs_t3591816995 * get_Empty_0() const { return ___Empty_0; }
inline EventArgs_t3591816995 ** get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(EventArgs_t3591816995 * value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((&___Empty_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EVENTARGS_T3591816995_H
#ifndef VALUETYPE_T3640485471_H
#define VALUETYPE_T3640485471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t3640485471 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_com
{
};
#endif // VALUETYPE_T3640485471_H
#ifndef EXCEPTION_T_H
#define EXCEPTION_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.IntPtr[] System.Exception::trace_ips
IntPtrU5BU5D_t4013366056* ___trace_ips_0;
// System.Exception System.Exception::inner_exception
Exception_t * ___inner_exception_1;
// System.String System.Exception::message
String_t* ___message_2;
// System.String System.Exception::help_link
String_t* ___help_link_3;
// System.String System.Exception::class_name
String_t* ___class_name_4;
// System.String System.Exception::stack_trace
String_t* ___stack_trace_5;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_6;
// System.Int32 System.Exception::remote_stack_index
int32_t ___remote_stack_index_7;
// System.Int32 System.Exception::hresult
int32_t ___hresult_8;
// System.String System.Exception::source
String_t* ___source_9;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_10;
public:
inline static int32_t get_offset_of_trace_ips_0() { return static_cast<int32_t>(offsetof(Exception_t, ___trace_ips_0)); }
inline IntPtrU5BU5D_t4013366056* get_trace_ips_0() const { return ___trace_ips_0; }
inline IntPtrU5BU5D_t4013366056** get_address_of_trace_ips_0() { return &___trace_ips_0; }
inline void set_trace_ips_0(IntPtrU5BU5D_t4013366056* value)
{
___trace_ips_0 = value;
Il2CppCodeGenWriteBarrier((&___trace_ips_0), value);
}
inline static int32_t get_offset_of_inner_exception_1() { return static_cast<int32_t>(offsetof(Exception_t, ___inner_exception_1)); }
inline Exception_t * get_inner_exception_1() const { return ___inner_exception_1; }
inline Exception_t ** get_address_of_inner_exception_1() { return &___inner_exception_1; }
inline void set_inner_exception_1(Exception_t * value)
{
___inner_exception_1 = value;
Il2CppCodeGenWriteBarrier((&___inner_exception_1), value);
}
inline static int32_t get_offset_of_message_2() { return static_cast<int32_t>(offsetof(Exception_t, ___message_2)); }
inline String_t* get_message_2() const { return ___message_2; }
inline String_t** get_address_of_message_2() { return &___message_2; }
inline void set_message_2(String_t* value)
{
___message_2 = value;
Il2CppCodeGenWriteBarrier((&___message_2), value);
}
inline static int32_t get_offset_of_help_link_3() { return static_cast<int32_t>(offsetof(Exception_t, ___help_link_3)); }
inline String_t* get_help_link_3() const { return ___help_link_3; }
inline String_t** get_address_of_help_link_3() { return &___help_link_3; }
inline void set_help_link_3(String_t* value)
{
___help_link_3 = value;
Il2CppCodeGenWriteBarrier((&___help_link_3), value);
}
inline static int32_t get_offset_of_class_name_4() { return static_cast<int32_t>(offsetof(Exception_t, ___class_name_4)); }
inline String_t* get_class_name_4() const { return ___class_name_4; }
inline String_t** get_address_of_class_name_4() { return &___class_name_4; }
inline void set_class_name_4(String_t* value)
{
___class_name_4 = value;
Il2CppCodeGenWriteBarrier((&___class_name_4), value);
}
inline static int32_t get_offset_of_stack_trace_5() { return static_cast<int32_t>(offsetof(Exception_t, ___stack_trace_5)); }
inline String_t* get_stack_trace_5() const { return ___stack_trace_5; }
inline String_t** get_address_of_stack_trace_5() { return &___stack_trace_5; }
inline void set_stack_trace_5(String_t* value)
{
___stack_trace_5 = value;
Il2CppCodeGenWriteBarrier((&___stack_trace_5), value);
}
inline static int32_t get_offset_of__remoteStackTraceString_6() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_6)); }
inline String_t* get__remoteStackTraceString_6() const { return ____remoteStackTraceString_6; }
inline String_t** get_address_of__remoteStackTraceString_6() { return &____remoteStackTraceString_6; }
inline void set__remoteStackTraceString_6(String_t* value)
{
____remoteStackTraceString_6 = value;
Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_6), value);
}
inline static int32_t get_offset_of_remote_stack_index_7() { return static_cast<int32_t>(offsetof(Exception_t, ___remote_stack_index_7)); }
inline int32_t get_remote_stack_index_7() const { return ___remote_stack_index_7; }
inline int32_t* get_address_of_remote_stack_index_7() { return &___remote_stack_index_7; }
inline void set_remote_stack_index_7(int32_t value)
{
___remote_stack_index_7 = value;
}
inline static int32_t get_offset_of_hresult_8() { return static_cast<int32_t>(offsetof(Exception_t, ___hresult_8)); }
inline int32_t get_hresult_8() const { return ___hresult_8; }
inline int32_t* get_address_of_hresult_8() { return &___hresult_8; }
inline void set_hresult_8(int32_t value)
{
___hresult_8 = value;
}
inline static int32_t get_offset_of_source_9() { return static_cast<int32_t>(offsetof(Exception_t, ___source_9)); }
inline String_t* get_source_9() const { return ___source_9; }
inline String_t** get_address_of_source_9() { return &___source_9; }
inline void set_source_9(String_t* value)
{
___source_9 = value;
Il2CppCodeGenWriteBarrier((&___source_9), value);
}
inline static int32_t get_offset_of__data_10() { return static_cast<int32_t>(offsetof(Exception_t, ____data_10)); }
inline RuntimeObject* get__data_10() const { return ____data_10; }
inline RuntimeObject** get_address_of__data_10() { return &____data_10; }
inline void set__data_10(RuntimeObject* value)
{
____data_10 = value;
Il2CppCodeGenWriteBarrier((&____data_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXCEPTION_T_H
#ifndef HASHALGORITHM_T1432317219_H
#define HASHALGORITHM_T1432317219_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.HashAlgorithm
struct HashAlgorithm_t1432317219 : public RuntimeObject
{
public:
// System.Byte[] System.Security.Cryptography.HashAlgorithm::HashValue
ByteU5BU5D_t4116647657* ___HashValue_0;
// System.Int32 System.Security.Cryptography.HashAlgorithm::HashSizeValue
int32_t ___HashSizeValue_1;
// System.Int32 System.Security.Cryptography.HashAlgorithm::State
int32_t ___State_2;
// System.Boolean System.Security.Cryptography.HashAlgorithm::disposed
bool ___disposed_3;
public:
inline static int32_t get_offset_of_HashValue_0() { return static_cast<int32_t>(offsetof(HashAlgorithm_t1432317219, ___HashValue_0)); }
inline ByteU5BU5D_t4116647657* get_HashValue_0() const { return ___HashValue_0; }
inline ByteU5BU5D_t4116647657** get_address_of_HashValue_0() { return &___HashValue_0; }
inline void set_HashValue_0(ByteU5BU5D_t4116647657* value)
{
___HashValue_0 = value;
Il2CppCodeGenWriteBarrier((&___HashValue_0), value);
}
inline static int32_t get_offset_of_HashSizeValue_1() { return static_cast<int32_t>(offsetof(HashAlgorithm_t1432317219, ___HashSizeValue_1)); }
inline int32_t get_HashSizeValue_1() const { return ___HashSizeValue_1; }
inline int32_t* get_address_of_HashSizeValue_1() { return &___HashSizeValue_1; }
inline void set_HashSizeValue_1(int32_t value)
{
___HashSizeValue_1 = value;
}
inline static int32_t get_offset_of_State_2() { return static_cast<int32_t>(offsetof(HashAlgorithm_t1432317219, ___State_2)); }
inline int32_t get_State_2() const { return ___State_2; }
inline int32_t* get_address_of_State_2() { return &___State_2; }
inline void set_State_2(int32_t value)
{
___State_2 = value;
}
inline static int32_t get_offset_of_disposed_3() { return static_cast<int32_t>(offsetof(HashAlgorithm_t1432317219, ___disposed_3)); }
inline bool get_disposed_3() const { return ___disposed_3; }
inline bool* get_address_of_disposed_3() { return &___disposed_3; }
inline void set_disposed_3(bool value)
{
___disposed_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HASHALGORITHM_T1432317219_H
#ifndef STREAM_T1273022909_H
#define STREAM_T1273022909_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Stream
struct Stream_t1273022909 : public RuntimeObject
{
public:
public:
};
struct Stream_t1273022909_StaticFields
{
public:
// System.IO.Stream System.IO.Stream::Null
Stream_t1273022909 * ___Null_0;
public:
inline static int32_t get_offset_of_Null_0() { return static_cast<int32_t>(offsetof(Stream_t1273022909_StaticFields, ___Null_0)); }
inline Stream_t1273022909 * get_Null_0() const { return ___Null_0; }
inline Stream_t1273022909 ** get_address_of_Null_0() { return &___Null_0; }
inline void set_Null_0(Stream_t1273022909 * value)
{
___Null_0 = value;
Il2CppCodeGenWriteBarrier((&___Null_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAM_T1273022909_H
#ifndef ATTRIBUTE_T861562559_H
#define ATTRIBUTE_T861562559_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Attribute
struct Attribute_t861562559 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTE_T861562559_H
#ifndef GCHANDLE_T3351438187_H
#define GCHANDLE_T3351438187_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t3351438187
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t3351438187, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GCHANDLE_T3351438187_H
#ifndef INT32_T2950945753_H
#define INT32_T2950945753_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32
struct Int32_t2950945753
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_2)); }
inline int32_t get_m_value_2() const { return ___m_value_2; }
inline int32_t* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(int32_t value)
{
___m_value_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32_T2950945753_H
#ifndef SYSTEMEXCEPTION_T176217640_H
#define SYSTEMEXCEPTION_T176217640_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SystemException
struct SystemException_t176217640 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMEXCEPTION_T176217640_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef MONOTODOATTRIBUTE_T4131080582_H
#define MONOTODOATTRIBUTE_T4131080582_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MonoTODOAttribute
struct MonoTODOAttribute_t4131080582 : public Attribute_t861562559
{
public:
// System.String System.MonoTODOAttribute::comment
String_t* ___comment_0;
public:
inline static int32_t get_offset_of_comment_0() { return static_cast<int32_t>(offsetof(MonoTODOAttribute_t4131080582, ___comment_0)); }
inline String_t* get_comment_0() const { return ___comment_0; }
inline String_t** get_address_of_comment_0() { return &___comment_0; }
inline void set_comment_0(String_t* value)
{
___comment_0 = value;
Il2CppCodeGenWriteBarrier((&___comment_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOTODOATTRIBUTE_T4131080582_H
#ifndef BYTE_T1134296376_H
#define BYTE_T1134296376_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Byte
struct Byte_t1134296376
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Byte_t1134296376, ___m_value_2)); }
inline uint8_t get_m_value_2() const { return ___m_value_2; }
inline uint8_t* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(uint8_t value)
{
___m_value_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BYTE_T1134296376_H
#ifndef VOID_T1185182177_H
#define VOID_T1185182177_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_t1185182177
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_T1185182177_H
#ifndef BOOLEAN_T97287965_H
#define BOOLEAN_T97287965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean
struct Boolean_t97287965
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_2)); }
inline bool get_m_value_2() const { return ___m_value_2; }
inline bool* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(bool value)
{
___m_value_2 = value;
}
};
struct Boolean_t97287965_StaticFields
{
public:
// System.String System.Boolean::FalseString
String_t* ___FalseString_0;
// System.String System.Boolean::TrueString
String_t* ___TrueString_1;
public:
inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_0)); }
inline String_t* get_FalseString_0() const { return ___FalseString_0; }
inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; }
inline void set_FalseString_0(String_t* value)
{
___FalseString_0 = value;
Il2CppCodeGenWriteBarrier((&___FalseString_0), value);
}
inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_1)); }
inline String_t* get_TrueString_1() const { return ___TrueString_1; }
inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; }
inline void set_TrueString_1(String_t* value)
{
___TrueString_1 = value;
Il2CppCodeGenWriteBarrier((&___TrueString_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOOLEAN_T97287965_H
#ifndef NETWORKINFORMATIONEXCEPTION_T2303982063_H
#define NETWORKINFORMATIONEXCEPTION_T2303982063_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.NetworkInformationException
struct NetworkInformationException_t2303982063 : public Exception_t
{
public:
// System.Int32 System.Net.NetworkInformation.NetworkInformationException::error_code
int32_t ___error_code_11;
public:
inline static int32_t get_offset_of_error_code_11() { return static_cast<int32_t>(offsetof(NetworkInformationException_t2303982063, ___error_code_11)); }
inline int32_t get_error_code_11() const { return ___error_code_11; }
inline int32_t* get_address_of_error_code_11() { return &___error_code_11; }
inline void set_error_code_11(int32_t value)
{
___error_code_11 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NETWORKINFORMATIONEXCEPTION_T2303982063_H
#ifndef SOCKADDR_IN_T1317910171_H
#define SOCKADDR_IN_T1317910171_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.MacOsStructs.sockaddr_in
struct sockaddr_in_t1317910171
{
public:
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr_in::sin_len
uint8_t ___sin_len_0;
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr_in::sin_family
uint8_t ___sin_family_1;
// System.UInt16 System.Net.NetworkInformation.MacOsStructs.sockaddr_in::sin_port
uint16_t ___sin_port_2;
// System.UInt32 System.Net.NetworkInformation.MacOsStructs.sockaddr_in::sin_addr
uint32_t ___sin_addr_3;
public:
inline static int32_t get_offset_of_sin_len_0() { return static_cast<int32_t>(offsetof(sockaddr_in_t1317910171, ___sin_len_0)); }
inline uint8_t get_sin_len_0() const { return ___sin_len_0; }
inline uint8_t* get_address_of_sin_len_0() { return &___sin_len_0; }
inline void set_sin_len_0(uint8_t value)
{
___sin_len_0 = value;
}
inline static int32_t get_offset_of_sin_family_1() { return static_cast<int32_t>(offsetof(sockaddr_in_t1317910171, ___sin_family_1)); }
inline uint8_t get_sin_family_1() const { return ___sin_family_1; }
inline uint8_t* get_address_of_sin_family_1() { return &___sin_family_1; }
inline void set_sin_family_1(uint8_t value)
{
___sin_family_1 = value;
}
inline static int32_t get_offset_of_sin_port_2() { return static_cast<int32_t>(offsetof(sockaddr_in_t1317910171, ___sin_port_2)); }
inline uint16_t get_sin_port_2() const { return ___sin_port_2; }
inline uint16_t* get_address_of_sin_port_2() { return &___sin_port_2; }
inline void set_sin_port_2(uint16_t value)
{
___sin_port_2 = value;
}
inline static int32_t get_offset_of_sin_addr_3() { return static_cast<int32_t>(offsetof(sockaddr_in_t1317910171, ___sin_addr_3)); }
inline uint32_t get_sin_addr_3() const { return ___sin_addr_3; }
inline uint32_t* get_address_of_sin_addr_3() { return &___sin_addr_3; }
inline void set_sin_addr_3(uint32_t value)
{
___sin_addr_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKADDR_IN_T1317910171_H
#ifndef SOCKADDR_T371844119_H
#define SOCKADDR_T371844119_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.MacOsStructs.sockaddr
struct sockaddr_t371844119
{
public:
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr::sa_len
uint8_t ___sa_len_0;
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr::sa_family
uint8_t ___sa_family_1;
public:
inline static int32_t get_offset_of_sa_len_0() { return static_cast<int32_t>(offsetof(sockaddr_t371844119, ___sa_len_0)); }
inline uint8_t get_sa_len_0() const { return ___sa_len_0; }
inline uint8_t* get_address_of_sa_len_0() { return &___sa_len_0; }
inline void set_sa_len_0(uint8_t value)
{
___sa_len_0 = value;
}
inline static int32_t get_offset_of_sa_family_1() { return static_cast<int32_t>(offsetof(sockaddr_t371844119, ___sa_family_1)); }
inline uint8_t get_sa_family_1() const { return ___sa_family_1; }
inline uint8_t* get_address_of_sa_family_1() { return &___sa_family_1; }
inline void set_sa_family_1(uint8_t value)
{
___sa_family_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKADDR_T371844119_H
#ifndef SOCKADDR_IN_T2786965223_H
#define SOCKADDR_IN_T2786965223_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.sockaddr_in
struct sockaddr_in_t2786965223
{
public:
// System.UInt16 System.Net.NetworkInformation.sockaddr_in::sin_family
uint16_t ___sin_family_0;
// System.UInt16 System.Net.NetworkInformation.sockaddr_in::sin_port
uint16_t ___sin_port_1;
// System.UInt32 System.Net.NetworkInformation.sockaddr_in::sin_addr
uint32_t ___sin_addr_2;
public:
inline static int32_t get_offset_of_sin_family_0() { return static_cast<int32_t>(offsetof(sockaddr_in_t2786965223, ___sin_family_0)); }
inline uint16_t get_sin_family_0() const { return ___sin_family_0; }
inline uint16_t* get_address_of_sin_family_0() { return &___sin_family_0; }
inline void set_sin_family_0(uint16_t value)
{
___sin_family_0 = value;
}
inline static int32_t get_offset_of_sin_port_1() { return static_cast<int32_t>(offsetof(sockaddr_in_t2786965223, ___sin_port_1)); }
inline uint16_t get_sin_port_1() const { return ___sin_port_1; }
inline uint16_t* get_address_of_sin_port_1() { return &___sin_port_1; }
inline void set_sin_port_1(uint16_t value)
{
___sin_port_1 = value;
}
inline static int32_t get_offset_of_sin_addr_2() { return static_cast<int32_t>(offsetof(sockaddr_in_t2786965223, ___sin_addr_2)); }
inline uint32_t get_sin_addr_2() const { return ___sin_addr_2; }
inline uint32_t* get_address_of_sin_addr_2() { return &___sin_addr_2; }
inline void set_sin_addr_2(uint32_t value)
{
___sin_addr_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKADDR_IN_T2786965223_H
#ifndef RSAPARAMETERS_T1728406613_H
#define RSAPARAMETERS_T1728406613_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.RSAParameters
struct RSAParameters_t1728406613
{
public:
// System.Byte[] System.Security.Cryptography.RSAParameters::P
ByteU5BU5D_t4116647657* ___P_0;
// System.Byte[] System.Security.Cryptography.RSAParameters::Q
ByteU5BU5D_t4116647657* ___Q_1;
// System.Byte[] System.Security.Cryptography.RSAParameters::D
ByteU5BU5D_t4116647657* ___D_2;
// System.Byte[] System.Security.Cryptography.RSAParameters::DP
ByteU5BU5D_t4116647657* ___DP_3;
// System.Byte[] System.Security.Cryptography.RSAParameters::DQ
ByteU5BU5D_t4116647657* ___DQ_4;
// System.Byte[] System.Security.Cryptography.RSAParameters::InverseQ
ByteU5BU5D_t4116647657* ___InverseQ_5;
// System.Byte[] System.Security.Cryptography.RSAParameters::Modulus
ByteU5BU5D_t4116647657* ___Modulus_6;
// System.Byte[] System.Security.Cryptography.RSAParameters::Exponent
ByteU5BU5D_t4116647657* ___Exponent_7;
public:
inline static int32_t get_offset_of_P_0() { return static_cast<int32_t>(offsetof(RSAParameters_t1728406613, ___P_0)); }
inline ByteU5BU5D_t4116647657* get_P_0() const { return ___P_0; }
inline ByteU5BU5D_t4116647657** get_address_of_P_0() { return &___P_0; }
inline void set_P_0(ByteU5BU5D_t4116647657* value)
{
___P_0 = value;
Il2CppCodeGenWriteBarrier((&___P_0), value);
}
inline static int32_t get_offset_of_Q_1() { return static_cast<int32_t>(offsetof(RSAParameters_t1728406613, ___Q_1)); }
inline ByteU5BU5D_t4116647657* get_Q_1() const { return ___Q_1; }
inline ByteU5BU5D_t4116647657** get_address_of_Q_1() { return &___Q_1; }
inline void set_Q_1(ByteU5BU5D_t4116647657* value)
{
___Q_1 = value;
Il2CppCodeGenWriteBarrier((&___Q_1), value);
}
inline static int32_t get_offset_of_D_2() { return static_cast<int32_t>(offsetof(RSAParameters_t1728406613, ___D_2)); }
inline ByteU5BU5D_t4116647657* get_D_2() const { return ___D_2; }
inline ByteU5BU5D_t4116647657** get_address_of_D_2() { return &___D_2; }
inline void set_D_2(ByteU5BU5D_t4116647657* value)
{
___D_2 = value;
Il2CppCodeGenWriteBarrier((&___D_2), value);
}
inline static int32_t get_offset_of_DP_3() { return static_cast<int32_t>(offsetof(RSAParameters_t1728406613, ___DP_3)); }
inline ByteU5BU5D_t4116647657* get_DP_3() const { return ___DP_3; }
inline ByteU5BU5D_t4116647657** get_address_of_DP_3() { return &___DP_3; }
inline void set_DP_3(ByteU5BU5D_t4116647657* value)
{
___DP_3 = value;
Il2CppCodeGenWriteBarrier((&___DP_3), value);
}
inline static int32_t get_offset_of_DQ_4() { return static_cast<int32_t>(offsetof(RSAParameters_t1728406613, ___DQ_4)); }
inline ByteU5BU5D_t4116647657* get_DQ_4() const { return ___DQ_4; }
inline ByteU5BU5D_t4116647657** get_address_of_DQ_4() { return &___DQ_4; }
inline void set_DQ_4(ByteU5BU5D_t4116647657* value)
{
___DQ_4 = value;
Il2CppCodeGenWriteBarrier((&___DQ_4), value);
}
inline static int32_t get_offset_of_InverseQ_5() { return static_cast<int32_t>(offsetof(RSAParameters_t1728406613, ___InverseQ_5)); }
inline ByteU5BU5D_t4116647657* get_InverseQ_5() const { return ___InverseQ_5; }
inline ByteU5BU5D_t4116647657** get_address_of_InverseQ_5() { return &___InverseQ_5; }
inline void set_InverseQ_5(ByteU5BU5D_t4116647657* value)
{
___InverseQ_5 = value;
Il2CppCodeGenWriteBarrier((&___InverseQ_5), value);
}
inline static int32_t get_offset_of_Modulus_6() { return static_cast<int32_t>(offsetof(RSAParameters_t1728406613, ___Modulus_6)); }
inline ByteU5BU5D_t4116647657* get_Modulus_6() const { return ___Modulus_6; }
inline ByteU5BU5D_t4116647657** get_address_of_Modulus_6() { return &___Modulus_6; }
inline void set_Modulus_6(ByteU5BU5D_t4116647657* value)
{
___Modulus_6 = value;
Il2CppCodeGenWriteBarrier((&___Modulus_6), value);
}
inline static int32_t get_offset_of_Exponent_7() { return static_cast<int32_t>(offsetof(RSAParameters_t1728406613, ___Exponent_7)); }
inline ByteU5BU5D_t4116647657* get_Exponent_7() const { return ___Exponent_7; }
inline ByteU5BU5D_t4116647657** get_address_of_Exponent_7() { return &___Exponent_7; }
inline void set_Exponent_7(ByteU5BU5D_t4116647657* value)
{
___Exponent_7 = value;
Il2CppCodeGenWriteBarrier((&___Exponent_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Security.Cryptography.RSAParameters
struct RSAParameters_t1728406613_marshaled_pinvoke
{
uint8_t* ___P_0;
uint8_t* ___Q_1;
uint8_t* ___D_2;
uint8_t* ___DP_3;
uint8_t* ___DQ_4;
uint8_t* ___InverseQ_5;
uint8_t* ___Modulus_6;
uint8_t* ___Exponent_7;
};
// Native definition for COM marshalling of System.Security.Cryptography.RSAParameters
struct RSAParameters_t1728406613_marshaled_com
{
uint8_t* ___P_0;
uint8_t* ___Q_1;
uint8_t* ___D_2;
uint8_t* ___DP_3;
uint8_t* ___DQ_4;
uint8_t* ___InverseQ_5;
uint8_t* ___Modulus_6;
uint8_t* ___Exponent_7;
};
#endif // RSAPARAMETERS_T1728406613_H
#ifndef TYPECONVERTERATTRIBUTE_T3271584429_H
#define TYPECONVERTERATTRIBUTE_T3271584429_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.TypeConverterAttribute
struct TypeConverterAttribute_t3271584429 : public Attribute_t861562559
{
public:
// System.String System.ComponentModel.TypeConverterAttribute::converter_type
String_t* ___converter_type_1;
public:
inline static int32_t get_offset_of_converter_type_1() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_t3271584429, ___converter_type_1)); }
inline String_t* get_converter_type_1() const { return ___converter_type_1; }
inline String_t** get_address_of_converter_type_1() { return &___converter_type_1; }
inline void set_converter_type_1(String_t* value)
{
___converter_type_1 = value;
Il2CppCodeGenWriteBarrier((&___converter_type_1), value);
}
};
struct TypeConverterAttribute_t3271584429_StaticFields
{
public:
// System.ComponentModel.TypeConverterAttribute System.ComponentModel.TypeConverterAttribute::Default
TypeConverterAttribute_t3271584429 * ___Default_0;
public:
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_t3271584429_StaticFields, ___Default_0)); }
inline TypeConverterAttribute_t3271584429 * get_Default_0() const { return ___Default_0; }
inline TypeConverterAttribute_t3271584429 ** get_address_of_Default_0() { return &___Default_0; }
inline void set_Default_0(TypeConverterAttribute_t3271584429 * value)
{
___Default_0 = value;
Il2CppCodeGenWriteBarrier((&___Default_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPECONVERTERATTRIBUTE_T3271584429_H
#ifndef PROPERTYCHANGEDEVENTARGS_T3313059048_H
#define PROPERTYCHANGEDEVENTARGS_T3313059048_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.PropertyChangedEventArgs
struct PropertyChangedEventArgs_t3313059048 : public EventArgs_t3591816995
{
public:
// System.String System.ComponentModel.PropertyChangedEventArgs::propertyName
String_t* ___propertyName_1;
public:
inline static int32_t get_offset_of_propertyName_1() { return static_cast<int32_t>(offsetof(PropertyChangedEventArgs_t3313059048, ___propertyName_1)); }
inline String_t* get_propertyName_1() const { return ___propertyName_1; }
inline String_t** get_address_of_propertyName_1() { return &___propertyName_1; }
inline void set_propertyName_1(String_t* value)
{
___propertyName_1 = value;
Il2CppCodeGenWriteBarrier((&___propertyName_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PROPERTYCHANGEDEVENTARGS_T3313059048_H
#ifndef ENUM_T4135868527_H
#define ENUM_T4135868527_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Enum
struct Enum_t4135868527 : public ValueType_t3640485471
{
public:
public:
};
struct Enum_t4135868527_StaticFields
{
public:
// System.Char[] System.Enum::split_char
CharU5BU5D_t3528271667* ___split_char_0;
public:
inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___split_char_0)); }
inline CharU5BU5D_t3528271667* get_split_char_0() const { return ___split_char_0; }
inline CharU5BU5D_t3528271667** get_address_of_split_char_0() { return &___split_char_0; }
inline void set_split_char_0(CharU5BU5D_t3528271667* value)
{
___split_char_0 = value;
Il2CppCodeGenWriteBarrier((&___split_char_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t4135868527_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t4135868527_marshaled_com
{
};
#endif // ENUM_T4135868527_H
#ifndef NAMEVALUECOLLECTION_T407452768_H
#define NAMEVALUECOLLECTION_T407452768_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Specialized.NameValueCollection
struct NameValueCollection_t407452768 : public NameObjectCollectionBase_t2091847364
{
public:
// System.String[] System.Collections.Specialized.NameValueCollection::cachedAllKeys
StringU5BU5D_t1281789340* ___cachedAllKeys_10;
// System.String[] System.Collections.Specialized.NameValueCollection::cachedAll
StringU5BU5D_t1281789340* ___cachedAll_11;
public:
inline static int32_t get_offset_of_cachedAllKeys_10() { return static_cast<int32_t>(offsetof(NameValueCollection_t407452768, ___cachedAllKeys_10)); }
inline StringU5BU5D_t1281789340* get_cachedAllKeys_10() const { return ___cachedAllKeys_10; }
inline StringU5BU5D_t1281789340** get_address_of_cachedAllKeys_10() { return &___cachedAllKeys_10; }
inline void set_cachedAllKeys_10(StringU5BU5D_t1281789340* value)
{
___cachedAllKeys_10 = value;
Il2CppCodeGenWriteBarrier((&___cachedAllKeys_10), value);
}
inline static int32_t get_offset_of_cachedAll_11() { return static_cast<int32_t>(offsetof(NameValueCollection_t407452768, ___cachedAll_11)); }
inline StringU5BU5D_t1281789340* get_cachedAll_11() const { return ___cachedAll_11; }
inline StringU5BU5D_t1281789340** get_address_of_cachedAll_11() { return &___cachedAll_11; }
inline void set_cachedAll_11(StringU5BU5D_t1281789340* value)
{
___cachedAll_11 = value;
Il2CppCodeGenWriteBarrier((&___cachedAll_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NAMEVALUECOLLECTION_T407452768_H
#ifndef CHAR_T3634460470_H
#define CHAR_T3634460470_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Char
struct Char_t3634460470
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Char_t3634460470, ___m_value_2)); }
inline Il2CppChar get_m_value_2() const { return ___m_value_2; }
inline Il2CppChar* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(Il2CppChar value)
{
___m_value_2 = value;
}
};
struct Char_t3634460470_StaticFields
{
public:
// System.Byte* System.Char::category_data
uint8_t* ___category_data_3;
// System.Byte* System.Char::numeric_data
uint8_t* ___numeric_data_4;
// System.Double* System.Char::numeric_data_values
double* ___numeric_data_values_5;
// System.UInt16* System.Char::to_lower_data_low
uint16_t* ___to_lower_data_low_6;
// System.UInt16* System.Char::to_lower_data_high
uint16_t* ___to_lower_data_high_7;
// System.UInt16* System.Char::to_upper_data_low
uint16_t* ___to_upper_data_low_8;
// System.UInt16* System.Char::to_upper_data_high
uint16_t* ___to_upper_data_high_9;
public:
inline static int32_t get_offset_of_category_data_3() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___category_data_3)); }
inline uint8_t* get_category_data_3() const { return ___category_data_3; }
inline uint8_t** get_address_of_category_data_3() { return &___category_data_3; }
inline void set_category_data_3(uint8_t* value)
{
___category_data_3 = value;
}
inline static int32_t get_offset_of_numeric_data_4() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___numeric_data_4)); }
inline uint8_t* get_numeric_data_4() const { return ___numeric_data_4; }
inline uint8_t** get_address_of_numeric_data_4() { return &___numeric_data_4; }
inline void set_numeric_data_4(uint8_t* value)
{
___numeric_data_4 = value;
}
inline static int32_t get_offset_of_numeric_data_values_5() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___numeric_data_values_5)); }
inline double* get_numeric_data_values_5() const { return ___numeric_data_values_5; }
inline double** get_address_of_numeric_data_values_5() { return &___numeric_data_values_5; }
inline void set_numeric_data_values_5(double* value)
{
___numeric_data_values_5 = value;
}
inline static int32_t get_offset_of_to_lower_data_low_6() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_lower_data_low_6)); }
inline uint16_t* get_to_lower_data_low_6() const { return ___to_lower_data_low_6; }
inline uint16_t** get_address_of_to_lower_data_low_6() { return &___to_lower_data_low_6; }
inline void set_to_lower_data_low_6(uint16_t* value)
{
___to_lower_data_low_6 = value;
}
inline static int32_t get_offset_of_to_lower_data_high_7() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_lower_data_high_7)); }
inline uint16_t* get_to_lower_data_high_7() const { return ___to_lower_data_high_7; }
inline uint16_t** get_address_of_to_lower_data_high_7() { return &___to_lower_data_high_7; }
inline void set_to_lower_data_high_7(uint16_t* value)
{
___to_lower_data_high_7 = value;
}
inline static int32_t get_offset_of_to_upper_data_low_8() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_upper_data_low_8)); }
inline uint16_t* get_to_upper_data_low_8() const { return ___to_upper_data_low_8; }
inline uint16_t** get_address_of_to_upper_data_low_8() { return &___to_upper_data_low_8; }
inline void set_to_upper_data_low_8(uint16_t* value)
{
___to_upper_data_low_8 = value;
}
inline static int32_t get_offset_of_to_upper_data_high_9() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_upper_data_high_9)); }
inline uint16_t* get_to_upper_data_high_9() const { return ___to_upper_data_high_9; }
inline uint16_t** get_address_of_to_upper_data_high_9() { return &___to_upper_data_high_9; }
inline void set_to_upper_data_high_9(uint16_t* value)
{
___to_upper_data_high_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CHAR_T3634460470_H
#ifndef U24ARRAYTYPEU243132_T2732071529_H
#define U24ARRAYTYPEU243132_T2732071529_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$3132
struct U24ArrayTypeU243132_t2732071529
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU243132_t2732071529__padding[3132];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU243132_T2732071529_H
#ifndef RSASSLSIGNATUREDEFORMATTER_T3558097625_H
#define RSASSLSIGNATUREDEFORMATTER_T3558097625_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.RSASslSignatureDeformatter
struct RSASslSignatureDeformatter_t3558097625 : public AsymmetricSignatureDeformatter_t2681190756
{
public:
// System.Security.Cryptography.RSA Mono.Security.Protocol.Tls.RSASslSignatureDeformatter::key
RSA_t2385438082 * ___key_0;
// System.Security.Cryptography.HashAlgorithm Mono.Security.Protocol.Tls.RSASslSignatureDeformatter::hash
HashAlgorithm_t1432317219 * ___hash_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(RSASslSignatureDeformatter_t3558097625, ___key_0)); }
inline RSA_t2385438082 * get_key_0() const { return ___key_0; }
inline RSA_t2385438082 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RSA_t2385438082 * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_hash_1() { return static_cast<int32_t>(offsetof(RSASslSignatureDeformatter_t3558097625, ___hash_1)); }
inline HashAlgorithm_t1432317219 * get_hash_1() const { return ___hash_1; }
inline HashAlgorithm_t1432317219 ** get_address_of_hash_1() { return &___hash_1; }
inline void set_hash_1(HashAlgorithm_t1432317219 * value)
{
___hash_1 = value;
Il2CppCodeGenWriteBarrier((&___hash_1), value);
}
};
struct RSASslSignatureDeformatter_t3558097625_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> Mono.Security.Protocol.Tls.RSASslSignatureDeformatter::<>f__switch$map15
Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map15_2;
public:
inline static int32_t get_offset_of_U3CU3Ef__switchU24map15_2() { return static_cast<int32_t>(offsetof(RSASslSignatureDeformatter_t3558097625_StaticFields, ___U3CU3Ef__switchU24map15_2)); }
inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map15_2() const { return ___U3CU3Ef__switchU24map15_2; }
inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map15_2() { return &___U3CU3Ef__switchU24map15_2; }
inline void set_U3CU3Ef__switchU24map15_2(Dictionary_2_t2736202052 * value)
{
___U3CU3Ef__switchU24map15_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map15_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RSASSLSIGNATUREDEFORMATTER_T3558097625_H
#ifndef TLSSTREAM_T2365453965_H
#define TLSSTREAM_T2365453965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.TlsStream
struct TlsStream_t2365453965 : public Stream_t1273022909
{
public:
// System.Boolean Mono.Security.Protocol.Tls.TlsStream::canRead
bool ___canRead_1;
// System.Boolean Mono.Security.Protocol.Tls.TlsStream::canWrite
bool ___canWrite_2;
// System.IO.MemoryStream Mono.Security.Protocol.Tls.TlsStream::buffer
MemoryStream_t94973147 * ___buffer_3;
// System.Byte[] Mono.Security.Protocol.Tls.TlsStream::temp
ByteU5BU5D_t4116647657* ___temp_4;
public:
inline static int32_t get_offset_of_canRead_1() { return static_cast<int32_t>(offsetof(TlsStream_t2365453965, ___canRead_1)); }
inline bool get_canRead_1() const { return ___canRead_1; }
inline bool* get_address_of_canRead_1() { return &___canRead_1; }
inline void set_canRead_1(bool value)
{
___canRead_1 = value;
}
inline static int32_t get_offset_of_canWrite_2() { return static_cast<int32_t>(offsetof(TlsStream_t2365453965, ___canWrite_2)); }
inline bool get_canWrite_2() const { return ___canWrite_2; }
inline bool* get_address_of_canWrite_2() { return &___canWrite_2; }
inline void set_canWrite_2(bool value)
{
___canWrite_2 = value;
}
inline static int32_t get_offset_of_buffer_3() { return static_cast<int32_t>(offsetof(TlsStream_t2365453965, ___buffer_3)); }
inline MemoryStream_t94973147 * get_buffer_3() const { return ___buffer_3; }
inline MemoryStream_t94973147 ** get_address_of_buffer_3() { return &___buffer_3; }
inline void set_buffer_3(MemoryStream_t94973147 * value)
{
___buffer_3 = value;
Il2CppCodeGenWriteBarrier((&___buffer_3), value);
}
inline static int32_t get_offset_of_temp_4() { return static_cast<int32_t>(offsetof(TlsStream_t2365453965, ___temp_4)); }
inline ByteU5BU5D_t4116647657* get_temp_4() const { return ___temp_4; }
inline ByteU5BU5D_t4116647657** get_address_of_temp_4() { return &___temp_4; }
inline void set_temp_4(ByteU5BU5D_t4116647657* value)
{
___temp_4 = value;
Il2CppCodeGenWriteBarrier((&___temp_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSTREAM_T2365453965_H
#ifndef RSASSLSIGNATUREFORMATTER_T2709678514_H
#define RSASSLSIGNATUREFORMATTER_T2709678514_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.RSASslSignatureFormatter
struct RSASslSignatureFormatter_t2709678514 : public AsymmetricSignatureFormatter_t3486936014
{
public:
// System.Security.Cryptography.RSA Mono.Security.Protocol.Tls.RSASslSignatureFormatter::key
RSA_t2385438082 * ___key_0;
// System.Security.Cryptography.HashAlgorithm Mono.Security.Protocol.Tls.RSASslSignatureFormatter::hash
HashAlgorithm_t1432317219 * ___hash_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(RSASslSignatureFormatter_t2709678514, ___key_0)); }
inline RSA_t2385438082 * get_key_0() const { return ___key_0; }
inline RSA_t2385438082 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RSA_t2385438082 * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_hash_1() { return static_cast<int32_t>(offsetof(RSASslSignatureFormatter_t2709678514, ___hash_1)); }
inline HashAlgorithm_t1432317219 * get_hash_1() const { return ___hash_1; }
inline HashAlgorithm_t1432317219 ** get_address_of_hash_1() { return &___hash_1; }
inline void set_hash_1(HashAlgorithm_t1432317219 * value)
{
___hash_1 = value;
Il2CppCodeGenWriteBarrier((&___hash_1), value);
}
};
struct RSASslSignatureFormatter_t2709678514_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> Mono.Security.Protocol.Tls.RSASslSignatureFormatter::<>f__switch$map16
Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map16_2;
public:
inline static int32_t get_offset_of_U3CU3Ef__switchU24map16_2() { return static_cast<int32_t>(offsetof(RSASslSignatureFormatter_t2709678514_StaticFields, ___U3CU3Ef__switchU24map16_2)); }
inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map16_2() const { return ___U3CU3Ef__switchU24map16_2; }
inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map16_2() { return &___U3CU3Ef__switchU24map16_2; }
inline void set_U3CU3Ef__switchU24map16_2(Dictionary_2_t2736202052 * value)
{
___U3CU3Ef__switchU24map16_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map16_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RSASSLSIGNATUREFORMATTER_T2709678514_H
#ifndef TLSEXCEPTION_T3534743363_H
#define TLSEXCEPTION_T3534743363_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.TlsException
struct TlsException_t3534743363 : public Exception_t
{
public:
// Mono.Security.Protocol.Tls.Alert Mono.Security.Protocol.Tls.TlsException::alert
Alert_t4059934885 * ___alert_11;
public:
inline static int32_t get_offset_of_alert_11() { return static_cast<int32_t>(offsetof(TlsException_t3534743363, ___alert_11)); }
inline Alert_t4059934885 * get_alert_11() const { return ___alert_11; }
inline Alert_t4059934885 ** get_address_of_alert_11() { return &___alert_11; }
inline void set_alert_11(Alert_t4059934885 * value)
{
___alert_11 = value;
Il2CppCodeGenWriteBarrier((&___alert_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSEXCEPTION_T3534743363_H
#ifndef SSLHANDSHAKEHASH_T2107581772_H
#define SSLHANDSHAKEHASH_T2107581772_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.SslHandshakeHash
struct SslHandshakeHash_t2107581772 : public HashAlgorithm_t1432317219
{
public:
// System.Security.Cryptography.HashAlgorithm Mono.Security.Protocol.Tls.SslHandshakeHash::md5
HashAlgorithm_t1432317219 * ___md5_4;
// System.Security.Cryptography.HashAlgorithm Mono.Security.Protocol.Tls.SslHandshakeHash::sha
HashAlgorithm_t1432317219 * ___sha_5;
// System.Boolean Mono.Security.Protocol.Tls.SslHandshakeHash::hashing
bool ___hashing_6;
// System.Byte[] Mono.Security.Protocol.Tls.SslHandshakeHash::secret
ByteU5BU5D_t4116647657* ___secret_7;
// System.Byte[] Mono.Security.Protocol.Tls.SslHandshakeHash::innerPadMD5
ByteU5BU5D_t4116647657* ___innerPadMD5_8;
// System.Byte[] Mono.Security.Protocol.Tls.SslHandshakeHash::outerPadMD5
ByteU5BU5D_t4116647657* ___outerPadMD5_9;
// System.Byte[] Mono.Security.Protocol.Tls.SslHandshakeHash::innerPadSHA
ByteU5BU5D_t4116647657* ___innerPadSHA_10;
// System.Byte[] Mono.Security.Protocol.Tls.SslHandshakeHash::outerPadSHA
ByteU5BU5D_t4116647657* ___outerPadSHA_11;
public:
inline static int32_t get_offset_of_md5_4() { return static_cast<int32_t>(offsetof(SslHandshakeHash_t2107581772, ___md5_4)); }
inline HashAlgorithm_t1432317219 * get_md5_4() const { return ___md5_4; }
inline HashAlgorithm_t1432317219 ** get_address_of_md5_4() { return &___md5_4; }
inline void set_md5_4(HashAlgorithm_t1432317219 * value)
{
___md5_4 = value;
Il2CppCodeGenWriteBarrier((&___md5_4), value);
}
inline static int32_t get_offset_of_sha_5() { return static_cast<int32_t>(offsetof(SslHandshakeHash_t2107581772, ___sha_5)); }
inline HashAlgorithm_t1432317219 * get_sha_5() const { return ___sha_5; }
inline HashAlgorithm_t1432317219 ** get_address_of_sha_5() { return &___sha_5; }
inline void set_sha_5(HashAlgorithm_t1432317219 * value)
{
___sha_5 = value;
Il2CppCodeGenWriteBarrier((&___sha_5), value);
}
inline static int32_t get_offset_of_hashing_6() { return static_cast<int32_t>(offsetof(SslHandshakeHash_t2107581772, ___hashing_6)); }
inline bool get_hashing_6() const { return ___hashing_6; }
inline bool* get_address_of_hashing_6() { return &___hashing_6; }
inline void set_hashing_6(bool value)
{
___hashing_6 = value;
}
inline static int32_t get_offset_of_secret_7() { return static_cast<int32_t>(offsetof(SslHandshakeHash_t2107581772, ___secret_7)); }
inline ByteU5BU5D_t4116647657* get_secret_7() const { return ___secret_7; }
inline ByteU5BU5D_t4116647657** get_address_of_secret_7() { return &___secret_7; }
inline void set_secret_7(ByteU5BU5D_t4116647657* value)
{
___secret_7 = value;
Il2CppCodeGenWriteBarrier((&___secret_7), value);
}
inline static int32_t get_offset_of_innerPadMD5_8() { return static_cast<int32_t>(offsetof(SslHandshakeHash_t2107581772, ___innerPadMD5_8)); }
inline ByteU5BU5D_t4116647657* get_innerPadMD5_8() const { return ___innerPadMD5_8; }
inline ByteU5BU5D_t4116647657** get_address_of_innerPadMD5_8() { return &___innerPadMD5_8; }
inline void set_innerPadMD5_8(ByteU5BU5D_t4116647657* value)
{
___innerPadMD5_8 = value;
Il2CppCodeGenWriteBarrier((&___innerPadMD5_8), value);
}
inline static int32_t get_offset_of_outerPadMD5_9() { return static_cast<int32_t>(offsetof(SslHandshakeHash_t2107581772, ___outerPadMD5_9)); }
inline ByteU5BU5D_t4116647657* get_outerPadMD5_9() const { return ___outerPadMD5_9; }
inline ByteU5BU5D_t4116647657** get_address_of_outerPadMD5_9() { return &___outerPadMD5_9; }
inline void set_outerPadMD5_9(ByteU5BU5D_t4116647657* value)
{
___outerPadMD5_9 = value;
Il2CppCodeGenWriteBarrier((&___outerPadMD5_9), value);
}
inline static int32_t get_offset_of_innerPadSHA_10() { return static_cast<int32_t>(offsetof(SslHandshakeHash_t2107581772, ___innerPadSHA_10)); }
inline ByteU5BU5D_t4116647657* get_innerPadSHA_10() const { return ___innerPadSHA_10; }
inline ByteU5BU5D_t4116647657** get_address_of_innerPadSHA_10() { return &___innerPadSHA_10; }
inline void set_innerPadSHA_10(ByteU5BU5D_t4116647657* value)
{
___innerPadSHA_10 = value;
Il2CppCodeGenWriteBarrier((&___innerPadSHA_10), value);
}
inline static int32_t get_offset_of_outerPadSHA_11() { return static_cast<int32_t>(offsetof(SslHandshakeHash_t2107581772, ___outerPadSHA_11)); }
inline ByteU5BU5D_t4116647657* get_outerPadSHA_11() const { return ___outerPadSHA_11; }
inline ByteU5BU5D_t4116647657** get_address_of_outerPadSHA_11() { return &___outerPadSHA_11; }
inline void set_outerPadSHA_11(ByteU5BU5D_t4116647657* value)
{
___outerPadSHA_11 = value;
Il2CppCodeGenWriteBarrier((&___outerPadSHA_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SSLHANDSHAKEHASH_T2107581772_H
#ifndef U24ARRAYTYPEU24256_T1929481983_H
#define U24ARRAYTYPEU24256_T1929481983_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$256
struct U24ArrayTypeU24256_t1929481983
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU24256_t1929481983__padding[256];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU24256_T1929481983_H
#ifndef U24ARRAYTYPEU2412_T2490092597_H
#define U24ARRAYTYPEU2412_T2490092597_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$12
struct U24ArrayTypeU2412_t2490092597
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2412_t2490092597__padding[12];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2412_T2490092597_H
#ifndef U24ARRAYTYPEU2416_T3254766645_H
#define U24ARRAYTYPEU2416_T3254766645_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$16
struct U24ArrayTypeU2416_t3254766645
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2416_t3254766645__padding[16];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2416_T3254766645_H
#ifndef U24ARRAYTYPEU2448_T1337922364_H
#define U24ARRAYTYPEU2448_T1337922364_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$48
struct U24ArrayTypeU2448_t1337922364
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2448_t1337922364__padding[48];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2448_T1337922364_H
#ifndef U24ARRAYTYPEU244_T1630999355_H
#define U24ARRAYTYPEU244_T1630999355_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$4
struct U24ArrayTypeU244_t1630999355
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU244_t1630999355__padding[4];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU244_T1630999355_H
#ifndef U24ARRAYTYPEU2432_T3652892011_H
#define U24ARRAYTYPEU2432_T3652892011_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$32
struct U24ArrayTypeU2432_t3652892011
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2432_t3652892011__padding[32];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2432_T3652892011_H
#ifndef U24ARRAYTYPEU2420_T1704471046_H
#define U24ARRAYTYPEU2420_T1704471046_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$20
struct U24ArrayTypeU2420_t1704471046
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2420_t1704471046__padding[20];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2420_T1704471046_H
#ifndef U24ARRAYTYPEU2464_T499776626_H
#define U24ARRAYTYPEU2464_T499776626_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$64
struct U24ArrayTypeU2464_t499776626
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2464_t499776626__padding[64];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2464_T499776626_H
#ifndef CONTENTTYPE_T2602934270_H
#define CONTENTTYPE_T2602934270_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.ContentType
struct ContentType_t2602934270
{
public:
// System.Byte Mono.Security.Protocol.Tls.ContentType::value__
uint8_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ContentType_t2602934270, ___value___1)); }
inline uint8_t get_value___1() const { return ___value___1; }
inline uint8_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(uint8_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONTENTTYPE_T2602934270_H
#ifndef TLSSERVERSETTINGS_T4144396432_H
#define TLSSERVERSETTINGS_T4144396432_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.TlsServerSettings
struct TlsServerSettings_t4144396432 : public RuntimeObject
{
public:
// Mono.Security.X509.X509CertificateCollection Mono.Security.Protocol.Tls.TlsServerSettings::certificates
X509CertificateCollection_t1542168550 * ___certificates_0;
// System.Security.Cryptography.RSA Mono.Security.Protocol.Tls.TlsServerSettings::certificateRSA
RSA_t2385438082 * ___certificateRSA_1;
// System.Security.Cryptography.RSAParameters Mono.Security.Protocol.Tls.TlsServerSettings::rsaParameters
RSAParameters_t1728406613 ___rsaParameters_2;
// System.Byte[] Mono.Security.Protocol.Tls.TlsServerSettings::signedParams
ByteU5BU5D_t4116647657* ___signedParams_3;
// System.String[] Mono.Security.Protocol.Tls.TlsServerSettings::distinguisedNames
StringU5BU5D_t1281789340* ___distinguisedNames_4;
// System.Boolean Mono.Security.Protocol.Tls.TlsServerSettings::serverKeyExchange
bool ___serverKeyExchange_5;
// System.Boolean Mono.Security.Protocol.Tls.TlsServerSettings::certificateRequest
bool ___certificateRequest_6;
// Mono.Security.Protocol.Tls.Handshake.ClientCertificateType[] Mono.Security.Protocol.Tls.TlsServerSettings::certificateTypes
ClientCertificateTypeU5BU5D_t4253920197* ___certificateTypes_7;
public:
inline static int32_t get_offset_of_certificates_0() { return static_cast<int32_t>(offsetof(TlsServerSettings_t4144396432, ___certificates_0)); }
inline X509CertificateCollection_t1542168550 * get_certificates_0() const { return ___certificates_0; }
inline X509CertificateCollection_t1542168550 ** get_address_of_certificates_0() { return &___certificates_0; }
inline void set_certificates_0(X509CertificateCollection_t1542168550 * value)
{
___certificates_0 = value;
Il2CppCodeGenWriteBarrier((&___certificates_0), value);
}
inline static int32_t get_offset_of_certificateRSA_1() { return static_cast<int32_t>(offsetof(TlsServerSettings_t4144396432, ___certificateRSA_1)); }
inline RSA_t2385438082 * get_certificateRSA_1() const { return ___certificateRSA_1; }
inline RSA_t2385438082 ** get_address_of_certificateRSA_1() { return &___certificateRSA_1; }
inline void set_certificateRSA_1(RSA_t2385438082 * value)
{
___certificateRSA_1 = value;
Il2CppCodeGenWriteBarrier((&___certificateRSA_1), value);
}
inline static int32_t get_offset_of_rsaParameters_2() { return static_cast<int32_t>(offsetof(TlsServerSettings_t4144396432, ___rsaParameters_2)); }
inline RSAParameters_t1728406613 get_rsaParameters_2() const { return ___rsaParameters_2; }
inline RSAParameters_t1728406613 * get_address_of_rsaParameters_2() { return &___rsaParameters_2; }
inline void set_rsaParameters_2(RSAParameters_t1728406613 value)
{
___rsaParameters_2 = value;
}
inline static int32_t get_offset_of_signedParams_3() { return static_cast<int32_t>(offsetof(TlsServerSettings_t4144396432, ___signedParams_3)); }
inline ByteU5BU5D_t4116647657* get_signedParams_3() const { return ___signedParams_3; }
inline ByteU5BU5D_t4116647657** get_address_of_signedParams_3() { return &___signedParams_3; }
inline void set_signedParams_3(ByteU5BU5D_t4116647657* value)
{
___signedParams_3 = value;
Il2CppCodeGenWriteBarrier((&___signedParams_3), value);
}
inline static int32_t get_offset_of_distinguisedNames_4() { return static_cast<int32_t>(offsetof(TlsServerSettings_t4144396432, ___distinguisedNames_4)); }
inline StringU5BU5D_t1281789340* get_distinguisedNames_4() const { return ___distinguisedNames_4; }
inline StringU5BU5D_t1281789340** get_address_of_distinguisedNames_4() { return &___distinguisedNames_4; }
inline void set_distinguisedNames_4(StringU5BU5D_t1281789340* value)
{
___distinguisedNames_4 = value;
Il2CppCodeGenWriteBarrier((&___distinguisedNames_4), value);
}
inline static int32_t get_offset_of_serverKeyExchange_5() { return static_cast<int32_t>(offsetof(TlsServerSettings_t4144396432, ___serverKeyExchange_5)); }
inline bool get_serverKeyExchange_5() const { return ___serverKeyExchange_5; }
inline bool* get_address_of_serverKeyExchange_5() { return &___serverKeyExchange_5; }
inline void set_serverKeyExchange_5(bool value)
{
___serverKeyExchange_5 = value;
}
inline static int32_t get_offset_of_certificateRequest_6() { return static_cast<int32_t>(offsetof(TlsServerSettings_t4144396432, ___certificateRequest_6)); }
inline bool get_certificateRequest_6() const { return ___certificateRequest_6; }
inline bool* get_address_of_certificateRequest_6() { return &___certificateRequest_6; }
inline void set_certificateRequest_6(bool value)
{
___certificateRequest_6 = value;
}
inline static int32_t get_offset_of_certificateTypes_7() { return static_cast<int32_t>(offsetof(TlsServerSettings_t4144396432, ___certificateTypes_7)); }
inline ClientCertificateTypeU5BU5D_t4253920197* get_certificateTypes_7() const { return ___certificateTypes_7; }
inline ClientCertificateTypeU5BU5D_t4253920197** get_address_of_certificateTypes_7() { return &___certificateTypes_7; }
inline void set_certificateTypes_7(ClientCertificateTypeU5BU5D_t4253920197* value)
{
___certificateTypes_7 = value;
Il2CppCodeGenWriteBarrier((&___certificateTypes_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERSETTINGS_T4144396432_H
#ifndef EDITORBROWSABLESTATE_T2839071299_H
#define EDITORBROWSABLESTATE_T2839071299_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.EditorBrowsableState
struct EditorBrowsableState_t2839071299
{
public:
// System.Int32 System.ComponentModel.EditorBrowsableState::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(EditorBrowsableState_t2839071299, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EDITORBROWSABLESTATE_T2839071299_H
#ifndef IN6_ADDR_T1417766092_H
#define IN6_ADDR_T1417766092_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.MacOsStructs.in6_addr
struct in6_addr_t1417766092
{
public:
// System.Byte[] System.Net.NetworkInformation.MacOsStructs.in6_addr::u6_addr8
ByteU5BU5D_t4116647657* ___u6_addr8_0;
public:
inline static int32_t get_offset_of_u6_addr8_0() { return static_cast<int32_t>(offsetof(in6_addr_t1417766092, ___u6_addr8_0)); }
inline ByteU5BU5D_t4116647657* get_u6_addr8_0() const { return ___u6_addr8_0; }
inline ByteU5BU5D_t4116647657** get_address_of_u6_addr8_0() { return &___u6_addr8_0; }
inline void set_u6_addr8_0(ByteU5BU5D_t4116647657* value)
{
___u6_addr8_0 = value;
Il2CppCodeGenWriteBarrier((&___u6_addr8_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.MacOsStructs.in6_addr
struct in6_addr_t1417766092_marshaled_pinvoke
{
uint8_t ___u6_addr8_0[16];
};
// Native definition for COM marshalling of System.Net.NetworkInformation.MacOsStructs.in6_addr
struct in6_addr_t1417766092_marshaled_com
{
uint8_t ___u6_addr8_0[16];
};
#endif // IN6_ADDR_T1417766092_H
#ifndef SOCKADDR_DL_T1317779094_H
#define SOCKADDR_DL_T1317779094_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.MacOsStructs.sockaddr_dl
struct sockaddr_dl_t1317779094
{
public:
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr_dl::sdl_len
uint8_t ___sdl_len_0;
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr_dl::sdl_family
uint8_t ___sdl_family_1;
// System.UInt16 System.Net.NetworkInformation.MacOsStructs.sockaddr_dl::sdl_index
uint16_t ___sdl_index_2;
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr_dl::sdl_type
uint8_t ___sdl_type_3;
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr_dl::sdl_nlen
uint8_t ___sdl_nlen_4;
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr_dl::sdl_alen
uint8_t ___sdl_alen_5;
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr_dl::sdl_slen
uint8_t ___sdl_slen_6;
// System.Byte[] System.Net.NetworkInformation.MacOsStructs.sockaddr_dl::sdl_data
ByteU5BU5D_t4116647657* ___sdl_data_7;
public:
inline static int32_t get_offset_of_sdl_len_0() { return static_cast<int32_t>(offsetof(sockaddr_dl_t1317779094, ___sdl_len_0)); }
inline uint8_t get_sdl_len_0() const { return ___sdl_len_0; }
inline uint8_t* get_address_of_sdl_len_0() { return &___sdl_len_0; }
inline void set_sdl_len_0(uint8_t value)
{
___sdl_len_0 = value;
}
inline static int32_t get_offset_of_sdl_family_1() { return static_cast<int32_t>(offsetof(sockaddr_dl_t1317779094, ___sdl_family_1)); }
inline uint8_t get_sdl_family_1() const { return ___sdl_family_1; }
inline uint8_t* get_address_of_sdl_family_1() { return &___sdl_family_1; }
inline void set_sdl_family_1(uint8_t value)
{
___sdl_family_1 = value;
}
inline static int32_t get_offset_of_sdl_index_2() { return static_cast<int32_t>(offsetof(sockaddr_dl_t1317779094, ___sdl_index_2)); }
inline uint16_t get_sdl_index_2() const { return ___sdl_index_2; }
inline uint16_t* get_address_of_sdl_index_2() { return &___sdl_index_2; }
inline void set_sdl_index_2(uint16_t value)
{
___sdl_index_2 = value;
}
inline static int32_t get_offset_of_sdl_type_3() { return static_cast<int32_t>(offsetof(sockaddr_dl_t1317779094, ___sdl_type_3)); }
inline uint8_t get_sdl_type_3() const { return ___sdl_type_3; }
inline uint8_t* get_address_of_sdl_type_3() { return &___sdl_type_3; }
inline void set_sdl_type_3(uint8_t value)
{
___sdl_type_3 = value;
}
inline static int32_t get_offset_of_sdl_nlen_4() { return static_cast<int32_t>(offsetof(sockaddr_dl_t1317779094, ___sdl_nlen_4)); }
inline uint8_t get_sdl_nlen_4() const { return ___sdl_nlen_4; }
inline uint8_t* get_address_of_sdl_nlen_4() { return &___sdl_nlen_4; }
inline void set_sdl_nlen_4(uint8_t value)
{
___sdl_nlen_4 = value;
}
inline static int32_t get_offset_of_sdl_alen_5() { return static_cast<int32_t>(offsetof(sockaddr_dl_t1317779094, ___sdl_alen_5)); }
inline uint8_t get_sdl_alen_5() const { return ___sdl_alen_5; }
inline uint8_t* get_address_of_sdl_alen_5() { return &___sdl_alen_5; }
inline void set_sdl_alen_5(uint8_t value)
{
___sdl_alen_5 = value;
}
inline static int32_t get_offset_of_sdl_slen_6() { return static_cast<int32_t>(offsetof(sockaddr_dl_t1317779094, ___sdl_slen_6)); }
inline uint8_t get_sdl_slen_6() const { return ___sdl_slen_6; }
inline uint8_t* get_address_of_sdl_slen_6() { return &___sdl_slen_6; }
inline void set_sdl_slen_6(uint8_t value)
{
___sdl_slen_6 = value;
}
inline static int32_t get_offset_of_sdl_data_7() { return static_cast<int32_t>(offsetof(sockaddr_dl_t1317779094, ___sdl_data_7)); }
inline ByteU5BU5D_t4116647657* get_sdl_data_7() const { return ___sdl_data_7; }
inline ByteU5BU5D_t4116647657** get_address_of_sdl_data_7() { return &___sdl_data_7; }
inline void set_sdl_data_7(ByteU5BU5D_t4116647657* value)
{
___sdl_data_7 = value;
Il2CppCodeGenWriteBarrier((&___sdl_data_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.MacOsStructs.sockaddr_dl
struct sockaddr_dl_t1317779094_marshaled_pinvoke
{
uint8_t ___sdl_len_0;
uint8_t ___sdl_family_1;
uint16_t ___sdl_index_2;
uint8_t ___sdl_type_3;
uint8_t ___sdl_nlen_4;
uint8_t ___sdl_alen_5;
uint8_t ___sdl_slen_6;
uint8_t ___sdl_data_7[12];
};
// Native definition for COM marshalling of System.Net.NetworkInformation.MacOsStructs.sockaddr_dl
struct sockaddr_dl_t1317779094_marshaled_com
{
uint8_t ___sdl_len_0;
uint8_t ___sdl_family_1;
uint16_t ___sdl_index_2;
uint8_t ___sdl_type_3;
uint8_t ___sdl_nlen_4;
uint8_t ___sdl_alen_5;
uint8_t ___sdl_slen_6;
uint8_t ___sdl_data_7[12];
};
#endif // SOCKADDR_DL_T1317779094_H
#ifndef MACOSARPHARDWARE_T4198534184_H
#define MACOSARPHARDWARE_T4198534184_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.MacOsArpHardware
struct MacOsArpHardware_t4198534184
{
public:
// System.Int32 System.Net.NetworkInformation.MacOsArpHardware::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(MacOsArpHardware_t4198534184, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MACOSARPHARDWARE_T4198534184_H
#ifndef HANDSHAKETYPE_T3062346172_H
#define HANDSHAKETYPE_T3062346172_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.HandshakeType
struct HandshakeType_t3062346172
{
public:
// System.Byte Mono.Security.Protocol.Tls.Handshake.HandshakeType::value__
uint8_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(HandshakeType_t3062346172, ___value___1)); }
inline uint8_t get_value___1() const { return ___value___1; }
inline uint8_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(uint8_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HANDSHAKETYPE_T3062346172_H
#ifndef CLIENTCERTIFICATETYPE_T1004704908_H
#define CLIENTCERTIFICATETYPE_T1004704908_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.ClientCertificateType
struct ClientCertificateType_t1004704908
{
public:
// System.Int32 Mono.Security.Protocol.Tls.Handshake.ClientCertificateType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ClientCertificateType_t1004704908, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CLIENTCERTIFICATETYPE_T1004704908_H
#ifndef CONFIDENCEFACTOR_T2516000286_H
#define CONFIDENCEFACTOR_T2516000286_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Math.Prime.ConfidenceFactor
struct ConfidenceFactor_t2516000286
{
public:
// System.Int32 Mono.Math.Prime.ConfidenceFactor::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ConfidenceFactor_t2516000286, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIDENCEFACTOR_T2516000286_H
#ifndef NETWORKINTERFACETYPE_T616418749_H
#define NETWORKINTERFACETYPE_T616418749_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.NetworkInterfaceType
struct NetworkInterfaceType_t616418749
{
public:
// System.Int32 System.Net.NetworkInformation.NetworkInterfaceType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(NetworkInterfaceType_t616418749, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NETWORKINTERFACETYPE_T616418749_H
#ifndef DELEGATE_T1188392813_H
#define DELEGATE_T1188392813_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Delegate
struct Delegate_t1188392813 : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_5;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_6;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_7;
// System.DelegateData System.Delegate::data
DelegateData_t1677132599 * ___data_8;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((&___m_target_2), value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_method_code_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_5)); }
inline intptr_t get_method_code_5() const { return ___method_code_5; }
inline intptr_t* get_address_of_method_code_5() { return &___method_code_5; }
inline void set_method_code_5(intptr_t value)
{
___method_code_5 = value;
}
inline static int32_t get_offset_of_method_info_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_6)); }
inline MethodInfo_t * get_method_info_6() const { return ___method_info_6; }
inline MethodInfo_t ** get_address_of_method_info_6() { return &___method_info_6; }
inline void set_method_info_6(MethodInfo_t * value)
{
___method_info_6 = value;
Il2CppCodeGenWriteBarrier((&___method_info_6), value);
}
inline static int32_t get_offset_of_original_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_7)); }
inline MethodInfo_t * get_original_method_info_7() const { return ___original_method_info_7; }
inline MethodInfo_t ** get_address_of_original_method_info_7() { return &___original_method_info_7; }
inline void set_original_method_info_7(MethodInfo_t * value)
{
___original_method_info_7 = value;
Il2CppCodeGenWriteBarrier((&___original_method_info_7), value);
}
inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_8)); }
inline DelegateData_t1677132599 * get_data_8() const { return ___data_8; }
inline DelegateData_t1677132599 ** get_address_of_data_8() { return &___data_8; }
inline void set_data_8(DelegateData_t1677132599 * value)
{
___data_8 = value;
Il2CppCodeGenWriteBarrier((&___data_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DELEGATE_T1188392813_H
#ifndef CIPHERMODE_T84635067_H
#define CIPHERMODE_T84635067_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.CipherMode
struct CipherMode_t84635067
{
public:
// System.Int32 System.Security.Cryptography.CipherMode::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(CipherMode_t84635067, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CIPHERMODE_T84635067_H
#ifndef EXCHANGEALGORITHMTYPE_T1320888206_H
#define EXCHANGEALGORITHMTYPE_T1320888206_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.ExchangeAlgorithmType
struct ExchangeAlgorithmType_t1320888206
{
public:
// System.Int32 Mono.Security.Protocol.Tls.ExchangeAlgorithmType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ExchangeAlgorithmType_t1320888206, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXCHANGEALGORITHMTYPE_T1320888206_H
#ifndef HASHALGORITHMTYPE_T2376832258_H
#define HASHALGORITHMTYPE_T2376832258_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.HashAlgorithmType
struct HashAlgorithmType_t2376832258
{
public:
// System.Int32 Mono.Security.Protocol.Tls.HashAlgorithmType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(HashAlgorithmType_t2376832258, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HASHALGORITHMTYPE_T2376832258_H
#ifndef CIPHERALGORITHMTYPE_T1174400495_H
#define CIPHERALGORITHMTYPE_T1174400495_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.CipherAlgorithmType
struct CipherAlgorithmType_t1174400495
{
public:
// System.Int32 Mono.Security.Protocol.Tls.CipherAlgorithmType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(CipherAlgorithmType_t1174400495, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CIPHERALGORITHMTYPE_T1174400495_H
#ifndef HANDSHAKESTATE_T756684113_H
#define HANDSHAKESTATE_T756684113_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.HandshakeState
struct HandshakeState_t756684113
{
public:
// System.Int32 Mono.Security.Protocol.Tls.HandshakeState::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(HandshakeState_t756684113, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HANDSHAKESTATE_T756684113_H
#ifndef SECURITYCOMPRESSIONTYPE_T4242483129_H
#define SECURITYCOMPRESSIONTYPE_T4242483129_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.SecurityCompressionType
struct SecurityCompressionType_t4242483129
{
public:
// System.Int32 Mono.Security.Protocol.Tls.SecurityCompressionType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SecurityCompressionType_t4242483129, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SECURITYCOMPRESSIONTYPE_T4242483129_H
#ifndef SECURITYPROTOCOLTYPE_T1513093309_H
#define SECURITYPROTOCOLTYPE_T1513093309_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.SecurityProtocolType
struct SecurityProtocolType_t1513093309
{
public:
// System.Int32 Mono.Security.Protocol.Tls.SecurityProtocolType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SecurityProtocolType_t1513093309, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SECURITYPROTOCOLTYPE_T1513093309_H
#ifndef EXTERNALEXCEPTION_T3544951457_H
#define EXTERNALEXCEPTION_T3544951457_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.ExternalException
struct ExternalException_t3544951457 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXTERNALEXCEPTION_T3544951457_H
#ifndef SSLSTREAMBASE_T1667413407_H
#define SSLSTREAMBASE_T1667413407_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.SslStreamBase
struct SslStreamBase_t1667413407 : public Stream_t1273022909
{
public:
// System.IO.Stream Mono.Security.Protocol.Tls.SslStreamBase::innerStream
Stream_t1273022909 * ___innerStream_3;
// System.IO.MemoryStream Mono.Security.Protocol.Tls.SslStreamBase::inputBuffer
MemoryStream_t94973147 * ___inputBuffer_4;
// Mono.Security.Protocol.Tls.Context Mono.Security.Protocol.Tls.SslStreamBase::context
Context_t3971234707 * ___context_5;
// Mono.Security.Protocol.Tls.RecordProtocol Mono.Security.Protocol.Tls.SslStreamBase::protocol
RecordProtocol_t3759049701 * ___protocol_6;
// System.Boolean Mono.Security.Protocol.Tls.SslStreamBase::ownsStream
bool ___ownsStream_7;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) Mono.Security.Protocol.Tls.SslStreamBase::disposed
bool ___disposed_8;
// System.Boolean Mono.Security.Protocol.Tls.SslStreamBase::checkCertRevocationStatus
bool ___checkCertRevocationStatus_9;
// System.Object Mono.Security.Protocol.Tls.SslStreamBase::negotiate
RuntimeObject * ___negotiate_10;
// System.Object Mono.Security.Protocol.Tls.SslStreamBase::read
RuntimeObject * ___read_11;
// System.Object Mono.Security.Protocol.Tls.SslStreamBase::write
RuntimeObject * ___write_12;
// System.Threading.ManualResetEvent Mono.Security.Protocol.Tls.SslStreamBase::negotiationComplete
ManualResetEvent_t451242010 * ___negotiationComplete_13;
// System.Byte[] Mono.Security.Protocol.Tls.SslStreamBase::recbuf
ByteU5BU5D_t4116647657* ___recbuf_14;
// System.IO.MemoryStream Mono.Security.Protocol.Tls.SslStreamBase::recordStream
MemoryStream_t94973147 * ___recordStream_15;
public:
inline static int32_t get_offset_of_innerStream_3() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___innerStream_3)); }
inline Stream_t1273022909 * get_innerStream_3() const { return ___innerStream_3; }
inline Stream_t1273022909 ** get_address_of_innerStream_3() { return &___innerStream_3; }
inline void set_innerStream_3(Stream_t1273022909 * value)
{
___innerStream_3 = value;
Il2CppCodeGenWriteBarrier((&___innerStream_3), value);
}
inline static int32_t get_offset_of_inputBuffer_4() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___inputBuffer_4)); }
inline MemoryStream_t94973147 * get_inputBuffer_4() const { return ___inputBuffer_4; }
inline MemoryStream_t94973147 ** get_address_of_inputBuffer_4() { return &___inputBuffer_4; }
inline void set_inputBuffer_4(MemoryStream_t94973147 * value)
{
___inputBuffer_4 = value;
Il2CppCodeGenWriteBarrier((&___inputBuffer_4), value);
}
inline static int32_t get_offset_of_context_5() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___context_5)); }
inline Context_t3971234707 * get_context_5() const { return ___context_5; }
inline Context_t3971234707 ** get_address_of_context_5() { return &___context_5; }
inline void set_context_5(Context_t3971234707 * value)
{
___context_5 = value;
Il2CppCodeGenWriteBarrier((&___context_5), value);
}
inline static int32_t get_offset_of_protocol_6() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___protocol_6)); }
inline RecordProtocol_t3759049701 * get_protocol_6() const { return ___protocol_6; }
inline RecordProtocol_t3759049701 ** get_address_of_protocol_6() { return &___protocol_6; }
inline void set_protocol_6(RecordProtocol_t3759049701 * value)
{
___protocol_6 = value;
Il2CppCodeGenWriteBarrier((&___protocol_6), value);
}
inline static int32_t get_offset_of_ownsStream_7() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___ownsStream_7)); }
inline bool get_ownsStream_7() const { return ___ownsStream_7; }
inline bool* get_address_of_ownsStream_7() { return &___ownsStream_7; }
inline void set_ownsStream_7(bool value)
{
___ownsStream_7 = value;
}
inline static int32_t get_offset_of_disposed_8() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___disposed_8)); }
inline bool get_disposed_8() const { return ___disposed_8; }
inline bool* get_address_of_disposed_8() { return &___disposed_8; }
inline void set_disposed_8(bool value)
{
___disposed_8 = value;
}
inline static int32_t get_offset_of_checkCertRevocationStatus_9() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___checkCertRevocationStatus_9)); }
inline bool get_checkCertRevocationStatus_9() const { return ___checkCertRevocationStatus_9; }
inline bool* get_address_of_checkCertRevocationStatus_9() { return &___checkCertRevocationStatus_9; }
inline void set_checkCertRevocationStatus_9(bool value)
{
___checkCertRevocationStatus_9 = value;
}
inline static int32_t get_offset_of_negotiate_10() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___negotiate_10)); }
inline RuntimeObject * get_negotiate_10() const { return ___negotiate_10; }
inline RuntimeObject ** get_address_of_negotiate_10() { return &___negotiate_10; }
inline void set_negotiate_10(RuntimeObject * value)
{
___negotiate_10 = value;
Il2CppCodeGenWriteBarrier((&___negotiate_10), value);
}
inline static int32_t get_offset_of_read_11() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___read_11)); }
inline RuntimeObject * get_read_11() const { return ___read_11; }
inline RuntimeObject ** get_address_of_read_11() { return &___read_11; }
inline void set_read_11(RuntimeObject * value)
{
___read_11 = value;
Il2CppCodeGenWriteBarrier((&___read_11), value);
}
inline static int32_t get_offset_of_write_12() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___write_12)); }
inline RuntimeObject * get_write_12() const { return ___write_12; }
inline RuntimeObject ** get_address_of_write_12() { return &___write_12; }
inline void set_write_12(RuntimeObject * value)
{
___write_12 = value;
Il2CppCodeGenWriteBarrier((&___write_12), value);
}
inline static int32_t get_offset_of_negotiationComplete_13() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___negotiationComplete_13)); }
inline ManualResetEvent_t451242010 * get_negotiationComplete_13() const { return ___negotiationComplete_13; }
inline ManualResetEvent_t451242010 ** get_address_of_negotiationComplete_13() { return &___negotiationComplete_13; }
inline void set_negotiationComplete_13(ManualResetEvent_t451242010 * value)
{
___negotiationComplete_13 = value;
Il2CppCodeGenWriteBarrier((&___negotiationComplete_13), value);
}
inline static int32_t get_offset_of_recbuf_14() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___recbuf_14)); }
inline ByteU5BU5D_t4116647657* get_recbuf_14() const { return ___recbuf_14; }
inline ByteU5BU5D_t4116647657** get_address_of_recbuf_14() { return &___recbuf_14; }
inline void set_recbuf_14(ByteU5BU5D_t4116647657* value)
{
___recbuf_14 = value;
Il2CppCodeGenWriteBarrier((&___recbuf_14), value);
}
inline static int32_t get_offset_of_recordStream_15() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407, ___recordStream_15)); }
inline MemoryStream_t94973147 * get_recordStream_15() const { return ___recordStream_15; }
inline MemoryStream_t94973147 ** get_address_of_recordStream_15() { return &___recordStream_15; }
inline void set_recordStream_15(MemoryStream_t94973147 * value)
{
___recordStream_15 = value;
Il2CppCodeGenWriteBarrier((&___recordStream_15), value);
}
};
struct SslStreamBase_t1667413407_StaticFields
{
public:
// System.Threading.ManualResetEvent Mono.Security.Protocol.Tls.SslStreamBase::record_processing
ManualResetEvent_t451242010 * ___record_processing_2;
public:
inline static int32_t get_offset_of_record_processing_2() { return static_cast<int32_t>(offsetof(SslStreamBase_t1667413407_StaticFields, ___record_processing_2)); }
inline ManualResetEvent_t451242010 * get_record_processing_2() const { return ___record_processing_2; }
inline ManualResetEvent_t451242010 ** get_address_of_record_processing_2() { return &___record_processing_2; }
inline void set_record_processing_2(ManualResetEvent_t451242010 * value)
{
___record_processing_2 = value;
Il2CppCodeGenWriteBarrier((&___record_processing_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SSLSTREAMBASE_T1667413407_H
#ifndef IFADDRS_T2169824096_H
#define IFADDRS_T2169824096_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.MacOsStructs.ifaddrs
struct ifaddrs_t2169824096
{
public:
// System.IntPtr System.Net.NetworkInformation.MacOsStructs.ifaddrs::ifa_next
intptr_t ___ifa_next_0;
// System.String System.Net.NetworkInformation.MacOsStructs.ifaddrs::ifa_name
String_t* ___ifa_name_1;
// System.UInt32 System.Net.NetworkInformation.MacOsStructs.ifaddrs::ifa_flags
uint32_t ___ifa_flags_2;
// System.IntPtr System.Net.NetworkInformation.MacOsStructs.ifaddrs::ifa_addr
intptr_t ___ifa_addr_3;
// System.IntPtr System.Net.NetworkInformation.MacOsStructs.ifaddrs::ifa_netmask
intptr_t ___ifa_netmask_4;
// System.IntPtr System.Net.NetworkInformation.MacOsStructs.ifaddrs::ifa_dstaddr
intptr_t ___ifa_dstaddr_5;
// System.IntPtr System.Net.NetworkInformation.MacOsStructs.ifaddrs::ifa_data
intptr_t ___ifa_data_6;
public:
inline static int32_t get_offset_of_ifa_next_0() { return static_cast<int32_t>(offsetof(ifaddrs_t2169824096, ___ifa_next_0)); }
inline intptr_t get_ifa_next_0() const { return ___ifa_next_0; }
inline intptr_t* get_address_of_ifa_next_0() { return &___ifa_next_0; }
inline void set_ifa_next_0(intptr_t value)
{
___ifa_next_0 = value;
}
inline static int32_t get_offset_of_ifa_name_1() { return static_cast<int32_t>(offsetof(ifaddrs_t2169824096, ___ifa_name_1)); }
inline String_t* get_ifa_name_1() const { return ___ifa_name_1; }
inline String_t** get_address_of_ifa_name_1() { return &___ifa_name_1; }
inline void set_ifa_name_1(String_t* value)
{
___ifa_name_1 = value;
Il2CppCodeGenWriteBarrier((&___ifa_name_1), value);
}
inline static int32_t get_offset_of_ifa_flags_2() { return static_cast<int32_t>(offsetof(ifaddrs_t2169824096, ___ifa_flags_2)); }
inline uint32_t get_ifa_flags_2() const { return ___ifa_flags_2; }
inline uint32_t* get_address_of_ifa_flags_2() { return &___ifa_flags_2; }
inline void set_ifa_flags_2(uint32_t value)
{
___ifa_flags_2 = value;
}
inline static int32_t get_offset_of_ifa_addr_3() { return static_cast<int32_t>(offsetof(ifaddrs_t2169824096, ___ifa_addr_3)); }
inline intptr_t get_ifa_addr_3() const { return ___ifa_addr_3; }
inline intptr_t* get_address_of_ifa_addr_3() { return &___ifa_addr_3; }
inline void set_ifa_addr_3(intptr_t value)
{
___ifa_addr_3 = value;
}
inline static int32_t get_offset_of_ifa_netmask_4() { return static_cast<int32_t>(offsetof(ifaddrs_t2169824096, ___ifa_netmask_4)); }
inline intptr_t get_ifa_netmask_4() const { return ___ifa_netmask_4; }
inline intptr_t* get_address_of_ifa_netmask_4() { return &___ifa_netmask_4; }
inline void set_ifa_netmask_4(intptr_t value)
{
___ifa_netmask_4 = value;
}
inline static int32_t get_offset_of_ifa_dstaddr_5() { return static_cast<int32_t>(offsetof(ifaddrs_t2169824096, ___ifa_dstaddr_5)); }
inline intptr_t get_ifa_dstaddr_5() const { return ___ifa_dstaddr_5; }
inline intptr_t* get_address_of_ifa_dstaddr_5() { return &___ifa_dstaddr_5; }
inline void set_ifa_dstaddr_5(intptr_t value)
{
___ifa_dstaddr_5 = value;
}
inline static int32_t get_offset_of_ifa_data_6() { return static_cast<int32_t>(offsetof(ifaddrs_t2169824096, ___ifa_data_6)); }
inline intptr_t get_ifa_data_6() const { return ___ifa_data_6; }
inline intptr_t* get_address_of_ifa_data_6() { return &___ifa_data_6; }
inline void set_ifa_data_6(intptr_t value)
{
___ifa_data_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.MacOsStructs.ifaddrs
struct ifaddrs_t2169824096_marshaled_pinvoke
{
intptr_t ___ifa_next_0;
char* ___ifa_name_1;
uint32_t ___ifa_flags_2;
intptr_t ___ifa_addr_3;
intptr_t ___ifa_netmask_4;
intptr_t ___ifa_dstaddr_5;
intptr_t ___ifa_data_6;
};
// Native definition for COM marshalling of System.Net.NetworkInformation.MacOsStructs.ifaddrs
struct ifaddrs_t2169824096_marshaled_com
{
intptr_t ___ifa_next_0;
Il2CppChar* ___ifa_name_1;
uint32_t ___ifa_flags_2;
intptr_t ___ifa_addr_3;
intptr_t ___ifa_netmask_4;
intptr_t ___ifa_dstaddr_5;
intptr_t ___ifa_data_6;
};
#endif // IFADDRS_T2169824096_H
#ifndef IFA_IFU_T1794893192_H
#define IFA_IFU_T1794893192_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.ifa_ifu
struct ifa_ifu_t1794893192
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.IntPtr System.Net.NetworkInformation.ifa_ifu::ifu_broadaddr
intptr_t ___ifu_broadaddr_0;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___ifu_broadaddr_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.IntPtr System.Net.NetworkInformation.ifa_ifu::ifu_dstaddr
intptr_t ___ifu_dstaddr_1;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___ifu_dstaddr_1_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_ifu_broadaddr_0() { return static_cast<int32_t>(offsetof(ifa_ifu_t1794893192, ___ifu_broadaddr_0)); }
inline intptr_t get_ifu_broadaddr_0() const { return ___ifu_broadaddr_0; }
inline intptr_t* get_address_of_ifu_broadaddr_0() { return &___ifu_broadaddr_0; }
inline void set_ifu_broadaddr_0(intptr_t value)
{
___ifu_broadaddr_0 = value;
}
inline static int32_t get_offset_of_ifu_dstaddr_1() { return static_cast<int32_t>(offsetof(ifa_ifu_t1794893192, ___ifu_dstaddr_1)); }
inline intptr_t get_ifu_dstaddr_1() const { return ___ifu_dstaddr_1; }
inline intptr_t* get_address_of_ifu_dstaddr_1() { return &___ifu_dstaddr_1; }
inline void set_ifu_dstaddr_1(intptr_t value)
{
___ifu_dstaddr_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IFA_IFU_T1794893192_H
#ifndef COMPRESSIONMODE_T3714291783_H
#define COMPRESSIONMODE_T3714291783_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Compression.CompressionMode
struct CompressionMode_t3714291783
{
public:
// System.Int32 System.IO.Compression.CompressionMode::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(CompressionMode_t3714291783, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPRESSIONMODE_T3714291783_H
#ifndef IN6_ADDR_T3611791508_H
#define IN6_ADDR_T3611791508_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.in6_addr
struct in6_addr_t3611791508
{
public:
// System.Byte[] System.Net.NetworkInformation.in6_addr::u6_addr8
ByteU5BU5D_t4116647657* ___u6_addr8_0;
public:
inline static int32_t get_offset_of_u6_addr8_0() { return static_cast<int32_t>(offsetof(in6_addr_t3611791508, ___u6_addr8_0)); }
inline ByteU5BU5D_t4116647657* get_u6_addr8_0() const { return ___u6_addr8_0; }
inline ByteU5BU5D_t4116647657** get_address_of_u6_addr8_0() { return &___u6_addr8_0; }
inline void set_u6_addr8_0(ByteU5BU5D_t4116647657* value)
{
___u6_addr8_0 = value;
Il2CppCodeGenWriteBarrier((&___u6_addr8_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.in6_addr
struct in6_addr_t3611791508_marshaled_pinvoke
{
uint8_t ___u6_addr8_0[16];
};
// Native definition for COM marshalling of System.Net.NetworkInformation.in6_addr
struct in6_addr_t3611791508_marshaled_com
{
uint8_t ___u6_addr8_0[16];
};
#endif // IN6_ADDR_T3611791508_H
#ifndef SOCKADDR_LL_T3978606313_H
#define SOCKADDR_LL_T3978606313_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.sockaddr_ll
struct sockaddr_ll_t3978606313
{
public:
// System.UInt16 System.Net.NetworkInformation.sockaddr_ll::sll_family
uint16_t ___sll_family_0;
// System.UInt16 System.Net.NetworkInformation.sockaddr_ll::sll_protocol
uint16_t ___sll_protocol_1;
// System.Int32 System.Net.NetworkInformation.sockaddr_ll::sll_ifindex
int32_t ___sll_ifindex_2;
// System.UInt16 System.Net.NetworkInformation.sockaddr_ll::sll_hatype
uint16_t ___sll_hatype_3;
// System.Byte System.Net.NetworkInformation.sockaddr_ll::sll_pkttype
uint8_t ___sll_pkttype_4;
// System.Byte System.Net.NetworkInformation.sockaddr_ll::sll_halen
uint8_t ___sll_halen_5;
// System.Byte[] System.Net.NetworkInformation.sockaddr_ll::sll_addr
ByteU5BU5D_t4116647657* ___sll_addr_6;
public:
inline static int32_t get_offset_of_sll_family_0() { return static_cast<int32_t>(offsetof(sockaddr_ll_t3978606313, ___sll_family_0)); }
inline uint16_t get_sll_family_0() const { return ___sll_family_0; }
inline uint16_t* get_address_of_sll_family_0() { return &___sll_family_0; }
inline void set_sll_family_0(uint16_t value)
{
___sll_family_0 = value;
}
inline static int32_t get_offset_of_sll_protocol_1() { return static_cast<int32_t>(offsetof(sockaddr_ll_t3978606313, ___sll_protocol_1)); }
inline uint16_t get_sll_protocol_1() const { return ___sll_protocol_1; }
inline uint16_t* get_address_of_sll_protocol_1() { return &___sll_protocol_1; }
inline void set_sll_protocol_1(uint16_t value)
{
___sll_protocol_1 = value;
}
inline static int32_t get_offset_of_sll_ifindex_2() { return static_cast<int32_t>(offsetof(sockaddr_ll_t3978606313, ___sll_ifindex_2)); }
inline int32_t get_sll_ifindex_2() const { return ___sll_ifindex_2; }
inline int32_t* get_address_of_sll_ifindex_2() { return &___sll_ifindex_2; }
inline void set_sll_ifindex_2(int32_t value)
{
___sll_ifindex_2 = value;
}
inline static int32_t get_offset_of_sll_hatype_3() { return static_cast<int32_t>(offsetof(sockaddr_ll_t3978606313, ___sll_hatype_3)); }
inline uint16_t get_sll_hatype_3() const { return ___sll_hatype_3; }
inline uint16_t* get_address_of_sll_hatype_3() { return &___sll_hatype_3; }
inline void set_sll_hatype_3(uint16_t value)
{
___sll_hatype_3 = value;
}
inline static int32_t get_offset_of_sll_pkttype_4() { return static_cast<int32_t>(offsetof(sockaddr_ll_t3978606313, ___sll_pkttype_4)); }
inline uint8_t get_sll_pkttype_4() const { return ___sll_pkttype_4; }
inline uint8_t* get_address_of_sll_pkttype_4() { return &___sll_pkttype_4; }
inline void set_sll_pkttype_4(uint8_t value)
{
___sll_pkttype_4 = value;
}
inline static int32_t get_offset_of_sll_halen_5() { return static_cast<int32_t>(offsetof(sockaddr_ll_t3978606313, ___sll_halen_5)); }
inline uint8_t get_sll_halen_5() const { return ___sll_halen_5; }
inline uint8_t* get_address_of_sll_halen_5() { return &___sll_halen_5; }
inline void set_sll_halen_5(uint8_t value)
{
___sll_halen_5 = value;
}
inline static int32_t get_offset_of_sll_addr_6() { return static_cast<int32_t>(offsetof(sockaddr_ll_t3978606313, ___sll_addr_6)); }
inline ByteU5BU5D_t4116647657* get_sll_addr_6() const { return ___sll_addr_6; }
inline ByteU5BU5D_t4116647657** get_address_of_sll_addr_6() { return &___sll_addr_6; }
inline void set_sll_addr_6(ByteU5BU5D_t4116647657* value)
{
___sll_addr_6 = value;
Il2CppCodeGenWriteBarrier((&___sll_addr_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.sockaddr_ll
struct sockaddr_ll_t3978606313_marshaled_pinvoke
{
uint16_t ___sll_family_0;
uint16_t ___sll_protocol_1;
int32_t ___sll_ifindex_2;
uint16_t ___sll_hatype_3;
uint8_t ___sll_pkttype_4;
uint8_t ___sll_halen_5;
uint8_t ___sll_addr_6[8];
};
// Native definition for COM marshalling of System.Net.NetworkInformation.sockaddr_ll
struct sockaddr_ll_t3978606313_marshaled_com
{
uint16_t ___sll_family_0;
uint16_t ___sll_protocol_1;
int32_t ___sll_ifindex_2;
uint16_t ___sll_hatype_3;
uint8_t ___sll_pkttype_4;
uint8_t ___sll_halen_5;
uint8_t ___sll_addr_6[8];
};
#endif // SOCKADDR_LL_T3978606313_H
#ifndef U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3057255362_H
#define U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3057255362_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_t3057255362 : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields
{
public:
// <PrivateImplementationDetails>/$ArrayType$3132 <PrivateImplementationDetails>::$$field-0
U24ArrayTypeU243132_t2732071529 ___U24U24fieldU2D0_0;
// <PrivateImplementationDetails>/$ArrayType$256 <PrivateImplementationDetails>::$$field-5
U24ArrayTypeU24256_t1929481983 ___U24U24fieldU2D5_1;
// <PrivateImplementationDetails>/$ArrayType$20 <PrivateImplementationDetails>::$$field-6
U24ArrayTypeU2420_t1704471046 ___U24U24fieldU2D6_2;
// <PrivateImplementationDetails>/$ArrayType$32 <PrivateImplementationDetails>::$$field-7
U24ArrayTypeU2432_t3652892011 ___U24U24fieldU2D7_3;
// <PrivateImplementationDetails>/$ArrayType$48 <PrivateImplementationDetails>::$$field-8
U24ArrayTypeU2448_t1337922364 ___U24U24fieldU2D8_4;
// <PrivateImplementationDetails>/$ArrayType$64 <PrivateImplementationDetails>::$$field-9
U24ArrayTypeU2464_t499776626 ___U24U24fieldU2D9_5;
// <PrivateImplementationDetails>/$ArrayType$64 <PrivateImplementationDetails>::$$field-11
U24ArrayTypeU2464_t499776626 ___U24U24fieldU2D11_6;
// <PrivateImplementationDetails>/$ArrayType$64 <PrivateImplementationDetails>::$$field-12
U24ArrayTypeU2464_t499776626 ___U24U24fieldU2D12_7;
// <PrivateImplementationDetails>/$ArrayType$64 <PrivateImplementationDetails>::$$field-13
U24ArrayTypeU2464_t499776626 ___U24U24fieldU2D13_8;
// <PrivateImplementationDetails>/$ArrayType$12 <PrivateImplementationDetails>::$$field-14
U24ArrayTypeU2412_t2490092597 ___U24U24fieldU2D14_9;
// <PrivateImplementationDetails>/$ArrayType$12 <PrivateImplementationDetails>::$$field-15
U24ArrayTypeU2412_t2490092597 ___U24U24fieldU2D15_10;
// <PrivateImplementationDetails>/$ArrayType$12 <PrivateImplementationDetails>::$$field-16
U24ArrayTypeU2412_t2490092597 ___U24U24fieldU2D16_11;
// <PrivateImplementationDetails>/$ArrayType$16 <PrivateImplementationDetails>::$$field-17
U24ArrayTypeU2416_t3254766645 ___U24U24fieldU2D17_12;
// <PrivateImplementationDetails>/$ArrayType$4 <PrivateImplementationDetails>::$$field-21
U24ArrayTypeU244_t1630999355 ___U24U24fieldU2D21_13;
// <PrivateImplementationDetails>/$ArrayType$4 <PrivateImplementationDetails>::$$field-22
U24ArrayTypeU244_t1630999355 ___U24U24fieldU2D22_14;
public:
inline static int32_t get_offset_of_U24U24fieldU2D0_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D0_0)); }
inline U24ArrayTypeU243132_t2732071529 get_U24U24fieldU2D0_0() const { return ___U24U24fieldU2D0_0; }
inline U24ArrayTypeU243132_t2732071529 * get_address_of_U24U24fieldU2D0_0() { return &___U24U24fieldU2D0_0; }
inline void set_U24U24fieldU2D0_0(U24ArrayTypeU243132_t2732071529 value)
{
___U24U24fieldU2D0_0 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D5_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D5_1)); }
inline U24ArrayTypeU24256_t1929481983 get_U24U24fieldU2D5_1() const { return ___U24U24fieldU2D5_1; }
inline U24ArrayTypeU24256_t1929481983 * get_address_of_U24U24fieldU2D5_1() { return &___U24U24fieldU2D5_1; }
inline void set_U24U24fieldU2D5_1(U24ArrayTypeU24256_t1929481983 value)
{
___U24U24fieldU2D5_1 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D6_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D6_2)); }
inline U24ArrayTypeU2420_t1704471046 get_U24U24fieldU2D6_2() const { return ___U24U24fieldU2D6_2; }
inline U24ArrayTypeU2420_t1704471046 * get_address_of_U24U24fieldU2D6_2() { return &___U24U24fieldU2D6_2; }
inline void set_U24U24fieldU2D6_2(U24ArrayTypeU2420_t1704471046 value)
{
___U24U24fieldU2D6_2 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D7_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D7_3)); }
inline U24ArrayTypeU2432_t3652892011 get_U24U24fieldU2D7_3() const { return ___U24U24fieldU2D7_3; }
inline U24ArrayTypeU2432_t3652892011 * get_address_of_U24U24fieldU2D7_3() { return &___U24U24fieldU2D7_3; }
inline void set_U24U24fieldU2D7_3(U24ArrayTypeU2432_t3652892011 value)
{
___U24U24fieldU2D7_3 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D8_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D8_4)); }
inline U24ArrayTypeU2448_t1337922364 get_U24U24fieldU2D8_4() const { return ___U24U24fieldU2D8_4; }
inline U24ArrayTypeU2448_t1337922364 * get_address_of_U24U24fieldU2D8_4() { return &___U24U24fieldU2D8_4; }
inline void set_U24U24fieldU2D8_4(U24ArrayTypeU2448_t1337922364 value)
{
___U24U24fieldU2D8_4 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D9_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D9_5)); }
inline U24ArrayTypeU2464_t499776626 get_U24U24fieldU2D9_5() const { return ___U24U24fieldU2D9_5; }
inline U24ArrayTypeU2464_t499776626 * get_address_of_U24U24fieldU2D9_5() { return &___U24U24fieldU2D9_5; }
inline void set_U24U24fieldU2D9_5(U24ArrayTypeU2464_t499776626 value)
{
___U24U24fieldU2D9_5 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D11_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D11_6)); }
inline U24ArrayTypeU2464_t499776626 get_U24U24fieldU2D11_6() const { return ___U24U24fieldU2D11_6; }
inline U24ArrayTypeU2464_t499776626 * get_address_of_U24U24fieldU2D11_6() { return &___U24U24fieldU2D11_6; }
inline void set_U24U24fieldU2D11_6(U24ArrayTypeU2464_t499776626 value)
{
___U24U24fieldU2D11_6 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D12_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D12_7)); }
inline U24ArrayTypeU2464_t499776626 get_U24U24fieldU2D12_7() const { return ___U24U24fieldU2D12_7; }
inline U24ArrayTypeU2464_t499776626 * get_address_of_U24U24fieldU2D12_7() { return &___U24U24fieldU2D12_7; }
inline void set_U24U24fieldU2D12_7(U24ArrayTypeU2464_t499776626 value)
{
___U24U24fieldU2D12_7 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D13_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D13_8)); }
inline U24ArrayTypeU2464_t499776626 get_U24U24fieldU2D13_8() const { return ___U24U24fieldU2D13_8; }
inline U24ArrayTypeU2464_t499776626 * get_address_of_U24U24fieldU2D13_8() { return &___U24U24fieldU2D13_8; }
inline void set_U24U24fieldU2D13_8(U24ArrayTypeU2464_t499776626 value)
{
___U24U24fieldU2D13_8 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D14_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D14_9)); }
inline U24ArrayTypeU2412_t2490092597 get_U24U24fieldU2D14_9() const { return ___U24U24fieldU2D14_9; }
inline U24ArrayTypeU2412_t2490092597 * get_address_of_U24U24fieldU2D14_9() { return &___U24U24fieldU2D14_9; }
inline void set_U24U24fieldU2D14_9(U24ArrayTypeU2412_t2490092597 value)
{
___U24U24fieldU2D14_9 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D15_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D15_10)); }
inline U24ArrayTypeU2412_t2490092597 get_U24U24fieldU2D15_10() const { return ___U24U24fieldU2D15_10; }
inline U24ArrayTypeU2412_t2490092597 * get_address_of_U24U24fieldU2D15_10() { return &___U24U24fieldU2D15_10; }
inline void set_U24U24fieldU2D15_10(U24ArrayTypeU2412_t2490092597 value)
{
___U24U24fieldU2D15_10 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D16_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D16_11)); }
inline U24ArrayTypeU2412_t2490092597 get_U24U24fieldU2D16_11() const { return ___U24U24fieldU2D16_11; }
inline U24ArrayTypeU2412_t2490092597 * get_address_of_U24U24fieldU2D16_11() { return &___U24U24fieldU2D16_11; }
inline void set_U24U24fieldU2D16_11(U24ArrayTypeU2412_t2490092597 value)
{
___U24U24fieldU2D16_11 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D17_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D17_12)); }
inline U24ArrayTypeU2416_t3254766645 get_U24U24fieldU2D17_12() const { return ___U24U24fieldU2D17_12; }
inline U24ArrayTypeU2416_t3254766645 * get_address_of_U24U24fieldU2D17_12() { return &___U24U24fieldU2D17_12; }
inline void set_U24U24fieldU2D17_12(U24ArrayTypeU2416_t3254766645 value)
{
___U24U24fieldU2D17_12 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D21_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D21_13)); }
inline U24ArrayTypeU244_t1630999355 get_U24U24fieldU2D21_13() const { return ___U24U24fieldU2D21_13; }
inline U24ArrayTypeU244_t1630999355 * get_address_of_U24U24fieldU2D21_13() { return &___U24U24fieldU2D21_13; }
inline void set_U24U24fieldU2D21_13(U24ArrayTypeU244_t1630999355 value)
{
___U24U24fieldU2D21_13 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D22_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields, ___U24U24fieldU2D22_14)); }
inline U24ArrayTypeU244_t1630999355 get_U24U24fieldU2D22_14() const { return ___U24U24fieldU2D22_14; }
inline U24ArrayTypeU244_t1630999355 * get_address_of_U24U24fieldU2D22_14() { return &___U24U24fieldU2D22_14; }
inline void set_U24U24fieldU2D22_14(U24ArrayTypeU244_t1630999355 value)
{
___U24U24fieldU2D22_14 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3057255362_H
#ifndef LINUXARPHARDWARE_T827080684_H
#define LINUXARPHARDWARE_T827080684_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.LinuxArpHardware
struct LinuxArpHardware_t827080684
{
public:
// System.Int32 System.Net.NetworkInformation.LinuxArpHardware::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(LinuxArpHardware_t827080684, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LINUXARPHARDWARE_T827080684_H
#ifndef CONTEXT_T3971234707_H
#define CONTEXT_T3971234707_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Context
struct Context_t3971234707 : public RuntimeObject
{
public:
// Mono.Security.Protocol.Tls.SecurityProtocolType Mono.Security.Protocol.Tls.Context::securityProtocol
int32_t ___securityProtocol_0;
// System.Byte[] Mono.Security.Protocol.Tls.Context::sessionId
ByteU5BU5D_t4116647657* ___sessionId_1;
// Mono.Security.Protocol.Tls.SecurityCompressionType Mono.Security.Protocol.Tls.Context::compressionMethod
int32_t ___compressionMethod_2;
// Mono.Security.Protocol.Tls.TlsServerSettings Mono.Security.Protocol.Tls.Context::serverSettings
TlsServerSettings_t4144396432 * ___serverSettings_3;
// Mono.Security.Protocol.Tls.TlsClientSettings Mono.Security.Protocol.Tls.Context::clientSettings
TlsClientSettings_t2486039503 * ___clientSettings_4;
// Mono.Security.Protocol.Tls.SecurityParameters Mono.Security.Protocol.Tls.Context::current
SecurityParameters_t2199972650 * ___current_5;
// Mono.Security.Protocol.Tls.SecurityParameters Mono.Security.Protocol.Tls.Context::negotiating
SecurityParameters_t2199972650 * ___negotiating_6;
// Mono.Security.Protocol.Tls.SecurityParameters Mono.Security.Protocol.Tls.Context::read
SecurityParameters_t2199972650 * ___read_7;
// Mono.Security.Protocol.Tls.SecurityParameters Mono.Security.Protocol.Tls.Context::write
SecurityParameters_t2199972650 * ___write_8;
// Mono.Security.Protocol.Tls.CipherSuiteCollection Mono.Security.Protocol.Tls.Context::supportedCiphers
CipherSuiteCollection_t1129639304 * ___supportedCiphers_9;
// Mono.Security.Protocol.Tls.Handshake.HandshakeType Mono.Security.Protocol.Tls.Context::lastHandshakeMsg
uint8_t ___lastHandshakeMsg_10;
// Mono.Security.Protocol.Tls.HandshakeState Mono.Security.Protocol.Tls.Context::handshakeState
int32_t ___handshakeState_11;
// System.Boolean Mono.Security.Protocol.Tls.Context::abbreviatedHandshake
bool ___abbreviatedHandshake_12;
// System.Boolean Mono.Security.Protocol.Tls.Context::receivedConnectionEnd
bool ___receivedConnectionEnd_13;
// System.Boolean Mono.Security.Protocol.Tls.Context::sentConnectionEnd
bool ___sentConnectionEnd_14;
// System.Boolean Mono.Security.Protocol.Tls.Context::protocolNegotiated
bool ___protocolNegotiated_15;
// System.UInt64 Mono.Security.Protocol.Tls.Context::writeSequenceNumber
uint64_t ___writeSequenceNumber_16;
// System.UInt64 Mono.Security.Protocol.Tls.Context::readSequenceNumber
uint64_t ___readSequenceNumber_17;
// System.Byte[] Mono.Security.Protocol.Tls.Context::clientRandom
ByteU5BU5D_t4116647657* ___clientRandom_18;
// System.Byte[] Mono.Security.Protocol.Tls.Context::serverRandom
ByteU5BU5D_t4116647657* ___serverRandom_19;
// System.Byte[] Mono.Security.Protocol.Tls.Context::randomCS
ByteU5BU5D_t4116647657* ___randomCS_20;
// System.Byte[] Mono.Security.Protocol.Tls.Context::randomSC
ByteU5BU5D_t4116647657* ___randomSC_21;
// System.Byte[] Mono.Security.Protocol.Tls.Context::masterSecret
ByteU5BU5D_t4116647657* ___masterSecret_22;
// System.Byte[] Mono.Security.Protocol.Tls.Context::clientWriteKey
ByteU5BU5D_t4116647657* ___clientWriteKey_23;
// System.Byte[] Mono.Security.Protocol.Tls.Context::serverWriteKey
ByteU5BU5D_t4116647657* ___serverWriteKey_24;
// System.Byte[] Mono.Security.Protocol.Tls.Context::clientWriteIV
ByteU5BU5D_t4116647657* ___clientWriteIV_25;
// System.Byte[] Mono.Security.Protocol.Tls.Context::serverWriteIV
ByteU5BU5D_t4116647657* ___serverWriteIV_26;
// Mono.Security.Protocol.Tls.TlsStream Mono.Security.Protocol.Tls.Context::handshakeMessages
TlsStream_t2365453965 * ___handshakeMessages_27;
// System.Security.Cryptography.RandomNumberGenerator Mono.Security.Protocol.Tls.Context::random
RandomNumberGenerator_t386037858 * ___random_28;
// Mono.Security.Protocol.Tls.RecordProtocol Mono.Security.Protocol.Tls.Context::recordProtocol
RecordProtocol_t3759049701 * ___recordProtocol_29;
public:
inline static int32_t get_offset_of_securityProtocol_0() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___securityProtocol_0)); }
inline int32_t get_securityProtocol_0() const { return ___securityProtocol_0; }
inline int32_t* get_address_of_securityProtocol_0() { return &___securityProtocol_0; }
inline void set_securityProtocol_0(int32_t value)
{
___securityProtocol_0 = value;
}
inline static int32_t get_offset_of_sessionId_1() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___sessionId_1)); }
inline ByteU5BU5D_t4116647657* get_sessionId_1() const { return ___sessionId_1; }
inline ByteU5BU5D_t4116647657** get_address_of_sessionId_1() { return &___sessionId_1; }
inline void set_sessionId_1(ByteU5BU5D_t4116647657* value)
{
___sessionId_1 = value;
Il2CppCodeGenWriteBarrier((&___sessionId_1), value);
}
inline static int32_t get_offset_of_compressionMethod_2() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___compressionMethod_2)); }
inline int32_t get_compressionMethod_2() const { return ___compressionMethod_2; }
inline int32_t* get_address_of_compressionMethod_2() { return &___compressionMethod_2; }
inline void set_compressionMethod_2(int32_t value)
{
___compressionMethod_2 = value;
}
inline static int32_t get_offset_of_serverSettings_3() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___serverSettings_3)); }
inline TlsServerSettings_t4144396432 * get_serverSettings_3() const { return ___serverSettings_3; }
inline TlsServerSettings_t4144396432 ** get_address_of_serverSettings_3() { return &___serverSettings_3; }
inline void set_serverSettings_3(TlsServerSettings_t4144396432 * value)
{
___serverSettings_3 = value;
Il2CppCodeGenWriteBarrier((&___serverSettings_3), value);
}
inline static int32_t get_offset_of_clientSettings_4() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___clientSettings_4)); }
inline TlsClientSettings_t2486039503 * get_clientSettings_4() const { return ___clientSettings_4; }
inline TlsClientSettings_t2486039503 ** get_address_of_clientSettings_4() { return &___clientSettings_4; }
inline void set_clientSettings_4(TlsClientSettings_t2486039503 * value)
{
___clientSettings_4 = value;
Il2CppCodeGenWriteBarrier((&___clientSettings_4), value);
}
inline static int32_t get_offset_of_current_5() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___current_5)); }
inline SecurityParameters_t2199972650 * get_current_5() const { return ___current_5; }
inline SecurityParameters_t2199972650 ** get_address_of_current_5() { return &___current_5; }
inline void set_current_5(SecurityParameters_t2199972650 * value)
{
___current_5 = value;
Il2CppCodeGenWriteBarrier((&___current_5), value);
}
inline static int32_t get_offset_of_negotiating_6() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___negotiating_6)); }
inline SecurityParameters_t2199972650 * get_negotiating_6() const { return ___negotiating_6; }
inline SecurityParameters_t2199972650 ** get_address_of_negotiating_6() { return &___negotiating_6; }
inline void set_negotiating_6(SecurityParameters_t2199972650 * value)
{
___negotiating_6 = value;
Il2CppCodeGenWriteBarrier((&___negotiating_6), value);
}
inline static int32_t get_offset_of_read_7() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___read_7)); }
inline SecurityParameters_t2199972650 * get_read_7() const { return ___read_7; }
inline SecurityParameters_t2199972650 ** get_address_of_read_7() { return &___read_7; }
inline void set_read_7(SecurityParameters_t2199972650 * value)
{
___read_7 = value;
Il2CppCodeGenWriteBarrier((&___read_7), value);
}
inline static int32_t get_offset_of_write_8() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___write_8)); }
inline SecurityParameters_t2199972650 * get_write_8() const { return ___write_8; }
inline SecurityParameters_t2199972650 ** get_address_of_write_8() { return &___write_8; }
inline void set_write_8(SecurityParameters_t2199972650 * value)
{
___write_8 = value;
Il2CppCodeGenWriteBarrier((&___write_8), value);
}
inline static int32_t get_offset_of_supportedCiphers_9() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___supportedCiphers_9)); }
inline CipherSuiteCollection_t1129639304 * get_supportedCiphers_9() const { return ___supportedCiphers_9; }
inline CipherSuiteCollection_t1129639304 ** get_address_of_supportedCiphers_9() { return &___supportedCiphers_9; }
inline void set_supportedCiphers_9(CipherSuiteCollection_t1129639304 * value)
{
___supportedCiphers_9 = value;
Il2CppCodeGenWriteBarrier((&___supportedCiphers_9), value);
}
inline static int32_t get_offset_of_lastHandshakeMsg_10() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___lastHandshakeMsg_10)); }
inline uint8_t get_lastHandshakeMsg_10() const { return ___lastHandshakeMsg_10; }
inline uint8_t* get_address_of_lastHandshakeMsg_10() { return &___lastHandshakeMsg_10; }
inline void set_lastHandshakeMsg_10(uint8_t value)
{
___lastHandshakeMsg_10 = value;
}
inline static int32_t get_offset_of_handshakeState_11() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___handshakeState_11)); }
inline int32_t get_handshakeState_11() const { return ___handshakeState_11; }
inline int32_t* get_address_of_handshakeState_11() { return &___handshakeState_11; }
inline void set_handshakeState_11(int32_t value)
{
___handshakeState_11 = value;
}
inline static int32_t get_offset_of_abbreviatedHandshake_12() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___abbreviatedHandshake_12)); }
inline bool get_abbreviatedHandshake_12() const { return ___abbreviatedHandshake_12; }
inline bool* get_address_of_abbreviatedHandshake_12() { return &___abbreviatedHandshake_12; }
inline void set_abbreviatedHandshake_12(bool value)
{
___abbreviatedHandshake_12 = value;
}
inline static int32_t get_offset_of_receivedConnectionEnd_13() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___receivedConnectionEnd_13)); }
inline bool get_receivedConnectionEnd_13() const { return ___receivedConnectionEnd_13; }
inline bool* get_address_of_receivedConnectionEnd_13() { return &___receivedConnectionEnd_13; }
inline void set_receivedConnectionEnd_13(bool value)
{
___receivedConnectionEnd_13 = value;
}
inline static int32_t get_offset_of_sentConnectionEnd_14() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___sentConnectionEnd_14)); }
inline bool get_sentConnectionEnd_14() const { return ___sentConnectionEnd_14; }
inline bool* get_address_of_sentConnectionEnd_14() { return &___sentConnectionEnd_14; }
inline void set_sentConnectionEnd_14(bool value)
{
___sentConnectionEnd_14 = value;
}
inline static int32_t get_offset_of_protocolNegotiated_15() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___protocolNegotiated_15)); }
inline bool get_protocolNegotiated_15() const { return ___protocolNegotiated_15; }
inline bool* get_address_of_protocolNegotiated_15() { return &___protocolNegotiated_15; }
inline void set_protocolNegotiated_15(bool value)
{
___protocolNegotiated_15 = value;
}
inline static int32_t get_offset_of_writeSequenceNumber_16() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___writeSequenceNumber_16)); }
inline uint64_t get_writeSequenceNumber_16() const { return ___writeSequenceNumber_16; }
inline uint64_t* get_address_of_writeSequenceNumber_16() { return &___writeSequenceNumber_16; }
inline void set_writeSequenceNumber_16(uint64_t value)
{
___writeSequenceNumber_16 = value;
}
inline static int32_t get_offset_of_readSequenceNumber_17() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___readSequenceNumber_17)); }
inline uint64_t get_readSequenceNumber_17() const { return ___readSequenceNumber_17; }
inline uint64_t* get_address_of_readSequenceNumber_17() { return &___readSequenceNumber_17; }
inline void set_readSequenceNumber_17(uint64_t value)
{
___readSequenceNumber_17 = value;
}
inline static int32_t get_offset_of_clientRandom_18() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___clientRandom_18)); }
inline ByteU5BU5D_t4116647657* get_clientRandom_18() const { return ___clientRandom_18; }
inline ByteU5BU5D_t4116647657** get_address_of_clientRandom_18() { return &___clientRandom_18; }
inline void set_clientRandom_18(ByteU5BU5D_t4116647657* value)
{
___clientRandom_18 = value;
Il2CppCodeGenWriteBarrier((&___clientRandom_18), value);
}
inline static int32_t get_offset_of_serverRandom_19() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___serverRandom_19)); }
inline ByteU5BU5D_t4116647657* get_serverRandom_19() const { return ___serverRandom_19; }
inline ByteU5BU5D_t4116647657** get_address_of_serverRandom_19() { return &___serverRandom_19; }
inline void set_serverRandom_19(ByteU5BU5D_t4116647657* value)
{
___serverRandom_19 = value;
Il2CppCodeGenWriteBarrier((&___serverRandom_19), value);
}
inline static int32_t get_offset_of_randomCS_20() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___randomCS_20)); }
inline ByteU5BU5D_t4116647657* get_randomCS_20() const { return ___randomCS_20; }
inline ByteU5BU5D_t4116647657** get_address_of_randomCS_20() { return &___randomCS_20; }
inline void set_randomCS_20(ByteU5BU5D_t4116647657* value)
{
___randomCS_20 = value;
Il2CppCodeGenWriteBarrier((&___randomCS_20), value);
}
inline static int32_t get_offset_of_randomSC_21() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___randomSC_21)); }
inline ByteU5BU5D_t4116647657* get_randomSC_21() const { return ___randomSC_21; }
inline ByteU5BU5D_t4116647657** get_address_of_randomSC_21() { return &___randomSC_21; }
inline void set_randomSC_21(ByteU5BU5D_t4116647657* value)
{
___randomSC_21 = value;
Il2CppCodeGenWriteBarrier((&___randomSC_21), value);
}
inline static int32_t get_offset_of_masterSecret_22() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___masterSecret_22)); }
inline ByteU5BU5D_t4116647657* get_masterSecret_22() const { return ___masterSecret_22; }
inline ByteU5BU5D_t4116647657** get_address_of_masterSecret_22() { return &___masterSecret_22; }
inline void set_masterSecret_22(ByteU5BU5D_t4116647657* value)
{
___masterSecret_22 = value;
Il2CppCodeGenWriteBarrier((&___masterSecret_22), value);
}
inline static int32_t get_offset_of_clientWriteKey_23() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___clientWriteKey_23)); }
inline ByteU5BU5D_t4116647657* get_clientWriteKey_23() const { return ___clientWriteKey_23; }
inline ByteU5BU5D_t4116647657** get_address_of_clientWriteKey_23() { return &___clientWriteKey_23; }
inline void set_clientWriteKey_23(ByteU5BU5D_t4116647657* value)
{
___clientWriteKey_23 = value;
Il2CppCodeGenWriteBarrier((&___clientWriteKey_23), value);
}
inline static int32_t get_offset_of_serverWriteKey_24() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___serverWriteKey_24)); }
inline ByteU5BU5D_t4116647657* get_serverWriteKey_24() const { return ___serverWriteKey_24; }
inline ByteU5BU5D_t4116647657** get_address_of_serverWriteKey_24() { return &___serverWriteKey_24; }
inline void set_serverWriteKey_24(ByteU5BU5D_t4116647657* value)
{
___serverWriteKey_24 = value;
Il2CppCodeGenWriteBarrier((&___serverWriteKey_24), value);
}
inline static int32_t get_offset_of_clientWriteIV_25() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___clientWriteIV_25)); }
inline ByteU5BU5D_t4116647657* get_clientWriteIV_25() const { return ___clientWriteIV_25; }
inline ByteU5BU5D_t4116647657** get_address_of_clientWriteIV_25() { return &___clientWriteIV_25; }
inline void set_clientWriteIV_25(ByteU5BU5D_t4116647657* value)
{
___clientWriteIV_25 = value;
Il2CppCodeGenWriteBarrier((&___clientWriteIV_25), value);
}
inline static int32_t get_offset_of_serverWriteIV_26() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___serverWriteIV_26)); }
inline ByteU5BU5D_t4116647657* get_serverWriteIV_26() const { return ___serverWriteIV_26; }
inline ByteU5BU5D_t4116647657** get_address_of_serverWriteIV_26() { return &___serverWriteIV_26; }
inline void set_serverWriteIV_26(ByteU5BU5D_t4116647657* value)
{
___serverWriteIV_26 = value;
Il2CppCodeGenWriteBarrier((&___serverWriteIV_26), value);
}
inline static int32_t get_offset_of_handshakeMessages_27() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___handshakeMessages_27)); }
inline TlsStream_t2365453965 * get_handshakeMessages_27() const { return ___handshakeMessages_27; }
inline TlsStream_t2365453965 ** get_address_of_handshakeMessages_27() { return &___handshakeMessages_27; }
inline void set_handshakeMessages_27(TlsStream_t2365453965 * value)
{
___handshakeMessages_27 = value;
Il2CppCodeGenWriteBarrier((&___handshakeMessages_27), value);
}
inline static int32_t get_offset_of_random_28() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___random_28)); }
inline RandomNumberGenerator_t386037858 * get_random_28() const { return ___random_28; }
inline RandomNumberGenerator_t386037858 ** get_address_of_random_28() { return &___random_28; }
inline void set_random_28(RandomNumberGenerator_t386037858 * value)
{
___random_28 = value;
Il2CppCodeGenWriteBarrier((&___random_28), value);
}
inline static int32_t get_offset_of_recordProtocol_29() { return static_cast<int32_t>(offsetof(Context_t3971234707, ___recordProtocol_29)); }
inline RecordProtocol_t3759049701 * get_recordProtocol_29() const { return ___recordProtocol_29; }
inline RecordProtocol_t3759049701 ** get_address_of_recordProtocol_29() { return &___recordProtocol_29; }
inline void set_recordProtocol_29(RecordProtocol_t3759049701 * value)
{
___recordProtocol_29 = value;
Il2CppCodeGenWriteBarrier((&___recordProtocol_29), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONTEXT_T3971234707_H
#ifndef CIPHERSUITE_T3414744575_H
#define CIPHERSUITE_T3414744575_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.CipherSuite
struct CipherSuite_t3414744575 : public RuntimeObject
{
public:
// System.Int16 Mono.Security.Protocol.Tls.CipherSuite::code
int16_t ___code_1;
// System.String Mono.Security.Protocol.Tls.CipherSuite::name
String_t* ___name_2;
// Mono.Security.Protocol.Tls.CipherAlgorithmType Mono.Security.Protocol.Tls.CipherSuite::cipherAlgorithmType
int32_t ___cipherAlgorithmType_3;
// Mono.Security.Protocol.Tls.HashAlgorithmType Mono.Security.Protocol.Tls.CipherSuite::hashAlgorithmType
int32_t ___hashAlgorithmType_4;
// Mono.Security.Protocol.Tls.ExchangeAlgorithmType Mono.Security.Protocol.Tls.CipherSuite::exchangeAlgorithmType
int32_t ___exchangeAlgorithmType_5;
// System.Boolean Mono.Security.Protocol.Tls.CipherSuite::isExportable
bool ___isExportable_6;
// System.Security.Cryptography.CipherMode Mono.Security.Protocol.Tls.CipherSuite::cipherMode
int32_t ___cipherMode_7;
// System.Byte Mono.Security.Protocol.Tls.CipherSuite::keyMaterialSize
uint8_t ___keyMaterialSize_8;
// System.Int32 Mono.Security.Protocol.Tls.CipherSuite::keyBlockSize
int32_t ___keyBlockSize_9;
// System.Byte Mono.Security.Protocol.Tls.CipherSuite::expandedKeyMaterialSize
uint8_t ___expandedKeyMaterialSize_10;
// System.Int16 Mono.Security.Protocol.Tls.CipherSuite::effectiveKeyBits
int16_t ___effectiveKeyBits_11;
// System.Byte Mono.Security.Protocol.Tls.CipherSuite::ivSize
uint8_t ___ivSize_12;
// System.Byte Mono.Security.Protocol.Tls.CipherSuite::blockSize
uint8_t ___blockSize_13;
// Mono.Security.Protocol.Tls.Context Mono.Security.Protocol.Tls.CipherSuite::context
Context_t3971234707 * ___context_14;
// System.Security.Cryptography.SymmetricAlgorithm Mono.Security.Protocol.Tls.CipherSuite::encryptionAlgorithm
SymmetricAlgorithm_t4254223087 * ___encryptionAlgorithm_15;
// System.Security.Cryptography.ICryptoTransform Mono.Security.Protocol.Tls.CipherSuite::encryptionCipher
RuntimeObject* ___encryptionCipher_16;
// System.Security.Cryptography.SymmetricAlgorithm Mono.Security.Protocol.Tls.CipherSuite::decryptionAlgorithm
SymmetricAlgorithm_t4254223087 * ___decryptionAlgorithm_17;
// System.Security.Cryptography.ICryptoTransform Mono.Security.Protocol.Tls.CipherSuite::decryptionCipher
RuntimeObject* ___decryptionCipher_18;
// System.Security.Cryptography.KeyedHashAlgorithm Mono.Security.Protocol.Tls.CipherSuite::clientHMAC
KeyedHashAlgorithm_t112861511 * ___clientHMAC_19;
// System.Security.Cryptography.KeyedHashAlgorithm Mono.Security.Protocol.Tls.CipherSuite::serverHMAC
KeyedHashAlgorithm_t112861511 * ___serverHMAC_20;
public:
inline static int32_t get_offset_of_code_1() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___code_1)); }
inline int16_t get_code_1() const { return ___code_1; }
inline int16_t* get_address_of_code_1() { return &___code_1; }
inline void set_code_1(int16_t value)
{
___code_1 = value;
}
inline static int32_t get_offset_of_name_2() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___name_2)); }
inline String_t* get_name_2() const { return ___name_2; }
inline String_t** get_address_of_name_2() { return &___name_2; }
inline void set_name_2(String_t* value)
{
___name_2 = value;
Il2CppCodeGenWriteBarrier((&___name_2), value);
}
inline static int32_t get_offset_of_cipherAlgorithmType_3() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___cipherAlgorithmType_3)); }
inline int32_t get_cipherAlgorithmType_3() const { return ___cipherAlgorithmType_3; }
inline int32_t* get_address_of_cipherAlgorithmType_3() { return &___cipherAlgorithmType_3; }
inline void set_cipherAlgorithmType_3(int32_t value)
{
___cipherAlgorithmType_3 = value;
}
inline static int32_t get_offset_of_hashAlgorithmType_4() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___hashAlgorithmType_4)); }
inline int32_t get_hashAlgorithmType_4() const { return ___hashAlgorithmType_4; }
inline int32_t* get_address_of_hashAlgorithmType_4() { return &___hashAlgorithmType_4; }
inline void set_hashAlgorithmType_4(int32_t value)
{
___hashAlgorithmType_4 = value;
}
inline static int32_t get_offset_of_exchangeAlgorithmType_5() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___exchangeAlgorithmType_5)); }
inline int32_t get_exchangeAlgorithmType_5() const { return ___exchangeAlgorithmType_5; }
inline int32_t* get_address_of_exchangeAlgorithmType_5() { return &___exchangeAlgorithmType_5; }
inline void set_exchangeAlgorithmType_5(int32_t value)
{
___exchangeAlgorithmType_5 = value;
}
inline static int32_t get_offset_of_isExportable_6() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___isExportable_6)); }
inline bool get_isExportable_6() const { return ___isExportable_6; }
inline bool* get_address_of_isExportable_6() { return &___isExportable_6; }
inline void set_isExportable_6(bool value)
{
___isExportable_6 = value;
}
inline static int32_t get_offset_of_cipherMode_7() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___cipherMode_7)); }
inline int32_t get_cipherMode_7() const { return ___cipherMode_7; }
inline int32_t* get_address_of_cipherMode_7() { return &___cipherMode_7; }
inline void set_cipherMode_7(int32_t value)
{
___cipherMode_7 = value;
}
inline static int32_t get_offset_of_keyMaterialSize_8() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___keyMaterialSize_8)); }
inline uint8_t get_keyMaterialSize_8() const { return ___keyMaterialSize_8; }
inline uint8_t* get_address_of_keyMaterialSize_8() { return &___keyMaterialSize_8; }
inline void set_keyMaterialSize_8(uint8_t value)
{
___keyMaterialSize_8 = value;
}
inline static int32_t get_offset_of_keyBlockSize_9() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___keyBlockSize_9)); }
inline int32_t get_keyBlockSize_9() const { return ___keyBlockSize_9; }
inline int32_t* get_address_of_keyBlockSize_9() { return &___keyBlockSize_9; }
inline void set_keyBlockSize_9(int32_t value)
{
___keyBlockSize_9 = value;
}
inline static int32_t get_offset_of_expandedKeyMaterialSize_10() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___expandedKeyMaterialSize_10)); }
inline uint8_t get_expandedKeyMaterialSize_10() const { return ___expandedKeyMaterialSize_10; }
inline uint8_t* get_address_of_expandedKeyMaterialSize_10() { return &___expandedKeyMaterialSize_10; }
inline void set_expandedKeyMaterialSize_10(uint8_t value)
{
___expandedKeyMaterialSize_10 = value;
}
inline static int32_t get_offset_of_effectiveKeyBits_11() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___effectiveKeyBits_11)); }
inline int16_t get_effectiveKeyBits_11() const { return ___effectiveKeyBits_11; }
inline int16_t* get_address_of_effectiveKeyBits_11() { return &___effectiveKeyBits_11; }
inline void set_effectiveKeyBits_11(int16_t value)
{
___effectiveKeyBits_11 = value;
}
inline static int32_t get_offset_of_ivSize_12() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___ivSize_12)); }
inline uint8_t get_ivSize_12() const { return ___ivSize_12; }
inline uint8_t* get_address_of_ivSize_12() { return &___ivSize_12; }
inline void set_ivSize_12(uint8_t value)
{
___ivSize_12 = value;
}
inline static int32_t get_offset_of_blockSize_13() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___blockSize_13)); }
inline uint8_t get_blockSize_13() const { return ___blockSize_13; }
inline uint8_t* get_address_of_blockSize_13() { return &___blockSize_13; }
inline void set_blockSize_13(uint8_t value)
{
___blockSize_13 = value;
}
inline static int32_t get_offset_of_context_14() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___context_14)); }
inline Context_t3971234707 * get_context_14() const { return ___context_14; }
inline Context_t3971234707 ** get_address_of_context_14() { return &___context_14; }
inline void set_context_14(Context_t3971234707 * value)
{
___context_14 = value;
Il2CppCodeGenWriteBarrier((&___context_14), value);
}
inline static int32_t get_offset_of_encryptionAlgorithm_15() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___encryptionAlgorithm_15)); }
inline SymmetricAlgorithm_t4254223087 * get_encryptionAlgorithm_15() const { return ___encryptionAlgorithm_15; }
inline SymmetricAlgorithm_t4254223087 ** get_address_of_encryptionAlgorithm_15() { return &___encryptionAlgorithm_15; }
inline void set_encryptionAlgorithm_15(SymmetricAlgorithm_t4254223087 * value)
{
___encryptionAlgorithm_15 = value;
Il2CppCodeGenWriteBarrier((&___encryptionAlgorithm_15), value);
}
inline static int32_t get_offset_of_encryptionCipher_16() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___encryptionCipher_16)); }
inline RuntimeObject* get_encryptionCipher_16() const { return ___encryptionCipher_16; }
inline RuntimeObject** get_address_of_encryptionCipher_16() { return &___encryptionCipher_16; }
inline void set_encryptionCipher_16(RuntimeObject* value)
{
___encryptionCipher_16 = value;
Il2CppCodeGenWriteBarrier((&___encryptionCipher_16), value);
}
inline static int32_t get_offset_of_decryptionAlgorithm_17() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___decryptionAlgorithm_17)); }
inline SymmetricAlgorithm_t4254223087 * get_decryptionAlgorithm_17() const { return ___decryptionAlgorithm_17; }
inline SymmetricAlgorithm_t4254223087 ** get_address_of_decryptionAlgorithm_17() { return &___decryptionAlgorithm_17; }
inline void set_decryptionAlgorithm_17(SymmetricAlgorithm_t4254223087 * value)
{
___decryptionAlgorithm_17 = value;
Il2CppCodeGenWriteBarrier((&___decryptionAlgorithm_17), value);
}
inline static int32_t get_offset_of_decryptionCipher_18() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___decryptionCipher_18)); }
inline RuntimeObject* get_decryptionCipher_18() const { return ___decryptionCipher_18; }
inline RuntimeObject** get_address_of_decryptionCipher_18() { return &___decryptionCipher_18; }
inline void set_decryptionCipher_18(RuntimeObject* value)
{
___decryptionCipher_18 = value;
Il2CppCodeGenWriteBarrier((&___decryptionCipher_18), value);
}
inline static int32_t get_offset_of_clientHMAC_19() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___clientHMAC_19)); }
inline KeyedHashAlgorithm_t112861511 * get_clientHMAC_19() const { return ___clientHMAC_19; }
inline KeyedHashAlgorithm_t112861511 ** get_address_of_clientHMAC_19() { return &___clientHMAC_19; }
inline void set_clientHMAC_19(KeyedHashAlgorithm_t112861511 * value)
{
___clientHMAC_19 = value;
Il2CppCodeGenWriteBarrier((&___clientHMAC_19), value);
}
inline static int32_t get_offset_of_serverHMAC_20() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575, ___serverHMAC_20)); }
inline KeyedHashAlgorithm_t112861511 * get_serverHMAC_20() const { return ___serverHMAC_20; }
inline KeyedHashAlgorithm_t112861511 ** get_address_of_serverHMAC_20() { return &___serverHMAC_20; }
inline void set_serverHMAC_20(KeyedHashAlgorithm_t112861511 * value)
{
___serverHMAC_20 = value;
Il2CppCodeGenWriteBarrier((&___serverHMAC_20), value);
}
};
struct CipherSuite_t3414744575_StaticFields
{
public:
// System.Byte[] Mono.Security.Protocol.Tls.CipherSuite::EmptyArray
ByteU5BU5D_t4116647657* ___EmptyArray_0;
public:
inline static int32_t get_offset_of_EmptyArray_0() { return static_cast<int32_t>(offsetof(CipherSuite_t3414744575_StaticFields, ___EmptyArray_0)); }
inline ByteU5BU5D_t4116647657* get_EmptyArray_0() const { return ___EmptyArray_0; }
inline ByteU5BU5D_t4116647657** get_address_of_EmptyArray_0() { return &___EmptyArray_0; }
inline void set_EmptyArray_0(ByteU5BU5D_t4116647657* value)
{
___EmptyArray_0 = value;
Il2CppCodeGenWriteBarrier((&___EmptyArray_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CIPHERSUITE_T3414744575_H
#ifndef WIN32_MIB_IFROW_T851471770_H
#define WIN32_MIB_IFROW_T851471770_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.Win32_MIB_IFROW
struct Win32_MIB_IFROW_t851471770
{
public:
// System.Char[] System.Net.NetworkInformation.Win32_MIB_IFROW::Name
CharU5BU5D_t3528271667* ___Name_0;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::Index
int32_t ___Index_1;
// System.Net.NetworkInformation.NetworkInterfaceType System.Net.NetworkInformation.Win32_MIB_IFROW::Type
int32_t ___Type_2;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::Mtu
int32_t ___Mtu_3;
// System.UInt32 System.Net.NetworkInformation.Win32_MIB_IFROW::Speed
uint32_t ___Speed_4;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::PhysAddrLen
int32_t ___PhysAddrLen_5;
// System.Byte[] System.Net.NetworkInformation.Win32_MIB_IFROW::PhysAddr
ByteU5BU5D_t4116647657* ___PhysAddr_6;
// System.UInt32 System.Net.NetworkInformation.Win32_MIB_IFROW::AdminStatus
uint32_t ___AdminStatus_7;
// System.UInt32 System.Net.NetworkInformation.Win32_MIB_IFROW::OperStatus
uint32_t ___OperStatus_8;
// System.UInt32 System.Net.NetworkInformation.Win32_MIB_IFROW::LastChange
uint32_t ___LastChange_9;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::InOctets
int32_t ___InOctets_10;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::InUcastPkts
int32_t ___InUcastPkts_11;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::InNUcastPkts
int32_t ___InNUcastPkts_12;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::InDiscards
int32_t ___InDiscards_13;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::InErrors
int32_t ___InErrors_14;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::InUnknownProtos
int32_t ___InUnknownProtos_15;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::OutOctets
int32_t ___OutOctets_16;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::OutUcastPkts
int32_t ___OutUcastPkts_17;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::OutNUcastPkts
int32_t ___OutNUcastPkts_18;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::OutDiscards
int32_t ___OutDiscards_19;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::OutErrors
int32_t ___OutErrors_20;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::OutQLen
int32_t ___OutQLen_21;
// System.Int32 System.Net.NetworkInformation.Win32_MIB_IFROW::DescrLen
int32_t ___DescrLen_22;
// System.Byte[] System.Net.NetworkInformation.Win32_MIB_IFROW::Descr
ByteU5BU5D_t4116647657* ___Descr_23;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___Name_0)); }
inline CharU5BU5D_t3528271667* get_Name_0() const { return ___Name_0; }
inline CharU5BU5D_t3528271667** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(CharU5BU5D_t3528271667* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((&___Name_0), value);
}
inline static int32_t get_offset_of_Index_1() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___Index_1)); }
inline int32_t get_Index_1() const { return ___Index_1; }
inline int32_t* get_address_of_Index_1() { return &___Index_1; }
inline void set_Index_1(int32_t value)
{
___Index_1 = value;
}
inline static int32_t get_offset_of_Type_2() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___Type_2)); }
inline int32_t get_Type_2() const { return ___Type_2; }
inline int32_t* get_address_of_Type_2() { return &___Type_2; }
inline void set_Type_2(int32_t value)
{
___Type_2 = value;
}
inline static int32_t get_offset_of_Mtu_3() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___Mtu_3)); }
inline int32_t get_Mtu_3() const { return ___Mtu_3; }
inline int32_t* get_address_of_Mtu_3() { return &___Mtu_3; }
inline void set_Mtu_3(int32_t value)
{
___Mtu_3 = value;
}
inline static int32_t get_offset_of_Speed_4() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___Speed_4)); }
inline uint32_t get_Speed_4() const { return ___Speed_4; }
inline uint32_t* get_address_of_Speed_4() { return &___Speed_4; }
inline void set_Speed_4(uint32_t value)
{
___Speed_4 = value;
}
inline static int32_t get_offset_of_PhysAddrLen_5() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___PhysAddrLen_5)); }
inline int32_t get_PhysAddrLen_5() const { return ___PhysAddrLen_5; }
inline int32_t* get_address_of_PhysAddrLen_5() { return &___PhysAddrLen_5; }
inline void set_PhysAddrLen_5(int32_t value)
{
___PhysAddrLen_5 = value;
}
inline static int32_t get_offset_of_PhysAddr_6() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___PhysAddr_6)); }
inline ByteU5BU5D_t4116647657* get_PhysAddr_6() const { return ___PhysAddr_6; }
inline ByteU5BU5D_t4116647657** get_address_of_PhysAddr_6() { return &___PhysAddr_6; }
inline void set_PhysAddr_6(ByteU5BU5D_t4116647657* value)
{
___PhysAddr_6 = value;
Il2CppCodeGenWriteBarrier((&___PhysAddr_6), value);
}
inline static int32_t get_offset_of_AdminStatus_7() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___AdminStatus_7)); }
inline uint32_t get_AdminStatus_7() const { return ___AdminStatus_7; }
inline uint32_t* get_address_of_AdminStatus_7() { return &___AdminStatus_7; }
inline void set_AdminStatus_7(uint32_t value)
{
___AdminStatus_7 = value;
}
inline static int32_t get_offset_of_OperStatus_8() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___OperStatus_8)); }
inline uint32_t get_OperStatus_8() const { return ___OperStatus_8; }
inline uint32_t* get_address_of_OperStatus_8() { return &___OperStatus_8; }
inline void set_OperStatus_8(uint32_t value)
{
___OperStatus_8 = value;
}
inline static int32_t get_offset_of_LastChange_9() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___LastChange_9)); }
inline uint32_t get_LastChange_9() const { return ___LastChange_9; }
inline uint32_t* get_address_of_LastChange_9() { return &___LastChange_9; }
inline void set_LastChange_9(uint32_t value)
{
___LastChange_9 = value;
}
inline static int32_t get_offset_of_InOctets_10() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___InOctets_10)); }
inline int32_t get_InOctets_10() const { return ___InOctets_10; }
inline int32_t* get_address_of_InOctets_10() { return &___InOctets_10; }
inline void set_InOctets_10(int32_t value)
{
___InOctets_10 = value;
}
inline static int32_t get_offset_of_InUcastPkts_11() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___InUcastPkts_11)); }
inline int32_t get_InUcastPkts_11() const { return ___InUcastPkts_11; }
inline int32_t* get_address_of_InUcastPkts_11() { return &___InUcastPkts_11; }
inline void set_InUcastPkts_11(int32_t value)
{
___InUcastPkts_11 = value;
}
inline static int32_t get_offset_of_InNUcastPkts_12() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___InNUcastPkts_12)); }
inline int32_t get_InNUcastPkts_12() const { return ___InNUcastPkts_12; }
inline int32_t* get_address_of_InNUcastPkts_12() { return &___InNUcastPkts_12; }
inline void set_InNUcastPkts_12(int32_t value)
{
___InNUcastPkts_12 = value;
}
inline static int32_t get_offset_of_InDiscards_13() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___InDiscards_13)); }
inline int32_t get_InDiscards_13() const { return ___InDiscards_13; }
inline int32_t* get_address_of_InDiscards_13() { return &___InDiscards_13; }
inline void set_InDiscards_13(int32_t value)
{
___InDiscards_13 = value;
}
inline static int32_t get_offset_of_InErrors_14() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___InErrors_14)); }
inline int32_t get_InErrors_14() const { return ___InErrors_14; }
inline int32_t* get_address_of_InErrors_14() { return &___InErrors_14; }
inline void set_InErrors_14(int32_t value)
{
___InErrors_14 = value;
}
inline static int32_t get_offset_of_InUnknownProtos_15() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___InUnknownProtos_15)); }
inline int32_t get_InUnknownProtos_15() const { return ___InUnknownProtos_15; }
inline int32_t* get_address_of_InUnknownProtos_15() { return &___InUnknownProtos_15; }
inline void set_InUnknownProtos_15(int32_t value)
{
___InUnknownProtos_15 = value;
}
inline static int32_t get_offset_of_OutOctets_16() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___OutOctets_16)); }
inline int32_t get_OutOctets_16() const { return ___OutOctets_16; }
inline int32_t* get_address_of_OutOctets_16() { return &___OutOctets_16; }
inline void set_OutOctets_16(int32_t value)
{
___OutOctets_16 = value;
}
inline static int32_t get_offset_of_OutUcastPkts_17() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___OutUcastPkts_17)); }
inline int32_t get_OutUcastPkts_17() const { return ___OutUcastPkts_17; }
inline int32_t* get_address_of_OutUcastPkts_17() { return &___OutUcastPkts_17; }
inline void set_OutUcastPkts_17(int32_t value)
{
___OutUcastPkts_17 = value;
}
inline static int32_t get_offset_of_OutNUcastPkts_18() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___OutNUcastPkts_18)); }
inline int32_t get_OutNUcastPkts_18() const { return ___OutNUcastPkts_18; }
inline int32_t* get_address_of_OutNUcastPkts_18() { return &___OutNUcastPkts_18; }
inline void set_OutNUcastPkts_18(int32_t value)
{
___OutNUcastPkts_18 = value;
}
inline static int32_t get_offset_of_OutDiscards_19() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___OutDiscards_19)); }
inline int32_t get_OutDiscards_19() const { return ___OutDiscards_19; }
inline int32_t* get_address_of_OutDiscards_19() { return &___OutDiscards_19; }
inline void set_OutDiscards_19(int32_t value)
{
___OutDiscards_19 = value;
}
inline static int32_t get_offset_of_OutErrors_20() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___OutErrors_20)); }
inline int32_t get_OutErrors_20() const { return ___OutErrors_20; }
inline int32_t* get_address_of_OutErrors_20() { return &___OutErrors_20; }
inline void set_OutErrors_20(int32_t value)
{
___OutErrors_20 = value;
}
inline static int32_t get_offset_of_OutQLen_21() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___OutQLen_21)); }
inline int32_t get_OutQLen_21() const { return ___OutQLen_21; }
inline int32_t* get_address_of_OutQLen_21() { return &___OutQLen_21; }
inline void set_OutQLen_21(int32_t value)
{
___OutQLen_21 = value;
}
inline static int32_t get_offset_of_DescrLen_22() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___DescrLen_22)); }
inline int32_t get_DescrLen_22() const { return ___DescrLen_22; }
inline int32_t* get_address_of_DescrLen_22() { return &___DescrLen_22; }
inline void set_DescrLen_22(int32_t value)
{
___DescrLen_22 = value;
}
inline static int32_t get_offset_of_Descr_23() { return static_cast<int32_t>(offsetof(Win32_MIB_IFROW_t851471770, ___Descr_23)); }
inline ByteU5BU5D_t4116647657* get_Descr_23() const { return ___Descr_23; }
inline ByteU5BU5D_t4116647657** get_address_of_Descr_23() { return &___Descr_23; }
inline void set_Descr_23(ByteU5BU5D_t4116647657* value)
{
___Descr_23 = value;
Il2CppCodeGenWriteBarrier((&___Descr_23), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.Win32_MIB_IFROW
struct Win32_MIB_IFROW_t851471770_marshaled_pinvoke
{
uint8_t ___Name_0[512];
int32_t ___Index_1;
int32_t ___Type_2;
int32_t ___Mtu_3;
uint32_t ___Speed_4;
int32_t ___PhysAddrLen_5;
uint8_t ___PhysAddr_6[8];
uint32_t ___AdminStatus_7;
uint32_t ___OperStatus_8;
uint32_t ___LastChange_9;
int32_t ___InOctets_10;
int32_t ___InUcastPkts_11;
int32_t ___InNUcastPkts_12;
int32_t ___InDiscards_13;
int32_t ___InErrors_14;
int32_t ___InUnknownProtos_15;
int32_t ___OutOctets_16;
int32_t ___OutUcastPkts_17;
int32_t ___OutNUcastPkts_18;
int32_t ___OutDiscards_19;
int32_t ___OutErrors_20;
int32_t ___OutQLen_21;
int32_t ___DescrLen_22;
uint8_t ___Descr_23[256];
};
// Native definition for COM marshalling of System.Net.NetworkInformation.Win32_MIB_IFROW
struct Win32_MIB_IFROW_t851471770_marshaled_com
{
uint8_t ___Name_0[512];
int32_t ___Index_1;
int32_t ___Type_2;
int32_t ___Mtu_3;
uint32_t ___Speed_4;
int32_t ___PhysAddrLen_5;
uint8_t ___PhysAddr_6[8];
uint32_t ___AdminStatus_7;
uint32_t ___OperStatus_8;
uint32_t ___LastChange_9;
int32_t ___InOctets_10;
int32_t ___InUcastPkts_11;
int32_t ___InNUcastPkts_12;
int32_t ___InDiscards_13;
int32_t ___InErrors_14;
int32_t ___InUnknownProtos_15;
int32_t ___OutOctets_16;
int32_t ___OutUcastPkts_17;
int32_t ___OutNUcastPkts_18;
int32_t ___OutDiscards_19;
int32_t ___OutErrors_20;
int32_t ___OutQLen_21;
int32_t ___DescrLen_22;
uint8_t ___Descr_23[256];
};
#endif // WIN32_MIB_IFROW_T851471770_H
#ifndef WIN32EXCEPTION_T3234146298_H
#define WIN32EXCEPTION_T3234146298_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.Win32Exception
struct Win32Exception_t3234146298 : public ExternalException_t3544951457
{
public:
// System.Int32 System.ComponentModel.Win32Exception::native_error_code
int32_t ___native_error_code_11;
public:
inline static int32_t get_offset_of_native_error_code_11() { return static_cast<int32_t>(offsetof(Win32Exception_t3234146298, ___native_error_code_11)); }
inline int32_t get_native_error_code_11() const { return ___native_error_code_11; }
inline int32_t* get_address_of_native_error_code_11() { return &___native_error_code_11; }
inline void set_native_error_code_11(int32_t value)
{
___native_error_code_11 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WIN32EXCEPTION_T3234146298_H
#ifndef MULTICASTDELEGATE_T_H
#define MULTICASTDELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t1188392813
{
public:
// System.MulticastDelegate System.MulticastDelegate::prev
MulticastDelegate_t * ___prev_9;
// System.MulticastDelegate System.MulticastDelegate::kpm_next
MulticastDelegate_t * ___kpm_next_10;
public:
inline static int32_t get_offset_of_prev_9() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___prev_9)); }
inline MulticastDelegate_t * get_prev_9() const { return ___prev_9; }
inline MulticastDelegate_t ** get_address_of_prev_9() { return &___prev_9; }
inline void set_prev_9(MulticastDelegate_t * value)
{
___prev_9 = value;
Il2CppCodeGenWriteBarrier((&___prev_9), value);
}
inline static int32_t get_offset_of_kpm_next_10() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___kpm_next_10)); }
inline MulticastDelegate_t * get_kpm_next_10() const { return ___kpm_next_10; }
inline MulticastDelegate_t ** get_address_of_kpm_next_10() { return &___kpm_next_10; }
inline void set_kpm_next_10(MulticastDelegate_t * value)
{
___kpm_next_10 = value;
Il2CppCodeGenWriteBarrier((&___kpm_next_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MULTICASTDELEGATE_T_H
#ifndef SSLCLIENTSTREAM_T3914624661_H
#define SSLCLIENTSTREAM_T3914624661_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.SslClientStream
struct SslClientStream_t3914624661 : public SslStreamBase_t1667413407
{
public:
// Mono.Security.Protocol.Tls.CertificateValidationCallback Mono.Security.Protocol.Tls.SslClientStream::ServerCertValidation
CertificateValidationCallback_t4091668218 * ___ServerCertValidation_16;
// Mono.Security.Protocol.Tls.CertificateSelectionCallback Mono.Security.Protocol.Tls.SslClientStream::ClientCertSelection
CertificateSelectionCallback_t3743405224 * ___ClientCertSelection_17;
// Mono.Security.Protocol.Tls.PrivateKeySelectionCallback Mono.Security.Protocol.Tls.SslClientStream::PrivateKeySelection
PrivateKeySelectionCallback_t3240194217 * ___PrivateKeySelection_18;
// Mono.Security.Protocol.Tls.CertificateValidationCallback2 Mono.Security.Protocol.Tls.SslClientStream::ServerCertValidation2
CertificateValidationCallback2_t1842476440 * ___ServerCertValidation2_19;
public:
inline static int32_t get_offset_of_ServerCertValidation_16() { return static_cast<int32_t>(offsetof(SslClientStream_t3914624661, ___ServerCertValidation_16)); }
inline CertificateValidationCallback_t4091668218 * get_ServerCertValidation_16() const { return ___ServerCertValidation_16; }
inline CertificateValidationCallback_t4091668218 ** get_address_of_ServerCertValidation_16() { return &___ServerCertValidation_16; }
inline void set_ServerCertValidation_16(CertificateValidationCallback_t4091668218 * value)
{
___ServerCertValidation_16 = value;
Il2CppCodeGenWriteBarrier((&___ServerCertValidation_16), value);
}
inline static int32_t get_offset_of_ClientCertSelection_17() { return static_cast<int32_t>(offsetof(SslClientStream_t3914624661, ___ClientCertSelection_17)); }
inline CertificateSelectionCallback_t3743405224 * get_ClientCertSelection_17() const { return ___ClientCertSelection_17; }
inline CertificateSelectionCallback_t3743405224 ** get_address_of_ClientCertSelection_17() { return &___ClientCertSelection_17; }
inline void set_ClientCertSelection_17(CertificateSelectionCallback_t3743405224 * value)
{
___ClientCertSelection_17 = value;
Il2CppCodeGenWriteBarrier((&___ClientCertSelection_17), value);
}
inline static int32_t get_offset_of_PrivateKeySelection_18() { return static_cast<int32_t>(offsetof(SslClientStream_t3914624661, ___PrivateKeySelection_18)); }
inline PrivateKeySelectionCallback_t3240194217 * get_PrivateKeySelection_18() const { return ___PrivateKeySelection_18; }
inline PrivateKeySelectionCallback_t3240194217 ** get_address_of_PrivateKeySelection_18() { return &___PrivateKeySelection_18; }
inline void set_PrivateKeySelection_18(PrivateKeySelectionCallback_t3240194217 * value)
{
___PrivateKeySelection_18 = value;
Il2CppCodeGenWriteBarrier((&___PrivateKeySelection_18), value);
}
inline static int32_t get_offset_of_ServerCertValidation2_19() { return static_cast<int32_t>(offsetof(SslClientStream_t3914624661, ___ServerCertValidation2_19)); }
inline CertificateValidationCallback2_t1842476440 * get_ServerCertValidation2_19() const { return ___ServerCertValidation2_19; }
inline CertificateValidationCallback2_t1842476440 ** get_address_of_ServerCertValidation2_19() { return &___ServerCertValidation2_19; }
inline void set_ServerCertValidation2_19(CertificateValidationCallback2_t1842476440 * value)
{
___ServerCertValidation2_19 = value;
Il2CppCodeGenWriteBarrier((&___ServerCertValidation2_19), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SSLCLIENTSTREAM_T3914624661_H
#ifndef HANDSHAKEMESSAGE_T3696583168_H
#define HANDSHAKEMESSAGE_T3696583168_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.HandshakeMessage
struct HandshakeMessage_t3696583168 : public TlsStream_t2365453965
{
public:
// Mono.Security.Protocol.Tls.Context Mono.Security.Protocol.Tls.Handshake.HandshakeMessage::context
Context_t3971234707 * ___context_5;
// Mono.Security.Protocol.Tls.Handshake.HandshakeType Mono.Security.Protocol.Tls.Handshake.HandshakeMessage::handshakeType
uint8_t ___handshakeType_6;
// Mono.Security.Protocol.Tls.ContentType Mono.Security.Protocol.Tls.Handshake.HandshakeMessage::contentType
uint8_t ___contentType_7;
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.HandshakeMessage::cache
ByteU5BU5D_t4116647657* ___cache_8;
public:
inline static int32_t get_offset_of_context_5() { return static_cast<int32_t>(offsetof(HandshakeMessage_t3696583168, ___context_5)); }
inline Context_t3971234707 * get_context_5() const { return ___context_5; }
inline Context_t3971234707 ** get_address_of_context_5() { return &___context_5; }
inline void set_context_5(Context_t3971234707 * value)
{
___context_5 = value;
Il2CppCodeGenWriteBarrier((&___context_5), value);
}
inline static int32_t get_offset_of_handshakeType_6() { return static_cast<int32_t>(offsetof(HandshakeMessage_t3696583168, ___handshakeType_6)); }
inline uint8_t get_handshakeType_6() const { return ___handshakeType_6; }
inline uint8_t* get_address_of_handshakeType_6() { return &___handshakeType_6; }
inline void set_handshakeType_6(uint8_t value)
{
___handshakeType_6 = value;
}
inline static int32_t get_offset_of_contentType_7() { return static_cast<int32_t>(offsetof(HandshakeMessage_t3696583168, ___contentType_7)); }
inline uint8_t get_contentType_7() const { return ___contentType_7; }
inline uint8_t* get_address_of_contentType_7() { return &___contentType_7; }
inline void set_contentType_7(uint8_t value)
{
___contentType_7 = value;
}
inline static int32_t get_offset_of_cache_8() { return static_cast<int32_t>(offsetof(HandshakeMessage_t3696583168, ___cache_8)); }
inline ByteU5BU5D_t4116647657* get_cache_8() const { return ___cache_8; }
inline ByteU5BU5D_t4116647657** get_address_of_cache_8() { return &___cache_8; }
inline void set_cache_8(ByteU5BU5D_t4116647657* value)
{
___cache_8 = value;
Il2CppCodeGenWriteBarrier((&___cache_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HANDSHAKEMESSAGE_T3696583168_H
#ifndef SOCKADDR_IN6_T2080844659_H
#define SOCKADDR_IN6_T2080844659_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.MacOsStructs.sockaddr_in6
struct sockaddr_in6_t2080844659
{
public:
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr_in6::sin6_len
uint8_t ___sin6_len_0;
// System.Byte System.Net.NetworkInformation.MacOsStructs.sockaddr_in6::sin6_family
uint8_t ___sin6_family_1;
// System.UInt16 System.Net.NetworkInformation.MacOsStructs.sockaddr_in6::sin6_port
uint16_t ___sin6_port_2;
// System.UInt32 System.Net.NetworkInformation.MacOsStructs.sockaddr_in6::sin6_flowinfo
uint32_t ___sin6_flowinfo_3;
// System.Net.NetworkInformation.MacOsStructs.in6_addr System.Net.NetworkInformation.MacOsStructs.sockaddr_in6::sin6_addr
in6_addr_t1417766092 ___sin6_addr_4;
// System.UInt32 System.Net.NetworkInformation.MacOsStructs.sockaddr_in6::sin6_scope_id
uint32_t ___sin6_scope_id_5;
public:
inline static int32_t get_offset_of_sin6_len_0() { return static_cast<int32_t>(offsetof(sockaddr_in6_t2080844659, ___sin6_len_0)); }
inline uint8_t get_sin6_len_0() const { return ___sin6_len_0; }
inline uint8_t* get_address_of_sin6_len_0() { return &___sin6_len_0; }
inline void set_sin6_len_0(uint8_t value)
{
___sin6_len_0 = value;
}
inline static int32_t get_offset_of_sin6_family_1() { return static_cast<int32_t>(offsetof(sockaddr_in6_t2080844659, ___sin6_family_1)); }
inline uint8_t get_sin6_family_1() const { return ___sin6_family_1; }
inline uint8_t* get_address_of_sin6_family_1() { return &___sin6_family_1; }
inline void set_sin6_family_1(uint8_t value)
{
___sin6_family_1 = value;
}
inline static int32_t get_offset_of_sin6_port_2() { return static_cast<int32_t>(offsetof(sockaddr_in6_t2080844659, ___sin6_port_2)); }
inline uint16_t get_sin6_port_2() const { return ___sin6_port_2; }
inline uint16_t* get_address_of_sin6_port_2() { return &___sin6_port_2; }
inline void set_sin6_port_2(uint16_t value)
{
___sin6_port_2 = value;
}
inline static int32_t get_offset_of_sin6_flowinfo_3() { return static_cast<int32_t>(offsetof(sockaddr_in6_t2080844659, ___sin6_flowinfo_3)); }
inline uint32_t get_sin6_flowinfo_3() const { return ___sin6_flowinfo_3; }
inline uint32_t* get_address_of_sin6_flowinfo_3() { return &___sin6_flowinfo_3; }
inline void set_sin6_flowinfo_3(uint32_t value)
{
___sin6_flowinfo_3 = value;
}
inline static int32_t get_offset_of_sin6_addr_4() { return static_cast<int32_t>(offsetof(sockaddr_in6_t2080844659, ___sin6_addr_4)); }
inline in6_addr_t1417766092 get_sin6_addr_4() const { return ___sin6_addr_4; }
inline in6_addr_t1417766092 * get_address_of_sin6_addr_4() { return &___sin6_addr_4; }
inline void set_sin6_addr_4(in6_addr_t1417766092 value)
{
___sin6_addr_4 = value;
}
inline static int32_t get_offset_of_sin6_scope_id_5() { return static_cast<int32_t>(offsetof(sockaddr_in6_t2080844659, ___sin6_scope_id_5)); }
inline uint32_t get_sin6_scope_id_5() const { return ___sin6_scope_id_5; }
inline uint32_t* get_address_of_sin6_scope_id_5() { return &___sin6_scope_id_5; }
inline void set_sin6_scope_id_5(uint32_t value)
{
___sin6_scope_id_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.MacOsStructs.sockaddr_in6
struct sockaddr_in6_t2080844659_marshaled_pinvoke
{
uint8_t ___sin6_len_0;
uint8_t ___sin6_family_1;
uint16_t ___sin6_port_2;
uint32_t ___sin6_flowinfo_3;
in6_addr_t1417766092_marshaled_pinvoke ___sin6_addr_4;
uint32_t ___sin6_scope_id_5;
};
// Native definition for COM marshalling of System.Net.NetworkInformation.MacOsStructs.sockaddr_in6
struct sockaddr_in6_t2080844659_marshaled_com
{
uint8_t ___sin6_len_0;
uint8_t ___sin6_family_1;
uint16_t ___sin6_port_2;
uint32_t ___sin6_flowinfo_3;
in6_addr_t1417766092_marshaled_com ___sin6_addr_4;
uint32_t ___sin6_scope_id_5;
};
#endif // SOCKADDR_IN6_T2080844659_H
#ifndef SOCKADDR_IN6_T2790242023_H
#define SOCKADDR_IN6_T2790242023_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.sockaddr_in6
struct sockaddr_in6_t2790242023
{
public:
// System.UInt16 System.Net.NetworkInformation.sockaddr_in6::sin6_family
uint16_t ___sin6_family_0;
// System.UInt16 System.Net.NetworkInformation.sockaddr_in6::sin6_port
uint16_t ___sin6_port_1;
// System.UInt32 System.Net.NetworkInformation.sockaddr_in6::sin6_flowinfo
uint32_t ___sin6_flowinfo_2;
// System.Net.NetworkInformation.in6_addr System.Net.NetworkInformation.sockaddr_in6::sin6_addr
in6_addr_t3611791508 ___sin6_addr_3;
// System.UInt32 System.Net.NetworkInformation.sockaddr_in6::sin6_scope_id
uint32_t ___sin6_scope_id_4;
public:
inline static int32_t get_offset_of_sin6_family_0() { return static_cast<int32_t>(offsetof(sockaddr_in6_t2790242023, ___sin6_family_0)); }
inline uint16_t get_sin6_family_0() const { return ___sin6_family_0; }
inline uint16_t* get_address_of_sin6_family_0() { return &___sin6_family_0; }
inline void set_sin6_family_0(uint16_t value)
{
___sin6_family_0 = value;
}
inline static int32_t get_offset_of_sin6_port_1() { return static_cast<int32_t>(offsetof(sockaddr_in6_t2790242023, ___sin6_port_1)); }
inline uint16_t get_sin6_port_1() const { return ___sin6_port_1; }
inline uint16_t* get_address_of_sin6_port_1() { return &___sin6_port_1; }
inline void set_sin6_port_1(uint16_t value)
{
___sin6_port_1 = value;
}
inline static int32_t get_offset_of_sin6_flowinfo_2() { return static_cast<int32_t>(offsetof(sockaddr_in6_t2790242023, ___sin6_flowinfo_2)); }
inline uint32_t get_sin6_flowinfo_2() const { return ___sin6_flowinfo_2; }
inline uint32_t* get_address_of_sin6_flowinfo_2() { return &___sin6_flowinfo_2; }
inline void set_sin6_flowinfo_2(uint32_t value)
{
___sin6_flowinfo_2 = value;
}
inline static int32_t get_offset_of_sin6_addr_3() { return static_cast<int32_t>(offsetof(sockaddr_in6_t2790242023, ___sin6_addr_3)); }
inline in6_addr_t3611791508 get_sin6_addr_3() const { return ___sin6_addr_3; }
inline in6_addr_t3611791508 * get_address_of_sin6_addr_3() { return &___sin6_addr_3; }
inline void set_sin6_addr_3(in6_addr_t3611791508 value)
{
___sin6_addr_3 = value;
}
inline static int32_t get_offset_of_sin6_scope_id_4() { return static_cast<int32_t>(offsetof(sockaddr_in6_t2790242023, ___sin6_scope_id_4)); }
inline uint32_t get_sin6_scope_id_4() const { return ___sin6_scope_id_4; }
inline uint32_t* get_address_of_sin6_scope_id_4() { return &___sin6_scope_id_4; }
inline void set_sin6_scope_id_4(uint32_t value)
{
___sin6_scope_id_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.sockaddr_in6
struct sockaddr_in6_t2790242023_marshaled_pinvoke
{
uint16_t ___sin6_family_0;
uint16_t ___sin6_port_1;
uint32_t ___sin6_flowinfo_2;
in6_addr_t3611791508_marshaled_pinvoke ___sin6_addr_3;
uint32_t ___sin6_scope_id_4;
};
// Native definition for COM marshalling of System.Net.NetworkInformation.sockaddr_in6
struct sockaddr_in6_t2790242023_marshaled_com
{
uint16_t ___sin6_family_0;
uint16_t ___sin6_port_1;
uint32_t ___sin6_flowinfo_2;
in6_addr_t3611791508_marshaled_com ___sin6_addr_3;
uint32_t ___sin6_scope_id_4;
};
#endif // SOCKADDR_IN6_T2790242023_H
#ifndef DEFLATESTREAM_T4175168077_H
#define DEFLATESTREAM_T4175168077_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Compression.DeflateStream
struct DeflateStream_t4175168077 : public Stream_t1273022909
{
public:
// System.IO.Stream System.IO.Compression.DeflateStream::base_stream
Stream_t1273022909 * ___base_stream_1;
// System.IO.Compression.CompressionMode System.IO.Compression.DeflateStream::mode
int32_t ___mode_2;
// System.Boolean System.IO.Compression.DeflateStream::leaveOpen
bool ___leaveOpen_3;
// System.Boolean System.IO.Compression.DeflateStream::disposed
bool ___disposed_4;
// System.IO.Compression.DeflateStream/UnmanagedReadOrWrite System.IO.Compression.DeflateStream::feeder
UnmanagedReadOrWrite_t876388624 * ___feeder_5;
// System.IntPtr System.IO.Compression.DeflateStream::z_stream
intptr_t ___z_stream_6;
// System.Byte[] System.IO.Compression.DeflateStream::io_buffer
ByteU5BU5D_t4116647657* ___io_buffer_7;
// System.Runtime.InteropServices.GCHandle System.IO.Compression.DeflateStream::data
GCHandle_t3351438187 ___data_8;
public:
inline static int32_t get_offset_of_base_stream_1() { return static_cast<int32_t>(offsetof(DeflateStream_t4175168077, ___base_stream_1)); }
inline Stream_t1273022909 * get_base_stream_1() const { return ___base_stream_1; }
inline Stream_t1273022909 ** get_address_of_base_stream_1() { return &___base_stream_1; }
inline void set_base_stream_1(Stream_t1273022909 * value)
{
___base_stream_1 = value;
Il2CppCodeGenWriteBarrier((&___base_stream_1), value);
}
inline static int32_t get_offset_of_mode_2() { return static_cast<int32_t>(offsetof(DeflateStream_t4175168077, ___mode_2)); }
inline int32_t get_mode_2() const { return ___mode_2; }
inline int32_t* get_address_of_mode_2() { return &___mode_2; }
inline void set_mode_2(int32_t value)
{
___mode_2 = value;
}
inline static int32_t get_offset_of_leaveOpen_3() { return static_cast<int32_t>(offsetof(DeflateStream_t4175168077, ___leaveOpen_3)); }
inline bool get_leaveOpen_3() const { return ___leaveOpen_3; }
inline bool* get_address_of_leaveOpen_3() { return &___leaveOpen_3; }
inline void set_leaveOpen_3(bool value)
{
___leaveOpen_3 = value;
}
inline static int32_t get_offset_of_disposed_4() { return static_cast<int32_t>(offsetof(DeflateStream_t4175168077, ___disposed_4)); }
inline bool get_disposed_4() const { return ___disposed_4; }
inline bool* get_address_of_disposed_4() { return &___disposed_4; }
inline void set_disposed_4(bool value)
{
___disposed_4 = value;
}
inline static int32_t get_offset_of_feeder_5() { return static_cast<int32_t>(offsetof(DeflateStream_t4175168077, ___feeder_5)); }
inline UnmanagedReadOrWrite_t876388624 * get_feeder_5() const { return ___feeder_5; }
inline UnmanagedReadOrWrite_t876388624 ** get_address_of_feeder_5() { return &___feeder_5; }
inline void set_feeder_5(UnmanagedReadOrWrite_t876388624 * value)
{
___feeder_5 = value;
Il2CppCodeGenWriteBarrier((&___feeder_5), value);
}
inline static int32_t get_offset_of_z_stream_6() { return static_cast<int32_t>(offsetof(DeflateStream_t4175168077, ___z_stream_6)); }
inline intptr_t get_z_stream_6() const { return ___z_stream_6; }
inline intptr_t* get_address_of_z_stream_6() { return &___z_stream_6; }
inline void set_z_stream_6(intptr_t value)
{
___z_stream_6 = value;
}
inline static int32_t get_offset_of_io_buffer_7() { return static_cast<int32_t>(offsetof(DeflateStream_t4175168077, ___io_buffer_7)); }
inline ByteU5BU5D_t4116647657* get_io_buffer_7() const { return ___io_buffer_7; }
inline ByteU5BU5D_t4116647657** get_address_of_io_buffer_7() { return &___io_buffer_7; }
inline void set_io_buffer_7(ByteU5BU5D_t4116647657* value)
{
___io_buffer_7 = value;
Il2CppCodeGenWriteBarrier((&___io_buffer_7), value);
}
inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(DeflateStream_t4175168077, ___data_8)); }
inline GCHandle_t3351438187 get_data_8() const { return ___data_8; }
inline GCHandle_t3351438187 * get_address_of_data_8() { return &___data_8; }
inline void set_data_8(GCHandle_t3351438187 value)
{
___data_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DEFLATESTREAM_T4175168077_H
#ifndef IFADDRS_T271199369_H
#define IFADDRS_T271199369_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.ifaddrs
struct ifaddrs_t271199369
{
public:
// System.IntPtr System.Net.NetworkInformation.ifaddrs::ifa_next
intptr_t ___ifa_next_0;
// System.String System.Net.NetworkInformation.ifaddrs::ifa_name
String_t* ___ifa_name_1;
// System.UInt32 System.Net.NetworkInformation.ifaddrs::ifa_flags
uint32_t ___ifa_flags_2;
// System.IntPtr System.Net.NetworkInformation.ifaddrs::ifa_addr
intptr_t ___ifa_addr_3;
// System.IntPtr System.Net.NetworkInformation.ifaddrs::ifa_netmask
intptr_t ___ifa_netmask_4;
// System.Net.NetworkInformation.ifa_ifu System.Net.NetworkInformation.ifaddrs::ifa_ifu
ifa_ifu_t1794893192 ___ifa_ifu_5;
// System.IntPtr System.Net.NetworkInformation.ifaddrs::ifa_data
intptr_t ___ifa_data_6;
public:
inline static int32_t get_offset_of_ifa_next_0() { return static_cast<int32_t>(offsetof(ifaddrs_t271199369, ___ifa_next_0)); }
inline intptr_t get_ifa_next_0() const { return ___ifa_next_0; }
inline intptr_t* get_address_of_ifa_next_0() { return &___ifa_next_0; }
inline void set_ifa_next_0(intptr_t value)
{
___ifa_next_0 = value;
}
inline static int32_t get_offset_of_ifa_name_1() { return static_cast<int32_t>(offsetof(ifaddrs_t271199369, ___ifa_name_1)); }
inline String_t* get_ifa_name_1() const { return ___ifa_name_1; }
inline String_t** get_address_of_ifa_name_1() { return &___ifa_name_1; }
inline void set_ifa_name_1(String_t* value)
{
___ifa_name_1 = value;
Il2CppCodeGenWriteBarrier((&___ifa_name_1), value);
}
inline static int32_t get_offset_of_ifa_flags_2() { return static_cast<int32_t>(offsetof(ifaddrs_t271199369, ___ifa_flags_2)); }
inline uint32_t get_ifa_flags_2() const { return ___ifa_flags_2; }
inline uint32_t* get_address_of_ifa_flags_2() { return &___ifa_flags_2; }
inline void set_ifa_flags_2(uint32_t value)
{
___ifa_flags_2 = value;
}
inline static int32_t get_offset_of_ifa_addr_3() { return static_cast<int32_t>(offsetof(ifaddrs_t271199369, ___ifa_addr_3)); }
inline intptr_t get_ifa_addr_3() const { return ___ifa_addr_3; }
inline intptr_t* get_address_of_ifa_addr_3() { return &___ifa_addr_3; }
inline void set_ifa_addr_3(intptr_t value)
{
___ifa_addr_3 = value;
}
inline static int32_t get_offset_of_ifa_netmask_4() { return static_cast<int32_t>(offsetof(ifaddrs_t271199369, ___ifa_netmask_4)); }
inline intptr_t get_ifa_netmask_4() const { return ___ifa_netmask_4; }
inline intptr_t* get_address_of_ifa_netmask_4() { return &___ifa_netmask_4; }
inline void set_ifa_netmask_4(intptr_t value)
{
___ifa_netmask_4 = value;
}
inline static int32_t get_offset_of_ifa_ifu_5() { return static_cast<int32_t>(offsetof(ifaddrs_t271199369, ___ifa_ifu_5)); }
inline ifa_ifu_t1794893192 get_ifa_ifu_5() const { return ___ifa_ifu_5; }
inline ifa_ifu_t1794893192 * get_address_of_ifa_ifu_5() { return &___ifa_ifu_5; }
inline void set_ifa_ifu_5(ifa_ifu_t1794893192 value)
{
___ifa_ifu_5 = value;
}
inline static int32_t get_offset_of_ifa_data_6() { return static_cast<int32_t>(offsetof(ifaddrs_t271199369, ___ifa_data_6)); }
inline intptr_t get_ifa_data_6() const { return ___ifa_data_6; }
inline intptr_t* get_address_of_ifa_data_6() { return &___ifa_data_6; }
inline void set_ifa_data_6(intptr_t value)
{
___ifa_data_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.ifaddrs
struct ifaddrs_t271199369_marshaled_pinvoke
{
intptr_t ___ifa_next_0;
char* ___ifa_name_1;
uint32_t ___ifa_flags_2;
intptr_t ___ifa_addr_3;
intptr_t ___ifa_netmask_4;
ifa_ifu_t1794893192 ___ifa_ifu_5;
intptr_t ___ifa_data_6;
};
// Native definition for COM marshalling of System.Net.NetworkInformation.ifaddrs
struct ifaddrs_t271199369_marshaled_com
{
intptr_t ___ifa_next_0;
Il2CppChar* ___ifa_name_1;
uint32_t ___ifa_flags_2;
intptr_t ___ifa_addr_3;
intptr_t ___ifa_netmask_4;
ifa_ifu_t1794893192 ___ifa_ifu_5;
intptr_t ___ifa_data_6;
};
#endif // IFADDRS_T271199369_H
#ifndef EDITORBROWSABLEATTRIBUTE_T1475454531_H
#define EDITORBROWSABLEATTRIBUTE_T1475454531_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.EditorBrowsableAttribute
struct EditorBrowsableAttribute_t1475454531 : public Attribute_t861562559
{
public:
// System.ComponentModel.EditorBrowsableState System.ComponentModel.EditorBrowsableAttribute::state
int32_t ___state_0;
public:
inline static int32_t get_offset_of_state_0() { return static_cast<int32_t>(offsetof(EditorBrowsableAttribute_t1475454531, ___state_0)); }
inline int32_t get_state_0() const { return ___state_0; }
inline int32_t* get_address_of_state_0() { return &___state_0; }
inline void set_state_0(int32_t value)
{
___state_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EDITORBROWSABLEATTRIBUTE_T1475454531_H
#ifndef PRIMALITYTEST_T1539325944_H
#define PRIMALITYTEST_T1539325944_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Math.Prime.PrimalityTest
struct PrimalityTest_t1539325944 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMALITYTEST_T1539325944_H
#ifndef SERVERCONTEXT_T3848440993_H
#define SERVERCONTEXT_T3848440993_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.ServerContext
struct ServerContext_t3848440993 : public Context_t3971234707
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SERVERCONTEXT_T3848440993_H
#ifndef CERTIFICATEVALIDATIONCALLBACK_T4091668218_H
#define CERTIFICATEVALIDATIONCALLBACK_T4091668218_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.CertificateValidationCallback
struct CertificateValidationCallback_t4091668218 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CERTIFICATEVALIDATIONCALLBACK_T4091668218_H
#ifndef PRIVATEKEYSELECTIONCALLBACK_T3240194217_H
#define PRIVATEKEYSELECTIONCALLBACK_T3240194217_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.PrivateKeySelectionCallback
struct PrivateKeySelectionCallback_t3240194217 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIVATEKEYSELECTIONCALLBACK_T3240194217_H
#ifndef CERTIFICATESELECTIONCALLBACK_T3743405224_H
#define CERTIFICATESELECTIONCALLBACK_T3743405224_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.CertificateSelectionCallback
struct CertificateSelectionCallback_t3743405224 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CERTIFICATESELECTIONCALLBACK_T3743405224_H
#ifndef CERTIFICATEVALIDATIONCALLBACK2_T1842476440_H
#define CERTIFICATEVALIDATIONCALLBACK2_T1842476440_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.CertificateValidationCallback2
struct CertificateValidationCallback2_t1842476440 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CERTIFICATEVALIDATIONCALLBACK2_T1842476440_H
#ifndef TLSSERVERKEYEXCHANGE_T699469151_H
#define TLSSERVERKEYEXCHANGE_T699469151_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerKeyExchange
struct TlsServerKeyExchange_t699469151 : public HandshakeMessage_t3696583168
{
public:
// System.Security.Cryptography.RSAParameters Mono.Security.Protocol.Tls.Handshake.Client.TlsServerKeyExchange::rsaParams
RSAParameters_t1728406613 ___rsaParams_9;
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerKeyExchange::signedParams
ByteU5BU5D_t4116647657* ___signedParams_10;
public:
inline static int32_t get_offset_of_rsaParams_9() { return static_cast<int32_t>(offsetof(TlsServerKeyExchange_t699469151, ___rsaParams_9)); }
inline RSAParameters_t1728406613 get_rsaParams_9() const { return ___rsaParams_9; }
inline RSAParameters_t1728406613 * get_address_of_rsaParams_9() { return &___rsaParams_9; }
inline void set_rsaParams_9(RSAParameters_t1728406613 value)
{
___rsaParams_9 = value;
}
inline static int32_t get_offset_of_signedParams_10() { return static_cast<int32_t>(offsetof(TlsServerKeyExchange_t699469151, ___signedParams_10)); }
inline ByteU5BU5D_t4116647657* get_signedParams_10() const { return ___signedParams_10; }
inline ByteU5BU5D_t4116647657** get_address_of_signedParams_10() { return &___signedParams_10; }
inline void set_signedParams_10(ByteU5BU5D_t4116647657* value)
{
___signedParams_10 = value;
Il2CppCodeGenWriteBarrier((&___signedParams_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERKEYEXCHANGE_T699469151_H
#ifndef TLSSERVERHELLODONE_T1850379324_H
#define TLSSERVERHELLODONE_T1850379324_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHelloDone
struct TlsServerHelloDone_t1850379324 : public HandshakeMessage_t3696583168
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERHELLODONE_T1850379324_H
#ifndef WIN32IPV4INTERFACESTATISTICS_T3096671123_H
#define WIN32IPV4INTERFACESTATISTICS_T3096671123_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.Win32IPv4InterfaceStatistics
struct Win32IPv4InterfaceStatistics_t3096671123 : public IPv4InterfaceStatistics_t3249312820
{
public:
// System.Net.NetworkInformation.Win32_MIB_IFROW System.Net.NetworkInformation.Win32IPv4InterfaceStatistics::info
Win32_MIB_IFROW_t851471770 ___info_0;
public:
inline static int32_t get_offset_of_info_0() { return static_cast<int32_t>(offsetof(Win32IPv4InterfaceStatistics_t3096671123, ___info_0)); }
inline Win32_MIB_IFROW_t851471770 get_info_0() const { return ___info_0; }
inline Win32_MIB_IFROW_t851471770 * get_address_of_info_0() { return &___info_0; }
inline void set_info_0(Win32_MIB_IFROW_t851471770 value)
{
___info_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WIN32IPV4INTERFACESTATISTICS_T3096671123_H
#ifndef TLSCLIENTCERTIFICATE_T3519510577_H
#define TLSCLIENTCERTIFICATE_T3519510577_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsClientCertificate
struct TlsClientCertificate_t3519510577 : public HandshakeMessage_t3696583168
{
public:
// System.Boolean Mono.Security.Protocol.Tls.Handshake.Client.TlsClientCertificate::clientCertSelected
bool ___clientCertSelected_9;
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Security.Protocol.Tls.Handshake.Client.TlsClientCertificate::clientCert
X509Certificate_t713131622 * ___clientCert_10;
public:
inline static int32_t get_offset_of_clientCertSelected_9() { return static_cast<int32_t>(offsetof(TlsClientCertificate_t3519510577, ___clientCertSelected_9)); }
inline bool get_clientCertSelected_9() const { return ___clientCertSelected_9; }
inline bool* get_address_of_clientCertSelected_9() { return &___clientCertSelected_9; }
inline void set_clientCertSelected_9(bool value)
{
___clientCertSelected_9 = value;
}
inline static int32_t get_offset_of_clientCert_10() { return static_cast<int32_t>(offsetof(TlsClientCertificate_t3519510577, ___clientCert_10)); }
inline X509Certificate_t713131622 * get_clientCert_10() const { return ___clientCert_10; }
inline X509Certificate_t713131622 ** get_address_of_clientCert_10() { return &___clientCert_10; }
inline void set_clientCert_10(X509Certificate_t713131622 * value)
{
___clientCert_10 = value;
Il2CppCodeGenWriteBarrier((&___clientCert_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTCERTIFICATE_T3519510577_H
#ifndef TLSCLIENTCERTIFICATEVERIFY_T1824902654_H
#define TLSCLIENTCERTIFICATEVERIFY_T1824902654_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsClientCertificateVerify
struct TlsClientCertificateVerify_t1824902654 : public HandshakeMessage_t3696583168
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTCERTIFICATEVERIFY_T1824902654_H
#ifndef TLSCLIENTFINISHED_T2486981163_H
#define TLSCLIENTFINISHED_T2486981163_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsClientFinished
struct TlsClientFinished_t2486981163 : public HandshakeMessage_t3696583168
{
public:
public:
};
struct TlsClientFinished_t2486981163_StaticFields
{
public:
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Client.TlsClientFinished::Ssl3Marker
ByteU5BU5D_t4116647657* ___Ssl3Marker_9;
public:
inline static int32_t get_offset_of_Ssl3Marker_9() { return static_cast<int32_t>(offsetof(TlsClientFinished_t2486981163_StaticFields, ___Ssl3Marker_9)); }
inline ByteU5BU5D_t4116647657* get_Ssl3Marker_9() const { return ___Ssl3Marker_9; }
inline ByteU5BU5D_t4116647657** get_address_of_Ssl3Marker_9() { return &___Ssl3Marker_9; }
inline void set_Ssl3Marker_9(ByteU5BU5D_t4116647657* value)
{
___Ssl3Marker_9 = value;
Il2CppCodeGenWriteBarrier((&___Ssl3Marker_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTFINISHED_T2486981163_H
#ifndef TLSCLIENTHELLO_T97965998_H
#define TLSCLIENTHELLO_T97965998_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsClientHello
struct TlsClientHello_t97965998 : public HandshakeMessage_t3696583168
{
public:
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Client.TlsClientHello::random
ByteU5BU5D_t4116647657* ___random_9;
public:
inline static int32_t get_offset_of_random_9() { return static_cast<int32_t>(offsetof(TlsClientHello_t97965998, ___random_9)); }
inline ByteU5BU5D_t4116647657* get_random_9() const { return ___random_9; }
inline ByteU5BU5D_t4116647657** get_address_of_random_9() { return &___random_9; }
inline void set_random_9(ByteU5BU5D_t4116647657* value)
{
___random_9 = value;
Il2CppCodeGenWriteBarrier((&___random_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTHELLO_T97965998_H
#ifndef TLSSERVERCERTIFICATEREQUEST_T3690397592_H
#define TLSSERVERCERTIFICATEREQUEST_T3690397592_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificateRequest
struct TlsServerCertificateRequest_t3690397592 : public HandshakeMessage_t3696583168
{
public:
// Mono.Security.Protocol.Tls.Handshake.ClientCertificateType[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificateRequest::certificateTypes
ClientCertificateTypeU5BU5D_t4253920197* ___certificateTypes_9;
// System.String[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificateRequest::distinguisedNames
StringU5BU5D_t1281789340* ___distinguisedNames_10;
public:
inline static int32_t get_offset_of_certificateTypes_9() { return static_cast<int32_t>(offsetof(TlsServerCertificateRequest_t3690397592, ___certificateTypes_9)); }
inline ClientCertificateTypeU5BU5D_t4253920197* get_certificateTypes_9() const { return ___certificateTypes_9; }
inline ClientCertificateTypeU5BU5D_t4253920197** get_address_of_certificateTypes_9() { return &___certificateTypes_9; }
inline void set_certificateTypes_9(ClientCertificateTypeU5BU5D_t4253920197* value)
{
___certificateTypes_9 = value;
Il2CppCodeGenWriteBarrier((&___certificateTypes_9), value);
}
inline static int32_t get_offset_of_distinguisedNames_10() { return static_cast<int32_t>(offsetof(TlsServerCertificateRequest_t3690397592, ___distinguisedNames_10)); }
inline StringU5BU5D_t1281789340* get_distinguisedNames_10() const { return ___distinguisedNames_10; }
inline StringU5BU5D_t1281789340** get_address_of_distinguisedNames_10() { return &___distinguisedNames_10; }
inline void set_distinguisedNames_10(StringU5BU5D_t1281789340* value)
{
___distinguisedNames_10 = value;
Il2CppCodeGenWriteBarrier((&___distinguisedNames_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERCERTIFICATEREQUEST_T3690397592_H
#ifndef TLSSERVERCERTIFICATE_T2716496392_H
#define TLSSERVERCERTIFICATE_T2716496392_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificate
struct TlsServerCertificate_t2716496392 : public HandshakeMessage_t3696583168
{
public:
// Mono.Security.X509.X509CertificateCollection Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificate::certificates
X509CertificateCollection_t1542168550 * ___certificates_9;
public:
inline static int32_t get_offset_of_certificates_9() { return static_cast<int32_t>(offsetof(TlsServerCertificate_t2716496392, ___certificates_9)); }
inline X509CertificateCollection_t1542168550 * get_certificates_9() const { return ___certificates_9; }
inline X509CertificateCollection_t1542168550 ** get_address_of_certificates_9() { return &___certificates_9; }
inline void set_certificates_9(X509CertificateCollection_t1542168550 * value)
{
___certificates_9 = value;
Il2CppCodeGenWriteBarrier((&___certificates_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERCERTIFICATE_T2716496392_H
#ifndef TLSSERVERFINISHED_T3860330041_H
#define TLSSERVERFINISHED_T3860330041_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerFinished
struct TlsServerFinished_t3860330041 : public HandshakeMessage_t3696583168
{
public:
public:
};
struct TlsServerFinished_t3860330041_StaticFields
{
public:
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerFinished::Ssl3Marker
ByteU5BU5D_t4116647657* ___Ssl3Marker_9;
public:
inline static int32_t get_offset_of_Ssl3Marker_9() { return static_cast<int32_t>(offsetof(TlsServerFinished_t3860330041_StaticFields, ___Ssl3Marker_9)); }
inline ByteU5BU5D_t4116647657* get_Ssl3Marker_9() const { return ___Ssl3Marker_9; }
inline ByteU5BU5D_t4116647657** get_address_of_Ssl3Marker_9() { return &___Ssl3Marker_9; }
inline void set_Ssl3Marker_9(ByteU5BU5D_t4116647657* value)
{
___Ssl3Marker_9 = value;
Il2CppCodeGenWriteBarrier((&___Ssl3Marker_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERFINISHED_T3860330041_H
#ifndef SSLCIPHERSUITE_T1981645747_H
#define SSLCIPHERSUITE_T1981645747_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.SslCipherSuite
struct SslCipherSuite_t1981645747 : public CipherSuite_t3414744575
{
public:
// System.Byte[] Mono.Security.Protocol.Tls.SslCipherSuite::pad1
ByteU5BU5D_t4116647657* ___pad1_21;
// System.Byte[] Mono.Security.Protocol.Tls.SslCipherSuite::pad2
ByteU5BU5D_t4116647657* ___pad2_22;
// System.Byte[] Mono.Security.Protocol.Tls.SslCipherSuite::header
ByteU5BU5D_t4116647657* ___header_23;
public:
inline static int32_t get_offset_of_pad1_21() { return static_cast<int32_t>(offsetof(SslCipherSuite_t1981645747, ___pad1_21)); }
inline ByteU5BU5D_t4116647657* get_pad1_21() const { return ___pad1_21; }
inline ByteU5BU5D_t4116647657** get_address_of_pad1_21() { return &___pad1_21; }
inline void set_pad1_21(ByteU5BU5D_t4116647657* value)
{
___pad1_21 = value;
Il2CppCodeGenWriteBarrier((&___pad1_21), value);
}
inline static int32_t get_offset_of_pad2_22() { return static_cast<int32_t>(offsetof(SslCipherSuite_t1981645747, ___pad2_22)); }
inline ByteU5BU5D_t4116647657* get_pad2_22() const { return ___pad2_22; }
inline ByteU5BU5D_t4116647657** get_address_of_pad2_22() { return &___pad2_22; }
inline void set_pad2_22(ByteU5BU5D_t4116647657* value)
{
___pad2_22 = value;
Il2CppCodeGenWriteBarrier((&___pad2_22), value);
}
inline static int32_t get_offset_of_header_23() { return static_cast<int32_t>(offsetof(SslCipherSuite_t1981645747, ___header_23)); }
inline ByteU5BU5D_t4116647657* get_header_23() const { return ___header_23; }
inline ByteU5BU5D_t4116647657** get_address_of_header_23() { return &___header_23; }
inline void set_header_23(ByteU5BU5D_t4116647657* value)
{
___header_23 = value;
Il2CppCodeGenWriteBarrier((&___header_23), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SSLCIPHERSUITE_T1981645747_H
#ifndef UNMANAGEDREADORWRITE_T876388624_H
#define UNMANAGEDREADORWRITE_T876388624_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Compression.DeflateStream/UnmanagedReadOrWrite
struct UnmanagedReadOrWrite_t876388624 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNMANAGEDREADORWRITE_T876388624_H
#ifndef READMETHOD_T893206259_H
#define READMETHOD_T893206259_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Compression.DeflateStream/ReadMethod
struct ReadMethod_t893206259 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // READMETHOD_T893206259_H
#ifndef WRITEMETHOD_T2538911768_H
#define WRITEMETHOD_T2538911768_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Compression.DeflateStream/WriteMethod
struct WriteMethod_t2538911768 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WRITEMETHOD_T2538911768_H
#ifndef TLSSERVERHELLO_T3343859594_H
#define TLSSERVERHELLO_T3343859594_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHello
struct TlsServerHello_t3343859594 : public HandshakeMessage_t3696583168
{
public:
// Mono.Security.Protocol.Tls.SecurityCompressionType Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHello::compressionMethod
int32_t ___compressionMethod_9;
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHello::random
ByteU5BU5D_t4116647657* ___random_10;
// System.Byte[] Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHello::sessionId
ByteU5BU5D_t4116647657* ___sessionId_11;
// Mono.Security.Protocol.Tls.CipherSuite Mono.Security.Protocol.Tls.Handshake.Client.TlsServerHello::cipherSuite
CipherSuite_t3414744575 * ___cipherSuite_12;
public:
inline static int32_t get_offset_of_compressionMethod_9() { return static_cast<int32_t>(offsetof(TlsServerHello_t3343859594, ___compressionMethod_9)); }
inline int32_t get_compressionMethod_9() const { return ___compressionMethod_9; }
inline int32_t* get_address_of_compressionMethod_9() { return &___compressionMethod_9; }
inline void set_compressionMethod_9(int32_t value)
{
___compressionMethod_9 = value;
}
inline static int32_t get_offset_of_random_10() { return static_cast<int32_t>(offsetof(TlsServerHello_t3343859594, ___random_10)); }
inline ByteU5BU5D_t4116647657* get_random_10() const { return ___random_10; }
inline ByteU5BU5D_t4116647657** get_address_of_random_10() { return &___random_10; }
inline void set_random_10(ByteU5BU5D_t4116647657* value)
{
___random_10 = value;
Il2CppCodeGenWriteBarrier((&___random_10), value);
}
inline static int32_t get_offset_of_sessionId_11() { return static_cast<int32_t>(offsetof(TlsServerHello_t3343859594, ___sessionId_11)); }
inline ByteU5BU5D_t4116647657* get_sessionId_11() const { return ___sessionId_11; }
inline ByteU5BU5D_t4116647657** get_address_of_sessionId_11() { return &___sessionId_11; }
inline void set_sessionId_11(ByteU5BU5D_t4116647657* value)
{
___sessionId_11 = value;
Il2CppCodeGenWriteBarrier((&___sessionId_11), value);
}
inline static int32_t get_offset_of_cipherSuite_12() { return static_cast<int32_t>(offsetof(TlsServerHello_t3343859594, ___cipherSuite_12)); }
inline CipherSuite_t3414744575 * get_cipherSuite_12() const { return ___cipherSuite_12; }
inline CipherSuite_t3414744575 ** get_address_of_cipherSuite_12() { return &___cipherSuite_12; }
inline void set_cipherSuite_12(CipherSuite_t3414744575 * value)
{
___cipherSuite_12 = value;
Il2CppCodeGenWriteBarrier((&___cipherSuite_12), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSSERVERHELLO_T3343859594_H
#ifndef TLSCIPHERSUITE_T1545013223_H
#define TLSCIPHERSUITE_T1545013223_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.TlsCipherSuite
struct TlsCipherSuite_t1545013223 : public CipherSuite_t3414744575
{
public:
// System.Byte[] Mono.Security.Protocol.Tls.TlsCipherSuite::header
ByteU5BU5D_t4116647657* ___header_21;
// System.Object Mono.Security.Protocol.Tls.TlsCipherSuite::headerLock
RuntimeObject * ___headerLock_22;
public:
inline static int32_t get_offset_of_header_21() { return static_cast<int32_t>(offsetof(TlsCipherSuite_t1545013223, ___header_21)); }
inline ByteU5BU5D_t4116647657* get_header_21() const { return ___header_21; }
inline ByteU5BU5D_t4116647657** get_address_of_header_21() { return &___header_21; }
inline void set_header_21(ByteU5BU5D_t4116647657* value)
{
___header_21 = value;
Il2CppCodeGenWriteBarrier((&___header_21), value);
}
inline static int32_t get_offset_of_headerLock_22() { return static_cast<int32_t>(offsetof(TlsCipherSuite_t1545013223, ___headerLock_22)); }
inline RuntimeObject * get_headerLock_22() const { return ___headerLock_22; }
inline RuntimeObject ** get_address_of_headerLock_22() { return &___headerLock_22; }
inline void set_headerLock_22(RuntimeObject * value)
{
___headerLock_22 = value;
Il2CppCodeGenWriteBarrier((&___headerLock_22), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCIPHERSUITE_T1545013223_H
#ifndef WIN32IPINTERFACEPROPERTIES2_T4152818631_H
#define WIN32IPINTERFACEPROPERTIES2_T4152818631_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.Win32IPInterfaceProperties2
struct Win32IPInterfaceProperties2_t4152818631 : public IPInterfaceProperties_t3964383369
{
public:
// System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES System.Net.NetworkInformation.Win32IPInterfaceProperties2::addr
Win32_IP_ADAPTER_ADDRESSES_t3463526328 * ___addr_0;
// System.Net.NetworkInformation.Win32_MIB_IFROW System.Net.NetworkInformation.Win32IPInterfaceProperties2::mib4
Win32_MIB_IFROW_t851471770 ___mib4_1;
// System.Net.NetworkInformation.Win32_MIB_IFROW System.Net.NetworkInformation.Win32IPInterfaceProperties2::mib6
Win32_MIB_IFROW_t851471770 ___mib6_2;
public:
inline static int32_t get_offset_of_addr_0() { return static_cast<int32_t>(offsetof(Win32IPInterfaceProperties2_t4152818631, ___addr_0)); }
inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 * get_addr_0() const { return ___addr_0; }
inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 ** get_address_of_addr_0() { return &___addr_0; }
inline void set_addr_0(Win32_IP_ADAPTER_ADDRESSES_t3463526328 * value)
{
___addr_0 = value;
Il2CppCodeGenWriteBarrier((&___addr_0), value);
}
inline static int32_t get_offset_of_mib4_1() { return static_cast<int32_t>(offsetof(Win32IPInterfaceProperties2_t4152818631, ___mib4_1)); }
inline Win32_MIB_IFROW_t851471770 get_mib4_1() const { return ___mib4_1; }
inline Win32_MIB_IFROW_t851471770 * get_address_of_mib4_1() { return &___mib4_1; }
inline void set_mib4_1(Win32_MIB_IFROW_t851471770 value)
{
___mib4_1 = value;
}
inline static int32_t get_offset_of_mib6_2() { return static_cast<int32_t>(offsetof(Win32IPInterfaceProperties2_t4152818631, ___mib6_2)); }
inline Win32_MIB_IFROW_t851471770 get_mib6_2() const { return ___mib6_2; }
inline Win32_MIB_IFROW_t851471770 * get_address_of_mib6_2() { return &___mib6_2; }
inline void set_mib6_2(Win32_MIB_IFROW_t851471770 value)
{
___mib6_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WIN32IPINTERFACEPROPERTIES2_T4152818631_H
#ifndef TLSCLIENTKEYEXCHANGE_T643923608_H
#define TLSCLIENTKEYEXCHANGE_T643923608_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Protocol.Tls.Handshake.Client.TlsClientKeyExchange
struct TlsClientKeyExchange_t643923608 : public HandshakeMessage_t3696583168
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TLSCLIENTKEYEXCHANGE_T643923608_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1000 = { sizeof (SendRecordAsyncResult_t3718352467), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1000[7] =
{
SendRecordAsyncResult_t3718352467::get_offset_of_locker_0(),
SendRecordAsyncResult_t3718352467::get_offset_of__userCallback_1(),
SendRecordAsyncResult_t3718352467::get_offset_of__userState_2(),
SendRecordAsyncResult_t3718352467::get_offset_of__asyncException_3(),
SendRecordAsyncResult_t3718352467::get_offset_of_handle_4(),
SendRecordAsyncResult_t3718352467::get_offset_of__message_5(),
SendRecordAsyncResult_t3718352467::get_offset_of_completed_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1001 = { sizeof (RSASslSignatureDeformatter_t3558097625), -1, sizeof(RSASslSignatureDeformatter_t3558097625_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1001[3] =
{
RSASslSignatureDeformatter_t3558097625::get_offset_of_key_0(),
RSASslSignatureDeformatter_t3558097625::get_offset_of_hash_1(),
RSASslSignatureDeformatter_t3558097625_StaticFields::get_offset_of_U3CU3Ef__switchU24map15_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1002 = { sizeof (RSASslSignatureFormatter_t2709678514), -1, sizeof(RSASslSignatureFormatter_t2709678514_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1002[3] =
{
RSASslSignatureFormatter_t2709678514::get_offset_of_key_0(),
RSASslSignatureFormatter_t2709678514::get_offset_of_hash_1(),
RSASslSignatureFormatter_t2709678514_StaticFields::get_offset_of_U3CU3Ef__switchU24map16_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1003 = { sizeof (SecurityCompressionType_t4242483129)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1003[3] =
{
SecurityCompressionType_t4242483129::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1004 = { sizeof (SecurityParameters_t2199972650), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1004[3] =
{
SecurityParameters_t2199972650::get_offset_of_cipher_0(),
SecurityParameters_t2199972650::get_offset_of_clientWriteMAC_1(),
SecurityParameters_t2199972650::get_offset_of_serverWriteMAC_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1005 = { sizeof (SecurityProtocolType_t1513093309)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1005[5] =
{
SecurityProtocolType_t1513093309::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1006 = { sizeof (ServerContext_t3848440993), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1007 = { sizeof (ValidationResult_t3834298736), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1007[2] =
{
ValidationResult_t3834298736::get_offset_of_trusted_0(),
ValidationResult_t3834298736::get_offset_of_error_code_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1008 = { sizeof (SslClientStream_t3914624661), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1008[4] =
{
SslClientStream_t3914624661::get_offset_of_ServerCertValidation_16(),
SslClientStream_t3914624661::get_offset_of_ClientCertSelection_17(),
SslClientStream_t3914624661::get_offset_of_PrivateKeySelection_18(),
SslClientStream_t3914624661::get_offset_of_ServerCertValidation2_19(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1009 = { sizeof (SslCipherSuite_t1981645747), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1009[3] =
{
SslCipherSuite_t1981645747::get_offset_of_pad1_21(),
SslCipherSuite_t1981645747::get_offset_of_pad2_22(),
SslCipherSuite_t1981645747::get_offset_of_header_23(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1010 = { sizeof (SslHandshakeHash_t2107581772), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1010[8] =
{
SslHandshakeHash_t2107581772::get_offset_of_md5_4(),
SslHandshakeHash_t2107581772::get_offset_of_sha_5(),
SslHandshakeHash_t2107581772::get_offset_of_hashing_6(),
SslHandshakeHash_t2107581772::get_offset_of_secret_7(),
SslHandshakeHash_t2107581772::get_offset_of_innerPadMD5_8(),
SslHandshakeHash_t2107581772::get_offset_of_outerPadMD5_9(),
SslHandshakeHash_t2107581772::get_offset_of_innerPadSHA_10(),
SslHandshakeHash_t2107581772::get_offset_of_outerPadSHA_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1011 = { sizeof (SslStreamBase_t1667413407), -1, sizeof(SslStreamBase_t1667413407_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1011[15] =
{
0,
SslStreamBase_t1667413407_StaticFields::get_offset_of_record_processing_2(),
SslStreamBase_t1667413407::get_offset_of_innerStream_3(),
SslStreamBase_t1667413407::get_offset_of_inputBuffer_4(),
SslStreamBase_t1667413407::get_offset_of_context_5(),
SslStreamBase_t1667413407::get_offset_of_protocol_6(),
SslStreamBase_t1667413407::get_offset_of_ownsStream_7(),
SslStreamBase_t1667413407::get_offset_of_disposed_8(),
SslStreamBase_t1667413407::get_offset_of_checkCertRevocationStatus_9(),
SslStreamBase_t1667413407::get_offset_of_negotiate_10(),
SslStreamBase_t1667413407::get_offset_of_read_11(),
SslStreamBase_t1667413407::get_offset_of_write_12(),
SslStreamBase_t1667413407::get_offset_of_negotiationComplete_13(),
SslStreamBase_t1667413407::get_offset_of_recbuf_14(),
SslStreamBase_t1667413407::get_offset_of_recordStream_15(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1012 = { sizeof (InternalAsyncResult_t3504282820), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1012[12] =
{
InternalAsyncResult_t3504282820::get_offset_of_locker_0(),
InternalAsyncResult_t3504282820::get_offset_of__userCallback_1(),
InternalAsyncResult_t3504282820::get_offset_of__userState_2(),
InternalAsyncResult_t3504282820::get_offset_of__asyncException_3(),
InternalAsyncResult_t3504282820::get_offset_of_handle_4(),
InternalAsyncResult_t3504282820::get_offset_of_completed_5(),
InternalAsyncResult_t3504282820::get_offset_of__bytesRead_6(),
InternalAsyncResult_t3504282820::get_offset_of__fromWrite_7(),
InternalAsyncResult_t3504282820::get_offset_of__proceedAfterHandshake_8(),
InternalAsyncResult_t3504282820::get_offset_of__buffer_9(),
InternalAsyncResult_t3504282820::get_offset_of__offset_10(),
InternalAsyncResult_t3504282820::get_offset_of__count_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1013 = { sizeof (TlsCipherSuite_t1545013223), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1013[2] =
{
TlsCipherSuite_t1545013223::get_offset_of_header_21(),
TlsCipherSuite_t1545013223::get_offset_of_headerLock_22(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1014 = { sizeof (TlsClientSettings_t2486039503), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1014[4] =
{
TlsClientSettings_t2486039503::get_offset_of_targetHost_0(),
TlsClientSettings_t2486039503::get_offset_of_certificates_1(),
TlsClientSettings_t2486039503::get_offset_of_clientCertificate_2(),
TlsClientSettings_t2486039503::get_offset_of_certificateRSA_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1015 = { sizeof (TlsException_t3534743363), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1015[1] =
{
TlsException_t3534743363::get_offset_of_alert_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1016 = { sizeof (TlsServerSettings_t4144396432), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1016[8] =
{
TlsServerSettings_t4144396432::get_offset_of_certificates_0(),
TlsServerSettings_t4144396432::get_offset_of_certificateRSA_1(),
TlsServerSettings_t4144396432::get_offset_of_rsaParameters_2(),
TlsServerSettings_t4144396432::get_offset_of_signedParams_3(),
TlsServerSettings_t4144396432::get_offset_of_distinguisedNames_4(),
TlsServerSettings_t4144396432::get_offset_of_serverKeyExchange_5(),
TlsServerSettings_t4144396432::get_offset_of_certificateRequest_6(),
TlsServerSettings_t4144396432::get_offset_of_certificateTypes_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1017 = { sizeof (TlsStream_t2365453965), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1017[4] =
{
TlsStream_t2365453965::get_offset_of_canRead_1(),
TlsStream_t2365453965::get_offset_of_canWrite_2(),
TlsStream_t2365453965::get_offset_of_buffer_3(),
TlsStream_t2365453965::get_offset_of_temp_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1018 = { sizeof (ClientCertificateType_t1004704908)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1018[6] =
{
ClientCertificateType_t1004704908::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1019 = { sizeof (HandshakeMessage_t3696583168), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1019[4] =
{
HandshakeMessage_t3696583168::get_offset_of_context_5(),
HandshakeMessage_t3696583168::get_offset_of_handshakeType_6(),
HandshakeMessage_t3696583168::get_offset_of_contentType_7(),
HandshakeMessage_t3696583168::get_offset_of_cache_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1020 = { sizeof (HandshakeType_t3062346172)+ sizeof (RuntimeObject), sizeof(uint8_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1020[12] =
{
HandshakeType_t3062346172::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1021 = { sizeof (TlsClientCertificate_t3519510577), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1021[2] =
{
TlsClientCertificate_t3519510577::get_offset_of_clientCertSelected_9(),
TlsClientCertificate_t3519510577::get_offset_of_clientCert_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1022 = { sizeof (TlsClientCertificateVerify_t1824902654), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1023 = { sizeof (TlsClientFinished_t2486981163), -1, sizeof(TlsClientFinished_t2486981163_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1023[1] =
{
TlsClientFinished_t2486981163_StaticFields::get_offset_of_Ssl3Marker_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1024 = { sizeof (TlsClientHello_t97965998), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1024[1] =
{
TlsClientHello_t97965998::get_offset_of_random_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1025 = { sizeof (TlsClientKeyExchange_t643923608), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1026 = { sizeof (TlsServerCertificate_t2716496392), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1026[1] =
{
TlsServerCertificate_t2716496392::get_offset_of_certificates_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1027 = { sizeof (TlsServerCertificateRequest_t3690397592), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1027[2] =
{
TlsServerCertificateRequest_t3690397592::get_offset_of_certificateTypes_9(),
TlsServerCertificateRequest_t3690397592::get_offset_of_distinguisedNames_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1028 = { sizeof (TlsServerFinished_t3860330041), -1, sizeof(TlsServerFinished_t3860330041_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1028[1] =
{
TlsServerFinished_t3860330041_StaticFields::get_offset_of_Ssl3Marker_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1029 = { sizeof (TlsServerHello_t3343859594), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1029[4] =
{
TlsServerHello_t3343859594::get_offset_of_compressionMethod_9(),
TlsServerHello_t3343859594::get_offset_of_random_10(),
TlsServerHello_t3343859594::get_offset_of_sessionId_11(),
TlsServerHello_t3343859594::get_offset_of_cipherSuite_12(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1030 = { sizeof (TlsServerHelloDone_t1850379324), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1031 = { sizeof (TlsServerKeyExchange_t699469151), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1031[2] =
{
TlsServerKeyExchange_t699469151::get_offset_of_rsaParams_9(),
TlsServerKeyExchange_t699469151::get_offset_of_signedParams_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1032 = { sizeof (PrimalityTest_t1539325944), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1033 = { sizeof (CertificateValidationCallback_t4091668218), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1034 = { sizeof (CertificateValidationCallback2_t1842476440), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1035 = { sizeof (CertificateSelectionCallback_t3743405224), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1036 = { sizeof (PrivateKeySelectionCallback_t3240194217), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1037 = { sizeof (U3CPrivateImplementationDetailsU3E_t3057255362), -1, sizeof(U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1037[15] =
{
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D0_0(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D5_1(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D6_2(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D7_3(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D8_4(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D9_5(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D11_6(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D12_7(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D13_8(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D14_9(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D15_10(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D16_11(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D17_12(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D21_13(),
U3CPrivateImplementationDetailsU3E_t3057255362_StaticFields::get_offset_of_U24U24fieldU2D22_14(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1038 = { sizeof (U24ArrayTypeU243132_t2732071529)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU243132_t2732071529 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1039 = { sizeof (U24ArrayTypeU24256_t1929481983)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU24256_t1929481983 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1040 = { sizeof (U24ArrayTypeU2420_t1704471046)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2420_t1704471046 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1041 = { sizeof (U24ArrayTypeU2432_t3652892011)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2432_t3652892011 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1042 = { sizeof (U24ArrayTypeU2448_t1337922364)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2448_t1337922364 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1043 = { sizeof (U24ArrayTypeU2464_t499776626)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2464_t499776626 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1044 = { sizeof (U24ArrayTypeU2412_t2490092597)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2412_t2490092597 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1045 = { sizeof (U24ArrayTypeU2416_t3254766645)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU2416_t3254766645 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1046 = { sizeof (U24ArrayTypeU244_t1630999355)+ sizeof (RuntimeObject), sizeof(U24ArrayTypeU244_t1630999355 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1047 = { sizeof (U3CModuleU3E_t692745527), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1048 = { sizeof (Locale_t4128636109), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1049 = { sizeof (MonoTODOAttribute_t4131080582), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1049[1] =
{
MonoTODOAttribute_t4131080582::get_offset_of_comment_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1050 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable1050[5] =
{
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1051 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable1051[4] =
{
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1052 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable1052[4] =
{
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1053 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable1053[5] =
{
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1054 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable1054[3] =
{
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1055 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable1055[3] =
{
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1056 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable1056[3] =
{
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1057 = { sizeof (HybridDictionary_t4070033136), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1057[3] =
{
HybridDictionary_t4070033136::get_offset_of_caseInsensitive_0(),
HybridDictionary_t4070033136::get_offset_of_hashtable_1(),
HybridDictionary_t4070033136::get_offset_of_list_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1058 = { sizeof (ListDictionary_t1624492310), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1058[4] =
{
ListDictionary_t1624492310::get_offset_of_count_0(),
ListDictionary_t1624492310::get_offset_of_version_1(),
ListDictionary_t1624492310::get_offset_of_head_2(),
ListDictionary_t1624492310::get_offset_of_comparer_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1059 = { sizeof (DictionaryNode_t417719465), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1059[3] =
{
DictionaryNode_t417719465::get_offset_of_key_0(),
DictionaryNode_t417719465::get_offset_of_value_1(),
DictionaryNode_t417719465::get_offset_of_next_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1060 = { sizeof (DictionaryNodeEnumerator_t1673829610), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1060[4] =
{
DictionaryNodeEnumerator_t1673829610::get_offset_of_dict_0(),
DictionaryNodeEnumerator_t1673829610::get_offset_of_isAtStart_1(),
DictionaryNodeEnumerator_t1673829610::get_offset_of_current_2(),
DictionaryNodeEnumerator_t1673829610::get_offset_of_version_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1061 = { sizeof (DictionaryNodeCollection_t819283804), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1061[2] =
{
DictionaryNodeCollection_t819283804::get_offset_of_dict_0(),
DictionaryNodeCollection_t819283804::get_offset_of_isKeyList_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1062 = { sizeof (DictionaryNodeCollectionEnumerator_t2863182637), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1062[2] =
{
DictionaryNodeCollectionEnumerator_t2863182637::get_offset_of_inner_0(),
DictionaryNodeCollectionEnumerator_t2863182637::get_offset_of_isKeyList_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1063 = { sizeof (NameObjectCollectionBase_t2091847364), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1063[10] =
{
NameObjectCollectionBase_t2091847364::get_offset_of_m_ItemsContainer_0(),
NameObjectCollectionBase_t2091847364::get_offset_of_m_NullKeyItem_1(),
NameObjectCollectionBase_t2091847364::get_offset_of_m_ItemsArray_2(),
NameObjectCollectionBase_t2091847364::get_offset_of_m_hashprovider_3(),
NameObjectCollectionBase_t2091847364::get_offset_of_m_comparer_4(),
NameObjectCollectionBase_t2091847364::get_offset_of_m_defCapacity_5(),
NameObjectCollectionBase_t2091847364::get_offset_of_m_readonly_6(),
NameObjectCollectionBase_t2091847364::get_offset_of_infoCopy_7(),
NameObjectCollectionBase_t2091847364::get_offset_of_keyscoll_8(),
NameObjectCollectionBase_t2091847364::get_offset_of_equality_comparer_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1064 = { sizeof (_Item_t2272350267), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1064[2] =
{
_Item_t2272350267::get_offset_of_key_0(),
_Item_t2272350267::get_offset_of_value_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1065 = { sizeof (_KeysEnumerator_t4246666432), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1065[2] =
{
_KeysEnumerator_t4246666432::get_offset_of_m_collection_0(),
_KeysEnumerator_t4246666432::get_offset_of_m_position_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1066 = { sizeof (KeysCollection_t1318642398), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1066[1] =
{
KeysCollection_t1318642398::get_offset_of_m_collection_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1067 = { sizeof (NameValueCollection_t407452768), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1067[2] =
{
NameValueCollection_t407452768::get_offset_of_cachedAllKeys_10(),
NameValueCollection_t407452768::get_offset_of_cachedAll_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1068 = { sizeof (EditorBrowsableAttribute_t1475454531), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1068[1] =
{
EditorBrowsableAttribute_t1475454531::get_offset_of_state_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1069 = { sizeof (EditorBrowsableState_t2839071299)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1069[4] =
{
EditorBrowsableState_t2839071299::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1070 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1071 = { sizeof (PropertyChangedEventArgs_t3313059048), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1071[1] =
{
PropertyChangedEventArgs_t3313059048::get_offset_of_propertyName_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1072 = { sizeof (TypeConverter_t2249118273), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1073 = { sizeof (TypeConverterAttribute_t3271584429), -1, sizeof(TypeConverterAttribute_t3271584429_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1073[2] =
{
TypeConverterAttribute_t3271584429_StaticFields::get_offset_of_Default_0(),
TypeConverterAttribute_t3271584429::get_offset_of_converter_type_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1074 = { sizeof (Win32Exception_t3234146298), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1074[1] =
{
Win32Exception_t3234146298::get_offset_of_native_error_code_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1075 = { sizeof (CompressionMode_t3714291783)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1075[3] =
{
CompressionMode_t3714291783::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1076 = { sizeof (DeflateStream_t4175168077), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1076[8] =
{
DeflateStream_t4175168077::get_offset_of_base_stream_1(),
DeflateStream_t4175168077::get_offset_of_mode_2(),
DeflateStream_t4175168077::get_offset_of_leaveOpen_3(),
DeflateStream_t4175168077::get_offset_of_disposed_4(),
DeflateStream_t4175168077::get_offset_of_feeder_5(),
DeflateStream_t4175168077::get_offset_of_z_stream_6(),
DeflateStream_t4175168077::get_offset_of_io_buffer_7(),
DeflateStream_t4175168077::get_offset_of_data_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1077 = { sizeof (UnmanagedReadOrWrite_t876388624), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1078 = { sizeof (ReadMethod_t893206259), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1079 = { sizeof (WriteMethod_t2538911768), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1080 = { sizeof (IPInterfaceProperties_t3964383369), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1081 = { sizeof (Win32IPInterfaceProperties2_t4152818631), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1081[3] =
{
Win32IPInterfaceProperties2_t4152818631::get_offset_of_addr_0(),
Win32IPInterfaceProperties2_t4152818631::get_offset_of_mib4_1(),
Win32IPInterfaceProperties2_t4152818631::get_offset_of_mib6_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1082 = { sizeof (IPv4InterfaceStatistics_t3249312820), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1083 = { sizeof (Win32IPv4InterfaceStatistics_t3096671123), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1083[1] =
{
Win32IPv4InterfaceStatistics_t3096671123::get_offset_of_info_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1084 = { sizeof (ifa_ifu_t1794893192)+ sizeof (RuntimeObject), sizeof(ifa_ifu_t1794893192 ), 0, 0 };
extern const int32_t g_FieldOffsetTable1084[2] =
{
ifa_ifu_t1794893192::get_offset_of_ifu_broadaddr_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifa_ifu_t1794893192::get_offset_of_ifu_dstaddr_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1085 = { sizeof (ifaddrs_t271199369)+ sizeof (RuntimeObject), sizeof(ifaddrs_t271199369_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable1085[7] =
{
ifaddrs_t271199369::get_offset_of_ifa_next_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t271199369::get_offset_of_ifa_name_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t271199369::get_offset_of_ifa_flags_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t271199369::get_offset_of_ifa_addr_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t271199369::get_offset_of_ifa_netmask_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t271199369::get_offset_of_ifa_ifu_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t271199369::get_offset_of_ifa_data_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1086 = { sizeof (sockaddr_in_t2786965223)+ sizeof (RuntimeObject), sizeof(sockaddr_in_t2786965223 ), 0, 0 };
extern const int32_t g_FieldOffsetTable1086[3] =
{
sockaddr_in_t2786965223::get_offset_of_sin_family_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in_t2786965223::get_offset_of_sin_port_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in_t2786965223::get_offset_of_sin_addr_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1087 = { sizeof (sockaddr_in6_t2790242023)+ sizeof (RuntimeObject), sizeof(sockaddr_in6_t2790242023_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable1087[5] =
{
sockaddr_in6_t2790242023::get_offset_of_sin6_family_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in6_t2790242023::get_offset_of_sin6_port_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in6_t2790242023::get_offset_of_sin6_flowinfo_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in6_t2790242023::get_offset_of_sin6_addr_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in6_t2790242023::get_offset_of_sin6_scope_id_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1088 = { sizeof (in6_addr_t3611791508)+ sizeof (RuntimeObject), sizeof(in6_addr_t3611791508_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable1088[1] =
{
in6_addr_t3611791508::get_offset_of_u6_addr8_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1089 = { sizeof (sockaddr_ll_t3978606313)+ sizeof (RuntimeObject), sizeof(sockaddr_ll_t3978606313_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable1089[7] =
{
sockaddr_ll_t3978606313::get_offset_of_sll_family_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_ll_t3978606313::get_offset_of_sll_protocol_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_ll_t3978606313::get_offset_of_sll_ifindex_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_ll_t3978606313::get_offset_of_sll_hatype_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_ll_t3978606313::get_offset_of_sll_pkttype_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_ll_t3978606313::get_offset_of_sll_halen_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_ll_t3978606313::get_offset_of_sll_addr_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1090 = { sizeof (LinuxArpHardware_t827080684)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1090[11] =
{
LinuxArpHardware_t827080684::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1091 = { sizeof (ifaddrs_t2169824096)+ sizeof (RuntimeObject), sizeof(ifaddrs_t2169824096_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable1091[7] =
{
ifaddrs_t2169824096::get_offset_of_ifa_next_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t2169824096::get_offset_of_ifa_name_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t2169824096::get_offset_of_ifa_flags_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t2169824096::get_offset_of_ifa_addr_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t2169824096::get_offset_of_ifa_netmask_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t2169824096::get_offset_of_ifa_dstaddr_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
ifaddrs_t2169824096::get_offset_of_ifa_data_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1092 = { sizeof (sockaddr_t371844119)+ sizeof (RuntimeObject), sizeof(sockaddr_t371844119 ), 0, 0 };
extern const int32_t g_FieldOffsetTable1092[2] =
{
sockaddr_t371844119::get_offset_of_sa_len_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_t371844119::get_offset_of_sa_family_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1093 = { sizeof (sockaddr_in_t1317910171)+ sizeof (RuntimeObject), sizeof(sockaddr_in_t1317910171 ), 0, 0 };
extern const int32_t g_FieldOffsetTable1093[4] =
{
sockaddr_in_t1317910171::get_offset_of_sin_len_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in_t1317910171::get_offset_of_sin_family_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in_t1317910171::get_offset_of_sin_port_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in_t1317910171::get_offset_of_sin_addr_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1094 = { sizeof (in6_addr_t1417766092)+ sizeof (RuntimeObject), sizeof(in6_addr_t1417766092_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable1094[1] =
{
in6_addr_t1417766092::get_offset_of_u6_addr8_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1095 = { sizeof (sockaddr_in6_t2080844659)+ sizeof (RuntimeObject), sizeof(sockaddr_in6_t2080844659_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable1095[6] =
{
sockaddr_in6_t2080844659::get_offset_of_sin6_len_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in6_t2080844659::get_offset_of_sin6_family_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in6_t2080844659::get_offset_of_sin6_port_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in6_t2080844659::get_offset_of_sin6_flowinfo_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in6_t2080844659::get_offset_of_sin6_addr_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_in6_t2080844659::get_offset_of_sin6_scope_id_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1096 = { sizeof (sockaddr_dl_t1317779094)+ sizeof (RuntimeObject), sizeof(sockaddr_dl_t1317779094_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable1096[8] =
{
sockaddr_dl_t1317779094::get_offset_of_sdl_len_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_dl_t1317779094::get_offset_of_sdl_family_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_dl_t1317779094::get_offset_of_sdl_index_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_dl_t1317779094::get_offset_of_sdl_type_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_dl_t1317779094::get_offset_of_sdl_nlen_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_dl_t1317779094::get_offset_of_sdl_alen_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_dl_t1317779094::get_offset_of_sdl_slen_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
sockaddr_dl_t1317779094::get_offset_of_sdl_data_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1097 = { sizeof (MacOsArpHardware_t4198534184)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable1097[7] =
{
MacOsArpHardware_t4198534184::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1098 = { sizeof (NetworkInformationException_t2303982063), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable1098[1] =
{
NetworkInformationException_t2303982063::get_offset_of_error_code_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize1099 = { sizeof (NetworkInterface_t271883373), -1, sizeof(NetworkInterface_t271883373_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable1099[2] =
{
NetworkInterface_t271883373_StaticFields::get_offset_of_windowsVer51_0(),
NetworkInterface_t271883373_StaticFields::get_offset_of_runningOnUnix_1(),
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"matthewhallberg@gmail.com"
] | matthewhallberg@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.