blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e9639dedf3d26b63e699ae61c183c3bbf5c87cb7 | 667e6466f7a9ec552f8c15689b9d7b6b0969ff45 | /lab5/thread.cpp | ddd13173f4c7bee09e8ea44ecd6f139a0d831edf | [] | no_license | FreezingRain1/labs | 57c68f8161d878a8df887e5e7824fe41749d7df4 | 85d492daccc00e8bb67ffa8a5ef221eb2890ecaf | refs/heads/master | 2021-05-10T19:04:19.674724 | 2018-01-19T16:28:50 | 2018-01-19T16:28:50 | 118,141,946 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,961 | cpp | thread.cpp | #include <fstream>
#include <thread>
#include "thread.h"
void threader::producer() {
std::ifstream fin(InputFile);
std::ofstream fout(OutputFile);
while (!fin.eof() && !exit){
{
fin >> num;
std::lock_guard<std::mutex> lock(_mutex);
queue_num.push(num);
while ( is_pause ) {
std::this_thread::sleep_for ( std::chrono::seconds(1) );
}
}
cv.notify_all();
}
{
std::lock_guard<std::mutex> lock(_mutex);
is_finished = true;
}
cv.notify_all();
}
void threader::consumer() {
std::ofstream fout(OutputFile);
uint64_t Number;
while(true){
std::unique_lock<std::mutex> lock(_mutex);
cv.wait(lock, [] { return is_finished || !queue_num.empty(); });
//lock.unlock();
while(!queue_num.empty()){
//lock.lock();
Number = queue_num.front();
queue_num.pop();
lock.unlock();
f1.factorization_value(Number);
lock.lock();
fout<<f1.check()<<f1.generate_str()<<"\n";
if ( exit ) {
while ( !queue_num.empty() )
queue_num.pop();
}
if (is_pause) fout.close();
while ( is_pause ) {
std::this_thread::sleep_for ( std::chrono::seconds(1) );
}
}
if(is_finished) {
done = true;
break;
}
}
}
void threader::threader_function() {
std::string str;
std::thread thr1(&threader::producer, this);
std::thread thr2(&threader::consumer, this);
while (!exit)
{
std::cin>>str;
if (str == "exit" || done)
{
exit = true;
}
if ( str == "pause" ) {
is_pause = true;
}
if ( str == "resume" ) {
is_pause = false;
}
}
thr1.join();
thr2.join();
}
|
03b714c135790339b55e150b447c39d7e972380a | bdf58746e462f4761f08925dfa52f80e0df931a5 | /SpriteTool/SpriteTool/Source/SpriteTool.cpp | 5a3b9dc91d3bb8e8862574e7c8b75b762d34e374 | [] | no_license | JimmyLord/ToolSpriteTool | 8808bac5765e80c67391d411b4ceadaf443a712e | afb8656aab29ee88d850dc58686221459dc8b897 | refs/heads/master | 2023-01-07T06:16:19.604461 | 2022-12-21T16:54:54 | 2022-12-21T16:54:54 | 28,425,498 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 32,421 | cpp | SpriteTool.cpp | #include "CommonHeader.h"
int main(int argc, char** argv)
{
ImageBlockInfo* pImageInfo = SpriteTool_ParseArgsAndCreateSpriteSheet(argc, argv);
delete pImageInfo;
}
ImageBlockInfo* SpriteTool_ParseArgsAndCreateSpriteSheet(int argc, char** argv)
{
bool invalidArgs = false;
if( argc < 2 )
invalidArgs = true;
SettingsStruct settings;
ImageBlockInfo* pImageInfo = 0;
ImageBlock* pImages = 0;
for( int i=1; i<argc; i++ )
{
if( ( strcmp( argv[i], "-i" ) == 0 || strcmp( argv[i], "-input" ) == 0 ) )
{
if( i+1 >= argc )
invalidArgs = true;
else
settings.inputDir = argv[i+1];
}
if( ( strcmp( argv[i], "-o" ) == 0 || strcmp( argv[i], "-output" ) == 0 ) )
{
if( i+1 >= argc )
invalidArgs = true;
else
settings.outputFilename = argv[i+1];
}
if( ( strcmp( argv[i], "-p" ) == 0 || strcmp( argv[i], "-padding" ) == 0 ) )
{
if( i+1 >= argc )
invalidArgs = true;
else
settings.padding = atoi( argv[i+1] );
}
if( ( strcmp( argv[i], "-t" ) == 0 || strcmp( argv[i], "-trim" ) == 0 ) )
{
settings.trim = true;
if( i+1 >= argc )
invalidArgs = true;
else
settings.trimAlpha = atoi( argv[i+1] );
}
if( ( strcmp( argv[i], "-s" ) == 0 || strcmp( argv[i], "-strip" ) == 0 ) )
{
settings.createStrip = true;
}
if( ( strcmp( argv[i], "-min" ) == 0 || strcmp( argv[i], "-min" ) == 0 ) )
{
if( i+1 >= argc )
invalidArgs = true;
else
settings.minTextureSize = atoi( argv[i+1] );
}
if( ( strcmp( argv[i], "-m" ) == 0 || strcmp( argv[i], "-max" ) == 0 ) )
{
if( i+1 >= argc )
invalidArgs = true;
else
settings.maxTextureSize = atoi( argv[i+1] );
}
if( ( strcmp( argv[i], "-w" ) == 0 || strcmp( argv[i], "-wide" ) == 0 ) )
{
settings.growWide = true;
}
if( ( strcmp( argv[i], "-bl" ) == 0 || strcmp( argv[i], "-bottomleft" ) == 0 ) )
{
settings.originAtBottomLeft = true;
}
if( ( strcmp( argv[i], "-tri" ) == 0 || strcmp( argv[i], "-triangulate" ) == 0 ) )
{
settings.triangulate = true;
}
if( ( strcmp( argv[i], "-sp" ) == 0 || strcmp( argv[i], "-split" ) == 0 ) )
{
settings.splitExistingStrips = true;
if( i+1 >= argc )
invalidArgs = true;
else
settings.splitSpritesheetsWidth = atoi( argv[i+1] );
}
}
if( invalidArgs )
{
printf( "Invalid arguments\n" );
printf( "\n" );
printf( "[-i directory] or -input = relative or absolute path of input directory\n" );
printf( "[-o name] or -output = output name without extension\n" );
printf( "[-p pixels] or -padding = padding between sprites in pixels - default is 0\n" );
printf( "[-t minalpha] or -trim = enable trim with minimum alpha for trimming - specify alpha from 0 to 255\n" );
printf( "[-min size] or -min = minimum output texture size - default is 64\n" );
printf( "[-m size] or -max = maximum output texture size - default is 2048\n" );
printf( "[-w] or -wide = prefer wide textures - default is square textures\n" );
printf( "[-s] or -strip = create sprite strip, maintaining order of files, disables padding, trim and triangulate\n" );
printf( "[-bl] or -bottomleft = for spritestrips, start at bottom left corner\n" );
printf( "[-tri] or -triangulate = triangulate the sprites(WIP)\n" );
printf( "[-sp width] or -split = split existing spritestrips horizontally - specify width of sprites in source image\n" );
}
else if( settings.inputDir == 0 )
{
printf( "Input directory required - use -i\n" );
}
else if( settings.outputFilename == 0 )
{
printf( "Output filename required - use -o\n" );
}
else if( settings.padding < 0 || settings.padding > 10 )
{
printf( "Invalid padding amount - must be value between 0 and 10\n" );
}
else if( settings.trim && (settings.trimAlpha < 0 || settings.trimAlpha > 255) )
{
printf( "Invalid trim alpha threshhold - must be value between 0 and 255\n" );
}
else if( settings.splitExistingStrips && settings.splitSpritesheetsWidth <= 0 )
{
printf( "Invalid split width - must be greater than 0\n" );
}
else
{
printf( "Starting\n" );
printf( "Source image directory -> %s\n", settings.inputDir );
if( settings.splitExistingStrips )
{
printf( "Spliting existing strips -> %d - disabling everything else\n", settings.splitSpritesheetsWidth );
printf( " Treating output filename as folder: %s\n", settings.outputFilename );
settings.createStrip = false;
settings.growWide = false;
settings.originAtBottomLeft = false;
settings.padding = 0;
settings.trim = false;
settings.triangulate = false;
pImageInfo = SplitSpriteSheets( settings );
}
else
{
printf( "Output filename -> %s\n", settings.outputFilename );
if( settings.createStrip )
{
printf( "Create strip -> %d - disabling padding, trim and triangulate\n", settings.createStrip );
settings.padding = 0;
settings.trim = false;
settings.triangulate = false;
if( settings.originAtBottomLeft )
{
printf( " Starting at bottom left\n" );
}
}
printf( "Min texture size -> %d\n", settings.minTextureSize );
printf( "Max texture size -> %d\n", settings.maxTextureSize );
printf( "Texture shape -> %s\n", settings.growWide ? "wide" : "square" );
printf( "Padding -> %d\n", settings.padding );
if( settings.trim )
printf( "Trim -> Enabled -> %d\n", settings.trimAlpha );
else
printf( "Trim -> Disabled\n" );
if( settings.triangulate )
printf( "Triangulate -> Enabled\n" );
else
printf( "Triangulate -> Disabled\n" );
if( settings.originAtBottomLeft )
printf( "Origin -> Bottom Left\n" );
else
printf( "Origin -> Top Left\n" );
pImageInfo = CreateSpriteSheet( settings );
}
printf( "done\n" );
}
#if _DEBUG
#if !MYFW_WINDOWS
_getch();
#else
getchar();
#endif
#endif // _DEBUG
return pImageInfo;
}
void listdir(std::vector<std::string>* pFileList, const char *name, const char* ext)
{
DIR* dir;
struct dirent* entry;
if( (dir = opendir(name)) == 0 )
return;
while( (entry = readdir(dir)) != 0 )
{
char path[PATH_MAX];
if( entry->d_type == DT_DIR )
{
if( strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0 )
continue;
sprintf_s( path, sizeof(path), "%s/%s", name, entry->d_name );
listdir( pFileList, path, ext );
}
else
{
int len = strlen( entry->d_name );
if( len > 4 )
{
if( strcmp( &entry->d_name[len-4], ext ) == 0 )
{
sprintf_s( path, sizeof(path), "%s/%s", name, entry->d_name );
pFileList->push_back( path );
}
}
}
}
closedir(dir);
}
ImageBlockInfo* SplitSpriteSheets(SettingsStruct settings)
{
std::vector<std::string> fileList;
listdir( &fileList, settings.inputDir, ".png" );
int fileCount = fileList.size();
if( fileList.size() == 0 )
return 0;
ImageBlockInfo* pImageInfo = new ImageBlockInfo;
pImageInfo->pImages = new ImageBlock[fileCount];
pImageInfo->NumImages = fileCount;
unsigned int highestX = 0;
unsigned int highestY = 0;
// Load all the images.
for( unsigned int i=0; i<fileList.size(); i++ )
{
const char* relativePathCStr = fileList[i].c_str();
const char* filenameCStr = fileList[i].c_str();
int len = strlen( filenameCStr );
int srcDirNameLen = strlen( settings.inputDir );
int finalLen = len - (srcDirNameLen+1) + 1;
pImageInfo->pImages[i].filename = new char[finalLen];
strcpy_s( pImageInfo->pImages[i].filename, finalLen, &filenameCStr[srcDirNameLen+1] );
lodepng_decode32_file( &pImageInfo->pImages[i].imageBuffer,
&pImageInfo->pImages[i].w, &pImageInfo->pImages[i].h,
relativePathCStr );
}
// Create the new images.
for( int i=0; i<fileCount; i++ )
{
unsigned int width = settings.splitSpritesheetsWidth;
unsigned int height = pImageInfo->pImages[i].h;
unsigned int numFrames = pImageInfo->pImages[i].w / settings.splitSpritesheetsWidth;
for( unsigned int frame=0; frame<numFrames; frame++ )
{
unsigned char* pNewImage = 0;
pNewImage = new unsigned char[width*height*4];
memset( pNewImage, 0, width*height*4 );
unsigned int x = settings.splitSpritesheetsWidth * frame;
unsigned int y = 0;
CopyImageChunk( pNewImage, width, height, &pImageInfo->pImages[i], x, y, width, height );
char outputfile[PATH_MAX];
char filenameWithoutExtension[PATH_MAX];
strncpy_s( filenameWithoutExtension, pImageInfo->pImages[i].filename, strlen(pImageInfo->pImages[i].filename)-4 );
sprintf_s( outputfile, 260, "%s/%s_%04d.png", settings.outputFilename, filenameWithoutExtension, frame+1 );
lodepng_encode32_file( outputfile, pNewImage, width, height );
delete[] pNewImage;
}
}
return pImageInfo;
}
ImageBlockInfo* CreateSpriteSheet(SettingsStruct settings)
{
std::vector<std::string> fileList;
listdir( &fileList, settings.inputDir, ".png" );
int fileCount = fileList.size();
if( fileList.size() == 0 )
return 0;
ImageBlockInfo* pImageInfo = new ImageBlockInfo;
pImageInfo->pImages = new ImageBlock[fileCount];
pImageInfo->NumImages = fileCount;
unsigned int highestX = 0;
unsigned int highestY = 0;
// Load all the images.
for( unsigned int i=0; i<fileList.size(); i++ )
{
const char* relativePathCStr = fileList[i].c_str();
const char* filenameCStr = fileList[i].c_str();
int len = strlen( filenameCStr );
int srcDirNameLen = strlen( settings.inputDir );
int finalLen = len - (srcDirNameLen+1) + 1;
pImageInfo->pImages[i].filename = new char[finalLen];
strcpy_s( pImageInfo->pImages[i].filename, finalLen, &filenameCStr[srcDirNameLen+1] );
lodepng_decode32_file( &pImageInfo->pImages[i].imageBuffer,
&pImageInfo->pImages[i].w, &pImageInfo->pImages[i].h,
filenameCStr );
}
// Triangulate the sprites, this will also trim them.
if( settings.triangulate )
TriangulateSprites( pImageInfo->pImages, fileCount );
else
TrimSprites( pImageInfo->pImages, fileCount, settings.trim ? settings.trimAlpha : -1 );
// Try to fit them into texture.
bool done = false;
unsigned int sizeX = settings.minTextureSize;
unsigned int sizeY = settings.minTextureSize;
while( done == false )
{
if( settings.createStrip )
{
bool allowMultipleLines = false;
if( sizeX == settings.maxTextureSize )
allowMultipleLines = true;
done = PackTextures_SpriteStrip( pImageInfo->pImages, fileCount, sizeX, sizeY, settings.padding, settings.originAtBottomLeft, allowMultipleLines );
}
else
{
done = PackTextures( pImageInfo->pImages, fileCount, sizeX, sizeY, settings.padding );
}
if( done == false )
{
if( settings.createStrip || settings.growWide )
{
sizeX *= 2;
if( sizeX > settings.maxTextureSize )
{
sizeX = settings.minTextureSize;
sizeY *= 2;
}
}
else
{
if( sizeX <= sizeY )
sizeX *= 2;
else
sizeY *= 2;
}
}
if( sizeX > settings.maxTextureSize && sizeY > settings.maxTextureSize )
break;
}
printf( "Dimensions (%d, %d)\n", sizeX, sizeY );
// Create the new image.
unsigned char* pNewImage = 0;
if( done == true )
{
pNewImage = new unsigned char[sizeX*sizeY*4];
memset( pNewImage, 0, sizeX*sizeY*4 );
for( int i=0; i<fileCount; i++ )
{
CopyImageChunk( pNewImage, sizeX, sizeY, &pImageInfo->pImages[i] );
}
char outputfile[PATH_MAX];
sprintf_s( outputfile, 260, "%s.png", settings.outputFilename );
lodepng_encode32_file( outputfile, pNewImage, sizeX, sizeY );
cJSON* jRoot = cJSON_CreateObject();
cJSON* jSpriteArray = cJSON_CreateArray();
cJSON_AddNumberToObject( jRoot, "spritetool", 3 );
cJSON_AddStringToObject( jRoot, "filename", outputfile );
cJSON* jSize = cJSON_CreateArray();
cJSON_AddItemToObject( jRoot, "size", jSize );
cJSON_AddItemToArray( jSize, cJSON_CreateNumber(sizeX) );
cJSON_AddItemToArray( jSize, cJSON_CreateNumber(sizeY) );
cJSON_AddItemToObject( jRoot, "sprites", jSpriteArray );
for( int i=0; i<fileCount; i++ )
{
if( done == true )
{
// Treat bottom left as (0,0), but not for sprite strips (they're flipped in PackTextures_SpriteStrip).
if( settings.originAtBottomLeft && settings.createStrip == false )
{
pImageInfo->pImages[i].y = sizeY - pImageInfo->pImages[i].y - pImageInfo->pImages[i].h;
assert( pImageInfo->pImages[i].y < sizeY );
}
char filenameWithoutExtension[PATH_MAX];
int fullNameLen = strlen(pImageInfo->pImages[i].filename);
int extensionLen = 0;
for( int j=fullNameLen-1; j>=1; j-- )
{
if( pImageInfo->pImages[i].filename[j] == '.' )
{
extensionLen = fullNameLen - j;
break;
}
}
strncpy_s( filenameWithoutExtension, pImageInfo->pImages[i].filename, fullNameLen-extensionLen );
cJSON* jSprite = cJSON_CreateObject();
cJSON_AddStringToObject( jSprite, "name", filenameWithoutExtension );
cJSON* jPos = cJSON_CreateArray();
cJSON_AddItemToObject( jSprite, "pos", jPos );
cJSON_AddItemToArray( jPos, cJSON_CreateNumber(pImageInfo->pImages[i].x) );
cJSON_AddItemToArray( jPos, cJSON_CreateNumber(pImageInfo->pImages[i].y) );
cJSON* jSize = cJSON_CreateArray();
cJSON_AddItemToObject( jSprite, "size", jSize );
cJSON_AddItemToArray( jSize, cJSON_CreateNumber(pImageInfo->pImages[i].w) );
cJSON_AddItemToArray( jSize, cJSON_CreateNumber(pImageInfo->pImages[i].h) );
if( settings.trim )
{
cJSON* jPos = cJSON_CreateArray();
cJSON_AddItemToObject( jSprite, "trimpos", jPos );
cJSON_AddItemToArray( jPos, cJSON_CreateNumber(pImageInfo->pImages[i].trimmedX) );
cJSON_AddItemToArray( jPos, cJSON_CreateNumber(pImageInfo->pImages[i].trimmedY) );
cJSON* jSize = cJSON_CreateArray();
cJSON_AddItemToObject( jSprite, "trimsize", jSize );
cJSON_AddItemToArray( jSize, cJSON_CreateNumber(pImageInfo->pImages[i].trimmedW) );
cJSON_AddItemToArray( jSize, cJSON_CreateNumber(pImageInfo->pImages[i].trimmedH) );
}
cJSON_AddItemToArray( jSpriteArray, jSprite );
if( pImageInfo->pImages[i].cdts.size() > 0 && pImageInfo->pImages[i].cdts[0] )
{
cJSON* jVertexArray = cJSON_CreateArray();
cJSON_AddItemToObject( jSprite, "verts", jVertexArray );
cJSON* jIndexArray = cJSON_CreateArray();
cJSON_AddItemToObject( jSprite, "indices", jIndexArray );
std::vector<p2t::Triangle*> triangles = pImageInfo->pImages[i].cdts[0]->GetTriangles();
//std::list<p2t::Triangle*> map = cdt->GetMap();
std::vector<p2t::Point> vertices;
std::vector<unsigned int> indices;
for( unsigned int t=0; t<triangles.size(); t++ )
{
for( unsigned int v=0; v<3; v++ )
{
p2t::Point* point = triangles[t]->GetPoint( v );
std::vector<p2t::Point>::iterator it = std::find( vertices.begin(), vertices.end(), *point );
if( it != vertices.end() )
{
// Duplicate vertex.
int index = it - vertices.begin();
indices.push_back( index );
}
else
{
// New vertex.
int index = vertices.size();
vertices.push_back( *point );
indices.push_back( index );
}
}
}
for( unsigned int i=0; i<vertices.size(); i++ )
{
cJSON_AddItemToArray( jVertexArray, cJSON_CreateNumber( vertices[i].x ) );
cJSON_AddItemToArray( jVertexArray, cJSON_CreateNumber( vertices[i].y ) );
}
for( unsigned int i=0; i<indices.size(); i++ )
{
cJSON_AddItemToArray( jIndexArray, cJSON_CreateNumber( indices[i] ) );
}
}
}
// Free memory.
//free( pImages[i].imageBuffer );
//delete[] pImages[i].filename;
}
char* jsonstr = cJSON_Print( jRoot );
//printf( "%s\n", jsonstr );
char outputjsonfile[PATH_MAX];
sprintf_s( outputjsonfile, 260, "%s.json", settings.outputFilename );
FILE* file;
#if WIN32
fopen_s( &file, outputjsonfile, "w" );
#else
file = fopen( outputjsonfile, "w" );
#endif
fprintf( file, jsonstr );
fclose( file );
delete jsonstr;
cJSON_Delete( jRoot );
delete[] pNewImage;
//delete[] pImages;
}
return pImageInfo;
}
bool PackTextures(ImageBlock* pImages, int fileCount, unsigned int textureWidth, unsigned int textureHeight, int padding)
{
rbp::MaxRectsBinPack m_BinPack;
m_BinPack.Init( textureWidth, textureHeight );
m_BinPack.MyHack_AllowRotation = false;
for( int i=0; i<fileCount; i++ )
{
if( pImages[i].trimmedW == 0 )
pImages[i].binRect = m_BinPack.Insert( pImages[i].w+padding, pImages[i].h+padding, rbp::MaxRectsBinPack::RectContactPointRule );
else
pImages[i].binRect = m_BinPack.Insert( pImages[i].trimmedW+padding, pImages[i].trimmedH+padding, rbp::MaxRectsBinPack::RectContactPointRule );
//float occupancy = m_BinPack.Occupancy();
if( pImages[i].binRect.width == 0 )
return false;
pImages[i].x = pImages[i].binRect.x;
pImages[i].y = pImages[i].binRect.y;
assert( pImages[i].y < textureHeight );
//if( rect.x + rect.width > (int)highestX )
// highestX = rect.x + rect.width;
//if( rect.y + rect.height > (int)highestY )
// highestY = rect.y + rect.height;
//printf( "%s (%d,%d)\n", pImages[i].filename, pImages[i].w, pImages[i].h );
//printf( "%s occupancy %f%%\n", filenameCStr, occupancy );
}
return true;
}
bool PackTextures_SpriteStrip(ImageBlock* pImages, int fileCount, unsigned int textureWidth, unsigned int textureHeight, int padding, bool createFromBottomLeft, bool allowMultipleLines)
{
unsigned int currx = 0;
unsigned int curry = 0;
unsigned int highestY = 0;
for( int i=0; i<fileCount; i++ )
{
if( curry + pImages[i].h > (unsigned int)textureHeight )
{
return false;
}
if( currx + pImages[i].w > (unsigned int)textureWidth )
{
if( allowMultipleLines == false )
return false;
currx = 0;
curry += pImages[i].h;
if( curry > (unsigned int)textureHeight )
return false;
}
{
pImages[i].x = currx;
pImages[i].y = curry;
if( pImages[i].x >= textureWidth )
return false;
if( pImages[i].y >= textureHeight )
return false;
assert( pImages[i].y < textureHeight );
currx += pImages[i].w;
if( curry + pImages[i].h > highestY )
highestY = curry + pImages[i].h;
if( highestY > textureHeight )
return false;
}
}
if( createFromBottomLeft )
{
for( int i=0; i<fileCount; i++ )
{
pImages[i].y = textureHeight - pImages[i].y - pImages[i].h;
assert( pImages[i].y < textureHeight );
}
}
return true;
}
void CopyImageChunk(unsigned char* dest, unsigned int destWidth, unsigned int destHeight, ImageBlock* src, unsigned int startX, unsigned int startY, unsigned int widthToCopy, unsigned int heightToCopy)
{
unsigned int sourceOffsetX = startX;
unsigned int sourceOffsetY = startY;
unsigned int width = widthToCopy;
unsigned int height = heightToCopy;
if( width == 0 )
{
width = src->w;
height = src->h;
}
if( src->trimmedW != 0 )
{
sourceOffsetX = src->trimmedX;
sourceOffsetY = src->trimmedY;
width = src->trimmedW;
height = src->trimmedH;
}
for( unsigned int y=0; y<height; y++ )
{
for( unsigned int x=0; x<width; x++ )
{
int destoffset = ((src->y+y)*destWidth + (src->x+x));
int srcoffset = ((sourceOffsetY + y)*src->w + sourceOffsetX + x);
((int*)dest)[destoffset] = ((int*)src->imageBuffer)[srcoffset];
}
}
}
void TriangulateSprites(ImageBlock* pImages, int fileCount)
{
for( int filei=0; filei<fileCount; filei++ )
{
int scale = 1;
unsigned int origW = pImages[filei].w;
unsigned int origH = pImages[filei].h;
unsigned int scaledW;
unsigned int scaledH;
unsigned char* pscaledPixels;
// Experimenting with catching corners more closely without changing marchingsquares code.
if( scale != 1 )
{
scaledW = pImages[filei].w * scale;
scaledH = pImages[filei].h * scale;
pscaledPixels = new unsigned char[scaledW*scaledH*4];
for( unsigned int oh=0; oh<origH; oh++ )
{
for( unsigned int ow=0; ow<origW; ow++ )
{
for( int y=0; y<scale; y++ )
{
for( int x=0; x<scale; x++ )
{
assert( (oh*scale+y)*scaledW + ow+x < scaledW*scaledH*4 );
pscaledPixels[((oh*scale+y)*scaledW + ow*scale+x)*4 + 0] = pImages[filei].imageBuffer[(oh*origW + ow)*4 + 0];
pscaledPixels[((oh*scale+y)*scaledW + ow*scale+x)*4 + 1] = pImages[filei].imageBuffer[(oh*origW + ow)*4 + 1];
pscaledPixels[((oh*scale+y)*scaledW + ow*scale+x)*4 + 2] = pImages[filei].imageBuffer[(oh*origW + ow)*4 + 2];
pscaledPixels[((oh*scale+y)*scaledW + ow*scale+x)*4 + 3] = pImages[filei].imageBuffer[(oh*origW + ow)*4 + 3];
}
}
}
}
}
else
{
scaledW = origW;
scaledH = origH;
pscaledPixels = pImages[filei].imageBuffer;
}
// Find edges of sprite.
std::list<ivec2> pPoints;
MarchingSquares march;
march.DoMarch( pscaledPixels, scaledW, scaledH, &pPoints );
if( scale != 1 )
delete pscaledPixels;
// Add them to a vector of points for poly2tri.
std::vector<p2t::Point*> polyLine;
std::list<ivec2>::iterator p;
if( true ) // Attempt to reduce the number of obvious points manually.
{
p2t::Point prevPoint(-1, -1), prevPrevPoint(-1, -1);
for( p = pPoints.begin(); p != pPoints.end(); p++ )
{
p2t::Point currPoint( p->x, p->y );
bool added = false;
if( prevPoint.x != -1 )
{
if( prevPrevPoint.x == -1 )
{
//printf( "Adding first point - (%f, %f)\n", prevPoint.x, prevPoint.y );
polyLine.push_back( new p2t::Point( prevPoint ) );
added = true;
}
else
{
// Ignore straight axis-aligned lines.
if( ( currPoint.x == prevPoint.x && currPoint.x == prevPrevPoint.x ) ||
( currPoint.y == prevPoint.y && currPoint.y == prevPrevPoint.y ) )
{
}
// Ignore straight diagonal lines.
else if( (std::abs(currPoint.x - prevPoint.x) == std::abs(currPoint.y - prevPoint.y)) &&
(std::abs(prevPrevPoint.x - prevPoint.x) == std::abs(prevPrevPoint.y - prevPoint.y)) )
{
}
// Ignore tight single pixel corners going inwards.
else if( (currPoint.x == prevPoint.x-1 && prevPrevPoint.y == prevPoint.y-1) ||
(currPoint.y == prevPoint.y+1 && prevPrevPoint.x == prevPoint.x-1) ||
(currPoint.x == prevPoint.x+1 && prevPrevPoint.y == prevPoint.y+1) ||
(currPoint.y == prevPoint.y-1 && prevPrevPoint.x == prevPoint.x+1) )
{
}
else
{
//printf( "Adding point - (%f, %f)\n", prevPoint.x, prevPoint.y );
polyLine.push_back( new p2t::Point( prevPoint ) );
added = true;
}
}
}
if( added )
prevPrevPoint = prevPoint;
prevPoint = currPoint;
}
//printf( "Adding last point - (%f, %f)\n", prevPoint.x, prevPoint.y );
polyLine.push_back( new p2t::Point( prevPoint ) );
}
else // include all points from the marching squares
{
for( p = pPoints.begin(); p != pPoints.end(); p++ )
{
polyLine.push_back( new p2t::Point( p->x/(float)scale, p->y/(float)scale ) );
}
}
// Eliminate unneccessary vertices using "psimpl::simplify_douglas_peucker".
if( true )
{
// Add first point at the end to make a loop.
ivec2 firstPoint = pPoints.front();
polyLine.push_back( new p2t::Point( firstPoint.x, firstPoint.y ) );
std::deque<double> polyLineQueue;
double* result = new double[polyLine.size()*2];
for( unsigned int i=0; i<polyLine.size(); i++ )
{
polyLineQueue.push_back( polyLine[i]->x );
polyLineQueue.push_back( polyLine[i]->y );
}
double* endofresult = psimpl::simplify_douglas_peucker<2>( polyLineQueue.begin(), polyLineQueue.end(), 2.0f, result );
double* resultcopy = result;
polyLine.clear();
while( result != endofresult - 2 ) // Don't copy last point, it should be the same as the first.
{
polyLine.push_back( new p2t::Point( result[0], result[1] ) );
result += 2;
}
delete[] resultcopy;
}
// Triangulate.
p2t::CDT* cdt = new p2t::CDT( polyLine );
cdt->Triangulate();
pImages[filei].cdts.push_back( cdt );
// Print some status.
std::vector<p2t::Triangle*> triangles = cdt->GetTriangles();
printf( "Number of triangles: %d\n", triangles.size() );
//for( unsigned int t=0; t<triangles.size(); t++ )
//{
// p2t::Point* point0 = triangles[t]->GetPoint( 0 );
// p2t::Point* point1 = triangles[t]->GetPoint( 1 );
// p2t::Point* point2 = triangles[t]->GetPoint( 2 );
// printf( "triangles %d: (%0.2f,%0.2f), (%0.2f,%0.2f), (%0.2f,%0.2f)\n",
// t, point0->x, point0->y, point1->x, point1->y, point2->x, point2->y );
//}
}
}
void TrimSprites(ImageBlock* pImages, int fileCount, int trim)
{
for( int i=0; i<fileCount; i++ )
{
unsigned int w = pImages[i].w;
unsigned int h = pImages[i].h;
unsigned char* pPixels = pImages[i].imageBuffer;
// Find edges of sprite.
unsigned int top = 0;
unsigned int bottom = pImages[i].h;
unsigned int left = 0;
unsigned int right = pImages[i].w;
// Find the top.
for( unsigned int y=0; y<h; y++ )
{
for( unsigned int x=0; x<w; x++ )
{
if( pPixels[(y*w + x)*4 + 3] > trim )
{
top = y;
x = w;
y = h;
}
}
}
// Find the bottom.
for( unsigned int y=h-1; y<h; y-- )
{
for( unsigned int x=0; x<w; x++ )
{
if( pPixels[(y*w + x)*4 + 3] > trim )
{
bottom = y;
x = w;
y = h+1;
}
}
}
// Find the left side.
for( unsigned int x=0; x<w; x++ )
{
for( unsigned int y=0; y<h; y++ )
{
if( pPixels[(y*w + x)*4 + 3] > trim )
{
left = x;
x = w;
y = h;
}
}
}
// Find the right side.
for( unsigned int x=w-1; x<w; x-- )
{
for( unsigned int y=0; y<h; y++ )
{
if( pPixels[(y*w + x)*4 + 3] > trim )
{
right = x;
x = w+1;
y = h;
}
}
}
pImages[i].trimmedX = left;
pImages[i].trimmedY = top;
pImages[i].trimmedW = right-left + 1;
pImages[i].trimmedH = bottom-top + 1;
}
}
|
efe1a7856a73924e423ef0bc88e8fd3d4a7816bc | 798f80f438091cb7d9c0bebcefa06a22537d687b | /Gateway/Test/Technical/Sequencer.hpp | a242aab3f4b02f6d2d34830ba8570661dfa55897 | [] | no_license | popeyer1/HFT-exchange | 011120c30707b122bf43b626f1330560e991a53c | 841b147ccd695dd6904b48523cc96635018c5e5a | refs/heads/main | 2023-09-03T19:12:11.695318 | 2021-10-29T12:33:41 | 2021-10-29T12:33:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,635 | hpp | Sequencer.hpp | #ifndef _SEQUENCER_TEST_HPP_
#define _SEQUENCER_TEST_HPP_
#include "sequencer/Sequencer.hpp"
#include <gtest/gtest.h>
class SequencerTest : public testing::Test
{
protected :
core::Sequencer<> mSequencer;
StructData *mDataOne;
StructData *mDataTwo;
public :
SequencerTest (){}
~SequencerTest(){}
void SetUp() {
mDataOne = new StructData();
mDataOne->mLength = 10;
mDataOne->mData = (void*) "first";
mDataOne->mClientId = 5;
mDataTwo = new StructData();
mDataTwo->mLength = 10;
mDataTwo->mData = (void*) "second";
mDataTwo->mClientId = 6;
}
void TearDown() {
delete mDataOne;
delete mDataTwo;
}
};
TEST_F(SequencerTest, Subscription) {
ASSERT_TRUE(mSequencer.subscribe (10,1));
ASSERT_TRUE(mSequencer.unSubscribe (10));
}
TEST_F(SequencerTest, SubcritonFailed) {
for (int i = 1;i<=10;++i)
mSequencer.subscribe (i,1);
ASSERT_FALSE(mSequencer.subscribe (11,1));
ASSERT_FALSE(mSequencer.unSubscribe (11));
}
TEST_F(SequencerTest, pushConsumeSignleClient) {
ASSERT_TRUE(mSequencer.subscribe (5,1));
ASSERT_TRUE(mSequencer.push(mDataOne));
StructData * lTemp = mSequencer.consume ();
ASSERT_STREQ("first",(char *)lTemp->mData);
ASSERT_TRUE(mSequencer.unSubscribe (5));
}
TEST_F(SequencerTest, pushConsumeMultipleClient) {
ASSERT_TRUE(mSequencer.subscribe (5,1));
ASSERT_TRUE(mSequencer.subscribe (6,1));
ASSERT_TRUE(mSequencer.push(mDataOne));
ASSERT_TRUE(mSequencer.push(mDataTwo));
StructData * lTemp = mSequencer.consume ();
ASSERT_TRUE(lTemp);
ASSERT_STREQ("second",(char *)lTemp->mData);
lTemp = mSequencer.consume ();
ASSERT_TRUE(lTemp);
ASSERT_STREQ("first",(char *)lTemp->mData);
ASSERT_TRUE(mSequencer.unSubscribe (5));
ASSERT_TRUE(mSequencer.unSubscribe (6));
}
TEST_F(SequencerTest, pushConsumeMultipleClientDifferentRatio) {
ASSERT_TRUE(mSequencer.subscribe (5,1));
ASSERT_TRUE(mSequencer.subscribe (6,2));
ASSERT_TRUE(mSequencer.push(mDataOne));
ASSERT_TRUE(mSequencer.push(mDataTwo));
StructData * lTemp = mSequencer.consume ();
ASSERT_TRUE(lTemp);
ASSERT_STREQ("second",(char *)lTemp->mData);
lTemp = mSequencer.consume ();
ASSERT_FALSE(lTemp);
lTemp = mSequencer.consume ();
ASSERT_TRUE(lTemp);
ASSERT_STREQ("first",(char *)lTemp->mData);
ASSERT_TRUE(mSequencer.unSubscribe (5));
ASSERT_TRUE(mSequencer.unSubscribe (6));
}
#endif |
6f6adca89628cd0d8eaa1161d2c2f68544b3f7d7 | 1cd6f7d71b1e9fc887415a9ade4e636b2ad7a7c1 | /Castlevania/BeginScene.h | f55ef06f1c935193ff2aa15690e09df587498e27 | [] | no_license | hungdotjs/game-castlevania | cc21f3535aa675cb816afc520717e9ef3789c470 | 277793e5067687470d76b8deb6942e0ae81f34b7 | refs/heads/master | 2022-12-04T16:15:12.563573 | 2020-08-08T08:24:08 | 2020-08-08T08:24:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,089 | h | BeginScene.h | #pragma once
#include "Game.h"
#include "Textures.h"
#include "Scence.h"
#include "GameObject.h"
#include "Map.h"
class BeginScene : public CScene
{
protected:
vector<LPGAMEOBJECT> objects;
//vector<LPGAMEOBJECT> coObjects;
vector<int> arrTexturesID;
vector<int> arrSpritesID;
vector<int> arrAnimationsID;
vector<int> arrAnimationSetsID;
void _ParseSection_TEXTURES(string line);
void _ParseSection_SPRITES(string line);
void _ParseSection_ANIMATIONS(string line);
void _ParseSection_ANIMATION_SETS(string line);
void _ParseSection_OBJECTS(string line);
void _ParseSection_MAP(string line);
public:
int stage;
Map* map;
public:
BeginScene(int id, LPCWSTR filePath);
virtual void Load();
virtual void Update(DWORD dt);
virtual void Render();
virtual void Unload();
//friend class CPlayScenceKeyHandler;
~BeginScene();
};
class BeginSceneKeyHandler : public CScenceKeyHandler
{
public:
virtual void KeyState(BYTE* states);
virtual void OnKeyDown(int KeyCode);
virtual void OnKeyUp(int KeyCode);
BeginSceneKeyHandler(CScene* s) :CScenceKeyHandler(s) {};
};
|
ddc14378b6606a66a544c77b48d7b30d2697ef9d | f3a1120331a1c30f0144c511e20c120be86cf150 | /src/Derivation.cpp | 8fa0ac977a83e9bd4a83c714aa39f362d54d525d | [] | no_license | bhaddow/gibbler | 11f158e55514bc1fe3377d3a11ee6e78050a4ba8 | 20761d337a03f770d0d8cf5580d6d560e51ac5ee | refs/heads/master | 2021-01-18T11:45:04.847813 | 2011-10-31T22:33:22 | 2011-10-31T22:33:22 | 2,672,235 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,479 | cpp | Derivation.cpp | /***********************************************************************
Moses - factored phrase-based language decoder
Copyright (C) 2009 University of Edinburgh
This library 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 2.1 of the License, or (at your option) any later version.
This library 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 this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
***********************************************************************/
#include "Derivation.h"
#include "Gibbler.h"
#include "DummyScoreProducers.h"
#include "WeightManager.h"
using namespace std;
using namespace Moses;
namespace Josiah {
bool Derivation::PhraseAlignment::operator<(const PhraseAlignment& other) const {
if (_sourceSegment < other._sourceSegment) return true;
if (other._sourceSegment < _sourceSegment) return false;
return _target < other._target;
}
Derivation::Derivation(const Sample& sample) {
m_featureValues = sample.GetFeatureValues();
const Hypothesis* currHypo = sample.GetTargetTail();
while ((currHypo = (currHypo->GetNextHypo()))) {
TargetPhrase targetPhrase = currHypo->GetTargetPhrase();
m_alignments.push_back(
PhraseAlignment(currHypo->GetCurrSourceWordsRange(), Phrase(targetPhrase)));
}
const FVector& weights = WeightManager::instance().get();
m_score = inner_product(m_featureValues, weights);
}
//FIXME: This may not be the most efficient way of mapping derivations, but will do for now
bool Derivation::operator <(const Derivation & other) const {
bool result = m_alignments < other.m_alignments;
return result;
}
void Derivation::getTargetFactors(std::vector<const Factor*>& sentence) const {
for (vector<PhraseAlignment>::const_iterator i = m_alignments.begin(); i != m_alignments.end(); ++i) {
const Phrase& targetPhrase = i->_target;
for (size_t j = 0; j < targetPhrase.GetSize(); ++j) {
sentence.push_back(targetPhrase.GetFactor(j,0));
}
}
}
int Derivation::getTargetSentenceSize() const { //shortcut, extract tgt size from feature vector
std::vector<std::string> words;
getTargetSentence(words);
return words.size();
}
void Derivation::getTargetSentence(std::vector<std::string>& targetWords ) const {
for (vector<PhraseAlignment>::const_iterator i = m_alignments.begin(); i != m_alignments.end(); ++i) {
const Phrase& targetPhrase = i->_target;
for (size_t j = 0; j < targetPhrase.GetSize(); ++j) {
targetWords.push_back(targetPhrase.GetWord(j).GetFactor(0)->GetString());
}
}
}
ostream& operator<<(ostream& out, const Derivation& d) {
out << "Target: << ";
for (size_t i = 0; i < d.m_alignments.size(); ++i) {
out << d.m_alignments[i]._target;
out << d.m_alignments[i]._sourceSegment << " ";
}
out << ">> Feature values: ";
out << d.m_featureValues;
out << " Score: ";
out << d.m_score;
return out;
}
}
//namespace
|
bd43408ac56cd6fb7424fa3b7d8d92c5e0901a6f | 44dee427279f8cdf11f9e753c3dbf53334bd388e | /Koncpect.cpp | 266f7cb3acc8c5b4e3feeda88ead30f73accceaa | [] | no_license | TerrorBladeOz/Koncpect | 88e81f100d519f68714e73eee003ea0d3165e687 | dc2328aa05e3d59f9f7a5bcbe7cd3d6c060401fe | refs/heads/master | 2023-05-07T14:10:29.842991 | 2021-05-31T17:51:47 | 2021-05-31T17:51:47 | 372,588,200 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,436 | cpp | Koncpect.cpp | #include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "rus");
cout << "\tОсновные плюсы указателей\n";
cout << "1) Массивы реализованы с помощью указателей. Указатели могут использоваться для итерации по массиву.\n";
cout << "2) Они являются единственным способом динамического выделения памяти в C++.\n";
cout << "3) Они могут использоваться для передачи большого количества данных в функцию без копирования этих данных.\n";
cout << "4) Они могут использоваться для передачи одной функции в качестве параметра другой функции.\n";
cout << "5) Они используются для достижения полиморфизма при работе с наследованием.\n";
cout << "6) Они могут использоваться для представления одной структуры/класса в другой структуре/классе, формируя, таким образом, целые цепочки.\n";
cout << "Задание №1 \n";
/*
Какие значения мы получим в результате выполнения следующей программы
(предположим, что это 32-битное устройство, и тип short занимает 2 байта):
short value = 7; // &value = 0012FF60.
short otherValue = 3; // &otherValue = 0012FF54.
short* ptr = &value;
std::cout << &value << '\n'; Ответ: 0012FF60.
std::cout << value << '\n'; Ответ: 7.
std::cout << ptr << '\n'; Ответ: 0012FF60.
std::cout << *ptr << '\n'; Ответ: 7.
std::cout << '\n';
*ptr = 9;
std::cout << &value << '\n'; Ответ: 0012FF60.
std::cout << value << '\n'; Ответ: 9.
std::cout << ptr << '\n'; Ответ: 0012FF60.
std::cout << *ptr << '\n'; Ответ: 9.
std::cout << '\n';
ptr = &otherValue;
std::cout << &otherValue << '\n'; Ответ: 0012FF54.
std::cout << otherValue << '\n'; Ответ: 3.
std::cout << ptr << '\n'; Ответ: 0012FF54.
std::cout << *ptr << '\n'; Ответ: 3.
std::cout << '\n';
std::cout << sizeof(ptr) << '\n'; Ответ: 4, так как на все 32 бита, то есть 4 байта.
std::cout << sizeof(*ptr) << '\n'; Ответ: 2, так как тип шорт занимает 2 байта, то есть 16 бит.*/
// ПРОВЕРКА
short value = 7;
short otherValue = 3;
short* ptr = &value;
std::cout << &value << '\n';
std::cout << value << '\n';
std::cout << ptr << '\n';
std::cout << *ptr << '\n';
std::cout << '\n';
*ptr = 9;
std::cout << &value << '\n';
std::cout << value << '\n';
std::cout << ptr << '\n';
std::cout << *ptr << '\n';
std::cout << '\n';
ptr = &otherValue;
std::cout << &otherValue << '\n';
std::cout << otherValue << '\n';
std::cout << ptr << '\n';
std::cout << *ptr << '\n';
std::cout << '\n';
std::cout << sizeof(ptr) << '\n';
std::cout << sizeof(*ptr) << '\n';
}
|
24d1ceae69d1c9faffdab6dc7e8755461f6ee551 | 17334c8543f92aaf2307e6671e0822946e217649 | /addons/main/CfgAmmo.hpp | fc07fe930a9b9aa5de0b7f84d938c24cc341477b | [
"MIT"
] | permissive | ARCOMM/ARCORE | 0727b2c8464cdfc376578860088be6eb7c3a72d5 | dba8c3c9c092c719c27f5829fd071ec747142974 | refs/heads/master | 2021-06-03T12:41:59.087864 | 2020-05-09T23:52:22 | 2020-05-09T23:52:22 | 95,894,172 | 1 | 4 | MIT | 2020-05-09T23:52:24 | 2017-06-30T14:06:39 | SQF | UTF-8 | C++ | false | false | 283 | hpp | CfgAmmo.hpp | class CfgAmmo {
class FlareCore;
class FlareBase: FlareCore {};
class Flare_82mm_AMOS_White: FlareCore {
intensity = 1250000;
};
class F_40mm_White: FlareBase {
intensity = 1250000;
timeToLive = 40;
coefGravity = 0.25;
};
};
|
d38f14dfac3f416b6451282c8f27e1ab40452432 | 4f5e6d6af789379c7a2764c7bfac79c4154c7ad5 | /D3DBackend/IShader.cpp | 6f05fd707b5410e267988f710cb2c36b8c0ae167 | [] | no_license | SusirinkeLaborui/Laboras21 | 644bdaa1c7ab8a900ae3ec0f566093795ee2bec6 | ecb82b119659af4ff82003827e25109b2c35ba59 | refs/heads/master | 2016-09-06T07:32:16.127204 | 2013-12-17T10:52:27 | 2013-12-17T10:52:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,001 | cpp | IShader.cpp | #include "PrecompiledHeader.h"
#include "IShader.h"
#include "Tools.h"
using namespace std;
void IShader::Init(ComPtr<ID3D11Device> device)
{
InitializeShader(device, vs, ps, GetInputLayout());
InitializeShaderBuffers(device);
}
void IShader::InitializeShader(ComPtr<ID3D11Device> device, wstring vs, wstring ps, const vector<D3D11_INPUT_ELEMENT_DESC> &inputLayout)
{
unique_ptr<char> vBuffer;
UINT vSize;
AssertBool(Tools::ReadFileToArray(vs, vBuffer, vSize), L"Could not read " + vs);
// Create the vertex shader from the buffer.
Assert(device->CreateVertexShader(vBuffer.get(), vSize, nullptr, &vertexShader));
unique_ptr<char> pBuffer;
UINT pSize;
AssertBool(Tools::ReadFileToArray(ps, pBuffer, pSize), L"Could not read " + ps);
// Create the pixel shader from the buffer.
Assert(device->CreatePixelShader(pBuffer.get(), pSize, nullptr, &pixelShader));
Assert(device->CreateInputLayout(&inputLayout[0], static_cast<UINT>(inputLayout.size()), vBuffer.get(), vSize, &layout));
} |
a719ad5aa5cb474e52ffd0dbae8cdfa603e9b092 | ece30e7058d8bd42bc13c54560228bd7add50358 | /DataCollector/mozilla/xulrunner-sdk/include/nsIDOMCustomEvent.h | 4723e424dae11cf295e6747cce0ea2e1f48fe085 | [
"Apache-2.0"
] | permissive | andrasigneczi/TravelOptimizer | b0fe4d53f6494d40ba4e8b98cc293cb5451542ee | b08805f97f0823fd28975a36db67193386aceb22 | refs/heads/master | 2022-07-22T02:07:32.619451 | 2018-12-03T13:58:21 | 2018-12-03T13:58:21 | 53,926,539 | 1 | 0 | Apache-2.0 | 2022-07-06T20:05:38 | 2016-03-15T08:16:59 | C++ | UTF-8 | C++ | false | false | 3,693 | h | nsIDOMCustomEvent.h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl\nsIDOMCustomEvent.idl
*/
#ifndef __gen_nsIDOMCustomEvent_h__
#define __gen_nsIDOMCustomEvent_h__
#ifndef __gen_nsIDOMEvent_h__
#include "nsIDOMEvent.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIVariant; /* forward declaration */
/* starting interface: nsIDOMCustomEvent */
#define NS_IDOMCUSTOMEVENT_IID_STR "b56ae6ca-c822-489e-be71-2a9f3c56082e"
#define NS_IDOMCUSTOMEVENT_IID \
{0xb56ae6ca, 0xc822, 0x489e, \
{ 0xbe, 0x71, 0x2a, 0x9f, 0x3c, 0x56, 0x08, 0x2e }}
class NS_NO_VTABLE nsIDOMCustomEvent : public nsIDOMEvent {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMCUSTOMEVENT_IID)
/* readonly attribute nsIVariant detail; */
NS_IMETHOD GetDetail(nsIVariant * *aDetail) = 0;
/* void initCustomEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in nsIVariant detailArg); */
NS_IMETHOD InitCustomEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, nsIVariant *detailArg) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMCustomEvent, NS_IDOMCUSTOMEVENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMCUSTOMEVENT \
NS_IMETHOD GetDetail(nsIVariant * *aDetail) override; \
NS_IMETHOD InitCustomEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, nsIVariant *detailArg) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMCUSTOMEVENT(_to) \
NS_IMETHOD GetDetail(nsIVariant * *aDetail) override { return _to GetDetail(aDetail); } \
NS_IMETHOD InitCustomEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, nsIVariant *detailArg) override { return _to InitCustomEvent(typeArg, canBubbleArg, cancelableArg, detailArg); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMCUSTOMEVENT(_to) \
NS_IMETHOD GetDetail(nsIVariant * *aDetail) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDetail(aDetail); } \
NS_IMETHOD InitCustomEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, nsIVariant *detailArg) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InitCustomEvent(typeArg, canBubbleArg, cancelableArg, detailArg); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMCustomEvent : public nsIDOMCustomEvent
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMCUSTOMEVENT
nsDOMCustomEvent();
private:
~nsDOMCustomEvent();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMCustomEvent, nsIDOMCustomEvent)
nsDOMCustomEvent::nsDOMCustomEvent()
{
/* member initializers and constructor code */
}
nsDOMCustomEvent::~nsDOMCustomEvent()
{
/* destructor code */
}
/* readonly attribute nsIVariant detail; */
NS_IMETHODIMP nsDOMCustomEvent::GetDetail(nsIVariant * *aDetail)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void initCustomEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in nsIVariant detailArg); */
NS_IMETHODIMP nsDOMCustomEvent::InitCustomEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, nsIVariant *detailArg)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMCustomEvent_h__ */
|
8ed3a6f65952254e403b1024dc93a1700b0e2e45 | f83bc61d3757638a5d9bae2a62cacb4055b5596c | /MiscFuncs/StopWatch.cpp | be2982261a0d3f7cb18c2d197340dc61d70380fd | [] | no_license | ZSCGR/WinPCK | 142ed5d5e5f7c034c2adb532f7d94dac786c32bc | b26d359a3e7503470dbf25cdee017f5780feb7ea | refs/heads/master | 2023-01-10T07:31:30.010397 | 2019-12-05T08:29:55 | 2019-12-05T08:29:55 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 888 | cpp | StopWatch.cpp | #include "StopWatch.h"
#include <stdio.h>
#define TIME_ELAPSED_STR "ÓÃʱ %.2fms"
#define TIME_ELAPSED_STRW L"ÓÃʱ %.2fms"
CStopWatch::CStopWatch()
{
m_start.QuadPart = 0;
m_stop.QuadPart = 0;
QueryPerformanceFrequency(&m_frequency);
}
void CStopWatch::start()
{
QueryPerformanceCounter(&m_start);
}
void CStopWatch::stop()
{
QueryPerformanceCounter(&m_stop);
}
double CStopWatch::getElapsedTime()
{
LARGE_INTEGER time;
time.QuadPart = m_stop.QuadPart - m_start.QuadPart;
return (double)time.QuadPart / (double)m_frequency.QuadPart * 1000;
}
#if 0
const char * CStopWatch::getElapsedTimeStringA()
{
static char szTime[100];
sprintf_s(szTime, TIME_ELAPSED_STR, getElapsedTime());
return szTime;
}
const wchar_t * CStopWatch::getElapsedTimeStringW()
{
static wchar_t szTime[100];
swprintf_s(szTime, TIME_ELAPSED_STRW, getElapsedTime());
return szTime;
}
#endif |
70c2ea5019adba58999762e27dcb6b8480d13498 | b537f58747a329b96760bfdb2730bbef1da11007 | /Test01_1B/Test01_1B/main.cpp | 18f1e7069d47c6b1e9523f3d062abd8476fd79c5 | [] | no_license | hkkhuang/CCPP_Multi-Thread_Socket | b8f6e3f864ede4dbf062d5f09b41e5f6b49988ef | 6b40accf7673e34b1c59a29dfe2168e75be45c8e | refs/heads/master | 2021-04-09T10:49:13.696974 | 2018-03-30T09:04:04 | 2018-03-30T09:04:04 | 125,513,529 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,853 | cpp | main.cpp | #include <stdio.h>
#include <stdlib.h>
#include "osapi/osapi.h"
//定义一个类
class Buddhist :public OS_Thread
{
private:
virtual int Routine()
{
//线程体:执行他的任务
for (int i = 0; i < 100; i++)
{
printf("和尚念经。。。\n");
OS_Thread::Sleep(1); //静态函数
}
return 0;
}
};
//定义一个类
class Confucian :public OS_Thread
{
private:
virtual int Routine()
{
//线程体:执行他的任务
for (int i = 0; i < 500; i++)
{
printf("秀才读书。。。\n");
OS_Thread::Sleep(1); //静态函数
}
return 0;
}
};
int main()
{
Buddhist b;
b.Run();
Confucian c;
c.Run();
//两个子线程同时工作,主线程也可以工作,不影响
printf("-------------main主线程开始工作-------------\n");
for (int i = 0; i < 100; i++)
{
printf("管理人员开始工作。。。。。。。。。\n");
//主线程在执行的过程中也是需要sleep,让出cpu
OS_Thread::Sleep(1);
}
getchar();
return 0;
}
//秀才读书。。。
//和尚念经。。。
//和尚念经。。。
//秀才读书。。。
//秀才读书。。。
//和尚念经。。。
//秀才读书。。。
//和尚念经。。。
//秀才读书。。。
//和尚念经。。。
//秀才读书。。。
//和尚念经。。。
//秀才读书。。。
//和尚念经。。。
//秀才读书。。。
//和尚念经。。。
//------------ - main主线程开始工作------------ -
//管理人员开始工作。。。。。。。。。
//秀才读书。。。
//和尚念经。。。
//管理人员开始工作。。。。。。。。。
//和尚念经。。。
//秀才读书。。。
//管理人员开始工作。。。。。。。。。
//秀才读书。。。
//和尚念经。。。
//管理人员开始工作。。。。。。。。。
//秀才读书。。。
//和尚念经。。。
//
|
ee9d9e626721fd461432309eade6179d2d172fd0 | 2693b362673a46e02ae8ff92b919de5042e3e28e | /vessel build_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/Generics3.cpp | eeab2121430721c351afc1e66a53312d46baaa74 | [] | no_license | dopaminista/vessel_creation | 4cbddf644ac56b89d8ef94f028c8aa1cdbee6883 | 23f270a3a520af6a7755cf484a799231d1807dc4 | refs/heads/master | 2023-03-29T00:43:24.348238 | 2021-04-01T01:37:21 | 2021-04-01T01:37:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,191,973 | cpp | Generics3.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"
// Grpc.Core.Internal.NativeMethods
struct NativeMethods_t76E4AE7EF0FC0F146739687013D44AEB42E4BD4D;
// MS.Internal.Xml.Cache.XPathNodeInfoAtom
struct XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7;
// MS.Internal.Xml.Cache.XPathNode[]
struct XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>
struct EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>
struct EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>
struct EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Random/State>
struct EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>
struct EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>
struct EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>
struct EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.RenderTargetIdentifier>
struct EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderKeyword>
struct EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderTagId>
struct EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.RenderTargetHandle>
struct EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/LightData>
struct EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/ShadowData>
struct EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShadowSliceData>
struct EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.VisibleLight>
struct EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>
struct EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.SortingLayer>
struct EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>
struct EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>
struct EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>
struct EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>
struct EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>
struct EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>
struct EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>
struct EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>
struct EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/EventRecord>
struct EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.FocusController/FocusedElement>
struct EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey>
struct EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleValue>
struct EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>
struct EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>
struct EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>
struct EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>
struct EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>
struct EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Windows.Speech.SemanticMeaning>
struct EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>
struct EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>
struct Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.Single[]
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01;
// System.Type
struct Type_t;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// Unity.Barracuda.PrecompiledComputeOps/CompiledInstruction[]
struct CompiledInstructionU5BU5D_t252A47AAB12F0E91157261D5155B05724E6FF06A;
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod
struct CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3;
// UnityEngine.Playables.PlayableBinding[]
struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB;
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198;
// UnityEngine.UI.Selectable
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A;
// UnityEngine.UIElements.EventBase
struct EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD;
// UnityEngine.UIElements.Focusable
struct Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B;
// UnityEngine.UIElements.IPanel
struct IPanel_t3AAE62317DEE1C12E547C78C27556B659DE4F20A;
// UnityEngine.UIElements.VisualElement
struct VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral2743196813A5635EC097418239BD515966A50491;
IL2CPP_EXTERN_C String_t* _stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m04951211B31C418A5A3BFED5BCB0E1694A11CE1A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1C53D641096CDD20DAFB39778CBBBCB6E3DD08E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1DE2F185D54CF9CFE0E776DDE4DE13EC4B86C764_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m294DF1573552CAF2553AB3A18A87F97D5071A679_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2A50D69630360CE61A8746963D5918F00A9CD190_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2AF423D17198E438C0EFC65B276D2C53E684A093_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2DEF13AE06CC11CF9DA10D1683A6E61DE0670220_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2E3532B82D1C6D2AE0835E096591EC98D0982AB2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2F5191FF4B0043886B8E1804C211C6ED711AF648_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3909509FCD65B208DC2024C4E0C28C0D9CF48507_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3A0A9D335A01F821221FCEDA208354C993F4E65E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4776BC238C3BB4684A5694B7EAFF98F39195406C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m5A7A5AF62CCF46153A47CEF59A43C83C6D92BB56_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m6B46980E651EA5A3FDFDF0E11A514D4392774364_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m6F736FA9A64A4731F43C0EB684DEC9FC7827B12F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7724FEA10A3B810C3543323AE7A1F3B663972FF5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7B5B4F48EEC109CC8E24E6AB3A1ACABA55EBADC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m80A2ACBC3B0046EDE292A4DDE0674EEE5ED4861B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m80A7206A59DAB66B4057C520F2A17432A094A3FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8444FDF54FEBD602CA48F528EC463DB1AC8082E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8D6D84541FA8C039CE3800A657E8640AFFCD1063_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9E074032861558F9A487F16BF689BDF543E8C481_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA06904B635841F0E7F80D2F769DE07A6ED082B01_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA42072F2BBC8B8CA5E68B8072C0C62BD2B13A408_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA4E7989BC90D09B31EEDA1BDF04507D72F72A2A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA8EDB09064057A0786F373AD65D2D1BD26181070_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB9ECF917075C2CE34F2AE884DB5DF7ACAFF95FFC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC5BA4F2C682C18C4A01CECEDC74DE8D4FEAAD27C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC726C1C3778B75FBA6A571ECC911C567E3792487_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD62451B7245670D9AC8F19B55DD0D3E70E56CD3A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD87DEE7FA681F9557A5496318240CB81A013A113_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD982BB5C7B25B5FCFDB65DE14423EEE87A8B0A9D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDA9F64CC2753664296C3D3E7AA3AB26DEDDCA164_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDE37BE35B045A177D0F6B03F026E7CA9A5C1661A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE43AA242B05CD0763807010B4F86D59BA31DB453_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mEBF66555DEB4037B0220B2D9851EC8BC59004FF6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF50B58F842124158245C98B1F976703224B89103_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26_RuntimeMethod_var;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m04951211B31C418A5A3BFED5BCB0E1694A11CE1A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m1C53D641096CDD20DAFB39778CBBBCB6E3DD08E9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m1DE2F185D54CF9CFE0E776DDE4DE13EC4B86C764_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m294DF1573552CAF2553AB3A18A87F97D5071A679_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m2A50D69630360CE61A8746963D5918F00A9CD190_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m2AF423D17198E438C0EFC65B276D2C53E684A093_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m2DEF13AE06CC11CF9DA10D1683A6E61DE0670220_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m2E3532B82D1C6D2AE0835E096591EC98D0982AB2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m2F5191FF4B0043886B8E1804C211C6ED711AF648_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m3909509FCD65B208DC2024C4E0C28C0D9CF48507_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m3A0A9D335A01F821221FCEDA208354C993F4E65E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m4776BC238C3BB4684A5694B7EAFF98F39195406C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m5A7A5AF62CCF46153A47CEF59A43C83C6D92BB56_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m6B46980E651EA5A3FDFDF0E11A514D4392774364_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m6F736FA9A64A4731F43C0EB684DEC9FC7827B12F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m7724FEA10A3B810C3543323AE7A1F3B663972FF5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m7B5B4F48EEC109CC8E24E6AB3A1ACABA55EBADC5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m80A2ACBC3B0046EDE292A4DDE0674EEE5ED4861B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m80A7206A59DAB66B4057C520F2A17432A094A3FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m8444FDF54FEBD602CA48F528EC463DB1AC8082E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m8D6D84541FA8C039CE3800A657E8640AFFCD1063_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_m9E074032861558F9A487F16BF689BDF543E8C481_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mA06904B635841F0E7F80D2F769DE07A6ED082B01_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mA42072F2BBC8B8CA5E68B8072C0C62BD2B13A408_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mA4E7989BC90D09B31EEDA1BDF04507D72F72A2A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mA8EDB09064057A0786F373AD65D2D1BD26181070_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mB9ECF917075C2CE34F2AE884DB5DF7ACAFF95FFC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mC5BA4F2C682C18C4A01CECEDC74DE8D4FEAAD27C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mC726C1C3778B75FBA6A571ECC911C567E3792487_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mD62451B7245670D9AC8F19B55DD0D3E70E56CD3A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mD87DEE7FA681F9557A5496318240CB81A013A113_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mD982BB5C7B25B5FCFDB65DE14423EEE87A8B0A9D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mDA9F64CC2753664296C3D3E7AA3AB26DEDDCA164_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mDE37BE35B045A177D0F6B03F026E7CA9A5C1661A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mE43AA242B05CD0763807010B4F86D59BA31DB453_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mEBF66555DEB4037B0220B2D9851EC8BC59004FF6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EmptyInternalEnumerator_1_get_Current_mF50B58F842124158245C98B1F976703224B89103_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26_MetadataUsageId;
struct CompiledInstruction_t1A7A47CCA8CB85C205E98B6694AE7433991F0B4E_marshaled_com;
struct CompiledInstruction_t1A7A47CCA8CB85C205E98B6694AE7433991F0B4E_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com;
struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_com;
struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_pinvoke;
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.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>
struct EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>
struct EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>
struct EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Random/State>
struct EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>
struct EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>
struct EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>
struct EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.RenderTargetIdentifier>
struct EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderKeyword>
struct EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderTagId>
struct EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.RenderTargetHandle>
struct EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/LightData>
struct EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/ShadowData>
struct EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShadowSliceData>
struct EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.VisibleLight>
struct EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>
struct EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.SortingLayer>
struct EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>
struct EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>
struct EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>
struct EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>
struct EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>
struct EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>
struct EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>
struct EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>
struct EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/EventRecord>
struct EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.FocusController/FocusedElement>
struct EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey>
struct EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleValue>
struct EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>
struct EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>
struct EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>
struct EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>
struct EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>
struct EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Windows.Speech.SemanticMeaning>
struct EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>
struct EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// 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.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
{
};
// Google.Protobuf.ObjectIntPair`1<System.Object>
struct ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658
{
public:
// System.Int32 Google.Protobuf.ObjectIntPair`1::number
int32_t ___number_0;
// T Google.Protobuf.ObjectIntPair`1::obj
RuntimeObject * ___obj_1;
public:
inline static int32_t get_offset_of_number_0() { return static_cast<int32_t>(offsetof(ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658, ___number_0)); }
inline int32_t get_number_0() const { return ___number_0; }
inline int32_t* get_address_of_number_0() { return &___number_0; }
inline void set_number_0(int32_t value)
{
___number_0 = value;
}
inline static int32_t get_offset_of_obj_1() { return static_cast<int32_t>(offsetof(ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658, ___obj_1)); }
inline RuntimeObject * get_obj_1() const { return ___obj_1; }
inline RuntimeObject ** get_address_of_obj_1() { return &___obj_1; }
inline void set_obj_1(RuntimeObject * value)
{
___obj_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_1), (void*)value);
}
};
// MS.Internal.Xml.Cache.XPathNode
struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0
{
public:
// MS.Internal.Xml.Cache.XPathNodeInfoAtom MS.Internal.Xml.Cache.XPathNode::info
XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * ___info_0;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSibling
uint16_t ___idxSibling_1;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxParent
uint16_t ___idxParent_2;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSimilar
uint16_t ___idxSimilar_3;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::posOffset
uint16_t ___posOffset_4;
// System.UInt32 MS.Internal.Xml.Cache.XPathNode::props
uint32_t ___props_5;
// System.String MS.Internal.Xml.Cache.XPathNode::value
String_t* ___value_6;
public:
inline static int32_t get_offset_of_info_0() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___info_0)); }
inline XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * get_info_0() const { return ___info_0; }
inline XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 ** get_address_of_info_0() { return &___info_0; }
inline void set_info_0(XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * value)
{
___info_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___info_0), (void*)value);
}
inline static int32_t get_offset_of_idxSibling_1() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___idxSibling_1)); }
inline uint16_t get_idxSibling_1() const { return ___idxSibling_1; }
inline uint16_t* get_address_of_idxSibling_1() { return &___idxSibling_1; }
inline void set_idxSibling_1(uint16_t value)
{
___idxSibling_1 = value;
}
inline static int32_t get_offset_of_idxParent_2() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___idxParent_2)); }
inline uint16_t get_idxParent_2() const { return ___idxParent_2; }
inline uint16_t* get_address_of_idxParent_2() { return &___idxParent_2; }
inline void set_idxParent_2(uint16_t value)
{
___idxParent_2 = value;
}
inline static int32_t get_offset_of_idxSimilar_3() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___idxSimilar_3)); }
inline uint16_t get_idxSimilar_3() const { return ___idxSimilar_3; }
inline uint16_t* get_address_of_idxSimilar_3() { return &___idxSimilar_3; }
inline void set_idxSimilar_3(uint16_t value)
{
___idxSimilar_3 = value;
}
inline static int32_t get_offset_of_posOffset_4() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___posOffset_4)); }
inline uint16_t get_posOffset_4() const { return ___posOffset_4; }
inline uint16_t* get_address_of_posOffset_4() { return &___posOffset_4; }
inline void set_posOffset_4(uint16_t value)
{
___posOffset_4 = value;
}
inline static int32_t get_offset_of_props_5() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___props_5)); }
inline uint32_t get_props_5() const { return ___props_5; }
inline uint32_t* get_address_of_props_5() { return &___props_5; }
inline void set_props_5(uint32_t value)
{
___props_5 = value;
}
inline static int32_t get_offset_of_value_6() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___value_6)); }
inline String_t* get_value_6() const { return ___value_6; }
inline String_t** get_address_of_value_6() { return &___value_6; }
inline void set_value_6(String_t* value)
{
___value_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNode
struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_pinvoke
{
XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * ___info_0;
uint16_t ___idxSibling_1;
uint16_t ___idxParent_2;
uint16_t ___idxSimilar_3;
uint16_t ___posOffset_4;
uint32_t ___props_5;
char* ___value_6;
};
// Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNode
struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_com
{
XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * ___info_0;
uint16_t ___idxSibling_1;
uint16_t ___idxParent_2;
uint16_t ___idxSimilar_3;
uint16_t ___posOffset_4;
uint32_t ___props_5;
Il2CppChar* ___value_6;
};
// MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14
{
public:
// MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeRef::page
XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* ___page_0;
// System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_page_0() { return static_cast<int32_t>(offsetof(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14, ___page_0)); }
inline XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* get_page_0() const { return ___page_0; }
inline XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B** get_address_of_page_0() { return &___page_0; }
inline void set_page_0(XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* value)
{
___page_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___page_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_marshaled_pinvoke
{
XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_pinvoke* ___page_0;
int32_t ___idx_1;
};
// Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_marshaled_com
{
XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_com* ___page_0;
int32_t ___idx_1;
};
// 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.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>
struct InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>
struct InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>
struct InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>
struct InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>
struct InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>
struct InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Boolean>
struct InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Byte>
struct InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.ByteEnum>
struct InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Char>
struct InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>
struct InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>
struct InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>
struct InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>
struct InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>
struct InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>
struct InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>
struct InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>
struct InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>
struct InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>
struct InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>
struct InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>
struct InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>
struct InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>
struct InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>
struct InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>
struct InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>
struct InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>
struct InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>
struct InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>
struct InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>
struct InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>
struct InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>
struct InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>
struct InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>
struct InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>
struct InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>
struct InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>
struct InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>
struct InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>
struct InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>
struct InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>
struct InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>
struct InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>
struct InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>
struct InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>
struct InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>
struct InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>
struct InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>
struct InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>
struct InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>
struct InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>
struct InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>
struct InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>
struct InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>
struct InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>
struct InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>
struct InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>
struct InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>
struct InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>
struct InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>
struct InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>
struct InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>
struct InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>
struct InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>
struct InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>
struct InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>
struct InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>
struct InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>
struct InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>
struct InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>
struct InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>
struct InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>
struct InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>
struct InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>
struct InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>
struct InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>
struct InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>
struct InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>
struct InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>
struct InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>
struct InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>
struct InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>
struct InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43
{
public:
// System.Array System.Array/InternalEnumerator`1::array
RuntimeArray * ___array_0;
// System.Int32 System.Array/InternalEnumerator`1::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43, ___array_0)); }
inline RuntimeArray * get_array_0() const { return ___array_0; }
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
inline void set_array_0(RuntimeArray * value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_pinvoke
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// Native definition for COM marshalling of System.Array/InternalEnumerator`1
#ifndef InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
#define InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com_define
struct InternalEnumerator_1_t2230E371CD528773FD327FDC447CE231DE2AAA56_marshaled_com
{
RuntimeArray * ___array_0;
int32_t ___idx_1;
};
#endif
// System.ArraySegment`1<System.Byte>
struct ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA
{
public:
// T[] System.ArraySegment`1::_array
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____array_0;
// System.Int32 System.ArraySegment`1::_offset
int32_t ____offset_1;
// System.Int32 System.ArraySegment`1::_count
int32_t ____count_2;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____array_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__array_0() const { return ____array_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__offset_1() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____offset_1)); }
inline int32_t get__offset_1() const { return ____offset_1; }
inline int32_t* get_address_of__offset_1() { return &____offset_1; }
inline void set__offset_1(int32_t value)
{
____offset_1 = value;
}
inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____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;
}
};
// 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.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>
struct Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5
{
public:
// T System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot::Item
RuntimeObject * ___Item_0;
// System.Int32 System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot::SequenceNumber
int32_t ___SequenceNumber_1;
public:
inline static int32_t get_offset_of_Item_0() { return static_cast<int32_t>(offsetof(Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5, ___Item_0)); }
inline RuntimeObject * get_Item_0() const { return ___Item_0; }
inline RuntimeObject ** get_address_of_Item_0() { return &___Item_0; }
inline void set_Item_0(RuntimeObject * value)
{
___Item_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item_0), (void*)value);
}
inline static int32_t get_offset_of_SequenceNumber_1() { return static_cast<int32_t>(offsetof(Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5, ___SequenceNumber_1)); }
inline int32_t get_SequenceNumber_1() const { return ___SequenceNumber_1; }
inline int32_t* get_address_of_SequenceNumber_1() { return &___SequenceNumber_1; }
inline void set_SequenceNumber_1(int32_t value)
{
___SequenceNumber_1 = 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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4
{
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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___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.Boolean>
struct Entry_t495C47A91D5A1899AF832D603308B663495EC5A8
{
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
bool ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, ___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_t495C47A91D5A1899AF832D603308B663495EC5A8, ___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_t495C47A91D5A1899AF832D603308B663495EC5A8, ___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_t495C47A91D5A1899AF832D603308B663495EC5A8, ___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.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.Int64>
struct Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41
{
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
int64_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___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_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___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_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___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_t765B0DB54871A5BDB0F5E208C7158C68344F1A41, ___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.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.Object,System.Single>
struct Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81
{
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
float ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81, ___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_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81, ___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_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81, ___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_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81, ___value_3)); }
inline float get_value_3() const { return ___value_3; }
inline float* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(float value)
{
___value_3 = 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.HashSet`1/Slot<System.Int32>
struct Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7
{
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
int32_t ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___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_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___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_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___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.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.HashSet`1/Slot<System.UInt32>
struct Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1
{
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
uint32_t ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1, ___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_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1, ___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_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1, ___value_2)); }
inline uint32_t get_value_2() const { return ___value_2; }
inline uint32_t* get_address_of_value_2() { return &___value_2; }
inline void set_value_2(uint32_t value)
{
___value_2 = 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_t86464C52F9602337EAC68825E6BE06951D7530CE
{
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_t86464C52F9602337EAC68825E6BE06951D7530CE, ___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_t86464C52F9602337EAC68825E6BE06951D7530CE, ___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_t01369E536C15A7A1AF58F260AD740C479FBFC4EA
{
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_t01369E536C15A7A1AF58F260AD740C479FBFC4EA, ___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_t01369E536C15A7A1AF58F260AD740C479FBFC4EA, ___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.Boolean>
struct KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___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_tF975BF5238F06AC9CCA19111DD41484E071258C1, ___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_tF975BF5238F06AC9CCA19111DD41484E071258C1, ___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.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.Int64>
struct KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___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_t169DC5A905B6A5878CDBE24B2E799E0C996673C2, ___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_t169DC5A905B6A5878CDBE24B2E799E0C996673C2, ___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.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.Object,System.Single>
struct KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
float ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D, ___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_t9D1BF53588A5A96405532C1179DE74749741D91D, ___value_1)); }
inline float get_value_1() const { return ___value_1; }
inline float* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(float value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>
struct KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
float ___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_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B, ___key_0)); }
inline float get_key_0() const { return ___key_0; }
inline float* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(float value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B, ___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.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.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.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.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;
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);
}
};
// 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.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.Nullable`1<System.Int32>
struct Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB
{
public:
// T System.Nullable`1::value
int32_t ___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_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___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;
}
};
// 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.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.ValueTuple`2<System.Int32,System.Object>
struct ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82
{
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_t08D67844EB4053A088CC44538B46B394550ADF82, ___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_t08D67844EB4053A088CC44538B46B394550ADF82, ___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_t49E1CF58944760BDF49EEF378C9DF1044ECC4793
{
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_t49E1CF58944760BDF49EEF378C9DF1044ECC4793, ___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_t49E1CF58944760BDF49EEF378C9DF1044ECC4793, ___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:
};
// Unity.Barracuda.StringStringLongTriplet
struct StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29
{
public:
// System.String Unity.Barracuda.StringStringLongTriplet::a
String_t* ___a_0;
// System.String Unity.Barracuda.StringStringLongTriplet::b
String_t* ___b_1;
// System.Int64 Unity.Barracuda.StringStringLongTriplet::c
int64_t ___c_2;
public:
inline static int32_t get_offset_of_a_0() { return static_cast<int32_t>(offsetof(StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29, ___a_0)); }
inline String_t* get_a_0() const { return ___a_0; }
inline String_t** get_address_of_a_0() { return &___a_0; }
inline void set_a_0(String_t* value)
{
___a_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___a_0), (void*)value);
}
inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29, ___b_1)); }
inline String_t* get_b_1() const { return ___b_1; }
inline String_t** get_address_of_b_1() { return &___b_1; }
inline void set_b_1(String_t* value)
{
___b_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___b_1), (void*)value);
}
inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29, ___c_2)); }
inline int64_t get_c_2() const { return ___c_2; }
inline int64_t* get_address_of_c_2() { return &___c_2; }
inline void set_c_2(int64_t value)
{
___c_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Barracuda.StringStringLongTriplet
struct StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29_marshaled_pinvoke
{
char* ___a_0;
char* ___b_1;
int64_t ___c_2;
};
// Native definition for COM marshalling of Unity.Barracuda.StringStringLongTriplet
struct StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29_marshaled_com
{
Il2CppChar* ___a_0;
Il2CppChar* ___b_1;
int64_t ___c_2;
};
// Unity.Barracuda.StringStringPair
struct StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15
{
public:
// System.String Unity.Barracuda.StringStringPair::a
String_t* ___a_0;
// System.String Unity.Barracuda.StringStringPair::b
String_t* ___b_1;
public:
inline static int32_t get_offset_of_a_0() { return static_cast<int32_t>(offsetof(StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15, ___a_0)); }
inline String_t* get_a_0() const { return ___a_0; }
inline String_t** get_address_of_a_0() { return &___a_0; }
inline void set_a_0(String_t* value)
{
___a_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___a_0), (void*)value);
}
inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15, ___b_1)); }
inline String_t* get_b_1() const { return ___b_1; }
inline String_t** get_address_of_b_1() { return &___b_1; }
inline void set_b_1(String_t* value)
{
___b_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___b_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Unity.Barracuda.StringStringPair
struct StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15_marshaled_pinvoke
{
char* ___a_0;
char* ___b_1;
};
// Native definition for COM marshalling of Unity.Barracuda.StringStringPair
struct StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15_marshaled_com
{
Il2CppChar* ___a_0;
Il2CppChar* ___b_1;
};
// Unity.Barracuda.TensorShape
struct TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F
{
public:
// System.Int32 Unity.Barracuda.TensorShape::sequenceLength
int32_t ___sequenceLength_21;
// System.Int32 Unity.Barracuda.TensorShape::numberOfDirections
int32_t ___numberOfDirections_22;
// System.Int32 Unity.Barracuda.TensorShape::batch
int32_t ___batch_23;
// System.Int32 Unity.Barracuda.TensorShape::extraDimension
int32_t ___extraDimension_24;
// System.Int32 Unity.Barracuda.TensorShape::depth
int32_t ___depth_25;
// System.Int32 Unity.Barracuda.TensorShape::height
int32_t ___height_26;
// System.Int32 Unity.Barracuda.TensorShape::width
int32_t ___width_27;
// System.Int32 Unity.Barracuda.TensorShape::channels
int32_t ___channels_28;
public:
inline static int32_t get_offset_of_sequenceLength_21() { return static_cast<int32_t>(offsetof(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F, ___sequenceLength_21)); }
inline int32_t get_sequenceLength_21() const { return ___sequenceLength_21; }
inline int32_t* get_address_of_sequenceLength_21() { return &___sequenceLength_21; }
inline void set_sequenceLength_21(int32_t value)
{
___sequenceLength_21 = value;
}
inline static int32_t get_offset_of_numberOfDirections_22() { return static_cast<int32_t>(offsetof(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F, ___numberOfDirections_22)); }
inline int32_t get_numberOfDirections_22() const { return ___numberOfDirections_22; }
inline int32_t* get_address_of_numberOfDirections_22() { return &___numberOfDirections_22; }
inline void set_numberOfDirections_22(int32_t value)
{
___numberOfDirections_22 = value;
}
inline static int32_t get_offset_of_batch_23() { return static_cast<int32_t>(offsetof(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F, ___batch_23)); }
inline int32_t get_batch_23() const { return ___batch_23; }
inline int32_t* get_address_of_batch_23() { return &___batch_23; }
inline void set_batch_23(int32_t value)
{
___batch_23 = value;
}
inline static int32_t get_offset_of_extraDimension_24() { return static_cast<int32_t>(offsetof(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F, ___extraDimension_24)); }
inline int32_t get_extraDimension_24() const { return ___extraDimension_24; }
inline int32_t* get_address_of_extraDimension_24() { return &___extraDimension_24; }
inline void set_extraDimension_24(int32_t value)
{
___extraDimension_24 = value;
}
inline static int32_t get_offset_of_depth_25() { return static_cast<int32_t>(offsetof(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F, ___depth_25)); }
inline int32_t get_depth_25() const { return ___depth_25; }
inline int32_t* get_address_of_depth_25() { return &___depth_25; }
inline void set_depth_25(int32_t value)
{
___depth_25 = value;
}
inline static int32_t get_offset_of_height_26() { return static_cast<int32_t>(offsetof(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F, ___height_26)); }
inline int32_t get_height_26() const { return ___height_26; }
inline int32_t* get_address_of_height_26() { return &___height_26; }
inline void set_height_26(int32_t value)
{
___height_26 = value;
}
inline static int32_t get_offset_of_width_27() { return static_cast<int32_t>(offsetof(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F, ___width_27)); }
inline int32_t get_width_27() const { return ___width_27; }
inline int32_t* get_address_of_width_27() { return &___width_27; }
inline void set_width_27(int32_t value)
{
___width_27 = value;
}
inline static int32_t get_offset_of_channels_28() { return static_cast<int32_t>(offsetof(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F, ___channels_28)); }
inline int32_t get_channels_28() const { return ___channels_28; }
inline int32_t* get_address_of_channels_28() { return &___channels_28; }
inline void set_channels_28(int32_t value)
{
___channels_28 = value;
}
};
struct TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F_StaticFields
{
public:
// System.Int32[] Unity.Barracuda.TensorShape::DataFeatures
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DataFeatures_13;
// System.Int32[] Unity.Barracuda.TensorShape::KernelSpatials
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___KernelSpatials_20;
public:
inline static int32_t get_offset_of_DataFeatures_13() { return static_cast<int32_t>(offsetof(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F_StaticFields, ___DataFeatures_13)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DataFeatures_13() const { return ___DataFeatures_13; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DataFeatures_13() { return &___DataFeatures_13; }
inline void set_DataFeatures_13(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DataFeatures_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DataFeatures_13), (void*)value);
}
inline static int32_t get_offset_of_KernelSpatials_20() { return static_cast<int32_t>(offsetof(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F_StaticFields, ___KernelSpatials_20)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_KernelSpatials_20() const { return ___KernelSpatials_20; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_KernelSpatials_20() { return &___KernelSpatials_20; }
inline void set_KernelSpatials_20(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___KernelSpatials_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___KernelSpatials_20), (void*)value);
}
};
// Unity.MLAgents.Actuators.ActionSegment`1<System.Int32>
struct ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529
{
public:
// System.Int32 Unity.MLAgents.Actuators.ActionSegment`1::Offset
int32_t ___Offset_0;
// System.Int32 Unity.MLAgents.Actuators.ActionSegment`1::Length
int32_t ___Length_1;
// T[] Unity.MLAgents.Actuators.ActionSegment`1::<Array>k__BackingField
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___U3CArrayU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_Offset_0() { return static_cast<int32_t>(offsetof(ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529, ___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_Length_1() { return static_cast<int32_t>(offsetof(ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529, ___Length_1)); }
inline int32_t get_Length_1() const { return ___Length_1; }
inline int32_t* get_address_of_Length_1() { return &___Length_1; }
inline void set_Length_1(int32_t value)
{
___Length_1 = value;
}
inline static int32_t get_offset_of_U3CArrayU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529, ___U3CArrayU3Ek__BackingField_3)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_U3CArrayU3Ek__BackingField_3() const { return ___U3CArrayU3Ek__BackingField_3; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_U3CArrayU3Ek__BackingField_3() { return &___U3CArrayU3Ek__BackingField_3; }
inline void set_U3CArrayU3Ek__BackingField_3(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___U3CArrayU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CArrayU3Ek__BackingField_3), (void*)value);
}
};
struct ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529_StaticFields
{
public:
// Unity.MLAgents.Actuators.ActionSegment`1<T> Unity.MLAgents.Actuators.ActionSegment`1::Empty
ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529 ___Empty_2;
public:
inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529_StaticFields, ___Empty_2)); }
inline ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529 get_Empty_2() const { return ___Empty_2; }
inline ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529 * get_address_of_Empty_2() { return &___Empty_2; }
inline void set_Empty_2(ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529 value)
{
___Empty_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___Empty_2))->___U3CArrayU3Ek__BackingField_3), (void*)NULL);
}
};
// Unity.MLAgents.Actuators.ActionSegment`1<System.Single>
struct ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6
{
public:
// System.Int32 Unity.MLAgents.Actuators.ActionSegment`1::Offset
int32_t ___Offset_0;
// System.Int32 Unity.MLAgents.Actuators.ActionSegment`1::Length
int32_t ___Length_1;
// T[] Unity.MLAgents.Actuators.ActionSegment`1::<Array>k__BackingField
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___U3CArrayU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_Offset_0() { return static_cast<int32_t>(offsetof(ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6, ___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_Length_1() { return static_cast<int32_t>(offsetof(ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6, ___Length_1)); }
inline int32_t get_Length_1() const { return ___Length_1; }
inline int32_t* get_address_of_Length_1() { return &___Length_1; }
inline void set_Length_1(int32_t value)
{
___Length_1 = value;
}
inline static int32_t get_offset_of_U3CArrayU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6, ___U3CArrayU3Ek__BackingField_3)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_U3CArrayU3Ek__BackingField_3() const { return ___U3CArrayU3Ek__BackingField_3; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_U3CArrayU3Ek__BackingField_3() { return &___U3CArrayU3Ek__BackingField_3; }
inline void set_U3CArrayU3Ek__BackingField_3(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___U3CArrayU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CArrayU3Ek__BackingField_3), (void*)value);
}
};
struct ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6_StaticFields
{
public:
// Unity.MLAgents.Actuators.ActionSegment`1<T> Unity.MLAgents.Actuators.ActionSegment`1::Empty
ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6 ___Empty_2;
public:
inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6_StaticFields, ___Empty_2)); }
inline ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6 get_Empty_2() const { return ___Empty_2; }
inline ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6 * get_address_of_Empty_2() { return &___Empty_2; }
inline void set_Empty_2(ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6 value)
{
___Empty_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___Empty_2))->___U3CArrayU3Ek__BackingField_3), (void*)NULL);
}
};
// Unity.MLAgents.Actuators.ActionSpec
struct ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E
{
public:
// System.Int32 Unity.MLAgents.Actuators.ActionSpec::m_NumContinuousActions
int32_t ___m_NumContinuousActions_0;
// System.Int32[] Unity.MLAgents.Actuators.ActionSpec::BranchSizes
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___BranchSizes_1;
public:
inline static int32_t get_offset_of_m_NumContinuousActions_0() { return static_cast<int32_t>(offsetof(ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E, ___m_NumContinuousActions_0)); }
inline int32_t get_m_NumContinuousActions_0() const { return ___m_NumContinuousActions_0; }
inline int32_t* get_address_of_m_NumContinuousActions_0() { return &___m_NumContinuousActions_0; }
inline void set_m_NumContinuousActions_0(int32_t value)
{
___m_NumContinuousActions_0 = value;
}
inline static int32_t get_offset_of_BranchSizes_1() { return static_cast<int32_t>(offsetof(ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E, ___BranchSizes_1)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_BranchSizes_1() const { return ___BranchSizes_1; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_BranchSizes_1() { return &___BranchSizes_1; }
inline void set_BranchSizes_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___BranchSizes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BranchSizes_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Unity.MLAgents.Actuators.ActionSpec
struct ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E_marshaled_pinvoke
{
int32_t ___m_NumContinuousActions_0;
Il2CppSafeArray/*NONE*/* ___BranchSizes_1;
};
// Native definition for COM marshalling of Unity.MLAgents.Actuators.ActionSpec
struct ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E_marshaled_com
{
int32_t ___m_NumContinuousActions_0;
Il2CppSafeArray/*NONE*/* ___BranchSizes_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.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord
struct TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA
{
public:
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord::tileX
int32_t ___tileX_0;
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord::tileZ
int32_t ___tileZ_1;
public:
inline static int32_t get_offset_of_tileX_0() { return static_cast<int32_t>(offsetof(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, ___tileX_0)); }
inline int32_t get_tileX_0() const { return ___tileX_0; }
inline int32_t* get_address_of_tileX_0() { return &___tileX_0; }
inline void set_tileX_0(int32_t value)
{
___tileX_0 = value;
}
inline static int32_t get_offset_of_tileZ_1() { return static_cast<int32_t>(offsetof(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, ___tileZ_1)); }
inline int32_t get_tileZ_1() const { return ___tileZ_1; }
inline int32_t* get_address_of_tileZ_1() { return &___tileZ_1; }
inline void set_tileZ_1(int32_t value)
{
___tileZ_1 = 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.Random/State
struct State_t7D2976DAE446125618B7DB82F6ED3048082E388D
{
public:
// System.Int32 UnityEngine.Random/State::s0
int32_t ___s0_0;
// System.Int32 UnityEngine.Random/State::s1
int32_t ___s1_1;
// System.Int32 UnityEngine.Random/State::s2
int32_t ___s2_2;
// System.Int32 UnityEngine.Random/State::s3
int32_t ___s3_3;
public:
inline static int32_t get_offset_of_s0_0() { return static_cast<int32_t>(offsetof(State_t7D2976DAE446125618B7DB82F6ED3048082E388D, ___s0_0)); }
inline int32_t get_s0_0() const { return ___s0_0; }
inline int32_t* get_address_of_s0_0() { return &___s0_0; }
inline void set_s0_0(int32_t value)
{
___s0_0 = value;
}
inline static int32_t get_offset_of_s1_1() { return static_cast<int32_t>(offsetof(State_t7D2976DAE446125618B7DB82F6ED3048082E388D, ___s1_1)); }
inline int32_t get_s1_1() const { return ___s1_1; }
inline int32_t* get_address_of_s1_1() { return &___s1_1; }
inline void set_s1_1(int32_t value)
{
___s1_1 = value;
}
inline static int32_t get_offset_of_s2_2() { return static_cast<int32_t>(offsetof(State_t7D2976DAE446125618B7DB82F6ED3048082E388D, ___s2_2)); }
inline int32_t get_s2_2() const { return ___s2_2; }
inline int32_t* get_address_of_s2_2() { return &___s2_2; }
inline void set_s2_2(int32_t value)
{
___s2_2 = value;
}
inline static int32_t get_offset_of_s3_3() { return static_cast<int32_t>(offsetof(State_t7D2976DAE446125618B7DB82F6ED3048082E388D, ___s3_3)); }
inline int32_t get_s3_3() const { return ___s3_3; }
inline int32_t* get_address_of_s3_3() { return &___s3_3; }
inline void set_s3_3(int32_t value)
{
___s3_3 = 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.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.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.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.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.UIElements.EventDispatcher/DispatchContext
struct DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA
{
public:
// System.UInt32 UnityEngine.UIElements.EventDispatcher/DispatchContext::m_GateCount
uint32_t ___m_GateCount_0;
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord> UnityEngine.UIElements.EventDispatcher/DispatchContext::m_Queue
Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 * ___m_Queue_1;
public:
inline static int32_t get_offset_of_m_GateCount_0() { return static_cast<int32_t>(offsetof(DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA, ___m_GateCount_0)); }
inline uint32_t get_m_GateCount_0() const { return ___m_GateCount_0; }
inline uint32_t* get_address_of_m_GateCount_0() { return &___m_GateCount_0; }
inline void set_m_GateCount_0(uint32_t value)
{
___m_GateCount_0 = value;
}
inline static int32_t get_offset_of_m_Queue_1() { return static_cast<int32_t>(offsetof(DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA, ___m_Queue_1)); }
inline Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 * get_m_Queue_1() const { return ___m_Queue_1; }
inline Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 ** get_address_of_m_Queue_1() { return &___m_Queue_1; }
inline void set_m_Queue_1(Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 * value)
{
___m_Queue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Queue_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.EventDispatcher/DispatchContext
struct DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_marshaled_pinvoke
{
uint32_t ___m_GateCount_0;
Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 * ___m_Queue_1;
};
// Native definition for COM marshalling of UnityEngine.UIElements.EventDispatcher/DispatchContext
struct DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_marshaled_com
{
uint32_t ___m_GateCount_0;
Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 * ___m_Queue_1;
};
// UnityEngine.UIElements.EventDispatcher/EventRecord
struct EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9
{
public:
// UnityEngine.UIElements.EventBase UnityEngine.UIElements.EventDispatcher/EventRecord::m_Event
EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD * ___m_Event_0;
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.EventDispatcher/EventRecord::m_Panel
RuntimeObject* ___m_Panel_1;
public:
inline static int32_t get_offset_of_m_Event_0() { return static_cast<int32_t>(offsetof(EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9, ___m_Event_0)); }
inline EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD * get_m_Event_0() const { return ___m_Event_0; }
inline EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD ** get_address_of_m_Event_0() { return &___m_Event_0; }
inline void set_m_Event_0(EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD * value)
{
___m_Event_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Event_0), (void*)value);
}
inline static int32_t get_offset_of_m_Panel_1() { return static_cast<int32_t>(offsetof(EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9, ___m_Panel_1)); }
inline RuntimeObject* get_m_Panel_1() const { return ___m_Panel_1; }
inline RuntimeObject** get_address_of_m_Panel_1() { return &___m_Panel_1; }
inline void set_m_Panel_1(RuntimeObject* value)
{
___m_Panel_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Panel_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.EventDispatcher/EventRecord
struct EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_marshaled_pinvoke
{
EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD * ___m_Event_0;
RuntimeObject* ___m_Panel_1;
};
// Native definition for COM marshalling of UnityEngine.UIElements.EventDispatcher/EventRecord
struct EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_marshaled_com
{
EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD * ___m_Event_0;
RuntimeObject* ___m_Panel_1;
};
// UnityEngine.UIElements.FocusController/FocusedElement
struct FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070
{
public:
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.FocusController/FocusedElement::m_SubTreeRoot
VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * ___m_SubTreeRoot_0;
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController/FocusedElement::m_FocusedElement
Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * ___m_FocusedElement_1;
public:
inline static int32_t get_offset_of_m_SubTreeRoot_0() { return static_cast<int32_t>(offsetof(FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070, ___m_SubTreeRoot_0)); }
inline VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * get_m_SubTreeRoot_0() const { return ___m_SubTreeRoot_0; }
inline VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 ** get_address_of_m_SubTreeRoot_0() { return &___m_SubTreeRoot_0; }
inline void set_m_SubTreeRoot_0(VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * value)
{
___m_SubTreeRoot_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SubTreeRoot_0), (void*)value);
}
inline static int32_t get_offset_of_m_FocusedElement_1() { return static_cast<int32_t>(offsetof(FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070, ___m_FocusedElement_1)); }
inline Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * get_m_FocusedElement_1() const { return ___m_FocusedElement_1; }
inline Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B ** get_address_of_m_FocusedElement_1() { return &___m_FocusedElement_1; }
inline void set_m_FocusedElement_1(Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * value)
{
___m_FocusedElement_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FocusedElement_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.FocusController/FocusedElement
struct FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_marshaled_pinvoke
{
VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * ___m_SubTreeRoot_0;
Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * ___m_FocusedElement_1;
};
// Native definition for COM marshalling of UnityEngine.UIElements.FocusController/FocusedElement
struct FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_marshaled_com
{
VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * ___m_SubTreeRoot_0;
Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * ___m_FocusedElement_1;
};
// UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey
struct SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0
{
public:
// System.Int32 UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey::sheetInstanceID
int32_t ___sheetInstanceID_0;
// System.Int32 UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey::index
int32_t ___index_1;
public:
inline static int32_t get_offset_of_sheetInstanceID_0() { return static_cast<int32_t>(offsetof(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0, ___sheetInstanceID_0)); }
inline int32_t get_sheetInstanceID_0() const { return ___sheetInstanceID_0; }
inline int32_t* get_address_of_sheetInstanceID_0() { return &___sheetInstanceID_0; }
inline void set_sheetInstanceID_0(int32_t value)
{
___sheetInstanceID_0 = value;
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0, ___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;
}
};
// 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.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.Windows.Speech.SemanticMeaning
struct SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C
{
public:
// System.String UnityEngine.Windows.Speech.SemanticMeaning::key
String_t* ___key_0;
// System.String[] UnityEngine.Windows.Speech.SemanticMeaning::values
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___values_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C, ___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((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C, ___values_1)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_values_1() const { return ___values_1; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_values_1() { return &___values_1; }
inline void set_values_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___values_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Windows.Speech.SemanticMeaning
struct SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_marshaled_pinvoke
{
char* ___key_0;
char** ___values_1;
};
// Native definition for COM marshalling of UnityEngine.Windows.Speech.SemanticMeaning
struct SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_marshaled_com
{
Il2CppChar* ___key_0;
Il2CppChar** ___values_1;
};
// Grpc.Core.Internal.ClockType
struct ClockType_t38EF65786E49896A85F903741F7D312A5C6976E3
{
public:
// System.Int32 Grpc.Core.Internal.ClockType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ClockType_t38EF65786E49896A85F903741F7D312A5C6976E3, ___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;
}
};
// Grpc.Core.Profiling.ProfilerEntry/Type
struct Type_t6407EB752648A5F11AA8A10FA346ABA81154E1AD
{
public:
// System.Int32 Grpc.Core.Profiling.ProfilerEntry/Type::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Type_t6407EB752648A5F11AA8A10FA346ABA81154E1AD, ___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.ByteEnum
struct ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD
{
public:
// System.Byte System.ByteEnum::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD, ___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;
}
};
// System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>
struct Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92
{
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
ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 ___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_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92, ___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_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92, ___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_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92, ___key_2)); }
inline ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 get_key_2() const { return ___key_2; }
inline ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___obj_1), (void*)NULL);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92, ___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<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>
struct Entry_tC1463A26CB3583633B8650196083947E916945AD
{
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
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tC1463A26CB3583633B8650196083947E916945AD, ___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_tC1463A26CB3583633B8650196083947E916945AD, ___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_tC1463A26CB3583633B8650196083947E916945AD, ___key_2)); }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_key_2() const { return ___key_2; }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___page_0), (void*)NULL);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tC1463A26CB3583633B8650196083947E916945AD, ___value_3)); }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_value_3() const { return ___value_3; }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___page_0), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>
struct Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B
{
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
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___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_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___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_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___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_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___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.IntPtr,System.Object>
struct Entry_t1569C69F7132527F147EA707D2A116532F05D1EE
{
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
intptr_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_t1569C69F7132527F147EA707D2A116532F05D1EE, ___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_t1569C69F7132527F147EA707D2A116532F05D1EE, ___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_t1569C69F7132527F147EA707D2A116532F05D1EE, ___key_2)); }
inline intptr_t get_key_2() const { return ___key_2; }
inline intptr_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(intptr_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1569C69F7132527F147EA707D2A116532F05D1EE, ___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.Nullable`1<System.Int32>>
struct Entry_tF51B7F09080F58F478531DF63F041E6EF203919A
{
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
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF51B7F09080F58F478531DF63F041E6EF203919A, ___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_tF51B7F09080F58F478531DF63F041E6EF203919A, ___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_tF51B7F09080F58F478531DF63F041E6EF203919A, ___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_tF51B7F09080F58F478531DF63F041E6EF203919A, ___value_3)); }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB get_value_3() const { return ___value_3; }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB value)
{
___value_3 = value;
}
};
// 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.Object,System.ValueTuple`2<System.Int32,System.Object>>
struct Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC
{
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
ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC, ___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_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC, ___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_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC, ___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_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC, ___value_3)); }
inline ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 get_value_3() const { return ___value_3; }
inline ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___Item2_1), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>
struct Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD
{
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
TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD, ___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_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD, ___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_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD, ___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_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD, ___value_3)); }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F get_value_3() const { return ___value_3; }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>
struct Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0
{
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
ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0, ___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_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0, ___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_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0, ___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_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0, ___value_3)); }
inline ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E get_value_3() const { return ___value_3; }
inline ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___BranchSizes_1), (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_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 ___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_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 get_key_2() const { return ___key_2; }
inline ValueTuple_2_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(ValueTuple_2_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 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<Unity.Barracuda.StringStringLongTriplet,System.Object>
struct Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9
{
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
StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29 ___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_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9, ___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_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9, ___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_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9, ___key_2)); }
inline StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29 get_key_2() const { return ___key_2; }
inline StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29 value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___a_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___b_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9, ___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<Unity.Barracuda.StringStringPair,System.Object>
struct Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13
{
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
StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15 ___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_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13, ___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_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13, ___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_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13, ___key_2)); }
inline StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15 get_key_2() const { return ___key_2; }
inline StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15 value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___a_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___b_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13, ___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<Unity.Barracuda.TensorShape,System.Object>
struct Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF
{
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
TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F ___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_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF, ___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_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF, ___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_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF, ___key_2)); }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F get_key_2() const { return ___key_2; }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF, ___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.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>
struct Entry_t687188C87EF1FD0D50038E634676DBC449857B8E
{
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
TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ___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_t687188C87EF1FD0D50038E634676DBC449857B8E, ___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_t687188C87EF1FD0D50038E634676DBC449857B8E, ___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_t687188C87EF1FD0D50038E634676DBC449857B8E, ___key_2)); }
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA get_key_2() const { return ___key_2; }
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E, ___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.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>
struct Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E
{
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
SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 ___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_t64D38FA2992140132BE596DFDC676DAAB56D9A1E, ___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_t64D38FA2992140132BE596DFDC676DAAB56D9A1E, ___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_t64D38FA2992140132BE596DFDC676DAAB56D9A1E, ___key_2)); }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 get_key_2() const { return ___key_2; }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E, ___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<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>
struct Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8
{
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
SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 ___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_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8, ___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_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8, ___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_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8, ___key_2)); }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 get_key_2() const { return ___key_2; }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8, ___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.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>
struct KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 ___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_t7DD6C51BD8B952102F9BAF76647891A5E082A21E, ___key_0)); }
inline ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 get_key_0() const { return ___key_0; }
inline ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___obj_1), (void*)NULL);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E, ___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<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>
struct KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443, ___key_0)); }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_key_0() const { return ___key_0; }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___page_0), (void*)NULL);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443, ___value_1)); }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_value_1() const { return ___value_1; }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___page_0), (void*)NULL);
}
};
// 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.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.IntPtr,System.Object>
struct KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
intptr_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_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8, ___key_0)); }
inline intptr_t get_key_0() const { return ___key_0; }
inline intptr_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(intptr_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8, ___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.Nullable`1<System.Int32>>
struct KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3, ___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_t797086749A6A77ADE6556A4D525720B011BAD9E3, ___value_1)); }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB get_value_1() const { return ___value_1; }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB value)
{
___value_1 = value;
}
};
// 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.Object,System.ValueTuple`2<System.Int32,System.Object>>
struct KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF, ___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_tD82D97426E3841C5BECB0677CB02382D8C4F23DF, ___value_1)); }
inline ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 get_value_1() const { return ___value_1; }
inline ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___Item2_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>
struct KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424, ___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_tA1D812FF35D7158E42BA9566355B827B574B4424, ___value_1)); }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F get_value_1() const { return ___value_1; }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>
struct KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C, ___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_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C, ___value_1)); }
inline ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E get_value_1() const { return ___value_1; }
inline ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ActionSpec_t96BC77505663363CBFCEEDFFF44B8C808065AA4E value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___BranchSizes_1), (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_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 ___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_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 get_key_0() const { return ___key_0; }
inline ValueTuple_2_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(ValueTuple_2_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 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<Unity.Barracuda.StringStringLongTriplet,System.Object>
struct KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29 ___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_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C, ___key_0)); }
inline StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29 get_key_0() const { return ___key_0; }
inline StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(StringStringLongTriplet_t09C1A173E6505762AAD1857DE850BECE654E1B29 value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___a_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___b_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C, ___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<Unity.Barracuda.StringStringPair,System.Object>
struct KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15 ___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_t9F28EAAC54457DCD84053313F638CA19CC5B3184, ___key_0)); }
inline StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15 get_key_0() const { return ___key_0; }
inline StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(StringStringPair_t6375ACDF3D170C607D510BFBF54E7093205A0B15 value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___a_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___b_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184, ___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<Unity.Barracuda.TensorShape,System.Object>
struct KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F ___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_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980, ___key_0)); }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F get_key_0() const { return ___key_0; }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980, ___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.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>
struct KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ___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_t198F3EF99C5CB706B8E678896CA900035FACF342, ___key_0)); }
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA get_key_0() const { return ___key_0; }
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342, ___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.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.Nullable`1<Unity.Barracuda.TensorShape>
struct Nullable_1_t9F7E0877BBE01BF2361CDD848F754F9CE265B9A9
{
public:
// T System.Nullable`1::value
TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F ___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_t9F7E0877BBE01BF2361CDD848F754F9CE265B9A9, ___value_0)); }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F get_value_0() const { return ___value_0; }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t9F7E0877BBE01BF2361CDD848F754F9CE265B9A9, ___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;
}
};
// Unity.Barracuda.PrecompiledComputeOps/CompiledLayer
struct CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299
{
public:
// Unity.Barracuda.TensorShape Unity.Barracuda.PrecompiledComputeOps/CompiledLayer::shape
TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F ___shape_0;
// Unity.Barracuda.PrecompiledComputeOps/CompiledInstruction[] Unity.Barracuda.PrecompiledComputeOps/CompiledLayer::instructions
CompiledInstructionU5BU5D_t252A47AAB12F0E91157261D5155B05724E6FF06A* ___instructions_1;
public:
inline static int32_t get_offset_of_shape_0() { return static_cast<int32_t>(offsetof(CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299, ___shape_0)); }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F get_shape_0() const { return ___shape_0; }
inline TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F * get_address_of_shape_0() { return &___shape_0; }
inline void set_shape_0(TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F value)
{
___shape_0 = value;
}
inline static int32_t get_offset_of_instructions_1() { return static_cast<int32_t>(offsetof(CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299, ___instructions_1)); }
inline CompiledInstructionU5BU5D_t252A47AAB12F0E91157261D5155B05724E6FF06A* get_instructions_1() const { return ___instructions_1; }
inline CompiledInstructionU5BU5D_t252A47AAB12F0E91157261D5155B05724E6FF06A** get_address_of_instructions_1() { return &___instructions_1; }
inline void set_instructions_1(CompiledInstructionU5BU5D_t252A47AAB12F0E91157261D5155B05724E6FF06A* value)
{
___instructions_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instructions_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Unity.Barracuda.PrecompiledComputeOps/CompiledLayer
struct CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299_marshaled_pinvoke
{
TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F ___shape_0;
CompiledInstruction_t1A7A47CCA8CB85C205E98B6694AE7433991F0B4E_marshaled_pinvoke* ___instructions_1;
};
// Native definition for COM marshalling of Unity.Barracuda.PrecompiledComputeOps/CompiledLayer
struct CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299_marshaled_com
{
TensorShape_tB6A044E58D6D3D97EB21555DECD231AC04DA861F ___shape_0;
CompiledInstruction_t1A7A47CCA8CB85C205E98B6694AE7433991F0B4E_marshaled_com* ___instructions_1;
};
// Unity.MLAgents.Actuators.ActionBuffers
struct ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0
{
public:
// Unity.MLAgents.Actuators.ActionSegment`1<System.Single> Unity.MLAgents.Actuators.ActionBuffers::<ContinuousActions>k__BackingField
ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6 ___U3CContinuousActionsU3Ek__BackingField_1;
// Unity.MLAgents.Actuators.ActionSegment`1<System.Int32> Unity.MLAgents.Actuators.ActionBuffers::<DiscreteActions>k__BackingField
ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529 ___U3CDiscreteActionsU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CContinuousActionsU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0, ___U3CContinuousActionsU3Ek__BackingField_1)); }
inline ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6 get_U3CContinuousActionsU3Ek__BackingField_1() const { return ___U3CContinuousActionsU3Ek__BackingField_1; }
inline ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6 * get_address_of_U3CContinuousActionsU3Ek__BackingField_1() { return &___U3CContinuousActionsU3Ek__BackingField_1; }
inline void set_U3CContinuousActionsU3Ek__BackingField_1(ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6 value)
{
___U3CContinuousActionsU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CContinuousActionsU3Ek__BackingField_1))->___U3CArrayU3Ek__BackingField_3), (void*)NULL);
}
inline static int32_t get_offset_of_U3CDiscreteActionsU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0, ___U3CDiscreteActionsU3Ek__BackingField_2)); }
inline ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529 get_U3CDiscreteActionsU3Ek__BackingField_2() const { return ___U3CDiscreteActionsU3Ek__BackingField_2; }
inline ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529 * get_address_of_U3CDiscreteActionsU3Ek__BackingField_2() { return &___U3CDiscreteActionsU3Ek__BackingField_2; }
inline void set_U3CDiscreteActionsU3Ek__BackingField_2(ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529 value)
{
___U3CDiscreteActionsU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CDiscreteActionsU3Ek__BackingField_2))->___U3CArrayU3Ek__BackingField_3), (void*)NULL);
}
};
struct ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0_StaticFields
{
public:
// Unity.MLAgents.Actuators.ActionBuffers Unity.MLAgents.Actuators.ActionBuffers::Empty
ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 ___Empty_0;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0_StaticFields, ___Empty_0)); }
inline ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 get_Empty_0() const { return ___Empty_0; }
inline ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___Empty_0))->___U3CContinuousActionsU3Ek__BackingField_1))->___U3CArrayU3Ek__BackingField_3), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___Empty_0))->___U3CDiscreteActionsU3Ek__BackingField_2))->___U3CArrayU3Ek__BackingField_3), (void*)NULL);
#endif
}
};
// Native definition for P/Invoke marshalling of Unity.MLAgents.Actuators.ActionBuffers
struct ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0_marshaled_pinvoke
{
ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6 ___U3CContinuousActionsU3Ek__BackingField_1;
ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529 ___U3CDiscreteActionsU3Ek__BackingField_2;
};
// Native definition for COM marshalling of Unity.MLAgents.Actuators.ActionBuffers
struct ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0_marshaled_com
{
ActionSegment_1_t3CE321EE7622676E6E67EF057EB0B76911FBFEF6 ___U3CContinuousActionsU3Ek__BackingField_1;
ActionSegment_1_t92AE14B1ACBF36CD1BCF342BB5511E14B7FBB529 ___U3CDiscreteActionsU3Ek__BackingField_2;
};
// 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.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.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.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.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.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.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.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.TextCore.LowLevel.FontFeatureLookupFlags
struct FontFeatureLookupFlags_t573739720C272939070421B22F0B7FDF6EBF5B40
{
public:
// System.Int32 UnityEngine.TextCore.LowLevel.FontFeatureLookupFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontFeatureLookupFlags_t573739720C272939070421B22F0B7FDF6EBF5B40, ___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.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.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.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.UIElements.LengthUnit
struct LengthUnit_t72096DC46DF6AE7521ACB61C839C57915F7282BC
{
public:
// System.Int32 UnityEngine.UIElements.LengthUnit::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LengthUnit_t72096DC46DF6AE7521ACB61C839C57915F7282BC, ___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.UIElements.StyleKeyword
struct StyleKeyword_t5C285A4249A1A7A807C1B4D2AAF5D1350B0A3560
{
public:
// System.Int32 UnityEngine.UIElements.StyleKeyword::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StyleKeyword_t5C285A4249A1A7A807C1B4D2AAF5D1350B0A3560, ___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.UIElements.StyleSheets.StylePropertyID
struct StylePropertyID_t58A0361000DC58339920E7CBBB5FFFE06B4B7A13
{
public:
// System.Int32 UnityEngine.UIElements.StyleSheets.StylePropertyID::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StylePropertyID_t58A0361000DC58339920E7CBBB5FFFE06B4B7A13, ___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.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.jvalue
struct jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Boolean UnityEngine.jvalue::z
bool ___z_0;
};
#pragma pack(pop, tp)
struct
{
bool ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.SByte UnityEngine.jvalue::b
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Char UnityEngine.jvalue::c
Il2CppChar ___c_2;
};
#pragma pack(pop, tp)
struct
{
Il2CppChar ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int16 UnityEngine.jvalue::s
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.jvalue::i
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int64 UnityEngine.jvalue::j
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Single UnityEngine.jvalue::f
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Double UnityEngine.jvalue::d
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.IntPtr UnityEngine.jvalue::l
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_z_0() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___z_0)); }
inline bool get_z_0() const { return ___z_0; }
inline bool* get_address_of_z_0() { return &___z_0; }
inline void set_z_0(bool value)
{
___z_0 = value;
}
inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___b_1)); }
inline int8_t get_b_1() const { return ___b_1; }
inline int8_t* get_address_of_b_1() { return &___b_1; }
inline void set_b_1(int8_t value)
{
___b_1 = value;
}
inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___c_2)); }
inline Il2CppChar get_c_2() const { return ___c_2; }
inline Il2CppChar* get_address_of_c_2() { return &___c_2; }
inline void set_c_2(Il2CppChar value)
{
___c_2 = value;
}
inline static int32_t get_offset_of_s_3() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___s_3)); }
inline int16_t get_s_3() const { return ___s_3; }
inline int16_t* get_address_of_s_3() { return &___s_3; }
inline void set_s_3(int16_t value)
{
___s_3 = value;
}
inline static int32_t get_offset_of_i_4() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___i_4)); }
inline int32_t get_i_4() const { return ___i_4; }
inline int32_t* get_address_of_i_4() { return &___i_4; }
inline void set_i_4(int32_t value)
{
___i_4 = value;
}
inline static int32_t get_offset_of_j_5() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___j_5)); }
inline int64_t get_j_5() const { return ___j_5; }
inline int64_t* get_address_of_j_5() { return &___j_5; }
inline void set_j_5(int64_t value)
{
___j_5 = value;
}
inline static int32_t get_offset_of_f_6() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___f_6)); }
inline float get_f_6() const { return ___f_6; }
inline float* get_address_of_f_6() { return &___f_6; }
inline void set_f_6(float value)
{
___f_6 = value;
}
inline static int32_t get_offset_of_d_7() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___d_7)); }
inline double get_d_7() const { return ___d_7; }
inline double* get_address_of_d_7() { return &___d_7; }
inline void set_d_7(double value)
{
___d_7 = value;
}
inline static int32_t get_offset_of_l_8() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___l_8)); }
inline intptr_t get_l_8() const { return ___l_8; }
inline intptr_t* get_address_of_l_8() { return &___l_8; }
inline void set_l_8(intptr_t value)
{
___l_8 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.jvalue
struct jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_marshaled_pinvoke
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___z_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
uint8_t ___c_2;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
};
// Native definition for COM marshalling of UnityEngine.jvalue
struct jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_marshaled_com
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___z_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
uint8_t ___c_2;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
};
// Grpc.Core.Internal.Timespec
struct Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1
{
public:
// System.Int64 Grpc.Core.Internal.Timespec::tv_sec
int64_t ___tv_sec_2;
// System.Int32 Grpc.Core.Internal.Timespec::tv_nsec
int32_t ___tv_nsec_3;
// Grpc.Core.Internal.ClockType Grpc.Core.Internal.Timespec::clock_type
int32_t ___clock_type_4;
public:
inline static int32_t get_offset_of_tv_sec_2() { return static_cast<int32_t>(offsetof(Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1, ___tv_sec_2)); }
inline int64_t get_tv_sec_2() const { return ___tv_sec_2; }
inline int64_t* get_address_of_tv_sec_2() { return &___tv_sec_2; }
inline void set_tv_sec_2(int64_t value)
{
___tv_sec_2 = value;
}
inline static int32_t get_offset_of_tv_nsec_3() { return static_cast<int32_t>(offsetof(Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1, ___tv_nsec_3)); }
inline int32_t get_tv_nsec_3() const { return ___tv_nsec_3; }
inline int32_t* get_address_of_tv_nsec_3() { return &___tv_nsec_3; }
inline void set_tv_nsec_3(int32_t value)
{
___tv_nsec_3 = value;
}
inline static int32_t get_offset_of_clock_type_4() { return static_cast<int32_t>(offsetof(Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1, ___clock_type_4)); }
inline int32_t get_clock_type_4() const { return ___clock_type_4; }
inline int32_t* get_address_of_clock_type_4() { return &___clock_type_4; }
inline void set_clock_type_4(int32_t value)
{
___clock_type_4 = value;
}
};
struct Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1_StaticFields
{
public:
// Grpc.Core.Internal.NativeMethods Grpc.Core.Internal.Timespec::Native
NativeMethods_t76E4AE7EF0FC0F146739687013D44AEB42E4BD4D * ___Native_0;
// System.DateTime Grpc.Core.Internal.Timespec::UnixEpoch
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___UnixEpoch_1;
public:
inline static int32_t get_offset_of_Native_0() { return static_cast<int32_t>(offsetof(Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1_StaticFields, ___Native_0)); }
inline NativeMethods_t76E4AE7EF0FC0F146739687013D44AEB42E4BD4D * get_Native_0() const { return ___Native_0; }
inline NativeMethods_t76E4AE7EF0FC0F146739687013D44AEB42E4BD4D ** get_address_of_Native_0() { return &___Native_0; }
inline void set_Native_0(NativeMethods_t76E4AE7EF0FC0F146739687013D44AEB42E4BD4D * value)
{
___Native_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Native_0), (void*)value);
}
inline static int32_t get_offset_of_UnixEpoch_1() { return static_cast<int32_t>(offsetof(Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1_StaticFields, ___UnixEpoch_1)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_UnixEpoch_1() const { return ___UnixEpoch_1; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_UnixEpoch_1() { return &___UnixEpoch_1; }
inline void set_UnixEpoch_1(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___UnixEpoch_1 = value;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>
struct Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3
{
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
ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3, ___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_t4B2724D12016714EC04E40582FE125BDF843D4F3, ___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_t4B2724D12016714EC04E40582FE125BDF843D4F3, ___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_t4B2724D12016714EC04E40582FE125BDF843D4F3, ___value_3)); }
inline ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 get_value_3() const { return ___value_3; }
inline ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___value_3))->___U3CContinuousActionsU3Ek__BackingField_1))->___U3CArrayU3Ek__BackingField_3), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___value_3))->___U3CDiscreteActionsU3Ek__BackingField_2))->___U3CArrayU3Ek__BackingField_3), (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.Dictionary`2/Entry<System.Int32Enum,System.Object>
struct Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD
{
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_t49F9C4F801ED373E9E3EF1356529574A83EE14AD, ___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_t49F9C4F801ED373E9E3EF1356529574A83EE14AD, ___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_t49F9C4F801ED373E9E3EF1356529574A83EE14AD, ___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_t49F9C4F801ED373E9E3EF1356529574A83EE14AD, ___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.Int32Enum>
struct Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF
{
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_t4AF80C1385EAC25480F16E4599985179C47EA8DF, ___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_t4AF80C1385EAC25480F16E4599985179C47EA8DF, ___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_t4AF80C1385EAC25480F16E4599985179C47EA8DF, ___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_t4AF80C1385EAC25480F16E4599985179C47EA8DF, ___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.Nullable`1<Unity.Barracuda.TensorShape>>
struct Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A
{
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
Nullable_1_t9F7E0877BBE01BF2361CDD848F754F9CE265B9A9 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A, ___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_tE42D5858AA990A1849E5F512D11218CEE3C91B1A, ___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_tE42D5858AA990A1849E5F512D11218CEE3C91B1A, ___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_tE42D5858AA990A1849E5F512D11218CEE3C91B1A, ___value_3)); }
inline Nullable_1_t9F7E0877BBE01BF2361CDD848F754F9CE265B9A9 get_value_3() const { return ___value_3; }
inline Nullable_1_t9F7E0877BBE01BF2361CDD848F754F9CE265B9A9 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(Nullable_1_t9F7E0877BBE01BF2361CDD848F754F9CE265B9A9 value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>
struct Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0
{
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
CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0, ___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_tFC8C2856D4004F36B3EDA923F015180D9558D1B0, ___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_tFC8C2856D4004F36B3EDA923F015180D9558D1B0, ___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_tFC8C2856D4004F36B3EDA923F015180D9558D1B0, ___value_3)); }
inline CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299 get_value_3() const { return ___value_3; }
inline CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___instructions_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>
struct KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1, ___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_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1, ___value_1)); }
inline ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 get_value_1() const { return ___value_1; }
inline ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ActionBuffers_tEF137094837931AD3B4EBF6209A62A930F072DE0 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___value_1))->___U3CContinuousActionsU3Ek__BackingField_1))->___U3CArrayU3Ek__BackingField_3), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___value_1))->___U3CDiscreteActionsU3Ek__BackingField_2))->___U3CArrayU3Ek__BackingField_3), (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.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>
struct KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0
{
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_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0, ___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_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0, ___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.Int32Enum>
struct KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5
{
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_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___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_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___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.Nullable`1<Unity.Barracuda.TensorShape>>
struct KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Nullable_1_t9F7E0877BBE01BF2361CDD848F754F9CE265B9A9 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7, ___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_tF282C7440D689AD44918018EA20C03758C9FBDF7, ___value_1)); }
inline Nullable_1_t9F7E0877BBE01BF2361CDD848F754F9CE265B9A9 get_value_1() const { return ___value_1; }
inline Nullable_1_t9F7E0877BBE01BF2361CDD848F754F9CE265B9A9 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Nullable_1_t9F7E0877BBE01BF2361CDD848F754F9CE265B9A9 value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>
struct KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A, ___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_t95505AC047681192CD2379CD8EB760D7BD97AC7A, ___value_1)); }
inline CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299 get_value_1() const { return ___value_1; }
inline CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(CompiledLayer_tAF84FE6B6DDEE605F8528738BFB9FBAD1B140299 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___instructions_1), (void*)NULL);
}
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// System.ValueTuple`2<System.Int32Enum,System.Int32Enum>
struct ValueTuple_2_t8B73268B9A9136EC0D4AD3FC333CB67CC754E980
{
public:
// T1 System.ValueTuple`2::Item1
int32_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_t8B73268B9A9136EC0D4AD3FC333CB67CC754E980, ___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_t8B73268B9A9136EC0D4AD3FC333CB67CC754E980, ___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;
}
};
// 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.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.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.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;
// UnityEngine.TextCore.LowLevel.FontFeatureLookupFlags UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::m_FeatureLookupFlags
int32_t ___m_FeatureLookupFlags_2;
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;
}
inline static int32_t get_offset_of_m_FeatureLookupFlags_2() { return static_cast<int32_t>(offsetof(GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C, ___m_FeatureLookupFlags_2)); }
inline int32_t get_m_FeatureLookupFlags_2() const { return ___m_FeatureLookupFlags_2; }
inline int32_t* get_address_of_m_FeatureLookupFlags_2() { return &___m_FeatureLookupFlags_2; }
inline void set_m_FeatureLookupFlags_2(int32_t value)
{
___m_FeatureLookupFlags_2 = 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.UIElements.Length
struct Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300
{
public:
// System.Single UnityEngine.UIElements.Length::m_Value
float ___m_Value_0;
// UnityEngine.UIElements.LengthUnit UnityEngine.UIElements.Length::m_Unit
int32_t ___m_Unit_1;
public:
inline static int32_t get_offset_of_m_Value_0() { return static_cast<int32_t>(offsetof(Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300, ___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;
}
inline static int32_t get_offset_of_m_Unit_1() { return static_cast<int32_t>(offsetof(Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300, ___m_Unit_1)); }
inline int32_t get_m_Unit_1() const { return ___m_Unit_1; }
inline int32_t* get_address_of_m_Unit_1() { return &___m_Unit_1; }
inline void set_m_Unit_1(int32_t value)
{
___m_Unit_1 = value;
}
};
// Grpc.Core.Profiling.ProfilerEntry
struct ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A
{
public:
// Grpc.Core.Internal.Timespec Grpc.Core.Profiling.ProfilerEntry::timespec
Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1 ___timespec_0;
// Grpc.Core.Profiling.ProfilerEntry/Type Grpc.Core.Profiling.ProfilerEntry::type
int32_t ___type_1;
// System.String Grpc.Core.Profiling.ProfilerEntry::tag
String_t* ___tag_2;
public:
inline static int32_t get_offset_of_timespec_0() { return static_cast<int32_t>(offsetof(ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A, ___timespec_0)); }
inline Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1 get_timespec_0() const { return ___timespec_0; }
inline Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1 * get_address_of_timespec_0() { return &___timespec_0; }
inline void set_timespec_0(Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1 value)
{
___timespec_0 = value;
}
inline static int32_t get_offset_of_type_1() { return static_cast<int32_t>(offsetof(ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A, ___type_1)); }
inline int32_t get_type_1() const { return ___type_1; }
inline int32_t* get_address_of_type_1() { return &___type_1; }
inline void set_type_1(int32_t value)
{
___type_1 = value;
}
inline static int32_t get_offset_of_tag_2() { return static_cast<int32_t>(offsetof(ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A, ___tag_2)); }
inline String_t* get_tag_2() const { return ___tag_2; }
inline String_t** get_address_of_tag_2() { return &___tag_2; }
inline void set_tag_2(String_t* value)
{
___tag_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___tag_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Grpc.Core.Profiling.ProfilerEntry
struct ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A_marshaled_pinvoke
{
Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1 ___timespec_0;
int32_t ___type_1;
char* ___tag_2;
};
// Native definition for COM marshalling of Grpc.Core.Profiling.ProfilerEntry
struct ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A_marshaled_com
{
Timespec_t625DCB9F36D55D7DAAF3E52EB5DE4A303970C0E1 ___timespec_0;
int32_t ___type_1;
Il2CppChar* ___tag_2;
};
// System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>
struct Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4
{
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_t8B73268B9A9136EC0D4AD3FC333CB67CC754E980 ___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_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4, ___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_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4, ___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_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4, ___key_2)); }
inline ValueTuple_2_t8B73268B9A9136EC0D4AD3FC333CB67CC754E980 get_key_2() const { return ___key_2; }
inline ValueTuple_2_t8B73268B9A9136EC0D4AD3FC333CB67CC754E980 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(ValueTuple_2_t8B73268B9A9136EC0D4AD3FC333CB67CC754E980 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4, ___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.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>
struct KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
ValueTuple_2_t8B73268B9A9136EC0D4AD3FC333CB67CC754E980 ___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_t7504CEB360B186D25FE4EFEF92CAF22958657562, ___key_0)); }
inline ValueTuple_2_t8B73268B9A9136EC0D4AD3FC333CB67CC754E980 get_key_0() const { return ___key_0; }
inline ValueTuple_2_t8B73268B9A9136EC0D4AD3FC333CB67CC754E980 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(ValueTuple_2_t8B73268B9A9136EC0D4AD3FC333CB67CC754E980 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562, ___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.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// UnityEngine.UIElements.StyleSheets.StyleValue
struct StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.UIElements.StyleSheets.StylePropertyID UnityEngine.UIElements.StyleSheets.StyleValue::id
int32_t ___id_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___id_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___keyword_1_OffsetPadding[4];
// UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.StyleSheets.StyleValue::keyword
int32_t ___keyword_1;
};
#pragma pack(pop, tp)
struct
{
char ___keyword_1_OffsetPadding_forAlignmentOnly[4];
int32_t ___keyword_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___number_2_OffsetPadding[8];
// System.Single UnityEngine.UIElements.StyleSheets.StyleValue::number
float ___number_2;
};
#pragma pack(pop, tp)
struct
{
char ___number_2_OffsetPadding_forAlignmentOnly[8];
float ___number_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___length_3_OffsetPadding[8];
// UnityEngine.UIElements.Length UnityEngine.UIElements.StyleSheets.StyleValue::length
Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 ___length_3;
};
#pragma pack(pop, tp)
struct
{
char ___length_3_OffsetPadding_forAlignmentOnly[8];
Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 ___length_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___color_4_OffsetPadding[8];
// UnityEngine.Color UnityEngine.UIElements.StyleSheets.StyleValue::color
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_4;
};
#pragma pack(pop, tp)
struct
{
char ___color_4_OffsetPadding_forAlignmentOnly[8];
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___resource_5_OffsetPadding[8];
// System.Runtime.InteropServices.GCHandle UnityEngine.UIElements.StyleSheets.StyleValue::resource
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___resource_5;
};
#pragma pack(pop, tp)
struct
{
char ___resource_5_OffsetPadding_forAlignmentOnly[8];
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___resource_5_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_id_0() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___id_0)); }
inline int32_t get_id_0() const { return ___id_0; }
inline int32_t* get_address_of_id_0() { return &___id_0; }
inline void set_id_0(int32_t value)
{
___id_0 = value;
}
inline static int32_t get_offset_of_keyword_1() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___keyword_1)); }
inline int32_t get_keyword_1() const { return ___keyword_1; }
inline int32_t* get_address_of_keyword_1() { return &___keyword_1; }
inline void set_keyword_1(int32_t value)
{
___keyword_1 = value;
}
inline static int32_t get_offset_of_number_2() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___number_2)); }
inline float get_number_2() const { return ___number_2; }
inline float* get_address_of_number_2() { return &___number_2; }
inline void set_number_2(float value)
{
___number_2 = value;
}
inline static int32_t get_offset_of_length_3() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___length_3)); }
inline Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 get_length_3() const { return ___length_3; }
inline Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 * get_address_of_length_3() { return &___length_3; }
inline void set_length_3(Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 value)
{
___length_3 = value;
}
inline static int32_t get_offset_of_color_4() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___color_4)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_color_4() const { return ___color_4; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_color_4() { return &___color_4; }
inline void set_color_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___color_4 = value;
}
inline static int32_t get_offset_of_resource_5() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___resource_5)); }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 get_resource_5() const { return ___resource_5; }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_address_of_resource_5() { return &___resource_5; }
inline void set_resource_5(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value)
{
___resource_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Void System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mA53A02D7291444367D52E40714EAC6EDED7704AF_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mAE6BECAE381F3DCDD9941E86F034F7698494C3E9_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mEA2086AA1DF519C98AF0F3EA7BF4703E520A7E67_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB4ACB1845506B32A59E28F5B684037244486FF96_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m84ED2AD293A7B71C97BC648E285B954C1C983A66_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB3E2F903DEF040C92F3592EDEF8FC5A3572D7979_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mA19B589D54A708CE8BC917DE08D75DFDF247EE9C_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mF0F8879AF1409666747FD012B4ACE9ABCD9B222A_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m50BCE52EC9EA9D44A9EE187B6BCCE8DB947F5710_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79A10712CC339E3445EE16F55BF268CBEB244215_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD372094D7B7C6B5CCCA0392892902163CD61B9F3_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m8FB34EF385B523FAFAB9B25493C60C7E62991823_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m5335D61B31C1C411EF4E4C1CA7B1271E59DBE0CB_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF0D6AEB334A74111C2585F927B0916ED0E6FF964_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC74149835A4786E57A793A75C5830A99BF0C35BB_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m8418143BC51EA6FDB863AB9660EB3DDFAB87ADC8_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mCBF041E9018AC2DADE507FFB1F354DBF786C4F2B_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mABD0F622BE7884880043719DACE85DAAA45A3DDE_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA4802167E4B523F76F1D1B2D84DED784FB5EAFA1_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBE4DE6BA19B796770E1089C5F54590D55FC826C5_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Boolean>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Byte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.ByteEnum>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m131AA13CAFDAEDBFD0C3D03CAF148800CF7488C4_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.ByteEnum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m6BB9F8429EF1FFF9C1433FC8DAC774A14BB16EA6_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.ByteEnum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m80D44C63C9A4811E7C65C874F06CC5DCF0ED348C_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.ByteEnum>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.ByteEnum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEA97754FC78EDA9D58F124B63E321D59B7108FE8_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.ByteEnum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m14F22972EFF3D07A5010BD64BC518F8498A262B9_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Char>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Char>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Char>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m13EF0798EE41222156E0F176866A098DB151625F_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mA81400E3470F11CF0E5F5312F999464BE7A11E03_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m16ED02B90826DDB84873EB5A60E6B10D81FE5411_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5 InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51A5E1309C39F179B788ECE8CDCB1D7EBDF980ED_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB249137BEBF3AB1A8AC0A923841E7F7781CC35C2_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m609422074D167B1FFF07A87128AFD80321C652D8_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m2E1CDBE7C7D273B9A5A573097661BD224A162859_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m84B2F66A8DC09F12B24B0C6C33676EC1CAF28210_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92 InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF779F78E51259A77C359D886FD4447E1904C7D9E_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8841B96CFBD2971CE9AAE7A8B3248421C6EDC5CB_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m44A1219CB22476007BD08AE3757B05945E3B25A9_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mFEC45E4E975A7B432CDBE27CE4C437E1D8542A25_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m92EB9A823D7223FCAE8699D90204D2A80166925F_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tC1463A26CB3583633B8650196083947E916945AD InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8B9B0F3D9970A1591E576689F145580C6C60626A_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8A6FFEE4C37D4E70BBF8410AD81DA10F93A205AA_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m8DFECC5AF03B02BB798644599A97B875F9061AEA_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mBA268F3640C62BD059F84B5AFBB57B0454C15F1D_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m0C1C3591D552412F88EA8B9EC0F2381D59B9F7F8_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m02906FF9D087D139F36BE9126A20A25BEC636627_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m74B8A4FDF78AA84FB14281DFFD8B8F45730C9093_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB14E8ADD77CDB39F616A9F746E1F1C77EAC2140A_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mD9467ACD92242128DF7F6AC0BB7F795B5A6EED78_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB35CF8C07A792E869C10095664158D48C1C70C42_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA42DA15145A70679770B3479AAD4D73764286B85_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2D2DC0F086C73CFDC6302B52A89C45AFC7F9AC58_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m094E41439718B5F69131D3668CEE3A60999C25A9_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m9F291A4AE071B76517E91D433A2F9181BF4F1F90_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mE0B0496215CD1CBF508678337C6D62F1C79B64E3_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2EBCC5F95FDEE25CF4EF19FE4809D6E938A080DF_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2411BFE065F9DEA716F23C9CE82AF3BA4BE0ED7E_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1D388F30C3343BD7E5848F3DC388A2C81AE3B711_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mF143D7BBA0BA94B00A4E373AE0ADB69CFF3A1426_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mEFB563473244B3B32939682A302A03F035237286_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7F1E425C74802B63B7FA43306C8436A10A3F68B3_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDC9FF62689E22AA958ED8EF823B0B0A254A8E8FD_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mA496B2318BDE17986C32E0C47A64A37CDF74BF3E_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m88AE2C118C0E037C1B80ABD348CAB589A45D4CA5_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m5BDA684C3D28A02CC831A8862A5F71E5A4C11E84_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1786E32E4B9BF2967003DB694F4BDBCC9D14A86C_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79D6B51066373B60392227A2D594FD17E92690B2_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB0472A3C821FA6879553AAFDA3456A2AF028C60C_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m6F2B6A67C00DD6270203CBA8208E830820576CAE_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mE0D4BF865E9D1C1F6A8181F306A9399B9538E8C9_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3 InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3A62A1B7072DBAAF09CDADC86B19550F7D695C6B_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m20BC84702C54AAE0AE2AA60390A5C0A656F8B049_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mE700527294C3EE471A0B72A2F4E3E43DC1C5565C_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mA0E294B1AD8EBFEB4D56338FDB9D9BA73491F7A0_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m40EA09F2813E22B2ED04DBEC56B13591B456274F_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA62CF831C31AFC3A81C60A9579AE4B5FB125898E_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A9D47B978B834197FA512E3ACFB92AB916CDEC2_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3FE085DED36DF93C4B0C97EBC807200ECB1BD147_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDB08AE86D5C4D83721A187FE72C3AE35848C484E_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m756E49D400B1E25A553647950786AA3C221E5673_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91A76807B7A0CAFF1C1E90A81107A7787A76D55C_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mED532D7BD977FF130F6FB0557496BBCCE835CA74_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3D9D5FCD83712292B59538020598B596466798CD_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mD3E87C246F2A5942F50B8D770734A3BE53318096_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mD9FA51C1AB129E50F46D5791CFF3A254569D571D_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7D633A57CF017BE224D032D4EC54A5E1590BE07C_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m218525A22112C208508BB362E065DC0C156A43DD_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m834B9A93E0489E1BF20DEF263ECC0816CDE3AC12_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m32BC75DD6952A1F7BAA8FEF93836565F02B232ED_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m38FFC73795B3CD1010829852DA2290EA2B0851DE_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t1569C69F7132527F147EA707D2A116532F05D1EE InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9DECC67AF81E3676B54E44589A92A57E1AAAA727_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC90DAE15F2045FC213F421948591DF49988AA5E0_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m6652E02689C29811F9EC2C52335B6CA0516E5A85_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m101EA4F268524BBA156B1E46A8521EC5A566290C_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mFC43E2FD35B2B19C4B4D67210F673F1692BB04EA_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m26322EFCF66AA4900E8DB9DC1AA30290E5D33E0D_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0D6C204841D858403AF4032292A43E270401167_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mE9806D4F5B046CF5571AAEBA47A9DFC767F1D7EF_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1227B6856C20A5D6E7D05282A8FE14D83D1AB7AB_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mF6A3C20F3111C907CE13ACC03863350C2E9032D5_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4F3B7812BBBD034AA0F4488FA53EFA3FBF509294_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF51B7F09080F58F478531DF63F041E6EF203919A InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAFED93BAB2AB7AB20477A5AD0B1BD875D168B66C_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5E5399EDC5D9971D1FC278B8ACE86D53AA90C12E_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m96FE2C7B1169A165EC4F4EE9EC0324FD7D5BA1B7_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m87D8DF9B492674BFA8C24E3E5DF6B121BE8C876D_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m8928697385AE3C047474EBA814D0F9AE2F885E88_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA5520C23C166CBCBB22DD62587BFBFAD889CDA20_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0B2843D2614A5F709027418873DE1B2508990364_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m6BB6F5CDDCB8C65CC693A1F960D6538AC2220747_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m714A678E7305C88F13C24F2D84A4730CC9F3A200_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mAAC036E1467608366AB7082B9294B2D240CF39F2_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5A4B93316D6A4C5690A58FB8CD9CF7B8DF04FD71_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF369470521E89C5B71FEC28F4E96BB3826288DB8_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m45E8521467D65FE117A535B09D648B4C0ABFACC4_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m91F67742D3348DC2DB8E6A16997AD6588670E308_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3302BC7572764DF09C38DB71CD9A2129D0C314F0_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8DA85917C0C7EB05A18258A9623D557417C691DA_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m42C9B8DC50E5E3BD8EB0F5C16002105B82BC5CAA_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m20CA3C139E3843C94EFDEE347035BEBC3E2987F6_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m96B9A902D2E998CD80C72609435CA317B59AE58F_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m7308D935728624BFD7F75DFA3F2DBBF01CFBE1DF_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0 InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m17B2B992F2A526EE18296AE9667A9A29E441D7A2_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6D7E05A39879227E197139B6D7EF7D0AE451F7A_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4A691DD3AA4D27D9FD63839C14DDF87952FDE13C_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m9DD09DE80AD9259BF283BAD879C9B60368730688_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m594165273C51562F95EBED212DC436414A7E207D_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mFBDD2EAA7C145AC075F33B51B592789D564848CD_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC06D49DC291E7794E3F12364D6E1E42884267540_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m73106340E08CAE63B324474704721BBD89281BA5_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m5D5D41090FC129D974DD6B5C0722CB4FA5BDFAC3_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB87F6FD0CA38AB5B2EBF1943E4EB1B2F1D6708CC_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0 InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m023EAC318526C49937D0F6C0D656304D5311B5FC_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5AEF6DDC046F26DBC4DC683AF7B6088DE8C26285_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD4F8481614A1EF5EFD9B9F290B08319CD7A94511_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m34D106585D679AA1149ADF2B45D18BD060363B45_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m822199EA7A06D343D6BDFCAD4A4494587B1B7029_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m15E2966B69B022588ACA58F038282B8F104D8816_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEA6C555AA25714C53B2345F22ECC44A37BD647DB_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m0103D7CDA3D3A4A6D3C672BC4D16A495357B7D0E_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mEF38F3D4C072476E7A3E09BDEFB1505E8F629715_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB526D0519B23271BC8DF7CD37CBBAD76D26454D9_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C60991D53EF1FEB2E1A41FDBB9FFF2CC5A7BE65_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAB4493B47C0F2A8E193D2E030A7D44A31C9A023A_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m92052F02CDD1713BA5D454E3A0EF03BF1AC17A28_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m16B018EECDCAA44D4961E962B209EAEA73D55BFF_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m09524D62A8A9A9FD73C5E4CE6FCD18DD713E447C_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4 InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8F3D89C236E4BACB36A705E43FDEAB5905284DA7_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m86CC35FE25C926AD8343E56A7F6524E7781DDE54_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m10F4A7CD2C5D2336DE7ABBA04102C73CEEE2D45C_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mB977307291EBF63D064051F62362208AEDDBE207_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB5BAF81FA6FBC7536A5B81B3F38A157340BC6A75_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m33B74EDF3686DB576532CE69E6F4EBBDA4591C04_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9AED6C3DD8919BFEE636356A2C5F2567D45D8AB5_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m52420D32E44C8FE3169D87F7912BA3A667D1FA57_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m9DB21D5ED9D7A2454433729114E9CAA062D17755_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mD6DE171DE511FFCA1BABA58B0E66DA78FB9E957D_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9 InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m08A842237EA7A9D7E0B490465CCB49EB5BFB6B0F_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m36FE87AC2E93823C9E3D5A8C250021323DEF4993_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m51CB54B77BEBEE4A09DE14A89D01E48019F8F261_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mEC5F88E3A22D819068F448FF3FF07BA7BDDEA102_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mE8FCA5F36500EB1C53DC2A8634D4B5BF489A04B5_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13 InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m004698226B43FDB60AA1980B8B0C128F9D05654D_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB722E6B73F554403093FB14621C4179B4381F86A_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m058B0F910742AC81841D4244F051C37E90AFA13B_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDD4212B0B5CCD768A864FE139655B29D6D401CB8_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mBF3FD0B161D26CCBDCE8413399970EFA497C105E_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD0C4332170305A58369DD4E7588E033413848600_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m839ABABD77A829157EEA8FF46AD498E1764949AA_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m6EF951D96333E03CA307790DA5695F40FF277941_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mAB312652A28D3BA9EE37F9E48FCD941DFFBB8AB7_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mA63D061CE3357C1C60D76652E4AA602F413C0D15_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t687188C87EF1FD0D50038E634676DBC449857B8E InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C887FAABA9081A6E9871321B2E6A17CC1282258_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m503FB8641FCBD3CD042133F985119D52AD2BED93_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD582E12EAE3CEAA09842A51A88260B0D4CCBF61B_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m09BAA0DAE4042E769A9FE04F3573DE2A87946B9D_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m6D94D52D39EE040C8F7E6CE8A97DE45C15E343D5_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m809209CB43E94A71CE8F587DE0F486FB1A06A08F_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBB78EA589D8F8827DB6E6CB5AC547BC25C4AADED_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m7237DE486BADDDEE86670C29DCEF6757C2A0096A_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mB2192E238E2F267EE36038B64120D7C523F31F45_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mF74F14D38F9F49414D8B8C4ADD0BA44F2C6F3270_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m176CA0C9E12BF25CC3766C5D12A55B88347AD5F0_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA9A364A356C2C1E4990561CA11E575D101CB1DDF_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mAD5E03A8CC9EBF6E74FA8EB4ED3B4B7483320EF7_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m064C8AF3B504CE7F9718715EAC7C1FA54529C92F_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mE1DBF8C46BFE4364FD9E56B66E0A9206B2EB0C47_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEECB8E5AE82D0872338B25CE10C4D97F2703D152_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF9D89500E09954EBCEEE2CC3FA23A8DE8DBEFB00_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2047B6F070C9C5C4D9EF6147976F1ED4E28AF602_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m08900DA592D66440E18F7945EAD98B17C6C62404_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB8FCAF454999038E9D103E26E7DE8D471D680DE9_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m118A29F1EAB9A121242D65B79DCF0199A9640C5B_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2370D94B162CCB9AE9DE2667E298F002FBBDDEB7_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mEBD4CEE9A2F58EC98111D706BB79E7CEA45A7FB8_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m19FC0C82C4207E5E2041FB7E27EBAB18D8D4A9FA_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4D57C87AAB55A9F9856777CC0F1734146EC7EB58_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1 InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1ECD8842B5F72ABF69E8539D91D9C2427694656B_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9817E0D67E35A184B10AF95B6EF46EC163E90670_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mCB8A0B699C8A09B08084A34F5A8B4816BD709ACF_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mE5A2510067803B4094C7B99463F4E0700B458A77_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m848A8186BFFB8DE46073EF782468AF338D9B334D_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m46833C1522D4FD7EAF175D8052617F25BB7E8C1E_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m357FD033067DB191E5BA5730B78930CF9F57EFD8_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mFEA9C7C73B2C9DDC9D09D27D4B58231DCFE0BFEC_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m11B2DFF4C196B995810082C658596B4C15430D73_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m297E808C120909C00149D540DDA8D05A9E33BA5F_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA458B3F09AF75991FE8B3BC660A30202D3DCF3BD_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF404799320D20284AD3D79FEB29FAB44F7E4E6F0_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mEE2C570D5E7E5426D066B223014819C8AF52C81C_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mF13B6674061D28A1BEC4861C9DEC3C64227EC93D_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4F549A52CFE9F1740D8C1B6F9560C3F199F4A748_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDCDCABB85F4DCAFD112EBF0FAE0C6961DBFE301D_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m99CA89EB79E57A9759F9A03DF4D0B26DC43E553A_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m242214F003D15A119A0C04FFE652998D8FE41522_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m5E91FF0A6E2EF0B84CB4158ECB1F8B4A6455CF23_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mE4B207058D201EB5E54D576C57360ED5A09C2BE8_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF9EE0D0E138FD359A2F13C49636ACD60C723415C_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43DAB8F8C87A0B6E511C39045473A42294BE62CA_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mEEC77A7A391052F1B4D8FB1B6724FEA36735B77A_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m6B855E2E119047456064F5D14AB9C6E1AA2AFDB2_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mBAEEF92AC7553F9AC8440EA7DD7D2FCA9465B147_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCBA017C2D6C1AF8C2085728EAB8EF71EF9D678FC_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA49E227587722A256A55E35672CD9AD099FD355D_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m47E5478185ECA95D5B359F4E374FB6BC7580B7CD_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m8C478844CA47A9A869EA647394540050CD797AED_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m0F22661617905FDB79D39E81504B564BD039DEFA_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51098193F944467F3F3A17AE9BF51601F8E52850_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0D6EA9CE98BE54884ADF85404EA27B5366877105_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mE72C6395AF330F2DAFF86FB44EEA80F0B3A3BE71_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m814B367F8439B0425B556138E9C13C518435E351_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m8872DB84A56252FF08BD9046F35E40B95242E50E_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5202FAF2B575D33B7C74AA50F16B0F6E06551D12_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m73658604098C702B91C4EEB75AD4572F9C413ADF_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB775C69D46D10BFD6FF078F4B087CA8C86315497_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m8B23EA278F37E6A764B7DCA2CECA1102FE80BFB7_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mDED3B9A532F20407B4E8E57E4B50F6589E0248EA_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB381578FC4A10DFA5F1E074F93E2150CDD2D9F_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0CEBB9BEC81DA6756FF72F5CA2447B4645A41FA3_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m61F868D64FD5C0E79726859694754B78C3A12F13_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m1BF7479D1C81DB164169EA2E67489072EFAEDB8D_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m70A36FB83C5C0D46465928D98C613AC06DC4555F_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m19A49279822B4D3317DE80D741A23A1FFBC4AA8D_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF99F2E94E6B96C25D18AD365535F6596F6A8976D_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD0A8DC203B7CE22AB0EBD2BBCCB87FAA5CDB08DE_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mD9625E1AFEC205D378A2F4E4C5734856B3FA4660_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mEDEDC36713F335B3E121A6543C7F388DF3E12597_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1 InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDE02F23A05EDB3520D5E0B9A4DA4393D41AC244B_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2F6C95B5D7F0E37051E0DFC10CDCA003A82C2E3E_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m9D656D89B537594888859250FCBB48A9328D0EFD_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mBB6A6CCD5E5F93ADF79827F6A45B629646F4B479_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mCB9472F33153AD8B7DA41FAF4B07F943D4F12E7D_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE26AFD180126EFC408CAD0D2927BA46999AAC944_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3956F4C967305135B3B373A5129A561211FCB1AE_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m5501634A3EF42D4CDB91A24F9184B0E436071D21_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m489956CF0696406FD5EA5B25868481248544912A_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m0D1BF3D9124FF5A16605F3BA9A22D9A09E445A0E_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDB572A4D922C61FBA17D9C5D17856C8441E5C20D_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8BFDC8F6FCCB4C3110B1AC0531DC9183C30FF07B_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mF260DE351200677B92164F16989D8378B8602FAE_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m514DDA944789009A6C184BA5C2C9DB1100F5F83E_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m1CDEFAC438A34D43B29BD6EEA8285BC790B9F09A_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m109DDD1CB3D8A00CBBF69F2D09548AE54547F41F_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m24CAA4BAFDAEB694CEDBB27E26AEEDE237DC1546_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m5D8F9D41113E8C9DFC52F375E7CC4EB776DA327B_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m8ACCB43BFC6ADDBD1F3D2B583E9C0743924FA1D2_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m8769D2C23B301EEC48C7AFF0801E075DCBAD55F6_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8 InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m0A09BFB51F4017A57CCC3E85FAC0B898E3609FAB_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m67AC7B4AA25C35FD38A20D594F40976707719AE0_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4B6DB37850E868879F81679A1D88409759EB7765_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mB15A1D9948C9E2CD2822F52B2F62CD427713BD82_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m583FC4147B12DA3FAFA0533A669CA374B4D9A0C1_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m155A4FB8B3D4279780A334AD1773264888341227_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC1E83F3D88BCC59921351734CFD9513C705B4F83_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m68CFC035FC3DC1BD21D1ACB9580D1852CC49FF51_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDCA828D764CBB14FB3CF31AF0BDC68709FA4DAE7_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m9B1CF619F7F4E40343409851A9C45D5E2CB9347D_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8AA11D403DCF5974D63F330E5390A13F2521A2B_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9646270AE8A4EB0758936B3CB5A0530524ADFB4C_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m528291295CA6D5334E2C72963F4679C7ECF119A5_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mCEA52B18477E0D858EC6671BA30D66811923B795_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mC14339F688B871586DD176D67FB74CCCD3A8FE25_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52A1DCBCE25D2DC0BFFD86681646733F0B80DB58_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE951499B2927EC4DC4553DB5B3A8D3FB29965763_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mC6CC09F89E9FA9EBE66CDDF4E15F7946152719FF_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m52051D7FBEF765AC6C085175797B3D3821690C9C_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m2A459CC2005542BA53CBA7DF8F3D85D12F12B91C_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m06CA1CABC8A4A5BACAB2EF6A2F471E64A9CD3D33_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCDB9C76E233C4FD56B69F1D5F863005771F98D6E_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m8727B259CBEDE6D24BC36E6E95DE2E5C4A7A2C2D_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m19D92A722260CEFC4E6756C1963A7A0C4D1201AF_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m49A2FD3048ABA6102A6FC8FECD358A858351E8BF_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3 InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4D0E10E77B817D8B8D6F350773CD9FD72EA753EC_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF46E5137906B3173143ECB26E28476BBB50CBC30_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mF20BA8282530E2D2D4A66E63487D22962F761A0D_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m998EA33EE3505478DD9D2C750D46F75BFCC9D6BF_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mFD63B88E1D74E3EC82108E2A6C8C764D1214F213_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7 InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m45428AFEBC4D8ADCAD06F3C5CDC59F1B322929DC_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE64FE7BFBC439BAF21CFC0D9901C399AF6D4EB1D_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m5207FBDBFFFA3362A79214E0F6563073D0739B36_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m5D695D1842FAD0CF7E2626EE58BE25188594A063_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mFA644183525E4E7C1DA9E0AB2520DEC0664DB22E_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDEA574E3825E771EA4138A2FDBA795680D2D6DDF_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8F15A6CF9D2375039F3A2922EC07A6F66A911D2E_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m9F3DE26BFE9BF17F177A5DC956AADC3AEC5A7729_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mEA3762DB58F8733CC8196C00787BFB4B1D1BBBFC_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4BECF4142A35A113A6B4932DB906E425F6209742_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8257FAF3E914823A81665B44108DBB6FF6E676B_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCB16D07C75263BD2D00943720593924E2548EC08_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1CB3308838F195C141B17BC3E556D7B11BBCA550_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m759FE9A3148A7BD8EB6556DDDC6A1A521E53F911_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mDF2BD4031534E1F449162E7E0961A95D3BAFC6C9_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m71699E2DEA73C7A4B9C5D2BCB5291E2664D16C26_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF82BB0B739401816E30465A829ACCE3DF858751D_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mDB830C84CF94F0E0119F60E2FAD7CB8E0F472174_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m2F8B9758B98FA9E279D27D7A45A6BAFA896DB8A2_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m0D340F54E60087B3EE2A9589A4F8072D47722DDE_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m82D8E2877465899F74405EA923FDBAFF92E800EB_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m51713E13DFED5BA38700BE7033CE6E3B308A2BCA_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m072BD826BD6A467C36045938F3054E9BF121F4D5_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m3ADB9371A94E622FD8AF6543679A66950EA1C25D_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m7B6116857905B986364F2DD35FF99AE55C783A90_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m93547CE6144F9DCE5DA0C00F803EEBD0804093C8_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE4F8E4FDF06719D0ED8080612440C0522D90A463_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m7C81F6CE5067A6BCF3CFB52E46FBC8DF7AE1E0DC_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m86E3DC9BF30D4F65E8BCA1E9937D085A5BCBF436_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mA2A0106F218B0BE1ED20DC9B91C95057C0CA8AC4_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424 InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF547315C0BE75A3700B7F31B738ADE73B3376BF2_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m58EB5F9E0FA088D3573B922203D250591F18037C_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m07C3057C4A35E51C3319C0E7A3E2BD860A483F66_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m738CBC63FA6ABC5D42D9A240658CC5321BE513A7_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3FD6C35705C05C8F58478E0A339FF8C43CF52A39_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m185689B68AAFBC44A3B1433FCBFCB8EEDC01F49A_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9954378D50B23EE1FE627D13A72E03954A3F7C76_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mCCD8AE36B9CAFB92763676392FE84116538AD24E_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mA0DF4088CD60257BBC8527908BE16E048F6C5E98_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3FDFA1D96E4B58DB6805E65BBBDBD46FCAC02DA0_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6238AD483ECDECE96631A063795D9CF68C3BB44B_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBAC376F386E8FAD63A30A9DCED9D09C501BCC91_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m9C482B8E70A456521E2639D0B7B4B8767C22E0FD_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m70F1D13BC9F7DC04FAF89CCABBF08D59FCABA3FD_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mD57B806231F635FEAB78C7830ABA88430462A3AE_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7794B03697B0551B5F41792EE6B57D5936417915_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m08C39EB913D939BA99E8565AC33FE74CB1CD6E6E_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mF08617A642B743C4655877FCEF67BB41A8E37941_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m5FC30F2AC2639B07D9DF4CF80D73CE0BF79171A1_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mC05421D63FFDE4EE06C08A709F49CA129C70C058_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8806CBB693976B5D080E4578F057147A2A926F72_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9B0BD9F6373280E438F8A2DD47C301648B5823DA_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m8C418CCC75787610D17FB1F4CF94A8D537C0A8B6_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m357258C619F7231B639449CE7A811C2E921C2F2B_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m117483E16F2F1B10DD92C6F54AC53F0861EAC39E_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562 InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7FAF26AB53957784BD0986CAF59E1C35F2064A09_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBC8B6E0550D6941CE05C76CF2D7AEA20408F585_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m05E04E122300AB7287C1F7E1BE04E0FF936FFE46_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m7F7A577B02CB8D2C5AE6065E646244023CB17F28_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mBCDB3AE1EDCFA3F9D2548BA5919CEEBE82AD5E06_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2A7CFC894C8F92BBC2B2605758F7A0DE1A5EBD4C_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD7C8BAAFFF8522454FE1648F4FB1AEE12E1D3EC7_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD0C8B60785A9D2334E9367CDFF1318509ECAFF22_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mE94D7652E31C213E15580E0F2AD67B900F1901E5_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mDDA5DF528DCD48773088711584E28E3E1D70D6D8_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1D8A5D3A455BDEE762C1B8A58CD0BC7E09E11152_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9E0054AA9D4615C4E358DB1A8AE81EFD0DC6476E_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mE7F445B328003440BE0D179BA70CA91B01CDC06C_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDBE998E404AB29E326B872C5924000CD53FAFEE5_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m7392ED7FBC297563A2226979703F4E4B058E9E62_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184 InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2F86825931F13560EAB7E4CECBE90F514B5E87_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m95B81570191DCF3DE0DE7198614875DEACF3E7FE_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m94D1F1F106E37071F81E0B5B75E2AA9146A4548A_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m2BD69D5A5C524D6C2025294699B214D115E5634C_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mCEA21E4E9207E97675444C5055388AFFCDAC227A_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980 InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6F29EC8CCAF82D6B8BA93DFA53F19C4D55E1B6D8_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m519554408FEB22490281AC754DFEF663ADCB2613_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m162F2F2AA22CBE55DF2645F07CB932F5F4EB743F_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mD4E3E27B3B77F32B80EE127DC011E35C6A3A1CD7_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method);
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mDA7E54CEDC4B9D58D253AD6378C06D61A0FD2441_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method);
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m72DAC9C9A8D7F1800767EA0866473B6BE3683CD1_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method);
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0007817C91F99D353BEEA5B5336C841F02AF937_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, 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.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mA53A02D7291444367D52E40714EAC6EDED7704AF (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mA53A02D7291444367D52E40714EAC6EDED7704AF_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mAE6BECAE381F3DCDD9941E86F034F7698494C3E9 (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mAE6BECAE381F3DCDD9941E86F034F7698494C3E9_gshared)(__this, 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.Boolean System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mEA2086AA1DF519C98AF0F3EA7BF4703E520A7E67 (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mEA2086AA1DF519C98AF0F3EA7BF4703E520A7E67_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::get_Current()
inline ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method)
{
return (( ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 (*) (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB4ACB1845506B32A59E28F5B684037244486FF96 (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB4ACB1845506B32A59E28F5B684037244486FF96_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m84ED2AD293A7B71C97BC648E285B954C1C983A66 (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m84ED2AD293A7B71C97BC648E285B954C1C983A66_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mB3E2F903DEF040C92F3592EDEF8FC5A3572D7979 (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mB3E2F903DEF040C92F3592EDEF8FC5A3572D7979_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::Dispose()
inline void InternalEnumerator_1_Dispose_mA19B589D54A708CE8BC917DE08D75DFDF247EE9C (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mA19B589D54A708CE8BC917DE08D75DFDF247EE9C_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mF0F8879AF1409666747FD012B4ACE9ABCD9B222A (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mF0F8879AF1409666747FD012B4ACE9ABCD9B222A_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::get_Current()
inline ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194 (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method)
{
return (( ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A (*) (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m50BCE52EC9EA9D44A9EE187B6BCCE8DB947F5710 (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m50BCE52EC9EA9D44A9EE187B6BCCE8DB947F5710_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79A10712CC339E3445EE16F55BF268CBEB244215 (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79A10712CC339E3445EE16F55BF268CBEB244215_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mD372094D7B7C6B5CCCA0392892902163CD61B9F3 (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mD372094D7B7C6B5CCCA0392892902163CD61B9F3_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::Dispose()
inline void InternalEnumerator_1_Dispose_m8FB34EF385B523FAFAB9B25493C60C7E62991823 (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m8FB34EF385B523FAFAB9B25493C60C7E62991823_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m5335D61B31C1C411EF4E4C1CA7B1271E59DBE0CB (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m5335D61B31C1C411EF4E4C1CA7B1271E59DBE0CB_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::get_Current()
inline XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method)
{
return (( XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 (*) (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF0D6AEB334A74111C2585F927B0916ED0E6FF964 (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF0D6AEB334A74111C2585F927B0916ED0E6FF964_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC74149835A4786E57A793A75C5830A99BF0C35BB (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC74149835A4786E57A793A75C5830A99BF0C35BB_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m8418143BC51EA6FDB863AB9660EB3DDFAB87ADC8 (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m8418143BC51EA6FDB863AB9660EB3DDFAB87ADC8_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::Dispose()
inline void InternalEnumerator_1_Dispose_mCBF041E9018AC2DADE507FFB1F354DBF786C4F2B (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mCBF041E9018AC2DADE507FFB1F354DBF786C4F2B_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mABD0F622BE7884880043719DACE85DAAA45A3DDE (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mABD0F622BE7884880043719DACE85DAAA45A3DDE_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::get_Current()
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614 (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method)
{
return (( XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 (*) (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA4802167E4B523F76F1D1B2D84DED784FB5EAFA1 (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA4802167E4B523F76F1D1B2D84DED784FB5EAFA1_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBE4DE6BA19B796770E1089C5F54590D55FC826C5 (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBE4DE6BA19B796770E1089C5F54590D55FC826C5_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose()
inline void InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current()
inline TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
return (( TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130 (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0 (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::Dispose()
inline void InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91 (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::get_Current()
inline ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237 (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
return (( ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5 (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::Dispose()
inline void InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Boolean>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Boolean>::get_Current()
inline bool InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767 (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9 (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Byte>::Dispose()
inline void InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Byte>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72 (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Byte>::get_Current()
inline uint8_t InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87 (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
return (( uint8_t (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9 (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ByteEnum>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m131AA13CAFDAEDBFD0C3D03CAF148800CF7488C4 (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m131AA13CAFDAEDBFD0C3D03CAF148800CF7488C4_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ByteEnum>::Dispose()
inline void InternalEnumerator_1_Dispose_m6BB9F8429EF1FFF9C1433FC8DAC774A14BB16EA6 (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m6BB9F8429EF1FFF9C1433FC8DAC774A14BB16EA6_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.ByteEnum>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m80D44C63C9A4811E7C65C874F06CC5DCF0ED348C (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m80D44C63C9A4811E7C65C874F06CC5DCF0ED348C_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.ByteEnum>::get_Current()
inline uint8_t InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method)
{
return (( uint8_t (*) (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ByteEnum>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEA97754FC78EDA9D58F124B63E321D59B7108FE8 (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEA97754FC78EDA9D58F124B63E321D59B7108FE8_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.ByteEnum>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m14F22972EFF3D07A5010BD64BC518F8498A262B9 (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m14F22972EFF3D07A5010BD64BC518F8498A262B9_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Char>::Dispose()
inline void InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Char>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Char>::get_Current()
inline Il2CppChar InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466 (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
return (( Il2CppChar (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7 (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m13EF0798EE41222156E0F176866A098DB151625F (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m13EF0798EE41222156E0F176866A098DB151625F_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mA81400E3470F11CF0E5F5312F999464BE7A11E03 (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mA81400E3470F11CF0E5F5312F999464BE7A11E03_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m16ED02B90826DDB84873EB5A60E6B10D81FE5411 (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m16ED02B90826DDB84873EB5A60E6B10D81FE5411_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::get_Current()
inline Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5 InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method)
{
return (( Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5 (*) (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51A5E1309C39F179B788ECE8CDCB1D7EBDF980ED (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51A5E1309C39F179B788ECE8CDCB1D7EBDF980ED_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB249137BEBF3AB1A8AC0A923841E7F7781CC35C2 (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB249137BEBF3AB1A8AC0A923841E7F7781CC35C2_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose()
inline void InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4 (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current()
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
return (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691 (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8 (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m609422074D167B1FFF07A87128AFD80321C652D8 (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m609422074D167B1FFF07A87128AFD80321C652D8_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m2E1CDBE7C7D273B9A5A573097661BD224A162859 (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2E1CDBE7C7D273B9A5A573097661BD224A162859_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m84B2F66A8DC09F12B24B0C6C33676EC1CAF28210 (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m84B2F66A8DC09F12B24B0C6C33676EC1CAF28210_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::get_Current()
inline Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92 InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526 (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method)
{
return (( Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92 (*) (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF779F78E51259A77C359D886FD4447E1904C7D9E (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF779F78E51259A77C359D886FD4447E1904C7D9E_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8841B96CFBD2971CE9AAE7A8B3248421C6EDC5CB (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8841B96CFBD2971CE9AAE7A8B3248421C6EDC5CB_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m44A1219CB22476007BD08AE3757B05945E3B25A9 (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m44A1219CB22476007BD08AE3757B05945E3B25A9_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::Dispose()
inline void InternalEnumerator_1_Dispose_mFEC45E4E975A7B432CDBE27CE4C437E1D8542A25 (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mFEC45E4E975A7B432CDBE27CE4C437E1D8542A25_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m92EB9A823D7223FCAE8699D90204D2A80166925F (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m92EB9A823D7223FCAE8699D90204D2A80166925F_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::get_Current()
inline Entry_tC1463A26CB3583633B8650196083947E916945AD InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method)
{
return (( Entry_tC1463A26CB3583633B8650196083947E916945AD (*) (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8B9B0F3D9970A1591E576689F145580C6C60626A (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8B9B0F3D9970A1591E576689F145580C6C60626A_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8A6FFEE4C37D4E70BBF8410AD81DA10F93A205AA (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8A6FFEE4C37D4E70BBF8410AD81DA10F93A205AA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m8DFECC5AF03B02BB798644599A97B875F9061AEA (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m8DFECC5AF03B02BB798644599A97B875F9061AEA_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mBA268F3640C62BD059F84B5AFBB57B0454C15F1D (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mBA268F3640C62BD059F84B5AFBB57B0454C15F1D_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m0C1C3591D552412F88EA8B9EC0F2381D59B9F7F8 (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m0C1C3591D552412F88EA8B9EC0F2381D59B9F7F8_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::get_Current()
inline Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657 (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method)
{
return (( Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B (*) (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m02906FF9D087D139F36BE9126A20A25BEC636627 (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m02906FF9D087D139F36BE9126A20A25BEC636627_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m74B8A4FDF78AA84FB14281DFFD8B8F45730C9093 (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m74B8A4FDF78AA84FB14281DFFD8B8F45730C9093_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mB14E8ADD77CDB39F616A9F746E1F1C77EAC2140A (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mB14E8ADD77CDB39F616A9F746E1F1C77EAC2140A_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::Dispose()
inline void InternalEnumerator_1_Dispose_mD9467ACD92242128DF7F6AC0BB7F795B5A6EED78 (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mD9467ACD92242128DF7F6AC0BB7F795B5A6EED78_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mB35CF8C07A792E869C10095664158D48C1C70C42 (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mB35CF8C07A792E869C10095664158D48C1C70C42_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::get_Current()
inline Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65 (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method)
{
return (( Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 (*) (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA42DA15145A70679770B3479AAD4D73764286B85 (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA42DA15145A70679770B3479AAD4D73764286B85_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2D2DC0F086C73CFDC6302B52A89C45AFC7F9AC58 (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2D2DC0F086C73CFDC6302B52A89C45AFC7F9AC58_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m094E41439718B5F69131D3668CEE3A60999C25A9 (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m094E41439718B5F69131D3668CEE3A60999C25A9_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::Dispose()
inline void InternalEnumerator_1_Dispose_m9F291A4AE071B76517E91D433A2F9181BF4F1F90 (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m9F291A4AE071B76517E91D433A2F9181BF4F1F90_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mE0B0496215CD1CBF508678337C6D62F1C79B64E3 (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mE0B0496215CD1CBF508678337C6D62F1C79B64E3_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::get_Current()
inline Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43 (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method)
{
return (( Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A (*) (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2EBCC5F95FDEE25CF4EF19FE4809D6E938A080DF (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2EBCC5F95FDEE25CF4EF19FE4809D6E938A080DF_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2411BFE065F9DEA716F23C9CE82AF3BA4BE0ED7E (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2411BFE065F9DEA716F23C9CE82AF3BA4BE0ED7E_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m1D388F30C3343BD7E5848F3DC388A2C81AE3B711 (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1D388F30C3343BD7E5848F3DC388A2C81AE3B711_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::Dispose()
inline void InternalEnumerator_1_Dispose_mF143D7BBA0BA94B00A4E373AE0ADB69CFF3A1426 (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mF143D7BBA0BA94B00A4E373AE0ADB69CFF3A1426_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mEFB563473244B3B32939682A302A03F035237286 (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mEFB563473244B3B32939682A302A03F035237286_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::get_Current()
inline Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386 (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method)
{
return (( Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 (*) (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7F1E425C74802B63B7FA43306C8436A10A3F68B3 (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7F1E425C74802B63B7FA43306C8436A10A3F68B3_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDC9FF62689E22AA958ED8EF823B0B0A254A8E8FD (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDC9FF62689E22AA958ED8EF823B0B0A254A8E8FD_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mA496B2318BDE17986C32E0C47A64A37CDF74BF3E (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mA496B2318BDE17986C32E0C47A64A37CDF74BF3E_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::Dispose()
inline void InternalEnumerator_1_Dispose_m88AE2C118C0E037C1B80ABD348CAB589A45D4CA5 (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m88AE2C118C0E037C1B80ABD348CAB589A45D4CA5_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m5BDA684C3D28A02CC831A8862A5F71E5A4C11E84 (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m5BDA684C3D28A02CC831A8862A5F71E5A4C11E84_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::get_Current()
inline Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766 (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method)
{
return (( Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A (*) (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1786E32E4B9BF2967003DB694F4BDBCC9D14A86C (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1786E32E4B9BF2967003DB694F4BDBCC9D14A86C_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79D6B51066373B60392227A2D594FD17E92690B2 (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79D6B51066373B60392227A2D594FD17E92690B2_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54 (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626 (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::get_Current()
inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
return (( Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71 (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053 (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mB0472A3C821FA6879553AAFDA3456A2AF028C60C (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mB0472A3C821FA6879553AAFDA3456A2AF028C60C_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::Dispose()
inline void InternalEnumerator_1_Dispose_m6F2B6A67C00DD6270203CBA8208E830820576CAE (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m6F2B6A67C00DD6270203CBA8208E830820576CAE_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mE0D4BF865E9D1C1F6A8181F306A9399B9538E8C9 (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mE0D4BF865E9D1C1F6A8181F306A9399B9538E8C9_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::get_Current()
inline Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3 InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1 (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method)
{
return (( Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3 (*) (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3A62A1B7072DBAAF09CDADC86B19550F7D695C6B (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3A62A1B7072DBAAF09CDADC86B19550F7D695C6B_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m20BC84702C54AAE0AE2AA60390A5C0A656F8B049 (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m20BC84702C54AAE0AE2AA60390A5C0A656F8B049_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mE700527294C3EE471A0B72A2F4E3E43DC1C5565C (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mE700527294C3EE471A0B72A2F4E3E43DC1C5565C_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::Dispose()
inline void InternalEnumerator_1_Dispose_mA0E294B1AD8EBFEB4D56338FDB9D9BA73491F7A0 (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mA0E294B1AD8EBFEB4D56338FDB9D9BA73491F7A0_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m40EA09F2813E22B2ED04DBEC56B13591B456274F (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m40EA09F2813E22B2ED04DBEC56B13591B456274F_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::get_Current()
inline Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05 (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method)
{
return (( Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 (*) (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA62CF831C31AFC3A81C60A9579AE4B5FB125898E (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA62CF831C31AFC3A81C60A9579AE4B5FB125898E_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A9D47B978B834197FA512E3ACFB92AB916CDEC2 (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A9D47B978B834197FA512E3ACFB92AB916CDEC2_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m3FE085DED36DF93C4B0C97EBC807200ECB1BD147 (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3FE085DED36DF93C4B0C97EBC807200ECB1BD147_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mDB08AE86D5C4D83721A187FE72C3AE35848C484E (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mDB08AE86D5C4D83721A187FE72C3AE35848C484E_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m756E49D400B1E25A553647950786AA3C221E5673 (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m756E49D400B1E25A553647950786AA3C221E5673_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::get_Current()
inline Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52 (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method)
{
return (( Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD (*) (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91A76807B7A0CAFF1C1E90A81107A7787A76D55C (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91A76807B7A0CAFF1C1E90A81107A7787A76D55C_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mED532D7BD977FF130F6FB0557496BBCCE835CA74 (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mED532D7BD977FF130F6FB0557496BBCCE835CA74_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m3D9D5FCD83712292B59538020598B596466798CD (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3D9D5FCD83712292B59538020598B596466798CD_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mD3E87C246F2A5942F50B8D770734A3BE53318096 (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mD3E87C246F2A5942F50B8D770734A3BE53318096_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mD9FA51C1AB129E50F46D5791CFF3A254569D571D (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mD9FA51C1AB129E50F46D5791CFF3A254569D571D_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::get_Current()
inline Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4 (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method)
{
return (( Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 (*) (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7D633A57CF017BE224D032D4EC54A5E1590BE07C (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7D633A57CF017BE224D032D4EC54A5E1590BE07C_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m218525A22112C208508BB362E065DC0C156A43DD (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m218525A22112C208508BB362E065DC0C156A43DD_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m834B9A93E0489E1BF20DEF263ECC0816CDE3AC12 (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m834B9A93E0489E1BF20DEF263ECC0816CDE3AC12_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m32BC75DD6952A1F7BAA8FEF93836565F02B232ED (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m32BC75DD6952A1F7BAA8FEF93836565F02B232ED_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m38FFC73795B3CD1010829852DA2290EA2B0851DE (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m38FFC73795B3CD1010829852DA2290EA2B0851DE_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::get_Current()
inline Entry_t1569C69F7132527F147EA707D2A116532F05D1EE InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8 (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method)
{
return (( Entry_t1569C69F7132527F147EA707D2A116532F05D1EE (*) (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9DECC67AF81E3676B54E44589A92A57E1AAAA727 (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9DECC67AF81E3676B54E44589A92A57E1AAAA727_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC90DAE15F2045FC213F421948591DF49988AA5E0 (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC90DAE15F2045FC213F421948591DF49988AA5E0_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m6652E02689C29811F9EC2C52335B6CA0516E5A85 (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m6652E02689C29811F9EC2C52335B6CA0516E5A85_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::Dispose()
inline void InternalEnumerator_1_Dispose_m101EA4F268524BBA156B1E46A8521EC5A566290C (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m101EA4F268524BBA156B1E46A8521EC5A566290C_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mFC43E2FD35B2B19C4B4D67210F673F1692BB04EA (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mFC43E2FD35B2B19C4B4D67210F673F1692BB04EA_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::get_Current()
inline Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50 (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method)
{
return (( Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 (*) (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m26322EFCF66AA4900E8DB9DC1AA30290E5D33E0D (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m26322EFCF66AA4900E8DB9DC1AA30290E5D33E0D_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0D6C204841D858403AF4032292A43E270401167 (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0D6C204841D858403AF4032292A43E270401167_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::Dispose()
inline void InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459 (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906 (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::get_Current()
inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
return (( Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27 (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mE9806D4F5B046CF5571AAEBA47A9DFC767F1D7EF (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mE9806D4F5B046CF5571AAEBA47A9DFC767F1D7EF_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::Dispose()
inline void InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87 (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::get_Current()
inline Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method)
{
return (( Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF (*) (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271 (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9 (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::Dispose()
inline void InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224 (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::get_Current()
inline Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
return (( Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8 (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221 (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m1227B6856C20A5D6E7D05282A8FE14D83D1AB7AB (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1227B6856C20A5D6E7D05282A8FE14D83D1AB7AB_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::Dispose()
inline void InternalEnumerator_1_Dispose_mF6A3C20F3111C907CE13ACC03863350C2E9032D5 (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mF6A3C20F3111C907CE13ACC03863350C2E9032D5_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m4F3B7812BBBD034AA0F4488FA53EFA3FBF509294 (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4F3B7812BBBD034AA0F4488FA53EFA3FBF509294_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::get_Current()
inline Entry_tF51B7F09080F58F478531DF63F041E6EF203919A InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method)
{
return (( Entry_tF51B7F09080F58F478531DF63F041E6EF203919A (*) (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAFED93BAB2AB7AB20477A5AD0B1BD875D168B66C (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAFED93BAB2AB7AB20477A5AD0B1BD875D168B66C_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5E5399EDC5D9971D1FC278B8ACE86D53AA90C12E (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5E5399EDC5D9971D1FC278B8ACE86D53AA90C12E_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m96FE2C7B1169A165EC4F4EE9EC0324FD7D5BA1B7 (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m96FE2C7B1169A165EC4F4EE9EC0324FD7D5BA1B7_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::Dispose()
inline void InternalEnumerator_1_Dispose_m87D8DF9B492674BFA8C24E3E5DF6B121BE8C876D (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m87D8DF9B492674BFA8C24E3E5DF6B121BE8C876D_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m8928697385AE3C047474EBA814D0F9AE2F885E88 (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m8928697385AE3C047474EBA814D0F9AE2F885E88_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::get_Current()
inline Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8 (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method)
{
return (( Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A (*) (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA5520C23C166CBCBB22DD62587BFBFAD889CDA20 (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA5520C23C166CBCBB22DD62587BFBFAD889CDA20_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0B2843D2614A5F709027418873DE1B2508990364 (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0B2843D2614A5F709027418873DE1B2508990364_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618 (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670 (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957 (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::get_Current()
inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
return (( Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241 (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325 (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::Dispose()
inline void InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98 (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7 (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::get_Current()
inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1 (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
return (( Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959 (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m6BB6F5CDDCB8C65CC693A1F960D6538AC2220747 (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m6BB6F5CDDCB8C65CC693A1F960D6538AC2220747_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::Dispose()
inline void InternalEnumerator_1_Dispose_m714A678E7305C88F13C24F2D84A4730CC9F3A200 (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m714A678E7305C88F13C24F2D84A4730CC9F3A200_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mAAC036E1467608366AB7082B9294B2D240CF39F2 (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mAAC036E1467608366AB7082B9294B2D240CF39F2_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::get_Current()
inline Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6 (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method)
{
return (( Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 (*) (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5A4B93316D6A4C5690A58FB8CD9CF7B8DF04FD71 (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5A4B93316D6A4C5690A58FB8CD9CF7B8DF04FD71_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF369470521E89C5B71FEC28F4E96BB3826288DB8 (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF369470521E89C5B71FEC28F4E96BB3826288DB8_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m45E8521467D65FE117A535B09D648B4C0ABFACC4 (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m45E8521467D65FE117A535B09D648B4C0ABFACC4_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::Dispose()
inline void InternalEnumerator_1_Dispose_m91F67742D3348DC2DB8E6A16997AD6588670E308 (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m91F67742D3348DC2DB8E6A16997AD6588670E308_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m3302BC7572764DF09C38DB71CD9A2129D0C314F0 (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3302BC7572764DF09C38DB71CD9A2129D0C314F0_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::get_Current()
inline Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method)
{
return (( Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC (*) (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8DA85917C0C7EB05A18258A9623D557417C691DA (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8DA85917C0C7EB05A18258A9623D557417C691DA_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m42C9B8DC50E5E3BD8EB0F5C16002105B82BC5CAA (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m42C9B8DC50E5E3BD8EB0F5C16002105B82BC5CAA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m20CA3C139E3843C94EFDEE347035BEBC3E2987F6 (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m20CA3C139E3843C94EFDEE347035BEBC3E2987F6_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::Dispose()
inline void InternalEnumerator_1_Dispose_m96B9A902D2E998CD80C72609435CA317B59AE58F (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m96B9A902D2E998CD80C72609435CA317B59AE58F_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m7308D935728624BFD7F75DFA3F2DBBF01CFBE1DF (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m7308D935728624BFD7F75DFA3F2DBBF01CFBE1DF_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::get_Current()
inline Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0 InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9 (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method)
{
return (( Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0 (*) (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m17B2B992F2A526EE18296AE9667A9A29E441D7A2 (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m17B2B992F2A526EE18296AE9667A9A29E441D7A2_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6D7E05A39879227E197139B6D7EF7D0AE451F7A (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6D7E05A39879227E197139B6D7EF7D0AE451F7A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m4A691DD3AA4D27D9FD63839C14DDF87952FDE13C (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4A691DD3AA4D27D9FD63839C14DDF87952FDE13C_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::Dispose()
inline void InternalEnumerator_1_Dispose_m9DD09DE80AD9259BF283BAD879C9B60368730688 (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m9DD09DE80AD9259BF283BAD879C9B60368730688_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m594165273C51562F95EBED212DC436414A7E207D (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m594165273C51562F95EBED212DC436414A7E207D_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::get_Current()
inline Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55 (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method)
{
return (( Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD (*) (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mFBDD2EAA7C145AC075F33B51B592789D564848CD (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mFBDD2EAA7C145AC075F33B51B592789D564848CD_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC06D49DC291E7794E3F12364D6E1E42884267540 (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC06D49DC291E7794E3F12364D6E1E42884267540_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m73106340E08CAE63B324474704721BBD89281BA5 (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m73106340E08CAE63B324474704721BBD89281BA5_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::Dispose()
inline void InternalEnumerator_1_Dispose_m5D5D41090FC129D974DD6B5C0722CB4FA5BDFAC3 (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m5D5D41090FC129D974DD6B5C0722CB4FA5BDFAC3_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mB87F6FD0CA38AB5B2EBF1943E4EB1B2F1D6708CC (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mB87F6FD0CA38AB5B2EBF1943E4EB1B2F1D6708CC_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::get_Current()
inline Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0 InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method)
{
return (( Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0 (*) (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m023EAC318526C49937D0F6C0D656304D5311B5FC (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m023EAC318526C49937D0F6C0D656304D5311B5FC_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5AEF6DDC046F26DBC4DC683AF7B6088DE8C26285 (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5AEF6DDC046F26DBC4DC683AF7B6088DE8C26285_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mD4F8481614A1EF5EFD9B9F290B08319CD7A94511 (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mD4F8481614A1EF5EFD9B9F290B08319CD7A94511_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::Dispose()
inline void InternalEnumerator_1_Dispose_m34D106585D679AA1149ADF2B45D18BD060363B45 (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m34D106585D679AA1149ADF2B45D18BD060363B45_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m822199EA7A06D343D6BDFCAD4A4494587B1B7029 (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m822199EA7A06D343D6BDFCAD4A4494587B1B7029_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::get_Current()
inline Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8 (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method)
{
return (( Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 (*) (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m15E2966B69B022588ACA58F038282B8F104D8816 (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m15E2966B69B022588ACA58F038282B8F104D8816_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEA6C555AA25714C53B2345F22ECC44A37BD647DB (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEA6C555AA25714C53B2345F22ECC44A37BD647DB_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m0103D7CDA3D3A4A6D3C672BC4D16A495357B7D0E (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m0103D7CDA3D3A4A6D3C672BC4D16A495357B7D0E_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mEF38F3D4C072476E7A3E09BDEFB1505E8F629715 (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mEF38F3D4C072476E7A3E09BDEFB1505E8F629715_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mB526D0519B23271BC8DF7CD37CBBAD76D26454D9 (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mB526D0519B23271BC8DF7CD37CBBAD76D26454D9_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::get_Current()
inline Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116 (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method)
{
return (( Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A (*) (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C60991D53EF1FEB2E1A41FDBB9FFF2CC5A7BE65 (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C60991D53EF1FEB2E1A41FDBB9FFF2CC5A7BE65_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAB4493B47C0F2A8E193D2E030A7D44A31C9A023A (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAB4493B47C0F2A8E193D2E030A7D44A31C9A023A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m92052F02CDD1713BA5D454E3A0EF03BF1AC17A28 (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m92052F02CDD1713BA5D454E3A0EF03BF1AC17A28_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m16B018EECDCAA44D4961E962B209EAEA73D55BFF (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m16B018EECDCAA44D4961E962B209EAEA73D55BFF_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m09524D62A8A9A9FD73C5E4CE6FCD18DD713E447C (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m09524D62A8A9A9FD73C5E4CE6FCD18DD713E447C_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::get_Current()
inline Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4 InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95 (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method)
{
return (( Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4 (*) (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8F3D89C236E4BACB36A705E43FDEAB5905284DA7 (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8F3D89C236E4BACB36A705E43FDEAB5905284DA7_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m86CC35FE25C926AD8343E56A7F6524E7781DDE54 (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m86CC35FE25C926AD8343E56A7F6524E7781DDE54_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m10F4A7CD2C5D2336DE7ABBA04102C73CEEE2D45C (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m10F4A7CD2C5D2336DE7ABBA04102C73CEEE2D45C_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mB977307291EBF63D064051F62362208AEDDBE207 (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mB977307291EBF63D064051F62362208AEDDBE207_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mB5BAF81FA6FBC7536A5B81B3F38A157340BC6A75 (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mB5BAF81FA6FBC7536A5B81B3F38A157340BC6A75_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::get_Current()
inline Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method)
{
return (( Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 (*) (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m33B74EDF3686DB576532CE69E6F4EBBDA4591C04 (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m33B74EDF3686DB576532CE69E6F4EBBDA4591C04_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9AED6C3DD8919BFEE636356A2C5F2567D45D8AB5 (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9AED6C3DD8919BFEE636356A2C5F2567D45D8AB5_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m52420D32E44C8FE3169D87F7912BA3A667D1FA57 (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m52420D32E44C8FE3169D87F7912BA3A667D1FA57_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m9DB21D5ED9D7A2454433729114E9CAA062D17755 (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m9DB21D5ED9D7A2454433729114E9CAA062D17755_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mD6DE171DE511FFCA1BABA58B0E66DA78FB9E957D (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mD6DE171DE511FFCA1BABA58B0E66DA78FB9E957D_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::get_Current()
inline Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9 InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768 (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method)
{
return (( Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9 (*) (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m08A842237EA7A9D7E0B490465CCB49EB5BFB6B0F (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m08A842237EA7A9D7E0B490465CCB49EB5BFB6B0F_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m36FE87AC2E93823C9E3D5A8C250021323DEF4993 (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m36FE87AC2E93823C9E3D5A8C250021323DEF4993_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m51CB54B77BEBEE4A09DE14A89D01E48019F8F261 (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m51CB54B77BEBEE4A09DE14A89D01E48019F8F261_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mEC5F88E3A22D819068F448FF3FF07BA7BDDEA102 (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mEC5F88E3A22D819068F448FF3FF07BA7BDDEA102_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mE8FCA5F36500EB1C53DC2A8634D4B5BF489A04B5 (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mE8FCA5F36500EB1C53DC2A8634D4B5BF489A04B5_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::get_Current()
inline Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13 InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method)
{
return (( Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13 (*) (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m004698226B43FDB60AA1980B8B0C128F9D05654D (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m004698226B43FDB60AA1980B8B0C128F9D05654D_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB722E6B73F554403093FB14621C4179B4381F86A (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB722E6B73F554403093FB14621C4179B4381F86A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m058B0F910742AC81841D4244F051C37E90AFA13B (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m058B0F910742AC81841D4244F051C37E90AFA13B_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mDD4212B0B5CCD768A864FE139655B29D6D401CB8 (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mDD4212B0B5CCD768A864FE139655B29D6D401CB8_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mBF3FD0B161D26CCBDCE8413399970EFA497C105E (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mBF3FD0B161D26CCBDCE8413399970EFA497C105E_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::get_Current()
inline Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method)
{
return (( Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF (*) (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD0C4332170305A58369DD4E7588E033413848600 (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD0C4332170305A58369DD4E7588E033413848600_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m839ABABD77A829157EEA8FF46AD498E1764949AA (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m839ABABD77A829157EEA8FF46AD498E1764949AA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m6EF951D96333E03CA307790DA5695F40FF277941 (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m6EF951D96333E03CA307790DA5695F40FF277941_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mAB312652A28D3BA9EE37F9E48FCD941DFFBB8AB7 (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mAB312652A28D3BA9EE37F9E48FCD941DFFBB8AB7_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mA63D061CE3357C1C60D76652E4AA602F413C0D15 (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mA63D061CE3357C1C60D76652E4AA602F413C0D15_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::get_Current()
inline Entry_t687188C87EF1FD0D50038E634676DBC449857B8E InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72 (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method)
{
return (( Entry_t687188C87EF1FD0D50038E634676DBC449857B8E (*) (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C887FAABA9081A6E9871321B2E6A17CC1282258 (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C887FAABA9081A6E9871321B2E6A17CC1282258_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m503FB8641FCBD3CD042133F985119D52AD2BED93 (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m503FB8641FCBD3CD042133F985119D52AD2BED93_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mD582E12EAE3CEAA09842A51A88260B0D4CCBF61B (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mD582E12EAE3CEAA09842A51A88260B0D4CCBF61B_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::Dispose()
inline void InternalEnumerator_1_Dispose_m09BAA0DAE4042E769A9FE04F3573DE2A87946B9D (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m09BAA0DAE4042E769A9FE04F3573DE2A87946B9D_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m6D94D52D39EE040C8F7E6CE8A97DE45C15E343D5 (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m6D94D52D39EE040C8F7E6CE8A97DE45C15E343D5_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::get_Current()
inline Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38 (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method)
{
return (( Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E (*) (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m809209CB43E94A71CE8F587DE0F486FB1A06A08F (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m809209CB43E94A71CE8F587DE0F486FB1A06A08F_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBB78EA589D8F8827DB6E6CB5AC547BC25C4AADED (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBB78EA589D8F8827DB6E6CB5AC547BC25C4AADED_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m7237DE486BADDDEE86670C29DCEF6757C2A0096A (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m7237DE486BADDDEE86670C29DCEF6757C2A0096A_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mB2192E238E2F267EE36038B64120D7C523F31F45 (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mB2192E238E2F267EE36038B64120D7C523F31F45_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mF74F14D38F9F49414D8B8C4ADD0BA44F2C6F3270 (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mF74F14D38F9F49414D8B8C4ADD0BA44F2C6F3270_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::get_Current()
inline Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7 (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method)
{
return (( Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 (*) (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m176CA0C9E12BF25CC3766C5D12A55B88347AD5F0 (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m176CA0C9E12BF25CC3766C5D12A55B88347AD5F0_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA9A364A356C2C1E4990561CA11E575D101CB1DDF (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA9A364A356C2C1E4990561CA11E575D101CB1DDF_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mAD5E03A8CC9EBF6E74FA8EB4ED3B4B7483320EF7 (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mAD5E03A8CC9EBF6E74FA8EB4ED3B4B7483320EF7_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::Dispose()
inline void InternalEnumerator_1_Dispose_m064C8AF3B504CE7F9718715EAC7C1FA54529C92F (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m064C8AF3B504CE7F9718715EAC7C1FA54529C92F_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mE1DBF8C46BFE4364FD9E56B66E0A9206B2EB0C47 (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mE1DBF8C46BFE4364FD9E56B66E0A9206B2EB0C47_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::get_Current()
inline Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81 (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method)
{
return (( Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 (*) (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEECB8E5AE82D0872338B25CE10C4D97F2703D152 (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEECB8E5AE82D0872338B25CE10C4D97F2703D152_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF9D89500E09954EBCEEE2CC3FA23A8DE8DBEFB00 (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF9D89500E09954EBCEEE2CC3FA23A8DE8DBEFB00_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m2047B6F070C9C5C4D9EF6147976F1ED4E28AF602 (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2047B6F070C9C5C4D9EF6147976F1ED4E28AF602_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m08900DA592D66440E18F7945EAD98B17C6C62404 (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m08900DA592D66440E18F7945EAD98B17C6C62404_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mB8FCAF454999038E9D103E26E7DE8D471D680DE9 (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mB8FCAF454999038E9D103E26E7DE8D471D680DE9_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::get_Current()
inline Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method)
{
return (( Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 (*) (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m118A29F1EAB9A121242D65B79DCF0199A9640C5B (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m118A29F1EAB9A121242D65B79DCF0199A9640C5B_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2370D94B162CCB9AE9DE2667E298F002FBBDDEB7 (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2370D94B162CCB9AE9DE2667E298F002FBBDDEB7_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mEBD4CEE9A2F58EC98111D706BB79E7CEA45A7FB8 (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mEBD4CEE9A2F58EC98111D706BB79E7CEA45A7FB8_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::Dispose()
inline void InternalEnumerator_1_Dispose_m19FC0C82C4207E5E2041FB7E27EBAB18D8D4A9FA (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m19FC0C82C4207E5E2041FB7E27EBAB18D8D4A9FA_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m4D57C87AAB55A9F9856777CC0F1734146EC7EB58 (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4D57C87AAB55A9F9856777CC0F1734146EC7EB58_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::get_Current()
inline Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1 InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method)
{
return (( Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1 (*) (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1ECD8842B5F72ABF69E8539D91D9C2427694656B (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1ECD8842B5F72ABF69E8539D91D9C2427694656B_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9817E0D67E35A184B10AF95B6EF46EC163E90670 (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9817E0D67E35A184B10AF95B6EF46EC163E90670_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mCB8A0B699C8A09B08084A34F5A8B4816BD709ACF (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mCB8A0B699C8A09B08084A34F5A8B4816BD709ACF_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mE5A2510067803B4094C7B99463F4E0700B458A77 (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mE5A2510067803B4094C7B99463F4E0700B458A77_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m848A8186BFFB8DE46073EF782468AF338D9B334D (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m848A8186BFFB8DE46073EF782468AF338D9B334D_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::get_Current()
inline KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E (*) (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m46833C1522D4FD7EAF175D8052617F25BB7E8C1E (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m46833C1522D4FD7EAF175D8052617F25BB7E8C1E_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m357FD033067DB191E5BA5730B78930CF9F57EFD8 (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m357FD033067DB191E5BA5730B78930CF9F57EFD8_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mFEA9C7C73B2C9DDC9D09D27D4B58231DCFE0BFEC (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mFEA9C7C73B2C9DDC9D09D27D4B58231DCFE0BFEC_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::Dispose()
inline void InternalEnumerator_1_Dispose_m11B2DFF4C196B995810082C658596B4C15430D73 (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m11B2DFF4C196B995810082C658596B4C15430D73_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m297E808C120909C00149D540DDA8D05A9E33BA5F (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m297E808C120909C00149D540DDA8D05A9E33BA5F_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::get_Current()
inline KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484 (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 (*) (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA458B3F09AF75991FE8B3BC660A30202D3DCF3BD (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA458B3F09AF75991FE8B3BC660A30202D3DCF3BD_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF404799320D20284AD3D79FEB29FAB44F7E4E6F0 (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF404799320D20284AD3D79FEB29FAB44F7E4E6F0_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mEE2C570D5E7E5426D066B223014819C8AF52C81C (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mEE2C570D5E7E5426D066B223014819C8AF52C81C_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mF13B6674061D28A1BEC4861C9DEC3C64227EC93D (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mF13B6674061D28A1BEC4861C9DEC3C64227EC93D_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m4F549A52CFE9F1740D8C1B6F9560C3F199F4A748 (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4F549A52CFE9F1740D8C1B6F9560C3F199F4A748_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current()
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77 (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (*) (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDCDCABB85F4DCAFD112EBF0FAE0C6961DBFE301D (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDCDCABB85F4DCAFD112EBF0FAE0C6961DBFE301D_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m99CA89EB79E57A9759F9A03DF4D0B26DC43E553A (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m99CA89EB79E57A9759F9A03DF4D0B26DC43E553A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m242214F003D15A119A0C04FFE652998D8FE41522 (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m242214F003D15A119A0C04FFE652998D8FE41522_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m5E91FF0A6E2EF0B84CB4158ECB1F8B4A6455CF23 (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m5E91FF0A6E2EF0B84CB4158ECB1F8B4A6455CF23_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mE4B207058D201EB5E54D576C57360ED5A09C2BE8 (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mE4B207058D201EB5E54D576C57360ED5A09C2BE8_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::get_Current()
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 (*) (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF9EE0D0E138FD359A2F13C49636ACD60C723415C (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF9EE0D0E138FD359A2F13C49636ACD60C723415C_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43DAB8F8C87A0B6E511C39045473A42294BE62CA (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43DAB8F8C87A0B6E511C39045473A42294BE62CA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mEEC77A7A391052F1B4D8FB1B6724FEA36735B77A (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mEEC77A7A391052F1B4D8FB1B6724FEA36735B77A_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::Dispose()
inline void InternalEnumerator_1_Dispose_m6B855E2E119047456064F5D14AB9C6E1AA2AFDB2 (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m6B855E2E119047456064F5D14AB9C6E1AA2AFDB2_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mBAEEF92AC7553F9AC8440EA7DD7D2FCA9465B147 (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mBAEEF92AC7553F9AC8440EA7DD7D2FCA9465B147_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::get_Current()
inline KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 (*) (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCBA017C2D6C1AF8C2085728EAB8EF71EF9D678FC (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCBA017C2D6C1AF8C2085728EAB8EF71EF9D678FC_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA49E227587722A256A55E35672CD9AD099FD355D (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA49E227587722A256A55E35672CD9AD099FD355D_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m47E5478185ECA95D5B359F4E374FB6BC7580B7CD (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m47E5478185ECA95D5B359F4E374FB6BC7580B7CD_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::Dispose()
inline void InternalEnumerator_1_Dispose_m8C478844CA47A9A869EA647394540050CD797AED (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m8C478844CA47A9A869EA647394540050CD797AED_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m0F22661617905FDB79D39E81504B564BD039DEFA (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m0F22661617905FDB79D39E81504B564BD039DEFA_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::get_Current()
inline KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F (*) (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51098193F944467F3F3A17AE9BF51601F8E52850 (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51098193F944467F3F3A17AE9BF51601F8E52850_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0D6EA9CE98BE54884ADF85404EA27B5366877105 (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0D6EA9CE98BE54884ADF85404EA27B5366877105_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mE72C6395AF330F2DAFF86FB44EEA80F0B3A3BE71 (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mE72C6395AF330F2DAFF86FB44EEA80F0B3A3BE71_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::Dispose()
inline void InternalEnumerator_1_Dispose_m814B367F8439B0425B556138E9C13C518435E351 (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m814B367F8439B0425B556138E9C13C518435E351_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m8872DB84A56252FF08BD9046F35E40B95242E50E (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m8872DB84A56252FF08BD9046F35E40B95242E50E_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::get_Current()
inline KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16 (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 (*) (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5202FAF2B575D33B7C74AA50F16B0F6E06551D12 (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5202FAF2B575D33B7C74AA50F16B0F6E06551D12_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m73658604098C702B91C4EEB75AD4572F9C413ADF (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m73658604098C702B91C4EEB75AD4572F9C413ADF_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mB775C69D46D10BFD6FF078F4B087CA8C86315497 (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mB775C69D46D10BFD6FF078F4B087CA8C86315497_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::Dispose()
inline void InternalEnumerator_1_Dispose_m8B23EA278F37E6A764B7DCA2CECA1102FE80BFB7 (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m8B23EA278F37E6A764B7DCA2CECA1102FE80BFB7_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mDED3B9A532F20407B4E8E57E4B50F6589E0248EA (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mDED3B9A532F20407B4E8E57E4B50F6589E0248EA_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::get_Current()
inline KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4 (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 (*) (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB381578FC4A10DFA5F1E074F93E2150CDD2D9F (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB381578FC4A10DFA5F1E074F93E2150CDD2D9F_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0CEBB9BEC81DA6756FF72F5CA2447B4645A41FA3 (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0CEBB9BEC81DA6756FF72F5CA2447B4645A41FA3_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m61F868D64FD5C0E79726859694754B78C3A12F13 (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m61F868D64FD5C0E79726859694754B78C3A12F13_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m1BF7479D1C81DB164169EA2E67489072EFAEDB8D (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m1BF7479D1C81DB164169EA2E67489072EFAEDB8D_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m70A36FB83C5C0D46465928D98C613AC06DC4555F (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m70A36FB83C5C0D46465928D98C613AC06DC4555F_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current()
inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7 (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE (*) (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m19A49279822B4D3317DE80D741A23A1FFBC4AA8D (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m19A49279822B4D3317DE80D741A23A1FFBC4AA8D_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF99F2E94E6B96C25D18AD365535F6596F6A8976D (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF99F2E94E6B96C25D18AD365535F6596F6A8976D_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mD0A8DC203B7CE22AB0EBD2BBCCB87FAA5CDB08DE (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mD0A8DC203B7CE22AB0EBD2BBCCB87FAA5CDB08DE_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::Dispose()
inline void InternalEnumerator_1_Dispose_mD9625E1AFEC205D378A2F4E4C5734856B3FA4660 (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mD9625E1AFEC205D378A2F4E4C5734856B3FA4660_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mEDEDC36713F335B3E121A6543C7F388DF3E12597 (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mEDEDC36713F335B3E121A6543C7F388DF3E12597_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::get_Current()
inline KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1 InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1 (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1 (*) (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDE02F23A05EDB3520D5E0B9A4DA4393D41AC244B (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDE02F23A05EDB3520D5E0B9A4DA4393D41AC244B_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2F6C95B5D7F0E37051E0DFC10CDCA003A82C2E3E (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2F6C95B5D7F0E37051E0DFC10CDCA003A82C2E3E_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m9D656D89B537594888859250FCBB48A9328D0EFD (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m9D656D89B537594888859250FCBB48A9328D0EFD_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::Dispose()
inline void InternalEnumerator_1_Dispose_mBB6A6CCD5E5F93ADF79827F6A45B629646F4B479 (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mBB6A6CCD5E5F93ADF79827F6A45B629646F4B479_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mCB9472F33153AD8B7DA41FAF4B07F943D4F12E7D (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mCB9472F33153AD8B7DA41FAF4B07F943D4F12E7D_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::get_Current()
inline KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849 (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 (*) (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE26AFD180126EFC408CAD0D2927BA46999AAC944 (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE26AFD180126EFC408CAD0D2927BA46999AAC944_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3956F4C967305135B3B373A5129A561211FCB1AE (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3956F4C967305135B3B373A5129A561211FCB1AE_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m5501634A3EF42D4CDB91A24F9184B0E436071D21 (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m5501634A3EF42D4CDB91A24F9184B0E436071D21_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m489956CF0696406FD5EA5B25868481248544912A (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m489956CF0696406FD5EA5B25868481248544912A_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m0D1BF3D9124FF5A16605F3BA9A22D9A09E445A0E (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m0D1BF3D9124FF5A16605F3BA9A22D9A09E445A0E_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::get_Current()
inline KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75 (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (*) (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDB572A4D922C61FBA17D9C5D17856C8441E5C20D (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDB572A4D922C61FBA17D9C5D17856C8441E5C20D_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8BFDC8F6FCCB4C3110B1AC0531DC9183C30FF07B (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8BFDC8F6FCCB4C3110B1AC0531DC9183C30FF07B_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mF260DE351200677B92164F16989D8378B8602FAE (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mF260DE351200677B92164F16989D8378B8602FAE_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m514DDA944789009A6C184BA5C2C9DB1100F5F83E (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m514DDA944789009A6C184BA5C2C9DB1100F5F83E_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m1CDEFAC438A34D43B29BD6EEA8285BC790B9F09A (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m1CDEFAC438A34D43B29BD6EEA8285BC790B9F09A_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::get_Current()
inline KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8 (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA (*) (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m109DDD1CB3D8A00CBBF69F2D09548AE54547F41F (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m109DDD1CB3D8A00CBBF69F2D09548AE54547F41F_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m24CAA4BAFDAEB694CEDBB27E26AEEDE237DC1546 (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m24CAA4BAFDAEB694CEDBB27E26AEEDE237DC1546_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m5D8F9D41113E8C9DFC52F375E7CC4EB776DA327B (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m5D8F9D41113E8C9DFC52F375E7CC4EB776DA327B_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m8ACCB43BFC6ADDBD1F3D2B583E9C0743924FA1D2 (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m8ACCB43BFC6ADDBD1F3D2B583E9C0743924FA1D2_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m8769D2C23B301EEC48C7AFF0801E075DCBAD55F6 (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m8769D2C23B301EEC48C7AFF0801E075DCBAD55F6_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::get_Current()
inline KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8 InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9 (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8 (*) (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m0A09BFB51F4017A57CCC3E85FAC0B898E3609FAB (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m0A09BFB51F4017A57CCC3E85FAC0B898E3609FAB_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m67AC7B4AA25C35FD38A20D594F40976707719AE0 (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m67AC7B4AA25C35FD38A20D594F40976707719AE0_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m4B6DB37850E868879F81679A1D88409759EB7765 (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4B6DB37850E868879F81679A1D88409759EB7765_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Dispose()
inline void InternalEnumerator_1_Dispose_mB15A1D9948C9E2CD2822F52B2F62CD427713BD82 (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mB15A1D9948C9E2CD2822F52B2F62CD427713BD82_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m583FC4147B12DA3FAFA0533A669CA374B4D9A0C1 (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m583FC4147B12DA3FAFA0533A669CA374B4D9A0C1_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::get_Current()
inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355 (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 (*) (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m155A4FB8B3D4279780A334AD1773264888341227 (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m155A4FB8B3D4279780A334AD1773264888341227_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC1E83F3D88BCC59921351734CFD9513C705B4F83 (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC1E83F3D88BCC59921351734CFD9513C705B4F83_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m68CFC035FC3DC1BD21D1ACB9580D1852CC49FF51 (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m68CFC035FC3DC1BD21D1ACB9580D1852CC49FF51_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose()
inline void InternalEnumerator_1_Dispose_mDCA828D764CBB14FB3CF31AF0BDC68709FA4DAE7 (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mDCA828D764CBB14FB3CF31AF0BDC68709FA4DAE7_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m9B1CF619F7F4E40343409851A9C45D5E2CB9347D (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m9B1CF619F7F4E40343409851A9C45D5E2CB9347D_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current()
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5 (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E (*) (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8AA11D403DCF5974D63F330E5390A13F2521A2B (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8AA11D403DCF5974D63F330E5390A13F2521A2B_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9646270AE8A4EB0758936B3CB5A0530524ADFB4C (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9646270AE8A4EB0758936B3CB5A0530524ADFB4C_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m528291295CA6D5334E2C72963F4679C7ECF119A5 (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m528291295CA6D5334E2C72963F4679C7ECF119A5_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::Dispose()
inline void InternalEnumerator_1_Dispose_mCEA52B18477E0D858EC6671BA30D66811923B795 (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mCEA52B18477E0D858EC6671BA30D66811923B795_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mC14339F688B871586DD176D67FB74CCCD3A8FE25 (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mC14339F688B871586DD176D67FB74CCCD3A8FE25_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::get_Current()
inline KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 (*) (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52A1DCBCE25D2DC0BFFD86681646733F0B80DB58 (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52A1DCBCE25D2DC0BFFD86681646733F0B80DB58_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE951499B2927EC4DC4553DB5B3A8D3FB29965763 (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE951499B2927EC4DC4553DB5B3A8D3FB29965763_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mC6CC09F89E9FA9EBE66CDDF4E15F7946152719FF (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mC6CC09F89E9FA9EBE66CDDF4E15F7946152719FF_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::Dispose()
inline void InternalEnumerator_1_Dispose_m52051D7FBEF765AC6C085175797B3D3821690C9C (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m52051D7FBEF765AC6C085175797B3D3821690C9C_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m2A459CC2005542BA53CBA7DF8F3D85D12F12B91C (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m2A459CC2005542BA53CBA7DF8F3D85D12F12B91C_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::get_Current()
inline KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30 (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 (*) (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m06CA1CABC8A4A5BACAB2EF6A2F471E64A9CD3D33 (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m06CA1CABC8A4A5BACAB2EF6A2F471E64A9CD3D33_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCDB9C76E233C4FD56B69F1D5F863005771F98D6E (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCDB9C76E233C4FD56B69F1D5F863005771F98D6E_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m8727B259CBEDE6D24BC36E6E95DE2E5C4A7A2C2D (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m8727B259CBEDE6D24BC36E6E95DE2E5C4A7A2C2D_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::Dispose()
inline void InternalEnumerator_1_Dispose_m19D92A722260CEFC4E6756C1963A7A0C4D1201AF (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m19D92A722260CEFC4E6756C1963A7A0C4D1201AF_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m49A2FD3048ABA6102A6FC8FECD358A858351E8BF (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m49A2FD3048ABA6102A6FC8FECD358A858351E8BF_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::get_Current()
inline KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3 InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5 (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3 (*) (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4D0E10E77B817D8B8D6F350773CD9FD72EA753EC (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4D0E10E77B817D8B8D6F350773CD9FD72EA753EC_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF46E5137906B3173143ECB26E28476BBB50CBC30 (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF46E5137906B3173143ECB26E28476BBB50CBC30_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mF20BA8282530E2D2D4A66E63487D22962F761A0D (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mF20BA8282530E2D2D4A66E63487D22962F761A0D_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::Dispose()
inline void InternalEnumerator_1_Dispose_m998EA33EE3505478DD9D2C750D46F75BFCC9D6BF (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m998EA33EE3505478DD9D2C750D46F75BFCC9D6BF_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mFD63B88E1D74E3EC82108E2A6C8C764D1214F213 (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mFD63B88E1D74E3EC82108E2A6C8C764D1214F213_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::get_Current()
inline KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7 InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7 (*) (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m45428AFEBC4D8ADCAD06F3C5CDC59F1B322929DC (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m45428AFEBC4D8ADCAD06F3C5CDC59F1B322929DC_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE64FE7BFBC439BAF21CFC0D9901C399AF6D4EB1D (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE64FE7BFBC439BAF21CFC0D9901C399AF6D4EB1D_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m5207FBDBFFFA3362A79214E0F6563073D0739B36 (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m5207FBDBFFFA3362A79214E0F6563073D0739B36_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m5D695D1842FAD0CF7E2626EE58BE25188594A063 (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m5D695D1842FAD0CF7E2626EE58BE25188594A063_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mFA644183525E4E7C1DA9E0AB2520DEC0664DB22E (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mFA644183525E4E7C1DA9E0AB2520DEC0664DB22E_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5 (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE (*) (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDEA574E3825E771EA4138A2FDBA795680D2D6DDF (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDEA574E3825E771EA4138A2FDBA795680D2D6DDF_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8F15A6CF9D2375039F3A2922EC07A6F66A911D2E (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8F15A6CF9D2375039F3A2922EC07A6F66A911D2E_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m9F3DE26BFE9BF17F177A5DC956AADC3AEC5A7729 (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m9F3DE26BFE9BF17F177A5DC956AADC3AEC5A7729_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::Dispose()
inline void InternalEnumerator_1_Dispose_mEA3762DB58F8733CC8196C00787BFB4B1D1BBBFC (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mEA3762DB58F8733CC8196C00787BFB4B1D1BBBFC_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m4BECF4142A35A113A6B4932DB906E425F6209742 (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m4BECF4142A35A113A6B4932DB906E425F6209742_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::get_Current()
inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 (*) (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8257FAF3E914823A81665B44108DBB6FF6E676B (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8257FAF3E914823A81665B44108DBB6FF6E676B_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCB16D07C75263BD2D00943720593924E2548EC08 (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCB16D07C75263BD2D00943720593924E2548EC08_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m1CB3308838F195C141B17BC3E556D7B11BBCA550 (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1CB3308838F195C141B17BC3E556D7B11BBCA550_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::Dispose()
inline void InternalEnumerator_1_Dispose_m759FE9A3148A7BD8EB6556DDDC6A1A521E53F911 (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m759FE9A3148A7BD8EB6556DDDC6A1A521E53F911_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mDF2BD4031534E1F449162E7E0961A95D3BAFC6C9 (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mDF2BD4031534E1F449162E7E0961A95D3BAFC6C9_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::get_Current()
inline KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D (*) (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m71699E2DEA73C7A4B9C5D2BCB5291E2664D16C26 (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m71699E2DEA73C7A4B9C5D2BCB5291E2664D16C26_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF82BB0B739401816E30465A829ACCE3DF858751D (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF82BB0B739401816E30465A829ACCE3DF858751D_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mDB830C84CF94F0E0119F60E2FAD7CB8E0F472174 (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mDB830C84CF94F0E0119F60E2FAD7CB8E0F472174_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::Dispose()
inline void InternalEnumerator_1_Dispose_m2F8B9758B98FA9E279D27D7A45A6BAFA896DB8A2 (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2F8B9758B98FA9E279D27D7A45A6BAFA896DB8A2_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m0D340F54E60087B3EE2A9589A4F8072D47722DDE (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m0D340F54E60087B3EE2A9589A4F8072D47722DDE_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::get_Current()
inline KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22 (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF (*) (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m82D8E2877465899F74405EA923FDBAFF92E800EB (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m82D8E2877465899F74405EA923FDBAFF92E800EB_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m51713E13DFED5BA38700BE7033CE6E3B308A2BCA (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m51713E13DFED5BA38700BE7033CE6E3B308A2BCA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m072BD826BD6A467C36045938F3054E9BF121F4D5 (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m072BD826BD6A467C36045938F3054E9BF121F4D5_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::Dispose()
inline void InternalEnumerator_1_Dispose_m3ADB9371A94E622FD8AF6543679A66950EA1C25D (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m3ADB9371A94E622FD8AF6543679A66950EA1C25D_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m7B6116857905B986364F2DD35FF99AE55C783A90 (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m7B6116857905B986364F2DD35FF99AE55C783A90_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::get_Current()
inline KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420 (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A (*) (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m93547CE6144F9DCE5DA0C00F803EEBD0804093C8 (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m93547CE6144F9DCE5DA0C00F803EEBD0804093C8_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE4F8E4FDF06719D0ED8080612440C0522D90A463 (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE4F8E4FDF06719D0ED8080612440C0522D90A463_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m7C81F6CE5067A6BCF3CFB52E46FBC8DF7AE1E0DC (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m7C81F6CE5067A6BCF3CFB52E46FBC8DF7AE1E0DC_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::Dispose()
inline void InternalEnumerator_1_Dispose_m86E3DC9BF30D4F65E8BCA1E9937D085A5BCBF436 (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m86E3DC9BF30D4F65E8BCA1E9937D085A5BCBF436_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mA2A0106F218B0BE1ED20DC9B91C95057C0CA8AC4 (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mA2A0106F218B0BE1ED20DC9B91C95057C0CA8AC4_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::get_Current()
inline KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424 InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424 (*) (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF547315C0BE75A3700B7F31B738ADE73B3376BF2 (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF547315C0BE75A3700B7F31B738ADE73B3376BF2_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m58EB5F9E0FA088D3573B922203D250591F18037C (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m58EB5F9E0FA088D3573B922203D250591F18037C_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m07C3057C4A35E51C3319C0E7A3E2BD860A483F66 (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m07C3057C4A35E51C3319C0E7A3E2BD860A483F66_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::Dispose()
inline void InternalEnumerator_1_Dispose_m738CBC63FA6ABC5D42D9A240658CC5321BE513A7 (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m738CBC63FA6ABC5D42D9A240658CC5321BE513A7_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m3FD6C35705C05C8F58478E0A339FF8C43CF52A39 (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3FD6C35705C05C8F58478E0A339FF8C43CF52A39_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::get_Current()
inline KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66 (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C (*) (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m185689B68AAFBC44A3B1433FCBFCB8EEDC01F49A (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m185689B68AAFBC44A3B1433FCBFCB8EEDC01F49A_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9954378D50B23EE1FE627D13A72E03954A3F7C76 (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9954378D50B23EE1FE627D13A72E03954A3F7C76_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mCCD8AE36B9CAFB92763676392FE84116538AD24E (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mCCD8AE36B9CAFB92763676392FE84116538AD24E_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::Dispose()
inline void InternalEnumerator_1_Dispose_mA0DF4088CD60257BBC8527908BE16E048F6C5E98 (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mA0DF4088CD60257BBC8527908BE16E048F6C5E98_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m3FDFA1D96E4B58DB6805E65BBBDBD46FCAC02DA0 (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m3FDFA1D96E4B58DB6805E65BBBDBD46FCAC02DA0_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::get_Current()
inline KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14 (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B (*) (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6238AD483ECDECE96631A063795D9CF68C3BB44B (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6238AD483ECDECE96631A063795D9CF68C3BB44B_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBAC376F386E8FAD63A30A9DCED9D09C501BCC91 (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBAC376F386E8FAD63A30A9DCED9D09C501BCC91_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m9C482B8E70A456521E2639D0B7B4B8767C22E0FD (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m9C482B8E70A456521E2639D0B7B4B8767C22E0FD_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::Dispose()
inline void InternalEnumerator_1_Dispose_m70F1D13BC9F7DC04FAF89CCABBF08D59FCABA3FD (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m70F1D13BC9F7DC04FAF89CCABBF08D59FCABA3FD_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mD57B806231F635FEAB78C7830ABA88430462A3AE (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mD57B806231F635FEAB78C7830ABA88430462A3AE_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::get_Current()
inline KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C (*) (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7794B03697B0551B5F41792EE6B57D5936417915 (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7794B03697B0551B5F41792EE6B57D5936417915_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m08C39EB913D939BA99E8565AC33FE74CB1CD6E6E (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m08C39EB913D939BA99E8565AC33FE74CB1CD6E6E_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mF08617A642B743C4655877FCEF67BB41A8E37941 (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mF08617A642B743C4655877FCEF67BB41A8E37941_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m5FC30F2AC2639B07D9DF4CF80D73CE0BF79171A1 (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m5FC30F2AC2639B07D9DF4CF80D73CE0BF79171A1_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mC05421D63FFDE4EE06C08A709F49CA129C70C058 (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mC05421D63FFDE4EE06C08A709F49CA129C70C058_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::get_Current()
inline KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9 (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 (*) (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8806CBB693976B5D080E4578F057147A2A926F72 (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8806CBB693976B5D080E4578F057147A2A926F72_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9B0BD9F6373280E438F8A2DD47C301648B5823DA (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9B0BD9F6373280E438F8A2DD47C301648B5823DA_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m8C418CCC75787610D17FB1F4CF94A8D537C0A8B6 (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m8C418CCC75787610D17FB1F4CF94A8D537C0A8B6_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m357258C619F7231B639449CE7A811C2E921C2F2B (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m357258C619F7231B639449CE7A811C2E921C2F2B_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m117483E16F2F1B10DD92C6F54AC53F0861EAC39E (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m117483E16F2F1B10DD92C6F54AC53F0861EAC39E_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::get_Current()
inline KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562 InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3 (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562 (*) (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7FAF26AB53957784BD0986CAF59E1C35F2064A09 (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7FAF26AB53957784BD0986CAF59E1C35F2064A09_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBC8B6E0550D6941CE05C76CF2D7AEA20408F585 (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBC8B6E0550D6941CE05C76CF2D7AEA20408F585_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m05E04E122300AB7287C1F7E1BE04E0FF936FFE46 (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m05E04E122300AB7287C1F7E1BE04E0FF936FFE46_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m7F7A577B02CB8D2C5AE6065E646244023CB17F28 (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m7F7A577B02CB8D2C5AE6065E646244023CB17F28_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mBCDB3AE1EDCFA3F9D2548BA5919CEEBE82AD5E06 (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mBCDB3AE1EDCFA3F9D2548BA5919CEEBE82AD5E06_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::get_Current()
inline KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 (*) (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2A7CFC894C8F92BBC2B2605758F7A0DE1A5EBD4C (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2A7CFC894C8F92BBC2B2605758F7A0DE1A5EBD4C_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD7C8BAAFFF8522454FE1648F4FB1AEE12E1D3EC7 (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD7C8BAAFFF8522454FE1648F4FB1AEE12E1D3EC7_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mD0C8B60785A9D2334E9367CDFF1318509ECAFF22 (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mD0C8B60785A9D2334E9367CDFF1318509ECAFF22_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mE94D7652E31C213E15580E0F2AD67B900F1901E5 (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mE94D7652E31C213E15580E0F2AD67B900F1901E5_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mDDA5DF528DCD48773088711584E28E3E1D70D6D8 (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mDDA5DF528DCD48773088711584E28E3E1D70D6D8_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::get_Current()
inline KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C (*) (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1D8A5D3A455BDEE762C1B8A58CD0BC7E09E11152 (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1D8A5D3A455BDEE762C1B8A58CD0BC7E09E11152_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9E0054AA9D4615C4E358DB1A8AE81EFD0DC6476E (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9E0054AA9D4615C4E358DB1A8AE81EFD0DC6476E_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_mE7F445B328003440BE0D179BA70CA91B01CDC06C (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_mE7F445B328003440BE0D179BA70CA91B01CDC06C_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mDBE998E404AB29E326B872C5924000CD53FAFEE5 (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mDBE998E404AB29E326B872C5924000CD53FAFEE5_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_m7392ED7FBC297563A2226979703F4E4B058E9E62 (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_m7392ED7FBC297563A2226979703F4E4B058E9E62_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::get_Current()
inline KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184 InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1 (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184 (*) (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *, const RuntimeMethod*))InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2F86825931F13560EAB7E4CECBE90F514B5E87 (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2F86825931F13560EAB7E4CECBE90F514B5E87_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m95B81570191DCF3DE0DE7198614875DEACF3E7FE (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m95B81570191DCF3DE0DE7198614875DEACF3E7FE_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m94D1F1F106E37071F81E0B5B75E2AA9146A4548A (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m94D1F1F106E37071F81E0B5B75E2AA9146A4548A_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_m2BD69D5A5C524D6C2025294699B214D115E5634C (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *, const RuntimeMethod*))InternalEnumerator_1_Dispose_m2BD69D5A5C524D6C2025294699B214D115E5634C_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mCEA21E4E9207E97675444C5055388AFFCDAC227A (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mCEA21E4E9207E97675444C5055388AFFCDAC227A_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::get_Current()
inline KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980 InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26 (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980 (*) (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6F29EC8CCAF82D6B8BA93DFA53F19C4D55E1B6D8 (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6F29EC8CCAF82D6B8BA93DFA53F19C4D55E1B6D8_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m519554408FEB22490281AC754DFEF663ADCB2613 (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m519554408FEB22490281AC754DFEF663ADCB2613_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::.ctor(System.Array)
inline void InternalEnumerator_1__ctor_m162F2F2AA22CBE55DF2645F07CB932F5F4EB743F (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m162F2F2AA22CBE55DF2645F07CB932F5F4EB743F_gshared)(__this, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::Dispose()
inline void InternalEnumerator_1_Dispose_mD4E3E27B3B77F32B80EE127DC011E35C6A3A1CD7 (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *, const RuntimeMethod*))InternalEnumerator_1_Dispose_mD4E3E27B3B77F32B80EE127DC011E35C6A3A1CD7_gshared)(__this, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::MoveNext()
inline bool InternalEnumerator_1_MoveNext_mDA7E54CEDC4B9D58D253AD6378C06D61A0FD2441 (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method)
{
return (( bool (*) (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *, const RuntimeMethod*))InternalEnumerator_1_MoveNext_mDA7E54CEDC4B9D58D253AD6378C06D61A0FD2441_gshared)(__this, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::get_Current()
inline KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95 (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 (*) (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *, const RuntimeMethod*))InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95_gshared)(__this, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.Reset()
inline void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m72DAC9C9A8D7F1800767EA0866473B6BE3683CD1 (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method)
{
(( void (*) (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_Reset_m72DAC9C9A8D7F1800767EA0866473B6BE3683CD1_gshared)(__this, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0007817C91F99D353BEEA5B5336C841F02AF937 (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *, const RuntimeMethod*))InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0007817C91F99D353BEEA5B5336C841F02AF937_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.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m35CA318C578442FAF1B739FBD0379EFF8AF3F8B1_gshared (EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBBAF7747BFD6570DF8726A94C5E43A39F5804CEF_gshared (EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA EmptyInternalEnumerator_1_get_Current_mB9ECF917075C2CE34F2AE884DB5DF7ACAFF95FFC_gshared (EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mB9ECF917075C2CE34F2AE884DB5DF7ACAFF95FFC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mB9ECF917075C2CE34F2AE884DB5DF7ACAFF95FFC_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC189662AE864FC541744B6693E6D5895DD109B9B_gshared (EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 *)__this);
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA L_0 = (( Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (*) (EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mCD637027011081DBDE56496B50A6899554CA73AF_gshared (EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m24316CCD5FF529B886F40CE8CB32E4FF60235004_gshared (EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE68F743BE3C03456ADC25811C53DB47B37885621_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 * L_0 = (EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t97582219D5FEB8FCAE7A4541596F2FF075340004_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m4639984F7FB9AF9DFBD94B973EF06090BAA526C8_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m34C54A48D7CA9035A9D9C8224FAFA42EE59D82E7_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED EmptyInternalEnumerator_1_get_Current_m2E3532B82D1C6D2AE0835E096591EC98D0982AB2_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m2E3532B82D1C6D2AE0835E096591EC98D0982AB2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m2E3532B82D1C6D2AE0835E096591EC98D0982AB2_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7E9FDBEC2B66E828FB85BC86BE36F05DBD0C336D_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 *)__this);
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_0 = (( Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED (*) (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA20AACA735C464030C168F6F3C8F6597F4E16A23_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE6CE21D6A8F692AC74A7E153E8ECC51F2AC9186F_gshared (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7F4B5140C0AD8C0F6A698EAAAE8CC8ACC04FA940_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 * L_0 = (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9821B5B41FB48AEEA93748815781B147245CEF40_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC2D7C4F4E1AB5AC2EFE2DDA58E85160CCC5184B3_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB49376D3580CF2B883BA0F59956E89FA85A53C73_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 EmptyInternalEnumerator_1_get_Current_mF50B58F842124158245C98B1F976703224B89103_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mF50B58F842124158245C98B1F976703224B89103_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mF50B58F842124158245C98B1F976703224B89103_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE96F397F5E3F956987DB1726EDAEF0CEDE6886CB_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED *)__this);
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_0 = (( PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 (*) (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD0A39576869A94C55893779A20436AAC0D8F5426_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m32777A50CC818414A073CD50A482FA6338EE7183_gshared (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA0CEA862475C2EBE9B7663507A628B92DFF26A71_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED * L_0 = (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t20FF65AC3277ADED4654D12730A62C220D22E0ED_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Random/State>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC56DCBEA23C6A9BC902D1CCEDEF991907B4DD48B_gshared (EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Random/State>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m26963D03D63244EC76D96C4FF9672CEB4BA8593D_gshared (EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Random/State>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR State_t7D2976DAE446125618B7DB82F6ED3048082E388D EmptyInternalEnumerator_1_get_Current_m1C53D641096CDD20DAFB39778CBBBCB6E3DD08E9_gshared (EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m1C53D641096CDD20DAFB39778CBBBCB6E3DD08E9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m1C53D641096CDD20DAFB39778CBBBCB6E3DD08E9_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Random/State>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC291271553A1B0D9E215C2B48C2C7B7D1BA1A3D5_gshared (EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C *)__this);
State_t7D2976DAE446125618B7DB82F6ED3048082E388D L_0 = (( State_t7D2976DAE446125618B7DB82F6ED3048082E388D (*) (EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
State_t7D2976DAE446125618B7DB82F6ED3048082E388D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Random/State>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6F438BA3A5471BC73D8FFE6F31FBA8C37D57CA88_gshared (EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Random/State>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m67A7C0EC2E950A3B7F1E809D3559EA787E05BC88_gshared (EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Random/State>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m97695043DFAD1869DC24F59EA790674286F85666_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C * L_0 = (EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t712006287475D5FD8FBA383B3F9D98AB573D6B9C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA60D398C5FCAD7F6DB1B570EA917D34D960BA076_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB13BF1E5D5054D54B30E468CD6684585031F4E6F_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE EmptyInternalEnumerator_1_get_Current_m80A2ACBC3B0046EDE292A4DDE0674EEE5ED4861B_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m80A2ACBC3B0046EDE292A4DDE0674EEE5ED4861B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m80A2ACBC3B0046EDE292A4DDE0674EEE5ED4861B_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m15293AC84EF6DD80C8451975DECFFB24F4D3BE9A_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 *)__this);
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_0 = (( RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*) (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9FA1E94720E8678E41518A8D88AE4DFE6D8ED9D1_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m95A5540D91754F0CF053172ED218FA10D3F2F2A4_gshared (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD6936AC2FBC1BEEC1DDB8F10EDF6E43E1E8CD316_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 * L_0 = (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t225D9CDC9391862F71E9261182050FE6884DEDC0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD154522A22B564DD7D9DEC4AD0382BA1A2AC0705_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA6051A48AF41564224349DD3EC6C3E9C063950A5_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 EmptyInternalEnumerator_1_get_Current_m7724FEA10A3B810C3543323AE7A1F3B663972FF5_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m7724FEA10A3B810C3543323AE7A1F3B663972FF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m7724FEA10A3B810C3543323AE7A1F3B663972FF5_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCBF1F83496AC548766D0710769F4EA774F2C1924_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E *)__this);
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 L_0 = (( RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 (*) (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7017F8B6F4D0497F6B2E0F002555DD4294DED08B_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m93CD212DC63D0C56FFAA8BEE7DF2E77C687AD8CE_gshared (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m27F83D3D2B619EC057667741684C7DE3BA6B2007_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E * L_0 = (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6F20F9CA77382E3686B6E3CEC733870851322F6E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD809CD69C4E0C6AD2903063961C5AE9D109351BA_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2120DE7E8B001DB150477C35D3196427A06EF1F5_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 EmptyInternalEnumerator_1_get_Current_m2AF423D17198E438C0EFC65B276D2C53E684A093_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m2AF423D17198E438C0EFC65B276D2C53E684A093_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m2AF423D17198E438C0EFC65B276D2C53E684A093_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5E8900A484192CF525FA0829C0323F61271B1060_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 *)__this);
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 L_0 = (( BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 (*) (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m73F4B8A7A83124B7F5D62FB5FEE4BEDD0B7F0DA4_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m65832E639D346AB1500FFC26711CCE75A759E07E_gshared (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m71221674A967AD07588656CEF06743508A32882C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 * L_0 = (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t07C320832EAEC93E6C3D89E030C1CEBC7B8D6E52_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.RenderTargetIdentifier>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m4FEF62D162F29BAA4741B911E099889213070F45_gshared (EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.RenderTargetIdentifier>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD3BCE32731FF1F8A12C035946943050179166557_gshared (EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.RenderTargetIdentifier>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B EmptyInternalEnumerator_1_get_Current_m7B5B4F48EEC109CC8E24E6AB3A1ACABA55EBADC5_gshared (EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m7B5B4F48EEC109CC8E24E6AB3A1ACABA55EBADC5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m7B5B4F48EEC109CC8E24E6AB3A1ACABA55EBADC5_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.RenderTargetIdentifier>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCA600FAB3F8EAF54B477421951E75E06330A0340_gshared (EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 *)__this);
RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B L_0 = (( RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (*) (EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.RenderTargetIdentifier>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2C68CD526603925662065EE0A38791ADEBE5B023_gshared (EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.RenderTargetIdentifier>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m2BC4870F97AA51D4FC9A0CD456F996245F3A39B1_gshared (EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.RenderTargetIdentifier>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3536C1D26F3FAEB736AEF034C138644D1AA959D6_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 * L_0 = (EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tA992AB0711F2B804FE5C2A6E71E2453C9F4B1CE1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderKeyword>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC00B6342EA6BCE79FF3F29A3EF38008BF591B0A2_gshared (EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderKeyword>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0462AF228E4FD6F18C42083B027163E196E36457_gshared (EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderKeyword>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C EmptyInternalEnumerator_1_get_Current_mEBF66555DEB4037B0220B2D9851EC8BC59004FF6_gshared (EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mEBF66555DEB4037B0220B2D9851EC8BC59004FF6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mEBF66555DEB4037B0220B2D9851EC8BC59004FF6_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderKeyword>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAA94E12CE9180375307556E98FB303186C8FD3D6_gshared (EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 *)__this);
ShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C L_0 = (( ShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C (*) (EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ShaderKeyword_t89659A5E599A732703D89A5CB6638625EC1BA30C L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderKeyword>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m03A9F847FCB23C9B943701D404A4B8C7F471582C_gshared (EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderKeyword>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8C10E066F7736E605E68DC88FE24BFC17FBAA44A_gshared (EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderKeyword>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m6FA1DFDA9A7065A6DF8334E89B954BAECDD213C8_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 * L_0 = (EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tFFFD213B1DDAE429B627720B8D419085FB7A88A3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderTagId>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m09C86E241657BBE87068942CBB2E57B27ECA6937_gshared (EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderTagId>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0A59DD36D432221C458E5051DBB05AEEB84161FB_gshared (EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderTagId>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 EmptyInternalEnumerator_1_get_Current_m2DEF13AE06CC11CF9DA10D1683A6E61DE0670220_gshared (EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m2DEF13AE06CC11CF9DA10D1683A6E61DE0670220_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m2DEF13AE06CC11CF9DA10D1683A6E61DE0670220_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderTagId>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m07C7BFDE30CA3B04391A8B18A00E38E2C263DA78_gshared (EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 *)__this);
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 L_0 = (( ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 (*) (EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderTagId>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mED43206AE37F34168ABEAC8D80C7F50BF8B92101_gshared (EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderTagId>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m1AD439E9AFDC8F290E939366C1BD6A6FCAA11216_gshared (EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.ShaderTagId>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m58A3E6EB0E9E88A99CB0A1812BC82B074C1BB25C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 * L_0 = (EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t241693BD2F619D1B3F2E7A17FAE78FF03670E927_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.RenderTargetHandle>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m843C17EAA8CF24F0654DE2E9AA5B4BD5C25346E6_gshared (EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.RenderTargetHandle>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC615F1CC191D58B19ED9EA0AC8767ECFD2405875_gshared (EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.RenderTargetHandle>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 EmptyInternalEnumerator_1_get_Current_m2A50D69630360CE61A8746963D5918F00A9CD190_gshared (EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m2A50D69630360CE61A8746963D5918F00A9CD190_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m2A50D69630360CE61A8746963D5918F00A9CD190_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.RenderTargetHandle>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4F474B896994B69DA3183E6B5C3980C273F14735_gshared (EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 *)__this);
RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 L_0 = (( RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 (*) (EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RenderTargetHandle_tC811170BA8A2824C5D65698DA2AA2C3E8BE220A1 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.RenderTargetHandle>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m88E0275F21DC97DE8D284416E1D0D7C6292227BF_gshared (EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.RenderTargetHandle>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m2C9A92F2F01C5DD3BC94FCBF23A2A62A7FCE17F2_gshared (EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.RenderTargetHandle>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD2B85E698A6D1E209DCFF423D66A887E9DB06077_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 * L_0 = (EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tADCE3123353141F255F2EE1EEB1588C729599818_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/LightData>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mFC515229854CB42FF3F7608F57EE1BB0E88DF97B_gshared (EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/LightData>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m92B6EAD2B7735331FBF981A80678922179330E17_gshared (EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/LightData>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF EmptyInternalEnumerator_1_get_Current_mD87DEE7FA681F9557A5496318240CB81A013A113_gshared (EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mD87DEE7FA681F9557A5496318240CB81A013A113_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mD87DEE7FA681F9557A5496318240CB81A013A113_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/LightData>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7EFCF8154E2E743E08D6762B7C6531E0F28914CD_gshared (EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC *)__this);
LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF L_0 = (( LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF (*) (EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
LightData_t773677FBDE7024B6D8122EE78BEB3C6FD245EEDF L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/LightData>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7785483C9B535704BB0FABBBEBFB8724DE4B6951_gshared (EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/LightData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m2E91BB4932D95011CDD8EC7C8014813A1F5821B1_gshared (EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/LightData>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mCA25C223D1DF77450E08CBCBFC8F8AC2CDC362FB_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC * L_0 = (EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tD274C13E12F21CD608E37E7F20D8C6CD43F7A2CC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/ShadowData>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m16B8DB4F32B5603DEF87DDF21FE1B8EC576138E8_gshared (EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/ShadowData>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBDCF886AD0F3610FF82E260A6969593AB3F78DD2_gshared (EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/ShadowData>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 EmptyInternalEnumerator_1_get_Current_mC726C1C3778B75FBA6A571ECC911C567E3792487_gshared (EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mC726C1C3778B75FBA6A571ECC911C567E3792487_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mC726C1C3778B75FBA6A571ECC911C567E3792487_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/ShadowData>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m03C4530A3ACF910F724F8C54776D0F3AD0DE82D7_gshared (EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 *)__this);
ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 L_0 = (( ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 (*) (EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ShadowData_t7BEFADB532343B15D6E360E1D85CF0C3EC0D1571 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/ShadowData>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF1FB74484D563F647424DE2BD9A8A522D2CCB2C3_gshared (EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/ShadowData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m4161A6011FAB3CE068C9BA1E11F4D0EC12D33611_gshared (EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShaderInput/ShadowData>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m6858721FE23EF1898D60A6D48443CFFB17B23958_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 * L_0 = (EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t638D19BC750C214962F5E8A8BA7E77F2396B84B9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShadowSliceData>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mCFF82910CF62CBD5B6F47DA668B22C76C9843312_gshared (EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShadowSliceData>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD0B3E5500F620E9D322C90DDE49EDB92F40248B2_gshared (EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShadowSliceData>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7 EmptyInternalEnumerator_1_get_Current_mA42072F2BBC8B8CA5E68B8072C0C62BD2B13A408_gshared (EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mA42072F2BBC8B8CA5E68B8072C0C62BD2B13A408_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mA42072F2BBC8B8CA5E68B8072C0C62BD2B13A408_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShadowSliceData>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD8B0730B836DBA647D4273C1B779173B18F7FA22_gshared (EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 *)__this);
ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7 L_0 = (( ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7 (*) (EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ShadowSliceData_tEE28341C7E6F1FC0F7C18CBA5E2FBFECEC5F3AB7 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShadowSliceData>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m72ACD428E9B7E2CA55AA63D44742BD3E4C32CE19_gshared (EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShadowSliceData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF4C9FFBA9ADFA87359BF45AD35CE7552165C905A_gshared (EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.Universal.ShadowSliceData>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m306D21A068E72E40D52B5E3812FFCE3881CD20D9_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 * L_0 = (EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t61669F8B53827A7CBD127E81ED75DE63B4CFA923_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.VisibleLight>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0003B944D07445562479AAF26F3AEE8FBB612F55_gshared (EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.VisibleLight>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mAF1A41399B4CFC48A62BA55784DC72774B2C9FF5_gshared (EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.VisibleLight>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 EmptyInternalEnumerator_1_get_Current_m294DF1573552CAF2553AB3A18A87F97D5071A679_gshared (EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m294DF1573552CAF2553AB3A18A87F97D5071A679_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m294DF1573552CAF2553AB3A18A87F97D5071A679_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.VisibleLight>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEE5EE09CFEAF3AFCEA9F45A708A274BE4B4528CF_gshared (EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 *)__this);
VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 L_0 = (( VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 (*) (EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
VisibleLight_t0FB9CD9852C150E7F4C6EA0005A132D453E1A9F4 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.VisibleLight>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m1A5A1567D291619B271542F45348A407EE851578_gshared (EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.VisibleLight>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m27A8C81D4ED12669A63A9B5191F49B0168675566_gshared (EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.VisibleLight>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFBEC9F828FB756954F253D9D0F31B446C5950A07_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 * L_0 = (EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0629B065FC9E44CF5679EA35CD08DFFCF42A3314_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m2D59EFCD6394C975399962A2ACBA104CF16F8ACD_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2E81D1FFC0A8D6330BD65C4E1D7D2FC265CEEB4D_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 EmptyInternalEnumerator_1_get_Current_m8D6D84541FA8C039CE3800A657E8640AFFCD1063_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m8D6D84541FA8C039CE3800A657E8640AFFCD1063_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m8D6D84541FA8C039CE3800A657E8640AFFCD1063_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m324D1F09EE7EEBCF76F96C9290C9C407DE6A3C14_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 *)__this);
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 L_0 = (( HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 (*) (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2CD701F011AB4442D5845718E38F62BCED2E37EF_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m36B68EDEE8A066C41C7791C8975965B5712BDDAE_gshared (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m000007BA65CB152CE3BCBA982041FB872CD9D6CA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 * L_0 = (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tEAA744866B0662AE1F21F7EBB00A07C988E548B5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.SortingLayer>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB222C9C759356F8DA483F130779C730FBE16356E_gshared (EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.SortingLayer>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD440201ADC49EDD17B8CE3D913A03C11C8E4B2E7_gshared (EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.SortingLayer>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203 EmptyInternalEnumerator_1_get_Current_m9E074032861558F9A487F16BF689BDF543E8C481_gshared (EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m9E074032861558F9A487F16BF689BDF543E8C481_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m9E074032861558F9A487F16BF689BDF543E8C481_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.SortingLayer>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8D4A17935DDE44E67B5F0A38C473C886B9D33497_gshared (EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC *)__this);
SortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203 L_0 = (( SortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203 (*) (EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SortingLayer_tC8689CC6D9E452F76E2729FD7CE8C1C2744F0203 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SortingLayer>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m8C566A3576B7E0B494E4FC90EADC68BCD9276B0F_gshared (EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SortingLayer>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m55856E194E38A3E84F365E23E007093433DEB5F8_gshared (EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SortingLayer>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA746FC09FBB65B041E9C58DCCBE9C76D5401BFF7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC * L_0 = (EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t51B630A0A78EFB5E7A6E072B9595ACB2DE2911AC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m63CA933D14365B6DDC379D55AF716060D52E1D1D_gshared (EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB545087890AF4A4CC5D6D37EDA20DFFFEF4A4D57_gshared (EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C EmptyInternalEnumerator_1_get_Current_m4776BC238C3BB4684A5694B7EAFF98F39195406C_gshared (EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m4776BC238C3BB4684A5694B7EAFF98F39195406C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m4776BC238C3BB4684A5694B7EAFF98F39195406C_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA50C25D056E20A074176977F4129896696F55B95_gshared (EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE *)__this);
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C L_0 = (( GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C (*) (EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3754152E9025BA40976759D48A9D8DD7CA158FBC_gshared (EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0919F5A66FC55A904EE09A409C906A1A09E0A94E_gshared (EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m241BB95AA05FB64FA4952F4FEC49F61CE9CB65A7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE * L_0 = (EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tEC5902BA067F081282F977BB492058746E5CCBFE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0F4FAA08673B2B0753C4EAE3973D8E8B3A57F762_gshared (EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0134AC8222C66C6FED42CB85914CCFB6C998AF5A_gshared (EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 EmptyInternalEnumerator_1_get_Current_m04951211B31C418A5A3BFED5BCB0E1694A11CE1A_gshared (EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m04951211B31C418A5A3BFED5BCB0E1694A11CE1A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m04951211B31C418A5A3BFED5BCB0E1694A11CE1A_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2267338066247E1CF97D99D886D35841EBFFB47B_gshared (EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 *)__this);
GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 L_0 = (( GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 (*) (EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mE0F70A625CFDC5B258EFB4DD8EE2ADBEDF052AC9_gshared (EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB07341C65D73F9832D772F731F2A2DD9C8E29B5C_gshared (EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB418C3D21EAA0F65570D788C195B89AE5E8E16E2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 * L_0 = (EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tDF2156EE15CA87F9222470948CE3113BC0EA1C61_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mCBE6B1EBC5926A88349A7F9A3A68C8C99C2DD7D5_gshared (EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m57954A65D0770C66A821AB6C7F46CD3E13DD97DE_gshared (EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C EmptyInternalEnumerator_1_get_Current_mE43AA242B05CD0763807010B4F86D59BA31DB453_gshared (EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mE43AA242B05CD0763807010B4F86D59BA31DB453_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mE43AA242B05CD0763807010B4F86D59BA31DB453_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m734F9C178135C5DCBBD837F9C2011738E7512926_gshared (EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 *)__this);
GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C L_0 = (( GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C (*) (EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mE16ECEAB92B7FAF548BC222E1CC4809020C6434C_gshared (EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE7EA0AEF83638A5A2FA7F2AA84EF3B2C7722A5D5_gshared (EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE80A5A92FB97633F5FCC26EB0541EB71C2278E80_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 * L_0 = (EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t45897B297942DC79D7562E2097F36A5C757F0211_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mEC0B0B037FEB3A747AA545783A19018B6918A9E7_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m107CE608E39FEA15CC9FED01D3C7E0D75A8E0763_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA EmptyInternalEnumerator_1_get_Current_mA8EDB09064057A0786F373AD65D2D1BD26181070_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mA8EDB09064057A0786F373AD65D2D1BD26181070_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mA8EDB09064057A0786F373AD65D2D1BD26181070_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1322C9A3E19F32A024AE02C0785822BA47608AEF_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D *)__this);
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_0 = (( ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (*) (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m32F7D8F10009CC3759968D782C4CC3D8F1517D72_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC1CE5D504042E680AF89CF74DE5B2DB6BF6E391E_gshared (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m4C04A5B89B3D6DD863E6520C5259ABCEA51E26C7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D * L_0 = (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t580BB4F123AFC13ACA3E68B118A93175F88F921D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m41ABEB9B453A3631FFFDFA368CCD18C1E48A5616_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mDBCE008DCEE28982E617169E16410FC5E544893E_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 EmptyInternalEnumerator_1_get_Current_mD62451B7245670D9AC8F19B55DD0D3E70E56CD3A_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mD62451B7245670D9AC8F19B55DD0D3E70E56CD3A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mD62451B7245670D9AC8F19B55DD0D3E70E56CD3A_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m467173561A9CB7439293AF7BAD944F2181CCCD73_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 *)__this);
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_0 = (( Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (*) (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mCF96FACFC89D4D345EDB66A885EB8F8587C8CCDE_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB29799154A0BFDB882BB9434C4F69F689926EE02_gshared (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mBBDB3F8A0ABB291EAC510E359A4456514761568E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 * L_0 = (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBAADD11CB54B4B4FADEE067DA99738FA924872C2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m7D2B94488217A9131D90E3048E751DD940752CD5_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBAC08A40A7B32AB9B51EF67E528C4020AB15FC29_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A EmptyInternalEnumerator_1_get_Current_m5A7A5AF62CCF46153A47CEF59A43C83C6D92BB56_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m5A7A5AF62CCF46153A47CEF59A43C83C6D92BB56_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m5A7A5AF62CCF46153A47CEF59A43C83C6D92BB56_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8F8F3B4D9E5959D60DE8DE95C4A5E430530AEC89_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA *)__this);
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_0 = (( SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A (*) (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m46F118A087114EE97720896A55D134D7562DEBA3_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m53BF3EFF9BAA97530331F890B89A1B543019C058_gshared (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m35A500252094AACCA194CB4E61D60F3AA2BE1A9A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA * L_0 = (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBABE923CA4F5D19955F75E3D2580BCBB187356AA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA5E45F8E7E2AB481C787CFE3810E9282AF433078_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD3D59ABF98B2DBE693895AE4685E0E4536704262_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A EmptyInternalEnumerator_1_get_Current_m6B46980E651EA5A3FDFDF0E11A514D4392774364_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m6B46980E651EA5A3FDFDF0E11A514D4392774364_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m6B46980E651EA5A3FDFDF0E11A514D4392774364_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7E272A2E2D1A0AC2E9454F33224FE45C30C1536F_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 *)__this);
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_0 = (( UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (*) (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m36FB135E48B17756356587E52E6767C5411EF34E_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m30CC63200217E1CBA09844CEBFE3DD1D9331A271_gshared (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2A21B9878AEC9BD4BB3C18303FEB004E9CC76882_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 * L_0 = (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t3A0BE135137A57E9DEC74963AFE74EE4C1287600_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m4A9730C6CBEF4910E626894DA040EE9EE77FCC55_gshared (EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m21CF15B895346215E6445BE20EAB2CD3D086F323_gshared (EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA EmptyInternalEnumerator_1_get_Current_m3909509FCD65B208DC2024C4E0C28C0D9CF48507_gshared (EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m3909509FCD65B208DC2024C4E0C28C0D9CF48507_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m3909509FCD65B208DC2024C4E0C28C0D9CF48507_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5562D1BCFA9201CA4D539BD5C42733C50B9E686D_gshared (EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB *)__this);
DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA L_0 = (( DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA (*) (EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m65BDD7A4C4575D41AC3916146E877110E07134DF_gshared (EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m2F9197E5A65CC5F91F4E36F5F96EAB4DBFCC6780_gshared (EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA24DCA5CDA209D39EEC137B814B5F8CF608F2C4B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB * L_0 = (EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t290834B63DD11E46182D7E502E8872B71070BDEB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/EventRecord>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF082BB2554334176CE71C50853E7625BA8161990_gshared (EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/EventRecord>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m562FE08B9A7FAADB36E17622A20D7DFD893BFED5_gshared (EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/EventRecord>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 EmptyInternalEnumerator_1_get_Current_m2F5191FF4B0043886B8E1804C211C6ED711AF648_gshared (EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m2F5191FF4B0043886B8E1804C211C6ED711AF648_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m2F5191FF4B0043886B8E1804C211C6ED711AF648_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/EventRecord>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m63F44FFEAA1D5B564D30EE42E4B3CFB802ABA2F1_gshared (EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 *)__this);
EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 L_0 = (( EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 (*) (EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/EventRecord>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mE845AB705F18546285B7B597E3D5514C75A0FB88_gshared (EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/EventRecord>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m224B47FC860F820BA8509CF42AB0F6ABE8AACC48_gshared (EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.EventDispatcher/EventRecord>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0CCE8892C60EACB67DF5D60DA1BB60CF2EE0D250_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 * L_0 = (EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6699641A486760EA23A44A628E65119E5812F564_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.FocusController/FocusedElement>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m4926118818DAEAAA4AAC8B927F885FB319AF1A00_gshared (EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.FocusController/FocusedElement>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m83CA9F72BDEABCB58AF7C38A170737F3C9FEF03B_gshared (EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.FocusController/FocusedElement>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 EmptyInternalEnumerator_1_get_Current_m1DE2F185D54CF9CFE0E776DDE4DE13EC4B86C764_gshared (EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m1DE2F185D54CF9CFE0E776DDE4DE13EC4B86C764_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m1DE2F185D54CF9CFE0E776DDE4DE13EC4B86C764_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.FocusController/FocusedElement>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m838C0006FE99128446AED58DE7689013F5378029_gshared (EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 *)__this);
FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 L_0 = (( FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 (*) (EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.FocusController/FocusedElement>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7D06A4DB12A37F7A79897C5BAA2C65CF829D2AFF_gshared (EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.FocusController/FocusedElement>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mCCBDB1E6C8A4044576255ED279986179AFDC9F2E_gshared (EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.FocusController/FocusedElement>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m768E30B1BD547D12E61419B2A3681E826C82DB1A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 * L_0 = (EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF32CA408FE0875A24E658B5D55A55278873C53E8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m801530C49F4C20C170133AE6290A146B36664E46_gshared (EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mDBCD684194948F5813FAD331559561EFD8D55C94_gshared (EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 EmptyInternalEnumerator_1_get_Current_mDE37BE35B045A177D0F6B03F026E7CA9A5C1661A_gshared (EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mDE37BE35B045A177D0F6B03F026E7CA9A5C1661A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mDE37BE35B045A177D0F6B03F026E7CA9A5C1661A_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m885C000414CE76E05D71F7502D0F226DF4B2AC80_gshared (EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 *)__this);
SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 L_0 = (( SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 (*) (EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3726F93C345B415C250DAE4089F50AAFC6FE4C0A_gshared (EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m482200ABF8308DD0386C262E220CF6645A7F5194_gshared (EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m089EB0455A451D96D61B5DA568DEC53E7C1033AF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 * L_0 = (EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0DC2A446A81A738551C63D94657D2D6017A93C27_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleValue>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m51D61C0C7982F8477FCCD772782BDA4D7CDF28DA_gshared (EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleValue>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB16899D3E6E223A32A43FAFAFE7F4E2911050578_gshared (EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleValue>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 EmptyInternalEnumerator_1_get_Current_m3A0A9D335A01F821221FCEDA208354C993F4E65E_gshared (EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m3A0A9D335A01F821221FCEDA208354C993F4E65E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m3A0A9D335A01F821221FCEDA208354C993F4E65E_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleValue>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC0A8C4C8CF01A98AE01997B3C33A5EE7C380F35B_gshared (EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A *)__this);
StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 L_0 = (( StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 (*) (EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleValue>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m91BCA7E22FD08200F6A69B3F9D45178F876C09B6_gshared (EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleValue>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mD4BEE07A6CE22B7E9EFC134DAC9A2636C95E9900_gshared (EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIElements.StyleSheets.StyleValue>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7D7EFC8F207FED3E7F98C909534B3A77B08C8911_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A * L_0 = (EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBDB1EEEB571A2385B770C3125D72B8EC04F0CD3A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB4F4B74EE9A6165236D0F30AC4536F76AF1DF72F_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m6B27B17FBDB5E24F612E6426D8E84DC1EA97CB04_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 EmptyInternalEnumerator_1_get_Current_mDA9F64CC2753664296C3D3E7AA3AB26DEDDCA164_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mDA9F64CC2753664296C3D3E7AA3AB26DEDDCA164_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mDA9F64CC2753664296C3D3E7AA3AB26DEDDCA164_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1419B3FB87D09532CD363F704B6DCAAA0834581B_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B *)__this);
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_0 = (( UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (*) (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m86C8E4CA416DD50F25D7711A40B91F23D899BB89_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m262BE510CF58740852EA27C45D493E7E6393D6F4_gshared (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m72B71364B1DA4A7C8DD66E4DE5F7A834C01AE5D2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B * L_0 = (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t499E02D48A3FE44714F9DEF9AF52F06397505B4B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m25AC9141B70EF7672E761857483778957F937C5F_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4BEDAD1CEBC6798AC2481EFDC220F815AF7DDA63_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 EmptyInternalEnumerator_1_get_Current_m8444FDF54FEBD602CA48F528EC463DB1AC8082E6_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m8444FDF54FEBD602CA48F528EC463DB1AC8082E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m8444FDF54FEBD602CA48F528EC463DB1AC8082E6_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m04456036D4A0F0FE1A06B9BF5D2B14A434C297E1_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 *)__this);
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_0 = (( UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (*) (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m98E6B2CC5A357F3731721AC692C339070CA7FF1D_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m785F57F33D62D0F08630E6A38620E3D58EBC064D_gshared (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF55ED7B3F99A86314E3F7D73BDDB7500C0BA2DCF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 * L_0 = (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2740FD48AD2881871812C41BED5418833BB50EF8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA76C8463791EBDF7F0D7F27473F43E56F926E159_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m013BA51DE1474366B9A3E4D10A15085A668393C2_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 EmptyInternalEnumerator_1_get_Current_mA06904B635841F0E7F80D2F769DE07A6ED082B01_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mA06904B635841F0E7F80D2F769DE07A6ED082B01_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mA06904B635841F0E7F80D2F769DE07A6ED082B01_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5DAD4EDC5BE8A90F7BC0351132C5625302924E49_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 *)__this);
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_0 = (( WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (*) (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9286D4A4CC7DBEDEB07EFC8394DE5D8120191BF7_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m4EECC4BE2811165D38A56F56F2D51B58358FBE79_gshared (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m26E59A8A745C59DDD69BE53431366D5B97127938_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 * L_0 = (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8D862EE820CF8AB9C4F52E7392C08EA876B42E27_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3658448E0B5767985C528AFF6C4DE5AD782A14CD_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBBA5FCF8F4C0842ED73416B0DA2B86C4B5D1A2D6_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D EmptyInternalEnumerator_1_get_Current_m6F736FA9A64A4731F43C0EB684DEC9FC7827B12F_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m6F736FA9A64A4731F43C0EB684DEC9FC7827B12F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m6F736FA9A64A4731F43C0EB684DEC9FC7827B12F_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5A3BE141AF235708EF642F4DA946ADE56B387964_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 *)__this);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = (( Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*) (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m286BB7385593F5EB5ADF542E3A2A5800F92E3BF7_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB88144101A59F21B94E25E998F0ED4FACF57FB6D_gshared (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m786657A71FD55FF1E723B8C57B80DAE99B0160ED_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 * L_0 = (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9B0D4BFF056ECE2655B8DFAFC80C33C9FC92E508_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0B302018A1FEC194A7C5554790F64292FB1CA62F_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m72526770163050DACA7D336D671C66CE8DB8B7A4_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 EmptyInternalEnumerator_1_get_Current_mA4E7989BC90D09B31EEDA1BDF04507D72F72A2A8_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mA4E7989BC90D09B31EEDA1BDF04507D72F72A2A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mA4E7989BC90D09B31EEDA1BDF04507D72F72A2A8_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m10838E3814D876DC0A829116CD5958BAFBF091FC_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC *)__this);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = (( Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*) (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m85653A4F0E6C0A3EA92D4B3A81A36AD950D46B36_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC22C9AA8A5BA65322686E45BFBEE278014A4BF8D_gshared (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m79E766FE359516E0865E69FD5694C230ABBAC28C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC * L_0 = (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t812F2999EDAAB9ABAB8F78DE0F38BEF371B235CC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD1F7828EE1D2F1A60110B261CC2D3EF84A78709B_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC99C5CCA7A63ECA71EADACB69E4F7CA7CC86E2C8_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E EmptyInternalEnumerator_1_get_Current_mC5BA4F2C682C18C4A01CECEDC74DE8D4FEAAD27C_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mC5BA4F2C682C18C4A01CECEDC74DE8D4FEAAD27C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mC5BA4F2C682C18C4A01CECEDC74DE8D4FEAAD27C_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD97F089B0C34998A140AABD701FEA5EBB48F35EB_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 *)__this);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_0 = (( Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*) (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3F3D068D4CDEA13B23EA421AB7438DC892192A3F_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m79BCD40B26B6FDA4F75DBFDF0CE8729A91432FAA_gshared (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB74D19CC5CF30C4BC49340C67BB7E20A08AAB2AC_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 * L_0 = (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7F7E008DE3C47E124E84D13777D42CF2DEC1B281_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.Windows.Speech.SemanticMeaning>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB1292F1EACA80557F048014B1EC5ADEA106AAEFD_gshared (EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Windows.Speech.SemanticMeaning>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m9E17523BF9CEDFDCA888DC9315B1A04086BFE712_gshared (EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Windows.Speech.SemanticMeaning>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C EmptyInternalEnumerator_1_get_Current_mD982BB5C7B25B5FCFDB65DE14423EEE87A8B0A9D_gshared (EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_mD982BB5C7B25B5FCFDB65DE14423EEE87A8B0A9D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_mD982BB5C7B25B5FCFDB65DE14423EEE87A8B0A9D_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Windows.Speech.SemanticMeaning>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m389F0273B1AB89D640148A7BB8BF79C28DC36A6F_gshared (EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E *)__this);
SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C L_0 = (( SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C (*) (EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Windows.Speech.SemanticMeaning>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mE9F24ED12579870F165F326AFBD1BD084E27B0FF_gshared (EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Windows.Speech.SemanticMeaning>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m33133FBC49FEB1E9F8182359360911D08CAAFE9A_gshared (EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Windows.Speech.SemanticMeaning>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFE8DD956160A5A786F9C06F384C09E705DE0FEBC_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E * L_0 = (EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE5790AF024F55E9A7718463E69A8E2A44EED079E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE5235DAAE7EE7FA30DD86FFE7FC9916D05114CB8_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7742321345A2699D7862290EB8CDBAC2CB7D05E9_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 EmptyInternalEnumerator_1_get_Current_m80A7206A59DAB66B4057C520F2A17432A094A3FE_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyInternalEnumerator_1_get_Current_m80A7206A59DAB66B4057C520F2A17432A094A3FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_0 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_0, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, EmptyInternalEnumerator_1_get_Current_m80A7206A59DAB66B4057C520F2A17432A094A3FE_RuntimeMethod_var);
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFF88A91703B1CC4C0E072654D91B842A28794C87_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E *)__this);
jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 L_0 = (( jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 (*) (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD525BBE88D6584F8FF9D7350C2C593FBDCFCDA67_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mAF47EC0296C04E4CF4571834ADBD193B8688BC01_gshared (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5995FD01F99D390226A6C6FDA9AD712578883A27_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E * L_0 = (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2DA520C9E575754DA7E9DB60CEC8BBE33154A61E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->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.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mA53A02D7291444367D52E40714EAC6EDED7704AF_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mA53A02D7291444367D52E40714EAC6EDED7704AF_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *>(__this + _offset);
InternalEnumerator_1__ctor_mA53A02D7291444367D52E40714EAC6EDED7704AF(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mAE6BECAE381F3DCDD9941E86F034F7698494C3E9_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mAE6BECAE381F3DCDD9941E86F034F7698494C3E9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *>(__this + _offset);
InternalEnumerator_1_Dispose_mAE6BECAE381F3DCDD9941E86F034F7698494C3E9(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mEA2086AA1DF519C98AF0F3EA7BF4703E520A7E67_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mEA2086AA1DF519C98AF0F3EA7BF4703E520A7E67_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mEA2086AA1DF519C98AF0F3EA7BF4703E520A7E67(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 L_8 = (( ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 )L_8;
}
}
IL2CPP_EXTERN_C ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB4ACB1845506B32A59E28F5B684037244486FF96_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB4ACB1845506B32A59E28F5B684037244486FF96_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB4ACB1845506B32A59E28F5B684037244486FF96(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<Google.Protobuf.ObjectIntPair`1<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m84ED2AD293A7B71C97BC648E285B954C1C983A66_gshared (InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * __this, const RuntimeMethod* method)
{
{
ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 L_0 = InternalEnumerator_1_get_Current_m0BE09305F8B410E3F27A9C7CBB04CC35D185BABD((InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *)(InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
ObjectIntPair_1_tD5C30C058B119D674D0A5F4DB4ADCAEA6AEE7658 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m84ED2AD293A7B71C97BC648E285B954C1C983A66_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB03DE9987EB88AF32BA1FA6A0C6A0360BA2E4FD6 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m84ED2AD293A7B71C97BC648E285B954C1C983A66(_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.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB3E2F903DEF040C92F3592EDEF8FC5A3572D7979_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mB3E2F903DEF040C92F3592EDEF8FC5A3572D7979_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *>(__this + _offset);
InternalEnumerator_1__ctor_mB3E2F903DEF040C92F3592EDEF8FC5A3572D7979(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mA19B589D54A708CE8BC917DE08D75DFDF247EE9C_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mA19B589D54A708CE8BC917DE08D75DFDF247EE9C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *>(__this + _offset);
InternalEnumerator_1_Dispose_mA19B589D54A708CE8BC917DE08D75DFDF247EE9C(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mF0F8879AF1409666747FD012B4ACE9ABCD9B222A_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mF0F8879AF1409666747FD012B4ACE9ABCD9B222A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mF0F8879AF1409666747FD012B4ACE9ABCD9B222A(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A L_8 = (( ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A )L_8;
}
}
IL2CPP_EXTERN_C ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m50BCE52EC9EA9D44A9EE187B6BCCE8DB947F5710_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m50BCE52EC9EA9D44A9EE187B6BCCE8DB947F5710_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m50BCE52EC9EA9D44A9EE187B6BCCE8DB947F5710(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<Grpc.Core.Profiling.ProfilerEntry>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79A10712CC339E3445EE16F55BF268CBEB244215_gshared (InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * __this, const RuntimeMethod* method)
{
{
ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A L_0 = InternalEnumerator_1_get_Current_m82C3FEDF21F9B4157B72CBF03F8A135F3173A194((InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *)(InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
ProfilerEntry_tCA22074265A7ED00D71E95A5C58ECC292A0B497A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79A10712CC339E3445EE16F55BF268CBEB244215_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDF605F64C5F778B1BF6C27B7F075D45637288865 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79A10712CC339E3445EE16F55BF268CBEB244215(_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.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD372094D7B7C6B5CCCA0392892902163CD61B9F3_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mD372094D7B7C6B5CCCA0392892902163CD61B9F3_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *>(__this + _offset);
InternalEnumerator_1__ctor_mD372094D7B7C6B5CCCA0392892902163CD61B9F3(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m8FB34EF385B523FAFAB9B25493C60C7E62991823_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m8FB34EF385B523FAFAB9B25493C60C7E62991823_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *>(__this + _offset);
InternalEnumerator_1_Dispose_m8FB34EF385B523FAFAB9B25493C60C7E62991823(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m5335D61B31C1C411EF4E4C1CA7B1271E59DBE0CB_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m5335D61B31C1C411EF4E4C1CA7B1271E59DBE0CB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m5335D61B31C1C411EF4E4C1CA7B1271E59DBE0CB(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 L_8 = (( XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 )L_8;
}
}
IL2CPP_EXTERN_C XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *>(__this + _offset);
return InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF0D6AEB334A74111C2585F927B0916ED0E6FF964_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF0D6AEB334A74111C2585F927B0916ED0E6FF964_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF0D6AEB334A74111C2585F927B0916ED0E6FF964(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC74149835A4786E57A793A75C5830A99BF0C35BB_gshared (InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * __this, const RuntimeMethod* method)
{
{
XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 L_0 = InternalEnumerator_1_get_Current_mEAF904ECD999A4363DB345445F907CD5C3C060FB((InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *)(InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC74149835A4786E57A793A75C5830A99BF0C35BB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBAE138652D395525F1EC1A47F0EB783683587BBE *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC74149835A4786E57A793A75C5830A99BF0C35BB(_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.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m8418143BC51EA6FDB863AB9660EB3DDFAB87ADC8_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m8418143BC51EA6FDB863AB9660EB3DDFAB87ADC8_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *>(__this + _offset);
InternalEnumerator_1__ctor_m8418143BC51EA6FDB863AB9660EB3DDFAB87ADC8(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mCBF041E9018AC2DADE507FFB1F354DBF786C4F2B_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mCBF041E9018AC2DADE507FFB1F354DBF786C4F2B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *>(__this + _offset);
InternalEnumerator_1_Dispose_mCBF041E9018AC2DADE507FFB1F354DBF786C4F2B(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mABD0F622BE7884880043719DACE85DAAA45A3DDE_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mABD0F622BE7884880043719DACE85DAAA45A3DDE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mABD0F622BE7884880043719DACE85DAAA45A3DDE(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_8 = (( XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 )L_8;
}
}
IL2CPP_EXTERN_C XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA4802167E4B523F76F1D1B2D84DED784FB5EAFA1_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA4802167E4B523F76F1D1B2D84DED784FB5EAFA1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA4802167E4B523F76F1D1B2D84DED784FB5EAFA1(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBE4DE6BA19B796770E1089C5F54590D55FC826C5_gshared (InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * __this, const RuntimeMethod* method)
{
{
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_0 = InternalEnumerator_1_get_Current_m781112D9D1CEF0B750841DFDAE7CDBA34C6A1614((InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *)(InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBE4DE6BA19B796770E1089C5F54590D55FC826C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE29C2774101A5CD291AA9AD7E5AA4962D718E216 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBE4DE6BA19B796770E1089C5F54590D55FC826C5(_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.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + _offset);
InternalEnumerator_1__ctor_mB435979A4FC207D777BBBEDCBE6DBD47F06FC2D3(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + _offset);
InternalEnumerator_1_Dispose_m9FFA4290ED807AF40BD2E60F26023529593AA5A0(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m19B8C2E6A68876BE54C2C35DD948B7C496D98546(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_8 = (( TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 )L_8;
}
}
IL2CPP_EXTERN_C TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + _offset);
return InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC74FE1FCF522A51276B59B78AF8420D1E2F6AEA7(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130_gshared (InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * __this, const RuntimeMethod* method)
{
{
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_0 = InternalEnumerator_1_get_Current_m5BF1362D0455A86D563CA0FE18879952C871ABC3((InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *)(InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8774DE4581B922EC542DFDEAF08CF8AA2C57120F *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6A7480B222C2ED4423DFA000737E0286A78A130(_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.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + _offset);
InternalEnumerator_1__ctor_mD489F3FD0B8FF67A021BAB47C1CCC51241701ED0(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + _offset);
InternalEnumerator_1_Dispose_mDA37FD740E9CAE8A79150115FA19413298721C1B(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m89873A96691C93DB17CA538DA4A8503B002C9F91(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_8 = (( ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA )L_8;
}
}
IL2CPP_EXTERN_C ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91C3AC1FDB3E67F7FA04CD3422E6EF867CCC77C5(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A_gshared (InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * __this, const RuntimeMethod* method)
{
{
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_0 = InternalEnumerator_1_get_Current_m1DCD1459C4AB2C93C175C5A0EBD742901D02D237((InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *)(InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3B352A33B262DE9B28C121482ABA9A2316338845 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m090B76D6E75BB1C16F84858717B553B4E4A6C37A(_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.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + _offset);
InternalEnumerator_1__ctor_mC6576DE9DFD26D645933F33DDFFF5C193BD2C64F(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + _offset);
InternalEnumerator_1_Dispose_mAA797BBD83F736868FA6A8E186371BEADFC9A7CA(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m5D14BBDC6E172C9CFF85357EDA146D2F493191EC(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Boolean>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
bool L_8 = (( bool (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_8;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mBF9C54BE8A4A3C352F42280C1B76AD173905241D(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767_gshared (InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * __this, const RuntimeMethod* method)
{
{
bool L_0 = InternalEnumerator_1_get_Current_m0E37DD99400FD8E67350E2959B777C353662D4AE((InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *)(InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
bool L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5A9E5AD2CED6732444D5ECC4F8FC82526717590 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m406897CA7EC01C35D90402E4AA916647716FB767(_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.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + _offset);
InternalEnumerator_1__ctor_mCE5D4D9E3057660C094936737BA70F2ADE3646F9(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + _offset);
InternalEnumerator_1_Dispose_mC32656E5117A66CF11FF1BEA4C941AA4034677AC(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mBA8D7A7C9CD1D0771BB9638FB7A0A4D17F5F7F72(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Byte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
uint8_t L_8 = (( uint8_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (uint8_t)L_8;
}
}
IL2CPP_EXTERN_C uint8_t InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + _offset);
return InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52D68F77094EDDD9016386AF3F5A5B5781C974D9(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE_gshared (InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = InternalEnumerator_1_get_Current_m8322D35634EA8F36F950C7FC88EA889817413E87((InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *)(InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
uint8_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t982231C5871D8F29B09EC9C0BE904978F13B83AC *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m92570BB2C86AD0B6EB8845B78FF96396A458D6BE(_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.Array/InternalEnumerator`1<System.ByteEnum>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m131AA13CAFDAEDBFD0C3D03CAF148800CF7488C4_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m131AA13CAFDAEDBFD0C3D03CAF148800CF7488C4_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *>(__this + _offset);
InternalEnumerator_1__ctor_m131AA13CAFDAEDBFD0C3D03CAF148800CF7488C4(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ByteEnum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m6BB9F8429EF1FFF9C1433FC8DAC774A14BB16EA6_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m6BB9F8429EF1FFF9C1433FC8DAC774A14BB16EA6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *>(__this + _offset);
InternalEnumerator_1_Dispose_m6BB9F8429EF1FFF9C1433FC8DAC774A14BB16EA6(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.ByteEnum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m80D44C63C9A4811E7C65C874F06CC5DCF0ED348C_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m80D44C63C9A4811E7C65C874F06CC5DCF0ED348C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m80D44C63C9A4811E7C65C874F06CC5DCF0ED348C(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.ByteEnum>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
uint8_t L_8 = (( uint8_t (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (uint8_t)L_8;
}
}
IL2CPP_EXTERN_C uint8_t InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.ByteEnum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEA97754FC78EDA9D58F124B63E321D59B7108FE8_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEA97754FC78EDA9D58F124B63E321D59B7108FE8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEA97754FC78EDA9D58F124B63E321D59B7108FE8(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.ByteEnum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m14F22972EFF3D07A5010BD64BC518F8498A262B9_gshared (InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = InternalEnumerator_1_get_Current_m9C17A944B267252EFD170B06C92BCDE36DC84C6A((InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *)(InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
uint8_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m14F22972EFF3D07A5010BD64BC518F8498A262B9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t086F49F046CEE68DE16E3E67C2A1AF1161CADC56 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m14F22972EFF3D07A5010BD64BC518F8498A262B9(_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.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + _offset);
InternalEnumerator_1__ctor_mA816E1C13D866A2558DA3C530799B1D3858F80EF(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Char>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + _offset);
InternalEnumerator_1_Dispose_mDCC22EFC517EA05A44E470F2DA1919EE5A58F9FA(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Char>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m3FAA847DFF670AFBF34878A1F45C9B29F5DD973C(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Char>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Il2CppChar L_8 = (( Il2CppChar (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Il2CppChar)L_8;
}
}
IL2CPP_EXTERN_C Il2CppChar InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + _offset);
return InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51B86411AC68CD7F9618FF2523FB1199AA56372E(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7_gshared (InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * __this, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = InternalEnumerator_1_get_Current_mF9D5C23927E856F0D50CD0211DD96DED7A737466((InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *)(InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Il2CppChar L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t74BF3B5EFFF3E4B3A21E9B8FA2E7EDF302AC247B *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDEDC109FF80129362D85F9A7749B1540AFBD07B7(_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.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m13EF0798EE41222156E0F176866A098DB151625F_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m13EF0798EE41222156E0F176866A098DB151625F_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *>(__this + _offset);
InternalEnumerator_1__ctor_m13EF0798EE41222156E0F176866A098DB151625F(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mA81400E3470F11CF0E5F5312F999464BE7A11E03_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mA81400E3470F11CF0E5F5312F999464BE7A11E03_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *>(__this + _offset);
InternalEnumerator_1_Dispose_mA81400E3470F11CF0E5F5312F999464BE7A11E03(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m16ED02B90826DDB84873EB5A60E6B10D81FE5411_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m16ED02B90826DDB84873EB5A60E6B10D81FE5411_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m16ED02B90826DDB84873EB5A60E6B10D81FE5411(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5 InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5 L_8 = (( Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5 )L_8;
}
}
IL2CPP_EXTERN_C Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5 InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51A5E1309C39F179B788ECE8CDCB1D7EBDF980ED_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51A5E1309C39F179B788ECE8CDCB1D7EBDF980ED_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51A5E1309C39F179B788ECE8CDCB1D7EBDF980ED(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB249137BEBF3AB1A8AC0A923841E7F7781CC35C2_gshared (InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * __this, const RuntimeMethod* method)
{
{
Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5 L_0 = InternalEnumerator_1_get_Current_m5131F34DDFA60FE71F83FF0168B2DF1BF282085D((InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *)(InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Slot_tE8763ECEB14557B38DAD4F3F6AE10D98DAD15ED5 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB249137BEBF3AB1A8AC0A923841E7F7781CC35C2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t40BB66C4EC17404541538AFBEE3F354FE5A882C2 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB249137BEBF3AB1A8AC0A923841E7F7781CC35C2(_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.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + _offset);
InternalEnumerator_1__ctor_mC0890A26F45EB3D0CE722AA211191F47A7D89CAE(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + _offset);
InternalEnumerator_1_Dispose_mC2FAA1D4D203A9339BBC1340D21F3ED010DDDBAC(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mCB1B8EAAF7F7CBAFAA5F7514553B6DC1038D4AC4(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_8 = (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_8;
}
}
IL2CPP_EXTERN_C DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB9F8EC8CBE7FD4FADFAB7F64A37B7A7508D691(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8_gshared (InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * __this, const RuntimeMethod* method)
{
{
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_0 = InternalEnumerator_1_get_Current_mF60DB3DFAED76189D44BCCA186D595043C014D3E((InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *)(InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDAD7C4B47A5DEC60EAE933F701F1585FC7959379 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD1EDD7B929F2A9A91509082AEC0A70709B12CEF8(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m609422074D167B1FFF07A87128AFD80321C652D8_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m609422074D167B1FFF07A87128AFD80321C652D8_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *>(__this + _offset);
InternalEnumerator_1__ctor_m609422074D167B1FFF07A87128AFD80321C652D8(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m2E1CDBE7C7D273B9A5A573097661BD224A162859_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m2E1CDBE7C7D273B9A5A573097661BD224A162859_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *>(__this + _offset);
InternalEnumerator_1_Dispose_m2E1CDBE7C7D273B9A5A573097661BD224A162859(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m84B2F66A8DC09F12B24B0C6C33676EC1CAF28210_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m84B2F66A8DC09F12B24B0C6C33676EC1CAF28210_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m84B2F66A8DC09F12B24B0C6C33676EC1CAF28210(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92 InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92 L_8 = (( Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92 InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF779F78E51259A77C359D886FD4447E1904C7D9E_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF779F78E51259A77C359D886FD4447E1904C7D9E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF779F78E51259A77C359D886FD4447E1904C7D9E(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8841B96CFBD2971CE9AAE7A8B3248421C6EDC5CB_gshared (InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * __this, const RuntimeMethod* method)
{
{
Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92 L_0 = InternalEnumerator_1_get_Current_m72326878878FDBC638E499B09385258ECBD67526((InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *)(InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t3647DC22B83930E5BB5C2E46DC01DD78ED0D6C92 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8841B96CFBD2971CE9AAE7A8B3248421C6EDC5CB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86344743C8CF7B2B8AB5633BB801A5D9BAF1F766 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8841B96CFBD2971CE9AAE7A8B3248421C6EDC5CB(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m44A1219CB22476007BD08AE3757B05945E3B25A9_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m44A1219CB22476007BD08AE3757B05945E3B25A9_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *>(__this + _offset);
InternalEnumerator_1__ctor_m44A1219CB22476007BD08AE3757B05945E3B25A9(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mFEC45E4E975A7B432CDBE27CE4C437E1D8542A25_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mFEC45E4E975A7B432CDBE27CE4C437E1D8542A25_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *>(__this + _offset);
InternalEnumerator_1_Dispose_mFEC45E4E975A7B432CDBE27CE4C437E1D8542A25(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m92EB9A823D7223FCAE8699D90204D2A80166925F_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m92EB9A823D7223FCAE8699D90204D2A80166925F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m92EB9A823D7223FCAE8699D90204D2A80166925F(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tC1463A26CB3583633B8650196083947E916945AD InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tC1463A26CB3583633B8650196083947E916945AD L_8 = (( Entry_tC1463A26CB3583633B8650196083947E916945AD (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_tC1463A26CB3583633B8650196083947E916945AD )L_8;
}
}
IL2CPP_EXTERN_C Entry_tC1463A26CB3583633B8650196083947E916945AD InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8B9B0F3D9970A1591E576689F145580C6C60626A_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8B9B0F3D9970A1591E576689F145580C6C60626A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8B9B0F3D9970A1591E576689F145580C6C60626A(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8A6FFEE4C37D4E70BBF8410AD81DA10F93A205AA_gshared (InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * __this, const RuntimeMethod* method)
{
{
Entry_tC1463A26CB3583633B8650196083947E916945AD L_0 = InternalEnumerator_1_get_Current_m2B8AA9DB2214010E31B0C52D02C87162E342BB3A((InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *)(InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tC1463A26CB3583633B8650196083947E916945AD L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8A6FFEE4C37D4E70BBF8410AD81DA10F93A205AA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t28D78DEFE61777BDC7E1A263C831D564F273E108 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8A6FFEE4C37D4E70BBF8410AD81DA10F93A205AA(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m8DFECC5AF03B02BB798644599A97B875F9061AEA_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m8DFECC5AF03B02BB798644599A97B875F9061AEA_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *>(__this + _offset);
InternalEnumerator_1__ctor_m8DFECC5AF03B02BB798644599A97B875F9061AEA(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mBA268F3640C62BD059F84B5AFBB57B0454C15F1D_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mBA268F3640C62BD059F84B5AFBB57B0454C15F1D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *>(__this + _offset);
InternalEnumerator_1_Dispose_mBA268F3640C62BD059F84B5AFBB57B0454C15F1D(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m0C1C3591D552412F88EA8B9EC0F2381D59B9F7F8_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m0C1C3591D552412F88EA8B9EC0F2381D59B9F7F8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m0C1C3591D552412F88EA8B9EC0F2381D59B9F7F8(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B L_8 = (( Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B )L_8;
}
}
IL2CPP_EXTERN_C Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m02906FF9D087D139F36BE9126A20A25BEC636627_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m02906FF9D087D139F36BE9126A20A25BEC636627_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m02906FF9D087D139F36BE9126A20A25BEC636627(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m74B8A4FDF78AA84FB14281DFFD8B8F45730C9093_gshared (InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * __this, const RuntimeMethod* method)
{
{
Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B L_0 = InternalEnumerator_1_get_Current_m6951B5D9AE0260F69AEC37ECEB065AF9673C2657((InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *)(InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m74B8A4FDF78AA84FB14281DFFD8B8F45730C9093_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t738B5D5CE39B4BCEACA114A116397CD36015CCD6 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m74B8A4FDF78AA84FB14281DFFD8B8F45730C9093(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB14E8ADD77CDB39F616A9F746E1F1C77EAC2140A_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mB14E8ADD77CDB39F616A9F746E1F1C77EAC2140A_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *>(__this + _offset);
InternalEnumerator_1__ctor_mB14E8ADD77CDB39F616A9F746E1F1C77EAC2140A(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mD9467ACD92242128DF7F6AC0BB7F795B5A6EED78_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mD9467ACD92242128DF7F6AC0BB7F795B5A6EED78_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *>(__this + _offset);
InternalEnumerator_1_Dispose_mD9467ACD92242128DF7F6AC0BB7F795B5A6EED78(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB35CF8C07A792E869C10095664158D48C1C70C42_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mB35CF8C07A792E869C10095664158D48C1C70C42_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mB35CF8C07A792E869C10095664158D48C1C70C42(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 L_8 = (( Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 )L_8;
}
}
IL2CPP_EXTERN_C Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *>(__this + _offset);
return InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA42DA15145A70679770B3479AAD4D73764286B85_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA42DA15145A70679770B3479AAD4D73764286B85_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA42DA15145A70679770B3479AAD4D73764286B85(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2D2DC0F086C73CFDC6302B52A89C45AFC7F9AC58_gshared (InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * __this, const RuntimeMethod* method)
{
{
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 L_0 = InternalEnumerator_1_get_Current_m025F767B214EDBA4CFA4601ABD67F91214D7FD65((InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *)(InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2D2DC0F086C73CFDC6302B52A89C45AFC7F9AC58_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10B3FAE6CB752519A8645E24FB32D50332502DFE *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2D2DC0F086C73CFDC6302B52A89C45AFC7F9AC58(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m094E41439718B5F69131D3668CEE3A60999C25A9_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m094E41439718B5F69131D3668CEE3A60999C25A9_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *>(__this + _offset);
InternalEnumerator_1__ctor_m094E41439718B5F69131D3668CEE3A60999C25A9(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m9F291A4AE071B76517E91D433A2F9181BF4F1F90_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m9F291A4AE071B76517E91D433A2F9181BF4F1F90_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *>(__this + _offset);
InternalEnumerator_1_Dispose_m9F291A4AE071B76517E91D433A2F9181BF4F1F90(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mE0B0496215CD1CBF508678337C6D62F1C79B64E3_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mE0B0496215CD1CBF508678337C6D62F1C79B64E3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mE0B0496215CD1CBF508678337C6D62F1C79B64E3(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A L_8 = (( Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A )L_8;
}
}
IL2CPP_EXTERN_C Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2EBCC5F95FDEE25CF4EF19FE4809D6E938A080DF_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2EBCC5F95FDEE25CF4EF19FE4809D6E938A080DF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2EBCC5F95FDEE25CF4EF19FE4809D6E938A080DF(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2411BFE065F9DEA716F23C9CE82AF3BA4BE0ED7E_gshared (InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * __this, const RuntimeMethod* method)
{
{
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A L_0 = InternalEnumerator_1_get_Current_m40B8A6B0AEB45706FFD5AEF90FBB022738E8EC43((InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *)(InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2411BFE065F9DEA716F23C9CE82AF3BA4BE0ED7E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE3099FF383EEA627E76ADF8AAEBA8F1B79BE887 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2411BFE065F9DEA716F23C9CE82AF3BA4BE0ED7E(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1D388F30C3343BD7E5848F3DC388A2C81AE3B711_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m1D388F30C3343BD7E5848F3DC388A2C81AE3B711_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *>(__this + _offset);
InternalEnumerator_1__ctor_m1D388F30C3343BD7E5848F3DC388A2C81AE3B711(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mF143D7BBA0BA94B00A4E373AE0ADB69CFF3A1426_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mF143D7BBA0BA94B00A4E373AE0ADB69CFF3A1426_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *>(__this + _offset);
InternalEnumerator_1_Dispose_mF143D7BBA0BA94B00A4E373AE0ADB69CFF3A1426(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mEFB563473244B3B32939682A302A03F035237286_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mEFB563473244B3B32939682A302A03F035237286_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mEFB563473244B3B32939682A302A03F035237286(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 L_8 = (( Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *>(__this + _offset);
return InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7F1E425C74802B63B7FA43306C8436A10A3F68B3_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7F1E425C74802B63B7FA43306C8436A10A3F68B3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7F1E425C74802B63B7FA43306C8436A10A3F68B3(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDC9FF62689E22AA958ED8EF823B0B0A254A8E8FD_gshared (InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * __this, const RuntimeMethod* method)
{
{
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 L_0 = InternalEnumerator_1_get_Current_mF9E1BB2F245322C7D19932E3F243878043D14386((InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *)(InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDC9FF62689E22AA958ED8EF823B0B0A254A8E8FD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC1B8E06FB8151CED89AFD91BD51B00154E207CFD *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDC9FF62689E22AA958ED8EF823B0B0A254A8E8FD(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mA496B2318BDE17986C32E0C47A64A37CDF74BF3E_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mA496B2318BDE17986C32E0C47A64A37CDF74BF3E_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *>(__this + _offset);
InternalEnumerator_1__ctor_mA496B2318BDE17986C32E0C47A64A37CDF74BF3E(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m88AE2C118C0E037C1B80ABD348CAB589A45D4CA5_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m88AE2C118C0E037C1B80ABD348CAB589A45D4CA5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *>(__this + _offset);
InternalEnumerator_1_Dispose_m88AE2C118C0E037C1B80ABD348CAB589A45D4CA5(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m5BDA684C3D28A02CC831A8862A5F71E5A4C11E84_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m5BDA684C3D28A02CC831A8862A5F71E5A4C11E84_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m5BDA684C3D28A02CC831A8862A5F71E5A4C11E84(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A L_8 = (( Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A )L_8;
}
}
IL2CPP_EXTERN_C Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1786E32E4B9BF2967003DB694F4BDBCC9D14A86C_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1786E32E4B9BF2967003DB694F4BDBCC9D14A86C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1786E32E4B9BF2967003DB694F4BDBCC9D14A86C(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79D6B51066373B60392227A2D594FD17E92690B2_gshared (InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * __this, const RuntimeMethod* method)
{
{
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A L_0 = InternalEnumerator_1_get_Current_mEA634DAD40C634A32E66263A9AC5D70A59FD1766((InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *)(InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79D6B51066373B60392227A2D594FD17E92690B2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2BE70C541191C64EC421D955D73948075FA41FC7 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79D6B51066373B60392227A2D594FD17E92690B2(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + _offset);
InternalEnumerator_1__ctor_m826AE3C40B8AFBE65F21024B99461A8E3435394E(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + _offset);
InternalEnumerator_1_Dispose_m1CBAB604EC0F2F4558305325B30BC790A0684D54(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m007FB57DED6F561D3EEC01BD59C68BFBD9FEA626(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_8 = (( Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D )L_8;
}
}
IL2CPP_EXTERN_C Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mC24466541138E727EBE50B0E0A22F6651161EB71(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053_gshared (InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * __this, const RuntimeMethod* method)
{
{
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_0 = InternalEnumerator_1_get_Current_m4ABCF333B87FC095F8DB1908EE7CB57702BBB20F((InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *)(InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t02A92EB825760093D375D7DB9530ED1BBACE0EC0 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9369158204F4280AA8C76BD2E47E8A91C9FDC053(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB0472A3C821FA6879553AAFDA3456A2AF028C60C_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mB0472A3C821FA6879553AAFDA3456A2AF028C60C_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *>(__this + _offset);
InternalEnumerator_1__ctor_mB0472A3C821FA6879553AAFDA3456A2AF028C60C(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m6F2B6A67C00DD6270203CBA8208E830820576CAE_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m6F2B6A67C00DD6270203CBA8208E830820576CAE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *>(__this + _offset);
InternalEnumerator_1_Dispose_m6F2B6A67C00DD6270203CBA8208E830820576CAE(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mE0D4BF865E9D1C1F6A8181F306A9399B9538E8C9_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mE0D4BF865E9D1C1F6A8181F306A9399B9538E8C9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mE0D4BF865E9D1C1F6A8181F306A9399B9538E8C9(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3 InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3 L_8 = (( Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3 InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *>(__this + _offset);
return InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3A62A1B7072DBAAF09CDADC86B19550F7D695C6B_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3A62A1B7072DBAAF09CDADC86B19550F7D695C6B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3A62A1B7072DBAAF09CDADC86B19550F7D695C6B(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m20BC84702C54AAE0AE2AA60390A5C0A656F8B049_gshared (InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * __this, const RuntimeMethod* method)
{
{
Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3 L_0 = InternalEnumerator_1_get_Current_m71D0B4D646995BE25B7851D15CA8BB16060B08C1((InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *)(InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t4B2724D12016714EC04E40582FE125BDF843D4F3 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m20BC84702C54AAE0AE2AA60390A5C0A656F8B049_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE0508DCD0A38FC68217B562FE44BF25E30294E3A *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m20BC84702C54AAE0AE2AA60390A5C0A656F8B049(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mE700527294C3EE471A0B72A2F4E3E43DC1C5565C_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mE700527294C3EE471A0B72A2F4E3E43DC1C5565C_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *>(__this + _offset);
InternalEnumerator_1__ctor_mE700527294C3EE471A0B72A2F4E3E43DC1C5565C(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mA0E294B1AD8EBFEB4D56338FDB9D9BA73491F7A0_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mA0E294B1AD8EBFEB4D56338FDB9D9BA73491F7A0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *>(__this + _offset);
InternalEnumerator_1_Dispose_mA0E294B1AD8EBFEB4D56338FDB9D9BA73491F7A0(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m40EA09F2813E22B2ED04DBEC56B13591B456274F_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m40EA09F2813E22B2ED04DBEC56B13591B456274F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m40EA09F2813E22B2ED04DBEC56B13591B456274F(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 L_8 = (( Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA62CF831C31AFC3A81C60A9579AE4B5FB125898E_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA62CF831C31AFC3A81C60A9579AE4B5FB125898E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA62CF831C31AFC3A81C60A9579AE4B5FB125898E(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A9D47B978B834197FA512E3ACFB92AB916CDEC2_gshared (InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * __this, const RuntimeMethod* method)
{
{
Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 L_0 = InternalEnumerator_1_get_Current_m6199AC182DE5B86A83F35BCD33E45A6310C38B05((InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *)(InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t18BDEF0B8F7157C897816DEA52B400DE7A2742D9 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A9D47B978B834197FA512E3ACFB92AB916CDEC2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9599A0BA76202970DE50699DA9B412C446B61795 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A9D47B978B834197FA512E3ACFB92AB916CDEC2(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3FE085DED36DF93C4B0C97EBC807200ECB1BD147_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m3FE085DED36DF93C4B0C97EBC807200ECB1BD147_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *>(__this + _offset);
InternalEnumerator_1__ctor_m3FE085DED36DF93C4B0C97EBC807200ECB1BD147(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDB08AE86D5C4D83721A187FE72C3AE35848C484E_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mDB08AE86D5C4D83721A187FE72C3AE35848C484E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *>(__this + _offset);
InternalEnumerator_1_Dispose_mDB08AE86D5C4D83721A187FE72C3AE35848C484E(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m756E49D400B1E25A553647950786AA3C221E5673_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m756E49D400B1E25A553647950786AA3C221E5673_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m756E49D400B1E25A553647950786AA3C221E5673(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD L_8 = (( Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD )L_8;
}
}
IL2CPP_EXTERN_C Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *>(__this + _offset);
return InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91A76807B7A0CAFF1C1E90A81107A7787A76D55C_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91A76807B7A0CAFF1C1E90A81107A7787A76D55C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m91A76807B7A0CAFF1C1E90A81107A7787A76D55C(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mED532D7BD977FF130F6FB0557496BBCCE835CA74_gshared (InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * __this, const RuntimeMethod* method)
{
{
Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD L_0 = InternalEnumerator_1_get_Current_m7B1416120669361E00877B1D83E779108D037B52((InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *)(InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mED532D7BD977FF130F6FB0557496BBCCE835CA74_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76E856D62C72D8F5B6FC4A78E38F3ADB834E56DF *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mED532D7BD977FF130F6FB0557496BBCCE835CA74(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3D9D5FCD83712292B59538020598B596466798CD_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m3D9D5FCD83712292B59538020598B596466798CD_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *>(__this + _offset);
InternalEnumerator_1__ctor_m3D9D5FCD83712292B59538020598B596466798CD(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mD3E87C246F2A5942F50B8D770734A3BE53318096_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mD3E87C246F2A5942F50B8D770734A3BE53318096_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *>(__this + _offset);
InternalEnumerator_1_Dispose_mD3E87C246F2A5942F50B8D770734A3BE53318096(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mD9FA51C1AB129E50F46D5791CFF3A254569D571D_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mD9FA51C1AB129E50F46D5791CFF3A254569D571D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mD9FA51C1AB129E50F46D5791CFF3A254569D571D(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 L_8 = (( Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 )L_8;
}
}
IL2CPP_EXTERN_C Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7D633A57CF017BE224D032D4EC54A5E1590BE07C_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7D633A57CF017BE224D032D4EC54A5E1590BE07C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7D633A57CF017BE224D032D4EC54A5E1590BE07C(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m218525A22112C208508BB362E065DC0C156A43DD_gshared (InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * __this, const RuntimeMethod* method)
{
{
Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 L_0 = InternalEnumerator_1_get_Current_mBCC21CE71F88B2EE839D5D6075E2F0F2170BECA4((InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *)(InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m218525A22112C208508BB362E065DC0C156A43DD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t98769F05A09E4AEA0C41AB2648070EC76C1B8113 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m218525A22112C208508BB362E065DC0C156A43DD(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m834B9A93E0489E1BF20DEF263ECC0816CDE3AC12_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m834B9A93E0489E1BF20DEF263ECC0816CDE3AC12_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *>(__this + _offset);
InternalEnumerator_1__ctor_m834B9A93E0489E1BF20DEF263ECC0816CDE3AC12(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m32BC75DD6952A1F7BAA8FEF93836565F02B232ED_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m32BC75DD6952A1F7BAA8FEF93836565F02B232ED_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *>(__this + _offset);
InternalEnumerator_1_Dispose_m32BC75DD6952A1F7BAA8FEF93836565F02B232ED(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m38FFC73795B3CD1010829852DA2290EA2B0851DE_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m38FFC73795B3CD1010829852DA2290EA2B0851DE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m38FFC73795B3CD1010829852DA2290EA2B0851DE(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t1569C69F7132527F147EA707D2A116532F05D1EE InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t1569C69F7132527F147EA707D2A116532F05D1EE L_8 = (( Entry_t1569C69F7132527F147EA707D2A116532F05D1EE (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t1569C69F7132527F147EA707D2A116532F05D1EE )L_8;
}
}
IL2CPP_EXTERN_C Entry_t1569C69F7132527F147EA707D2A116532F05D1EE InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *>(__this + _offset);
return InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9DECC67AF81E3676B54E44589A92A57E1AAAA727_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9DECC67AF81E3676B54E44589A92A57E1AAAA727_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9DECC67AF81E3676B54E44589A92A57E1AAAA727(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC90DAE15F2045FC213F421948591DF49988AA5E0_gshared (InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * __this, const RuntimeMethod* method)
{
{
Entry_t1569C69F7132527F147EA707D2A116532F05D1EE L_0 = InternalEnumerator_1_get_Current_m9010E4D3CC81C14731F26A082951621562AF4CB8((InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *)(InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t1569C69F7132527F147EA707D2A116532F05D1EE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC90DAE15F2045FC213F421948591DF49988AA5E0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tACCD5FF3F7B75B587B5C8B2907191F7CA193C44C *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC90DAE15F2045FC213F421948591DF49988AA5E0(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m6652E02689C29811F9EC2C52335B6CA0516E5A85_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m6652E02689C29811F9EC2C52335B6CA0516E5A85_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *>(__this + _offset);
InternalEnumerator_1__ctor_m6652E02689C29811F9EC2C52335B6CA0516E5A85(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m101EA4F268524BBA156B1E46A8521EC5A566290C_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m101EA4F268524BBA156B1E46A8521EC5A566290C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *>(__this + _offset);
InternalEnumerator_1_Dispose_m101EA4F268524BBA156B1E46A8521EC5A566290C(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mFC43E2FD35B2B19C4B4D67210F673F1692BB04EA_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mFC43E2FD35B2B19C4B4D67210F673F1692BB04EA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mFC43E2FD35B2B19C4B4D67210F673F1692BB04EA(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 L_8 = (( Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *>(__this + _offset);
return InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m26322EFCF66AA4900E8DB9DC1AA30290E5D33E0D_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m26322EFCF66AA4900E8DB9DC1AA30290E5D33E0D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m26322EFCF66AA4900E8DB9DC1AA30290E5D33E0D(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0D6C204841D858403AF4032292A43E270401167_gshared (InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * __this, const RuntimeMethod* method)
{
{
Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 L_0 = InternalEnumerator_1_get_Current_mF5CAB65876CB5F11789059D435162B414DBFFC50((InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *)(InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0D6C204841D858403AF4032292A43E270401167_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE873DF91A93A8DE70C1A33CC61C64C06E8C855CA *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0D6C204841D858403AF4032292A43E270401167(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + _offset);
InternalEnumerator_1__ctor_m56019387E27A8E3481BDF2669CDE33C7899A4ECB(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + _offset);
InternalEnumerator_1_Dispose_m1F2BED538F9A714FDD0663B4E12CEF6D82CD9459(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m47F7361F7276ED03BEF7B9E04EC7431ACAAE6906(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_8 = (( Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE )L_8;
}
}
IL2CPP_EXTERN_C Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D43D1F4D741863D821F9E78A4A608F58B2485DF(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27_gshared (InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * __this, const RuntimeMethod* method)
{
{
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_0 = InternalEnumerator_1_get_Current_m92BB9CC66A8467F196EA707E00E7186FA64AE48B((InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *)(InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t39D8B84AE4BB6C55B6200CDB7081CE440B2B93D2 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E60E687D9B216101D35FA36C1D0EF48FF5C5F27(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mE9806D4F5B046CF5571AAEBA47A9DFC767F1D7EF_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mE9806D4F5B046CF5571AAEBA47A9DFC767F1D7EF_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *>(__this + _offset);
InternalEnumerator_1__ctor_mE9806D4F5B046CF5571AAEBA47A9DFC767F1D7EF(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *>(__this + _offset);
InternalEnumerator_1_Dispose_m15F853A5A32BAFCA7B869DF5872C094BF494336A(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m23B255D78CE56C9745A561E3D5217F3521E0EA87(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF L_8 = (( Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF )L_8;
}
}
IL2CPP_EXTERN_C Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2087A7A789D7AD625D90F79857979A8821B64E(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271_gshared (InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * __this, const RuntimeMethod* method)
{
{
Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF L_0 = InternalEnumerator_1_get_Current_m740939BF80E21D552CDEB32E37BA83583458D7DA((InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *)(InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6B618EBB390983D0108D4A2F0B67DD639143B2D6 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7E808DE6EC1C864FEE5D7026B65B45FCBDF6271(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + _offset);
InternalEnumerator_1__ctor_m51F3DA6A53425367DEED2F523CC1F1E5EF366BD9(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + _offset);
InternalEnumerator_1_Dispose_m0D2B670F0CD0A79ED287E68E6BA7DDC47687C224(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m3AB0694D7B4C7363E522EE175B1DA229B01D148D(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 L_8 = (( Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m44C63894AC907E6D89D64978E780E16ED053FCF8(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221_gshared (InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * __this, const RuntimeMethod* method)
{
{
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 L_0 = InternalEnumerator_1_get_Current_m23379F4AA1AA40F72F858E9B9F4D36872535D73F((InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *)(InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t765B0DB54871A5BDB0F5E208C7158C68344F1A41 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t29D82F20714798F426C776707BBB5A4F3E722924 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB9A0BC555012CD7E593417589EF96969588A3221(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1227B6856C20A5D6E7D05282A8FE14D83D1AB7AB_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m1227B6856C20A5D6E7D05282A8FE14D83D1AB7AB_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *>(__this + _offset);
InternalEnumerator_1__ctor_m1227B6856C20A5D6E7D05282A8FE14D83D1AB7AB(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mF6A3C20F3111C907CE13ACC03863350C2E9032D5_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mF6A3C20F3111C907CE13ACC03863350C2E9032D5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *>(__this + _offset);
InternalEnumerator_1_Dispose_mF6A3C20F3111C907CE13ACC03863350C2E9032D5(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4F3B7812BBBD034AA0F4488FA53EFA3FBF509294_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m4F3B7812BBBD034AA0F4488FA53EFA3FBF509294_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m4F3B7812BBBD034AA0F4488FA53EFA3FBF509294(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF51B7F09080F58F478531DF63F041E6EF203919A InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tF51B7F09080F58F478531DF63F041E6EF203919A L_8 = (( Entry_tF51B7F09080F58F478531DF63F041E6EF203919A (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_tF51B7F09080F58F478531DF63F041E6EF203919A )L_8;
}
}
IL2CPP_EXTERN_C Entry_tF51B7F09080F58F478531DF63F041E6EF203919A InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAFED93BAB2AB7AB20477A5AD0B1BD875D168B66C_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAFED93BAB2AB7AB20477A5AD0B1BD875D168B66C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mAFED93BAB2AB7AB20477A5AD0B1BD875D168B66C(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5E5399EDC5D9971D1FC278B8ACE86D53AA90C12E_gshared (InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * __this, const RuntimeMethod* method)
{
{
Entry_tF51B7F09080F58F478531DF63F041E6EF203919A L_0 = InternalEnumerator_1_get_Current_mF02289D018533C0D3BE19D9949AC3396D8B3B38B((InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *)(InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tF51B7F09080F58F478531DF63F041E6EF203919A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5E5399EDC5D9971D1FC278B8ACE86D53AA90C12E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t150DB02BD605FBB0067825880F0190A27CD8E373 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5E5399EDC5D9971D1FC278B8ACE86D53AA90C12E(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m96FE2C7B1169A165EC4F4EE9EC0324FD7D5BA1B7_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m96FE2C7B1169A165EC4F4EE9EC0324FD7D5BA1B7_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *>(__this + _offset);
InternalEnumerator_1__ctor_m96FE2C7B1169A165EC4F4EE9EC0324FD7D5BA1B7(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m87D8DF9B492674BFA8C24E3E5DF6B121BE8C876D_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m87D8DF9B492674BFA8C24E3E5DF6B121BE8C876D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *>(__this + _offset);
InternalEnumerator_1_Dispose_m87D8DF9B492674BFA8C24E3E5DF6B121BE8C876D(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m8928697385AE3C047474EBA814D0F9AE2F885E88_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m8928697385AE3C047474EBA814D0F9AE2F885E88_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m8928697385AE3C047474EBA814D0F9AE2F885E88(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A L_8 = (( Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A )L_8;
}
}
IL2CPP_EXTERN_C Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA5520C23C166CBCBB22DD62587BFBFAD889CDA20_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA5520C23C166CBCBB22DD62587BFBFAD889CDA20_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA5520C23C166CBCBB22DD62587BFBFAD889CDA20(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0B2843D2614A5F709027418873DE1B2508990364_gshared (InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * __this, const RuntimeMethod* method)
{
{
Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A L_0 = InternalEnumerator_1_get_Current_m2639DBABE1E5DC74492E52CDABE4C0BF507601B8((InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *)(InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tE42D5858AA990A1849E5F512D11218CEE3C91B1A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0B2843D2614A5F709027418873DE1B2508990364_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE13C80E59057399A312A81A5221D9307E7EBB0B5 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0B2843D2614A5F709027418873DE1B2508990364(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + _offset);
InternalEnumerator_1__ctor_m1593CE384E20D884D915D8C63DB0063790B3A618(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + _offset);
InternalEnumerator_1_Dispose_m4836500B7FEA20ACA83183ECBE1D467826FCE670(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m48BA3A9AC0BA051915D58DFCA32B1AA5C09DE957(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_8 = (( Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA )L_8;
}
}
IL2CPP_EXTERN_C Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + _offset);
return InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m9C6C41648ADC7B60E8AF51190EEA7BAA8FA93241(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA_gshared (InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * __this, const RuntimeMethod* method)
{
{
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_0 = InternalEnumerator_1_get_Current_mC2EC065F63466F7E6AD6C9AE9BC86A3B0CF0E07A((InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *)(InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7FA630CCED20A6761747E42B8146CC87AAEA4D0A *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1536DF98255D34522AB9DC5D47835095718FF3DA(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + _offset);
InternalEnumerator_1__ctor_m41F1B4440445674E22696F369E1BE49F6B8B7325(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + _offset);
InternalEnumerator_1_Dispose_mEEFF36A65ACDF8534CC4A049CF142B6757C1BC98(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m1CCFAA43E5AEFCE61B8B581971072C0CE3D847C7(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_8 = (( Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D )L_8;
}
}
IL2CPP_EXTERN_C Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + _offset);
return InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m07F10BD620954A735C3091217347BBD9B523B1CB(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959_gshared (InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * __this, const RuntimeMethod* method)
{
{
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_0 = InternalEnumerator_1_get_Current_m3B5BD0D9A3A2B90B762F783677926F8ED30B67C1((InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *)(InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t643EC2EA2BC458AEB6722E02F1FA22FE544C13AA *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2A449599FC893C43B822B70233F3E79FD26F6959(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m6BB6F5CDDCB8C65CC693A1F960D6538AC2220747_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m6BB6F5CDDCB8C65CC693A1F960D6538AC2220747_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *>(__this + _offset);
InternalEnumerator_1__ctor_m6BB6F5CDDCB8C65CC693A1F960D6538AC2220747(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m714A678E7305C88F13C24F2D84A4730CC9F3A200_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m714A678E7305C88F13C24F2D84A4730CC9F3A200_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *>(__this + _offset);
InternalEnumerator_1_Dispose_m714A678E7305C88F13C24F2D84A4730CC9F3A200(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mAAC036E1467608366AB7082B9294B2D240CF39F2_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mAAC036E1467608366AB7082B9294B2D240CF39F2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mAAC036E1467608366AB7082B9294B2D240CF39F2(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 L_8 = (( Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *>(__this + _offset);
return InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5A4B93316D6A4C5690A58FB8CD9CF7B8DF04FD71_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5A4B93316D6A4C5690A58FB8CD9CF7B8DF04FD71_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5A4B93316D6A4C5690A58FB8CD9CF7B8DF04FD71(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF369470521E89C5B71FEC28F4E96BB3826288DB8_gshared (InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * __this, const RuntimeMethod* method)
{
{
Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 L_0 = InternalEnumerator_1_get_Current_m1EA4ACB666F9094CE513C4EBDFCDCB62B5B790B6((InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *)(InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF369470521E89C5B71FEC28F4E96BB3826288DB8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5BBF2C7F5B82ABB4C96DB5E73621AAB2F7E68F6D *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF369470521E89C5B71FEC28F4E96BB3826288DB8(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m45E8521467D65FE117A535B09D648B4C0ABFACC4_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m45E8521467D65FE117A535B09D648B4C0ABFACC4_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *>(__this + _offset);
InternalEnumerator_1__ctor_m45E8521467D65FE117A535B09D648B4C0ABFACC4(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m91F67742D3348DC2DB8E6A16997AD6588670E308_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m91F67742D3348DC2DB8E6A16997AD6588670E308_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *>(__this + _offset);
InternalEnumerator_1_Dispose_m91F67742D3348DC2DB8E6A16997AD6588670E308(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3302BC7572764DF09C38DB71CD9A2129D0C314F0_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m3302BC7572764DF09C38DB71CD9A2129D0C314F0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m3302BC7572764DF09C38DB71CD9A2129D0C314F0(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC L_8 = (( Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC )L_8;
}
}
IL2CPP_EXTERN_C Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8DA85917C0C7EB05A18258A9623D557417C691DA_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8DA85917C0C7EB05A18258A9623D557417C691DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8DA85917C0C7EB05A18258A9623D557417C691DA(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m42C9B8DC50E5E3BD8EB0F5C16002105B82BC5CAA_gshared (InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * __this, const RuntimeMethod* method)
{
{
Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC L_0 = InternalEnumerator_1_get_Current_m346AB7C6AA68D82040900F92E0216F954D2EAAFA((InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *)(InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tD8AF12B7F463E5CBC581B15ACCEB552F4FF108CC L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m42C9B8DC50E5E3BD8EB0F5C16002105B82BC5CAA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t025D2AA1D0D227AD94FD3139DA05E66AAB077465 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m42C9B8DC50E5E3BD8EB0F5C16002105B82BC5CAA(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m20CA3C139E3843C94EFDEE347035BEBC3E2987F6_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m20CA3C139E3843C94EFDEE347035BEBC3E2987F6_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *>(__this + _offset);
InternalEnumerator_1__ctor_m20CA3C139E3843C94EFDEE347035BEBC3E2987F6(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m96B9A902D2E998CD80C72609435CA317B59AE58F_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m96B9A902D2E998CD80C72609435CA317B59AE58F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *>(__this + _offset);
InternalEnumerator_1_Dispose_m96B9A902D2E998CD80C72609435CA317B59AE58F(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m7308D935728624BFD7F75DFA3F2DBBF01CFBE1DF_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m7308D935728624BFD7F75DFA3F2DBBF01CFBE1DF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m7308D935728624BFD7F75DFA3F2DBBF01CFBE1DF(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0 InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0 L_8 = (( Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0 )L_8;
}
}
IL2CPP_EXTERN_C Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0 InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m17B2B992F2A526EE18296AE9667A9A29E441D7A2_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m17B2B992F2A526EE18296AE9667A9A29E441D7A2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m17B2B992F2A526EE18296AE9667A9A29E441D7A2(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6D7E05A39879227E197139B6D7EF7D0AE451F7A_gshared (InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * __this, const RuntimeMethod* method)
{
{
Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0 L_0 = InternalEnumerator_1_get_Current_m1A9340FBA3D26C6C05DF99D54FC7B58B8A3EA2D9((InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *)(InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tFC8C2856D4004F36B3EDA923F015180D9558D1B0 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6D7E05A39879227E197139B6D7EF7D0AE451F7A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1AE00E9D487B6C65B84B3B3322BBA05B90E9AB75 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD6D7E05A39879227E197139B6D7EF7D0AE451F7A(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4A691DD3AA4D27D9FD63839C14DDF87952FDE13C_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m4A691DD3AA4D27D9FD63839C14DDF87952FDE13C_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *>(__this + _offset);
InternalEnumerator_1__ctor_m4A691DD3AA4D27D9FD63839C14DDF87952FDE13C(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m9DD09DE80AD9259BF283BAD879C9B60368730688_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m9DD09DE80AD9259BF283BAD879C9B60368730688_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *>(__this + _offset);
InternalEnumerator_1_Dispose_m9DD09DE80AD9259BF283BAD879C9B60368730688(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m594165273C51562F95EBED212DC436414A7E207D_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m594165273C51562F95EBED212DC436414A7E207D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m594165273C51562F95EBED212DC436414A7E207D(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD L_8 = (( Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD )L_8;
}
}
IL2CPP_EXTERN_C Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mFBDD2EAA7C145AC075F33B51B592789D564848CD_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mFBDD2EAA7C145AC075F33B51B592789D564848CD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mFBDD2EAA7C145AC075F33B51B592789D564848CD(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC06D49DC291E7794E3F12364D6E1E42884267540_gshared (InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * __this, const RuntimeMethod* method)
{
{
Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD L_0 = InternalEnumerator_1_get_Current_mDC4695E9923274F35C1B5F37254CD90153FA9E55((InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *)(InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t20A0C052D5594204C201F1B65BAEFA6A9BFD7ECD L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC06D49DC291E7794E3F12364D6E1E42884267540_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB1405953A3488A9EE966F221CDA118F9EC284AB7 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC06D49DC291E7794E3F12364D6E1E42884267540(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m73106340E08CAE63B324474704721BBD89281BA5_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m73106340E08CAE63B324474704721BBD89281BA5_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *>(__this + _offset);
InternalEnumerator_1__ctor_m73106340E08CAE63B324474704721BBD89281BA5(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m5D5D41090FC129D974DD6B5C0722CB4FA5BDFAC3_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m5D5D41090FC129D974DD6B5C0722CB4FA5BDFAC3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *>(__this + _offset);
InternalEnumerator_1_Dispose_m5D5D41090FC129D974DD6B5C0722CB4FA5BDFAC3(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB87F6FD0CA38AB5B2EBF1943E4EB1B2F1D6708CC_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mB87F6FD0CA38AB5B2EBF1943E4EB1B2F1D6708CC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mB87F6FD0CA38AB5B2EBF1943E4EB1B2F1D6708CC(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0 InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0 L_8 = (( Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0 InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m023EAC318526C49937D0F6C0D656304D5311B5FC_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m023EAC318526C49937D0F6C0D656304D5311B5FC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m023EAC318526C49937D0F6C0D656304D5311B5FC(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5AEF6DDC046F26DBC4DC683AF7B6088DE8C26285_gshared (InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * __this, const RuntimeMethod* method)
{
{
Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0 L_0 = InternalEnumerator_1_get_Current_mC731E1C2EB7009746CDFFFBA8995BECBEE1E06DF((InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *)(InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t20E0F1B8E502202A348FF9DA6ED7993A7BEC9CC0 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5AEF6DDC046F26DBC4DC683AF7B6088DE8C26285_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAEA7BF6086534C7D0253E7CF4B83C5A28FAAE732 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5AEF6DDC046F26DBC4DC683AF7B6088DE8C26285(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD4F8481614A1EF5EFD9B9F290B08319CD7A94511_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mD4F8481614A1EF5EFD9B9F290B08319CD7A94511_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *>(__this + _offset);
InternalEnumerator_1__ctor_mD4F8481614A1EF5EFD9B9F290B08319CD7A94511(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m34D106585D679AA1149ADF2B45D18BD060363B45_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m34D106585D679AA1149ADF2B45D18BD060363B45_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *>(__this + _offset);
InternalEnumerator_1_Dispose_m34D106585D679AA1149ADF2B45D18BD060363B45(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m822199EA7A06D343D6BDFCAD4A4494587B1B7029_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m822199EA7A06D343D6BDFCAD4A4494587B1B7029_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m822199EA7A06D343D6BDFCAD4A4494587B1B7029(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 L_8 = (( Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m15E2966B69B022588ACA58F038282B8F104D8816_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m15E2966B69B022588ACA58F038282B8F104D8816_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m15E2966B69B022588ACA58F038282B8F104D8816(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEA6C555AA25714C53B2345F22ECC44A37BD647DB_gshared (InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * __this, const RuntimeMethod* method)
{
{
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 L_0 = InternalEnumerator_1_get_Current_m1BC2A3126E706D1C4102C73501E54C0AAEF1B9B8((InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *)(InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEA6C555AA25714C53B2345F22ECC44A37BD647DB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC5E9CD3FE0A2E84B4033112B9A9E9B59D0BBB745 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEA6C555AA25714C53B2345F22ECC44A37BD647DB(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m0103D7CDA3D3A4A6D3C672BC4D16A495357B7D0E_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m0103D7CDA3D3A4A6D3C672BC4D16A495357B7D0E_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *>(__this + _offset);
InternalEnumerator_1__ctor_m0103D7CDA3D3A4A6D3C672BC4D16A495357B7D0E(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mEF38F3D4C072476E7A3E09BDEFB1505E8F629715_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mEF38F3D4C072476E7A3E09BDEFB1505E8F629715_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *>(__this + _offset);
InternalEnumerator_1_Dispose_mEF38F3D4C072476E7A3E09BDEFB1505E8F629715(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB526D0519B23271BC8DF7CD37CBBAD76D26454D9_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mB526D0519B23271BC8DF7CD37CBBAD76D26454D9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mB526D0519B23271BC8DF7CD37CBBAD76D26454D9(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A L_8 = (( Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A )L_8;
}
}
IL2CPP_EXTERN_C Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C60991D53EF1FEB2E1A41FDBB9FFF2CC5A7BE65_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C60991D53EF1FEB2E1A41FDBB9FFF2CC5A7BE65_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C60991D53EF1FEB2E1A41FDBB9FFF2CC5A7BE65(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAB4493B47C0F2A8E193D2E030A7D44A31C9A023A_gshared (InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * __this, const RuntimeMethod* method)
{
{
Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A L_0 = InternalEnumerator_1_get_Current_m5EA324F47D49987B2A0B78E4803FC4848A025116((InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *)(InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAB4493B47C0F2A8E193D2E030A7D44A31C9A023A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDCA699CCE7FDB754EE01FD513DA5951A1A1EC312 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAB4493B47C0F2A8E193D2E030A7D44A31C9A023A(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m92052F02CDD1713BA5D454E3A0EF03BF1AC17A28_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m92052F02CDD1713BA5D454E3A0EF03BF1AC17A28_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *>(__this + _offset);
InternalEnumerator_1__ctor_m92052F02CDD1713BA5D454E3A0EF03BF1AC17A28(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m16B018EECDCAA44D4961E962B209EAEA73D55BFF_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m16B018EECDCAA44D4961E962B209EAEA73D55BFF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *>(__this + _offset);
InternalEnumerator_1_Dispose_m16B018EECDCAA44D4961E962B209EAEA73D55BFF(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m09524D62A8A9A9FD73C5E4CE6FCD18DD713E447C_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m09524D62A8A9A9FD73C5E4CE6FCD18DD713E447C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m09524D62A8A9A9FD73C5E4CE6FCD18DD713E447C(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4 InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4 L_8 = (( Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4 )L_8;
}
}
IL2CPP_EXTERN_C Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4 InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *>(__this + _offset);
return InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8F3D89C236E4BACB36A705E43FDEAB5905284DA7_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8F3D89C236E4BACB36A705E43FDEAB5905284DA7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8F3D89C236E4BACB36A705E43FDEAB5905284DA7(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m86CC35FE25C926AD8343E56A7F6524E7781DDE54_gshared (InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * __this, const RuntimeMethod* method)
{
{
Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4 L_0 = InternalEnumerator_1_get_Current_m25ECA7981A199567F12E61B6199EA58593D72F95((InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *)(InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_tE5C60076959A34ABAD23DD0EBE39FA6F67D28AE4 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m86CC35FE25C926AD8343E56A7F6524E7781DDE54_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB30C10620C5620B8F3BB36568AE566679CC3A4D *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m86CC35FE25C926AD8343E56A7F6524E7781DDE54(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m10F4A7CD2C5D2336DE7ABBA04102C73CEEE2D45C_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m10F4A7CD2C5D2336DE7ABBA04102C73CEEE2D45C_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *>(__this + _offset);
InternalEnumerator_1__ctor_m10F4A7CD2C5D2336DE7ABBA04102C73CEEE2D45C(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mB977307291EBF63D064051F62362208AEDDBE207_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mB977307291EBF63D064051F62362208AEDDBE207_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *>(__this + _offset);
InternalEnumerator_1_Dispose_mB977307291EBF63D064051F62362208AEDDBE207(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB5BAF81FA6FBC7536A5B81B3F38A157340BC6A75_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mB5BAF81FA6FBC7536A5B81B3F38A157340BC6A75_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mB5BAF81FA6FBC7536A5B81B3F38A157340BC6A75(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 L_8 = (( Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m33B74EDF3686DB576532CE69E6F4EBBDA4591C04_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m33B74EDF3686DB576532CE69E6F4EBBDA4591C04_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m33B74EDF3686DB576532CE69E6F4EBBDA4591C04(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9AED6C3DD8919BFEE636356A2C5F2567D45D8AB5_gshared (InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * __this, const RuntimeMethod* method)
{
{
Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 L_0 = InternalEnumerator_1_get_Current_m7E2BAB12125E6DE25841DB9FF3CBE959F32EEC3E((InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *)(InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t97AD9849BE71CC7ACA98F7C847538E6B2D5F1FF4 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9AED6C3DD8919BFEE636356A2C5F2567D45D8AB5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t9585D1A09EF3681804CD6E5AFB5E60DF204C1B21 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9AED6C3DD8919BFEE636356A2C5F2567D45D8AB5(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m52420D32E44C8FE3169D87F7912BA3A667D1FA57_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m52420D32E44C8FE3169D87F7912BA3A667D1FA57_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *>(__this + _offset);
InternalEnumerator_1__ctor_m52420D32E44C8FE3169D87F7912BA3A667D1FA57(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m9DB21D5ED9D7A2454433729114E9CAA062D17755_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m9DB21D5ED9D7A2454433729114E9CAA062D17755_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *>(__this + _offset);
InternalEnumerator_1_Dispose_m9DB21D5ED9D7A2454433729114E9CAA062D17755(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mD6DE171DE511FFCA1BABA58B0E66DA78FB9E957D_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mD6DE171DE511FFCA1BABA58B0E66DA78FB9E957D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mD6DE171DE511FFCA1BABA58B0E66DA78FB9E957D(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9 InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9 L_8 = (( Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9 InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *>(__this + _offset);
return InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m08A842237EA7A9D7E0B490465CCB49EB5BFB6B0F_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m08A842237EA7A9D7E0B490465CCB49EB5BFB6B0F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m08A842237EA7A9D7E0B490465CCB49EB5BFB6B0F(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m36FE87AC2E93823C9E3D5A8C250021323DEF4993_gshared (InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * __this, const RuntimeMethod* method)
{
{
Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9 L_0 = InternalEnumerator_1_get_Current_m50BBA39929C73768CEED12EFBC8C33984674D768((InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *)(InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t44FDBD4F51674781C44BCC75D1A6213C7475DFF9 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m36FE87AC2E93823C9E3D5A8C250021323DEF4993_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8174707C38D00B9345B7D9EB60180C296C08768F *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m36FE87AC2E93823C9E3D5A8C250021323DEF4993(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m51CB54B77BEBEE4A09DE14A89D01E48019F8F261_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m51CB54B77BEBEE4A09DE14A89D01E48019F8F261_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *>(__this + _offset);
InternalEnumerator_1__ctor_m51CB54B77BEBEE4A09DE14A89D01E48019F8F261(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mEC5F88E3A22D819068F448FF3FF07BA7BDDEA102_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mEC5F88E3A22D819068F448FF3FF07BA7BDDEA102_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *>(__this + _offset);
InternalEnumerator_1_Dispose_mEC5F88E3A22D819068F448FF3FF07BA7BDDEA102(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mE8FCA5F36500EB1C53DC2A8634D4B5BF489A04B5_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mE8FCA5F36500EB1C53DC2A8634D4B5BF489A04B5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mE8FCA5F36500EB1C53DC2A8634D4B5BF489A04B5(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13 InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13 L_8 = (( Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13 InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m004698226B43FDB60AA1980B8B0C128F9D05654D_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m004698226B43FDB60AA1980B8B0C128F9D05654D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m004698226B43FDB60AA1980B8B0C128F9D05654D(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB722E6B73F554403093FB14621C4179B4381F86A_gshared (InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * __this, const RuntimeMethod* method)
{
{
Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13 L_0 = InternalEnumerator_1_get_Current_mAC9AA75415D3361C450025CB5FD8BF2B5241EA5D((InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *)(InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t069873357D95A6C8FD21C1619E3DD3D5D2CB9C13 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB722E6B73F554403093FB14621C4179B4381F86A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC072EDCC072D4103614544EC6C7A5AB348676AD2 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB722E6B73F554403093FB14621C4179B4381F86A(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m058B0F910742AC81841D4244F051C37E90AFA13B_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m058B0F910742AC81841D4244F051C37E90AFA13B_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *>(__this + _offset);
InternalEnumerator_1__ctor_m058B0F910742AC81841D4244F051C37E90AFA13B(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDD4212B0B5CCD768A864FE139655B29D6D401CB8_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mDD4212B0B5CCD768A864FE139655B29D6D401CB8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *>(__this + _offset);
InternalEnumerator_1_Dispose_mDD4212B0B5CCD768A864FE139655B29D6D401CB8(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mBF3FD0B161D26CCBDCE8413399970EFA497C105E_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mBF3FD0B161D26CCBDCE8413399970EFA497C105E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mBF3FD0B161D26CCBDCE8413399970EFA497C105E(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF L_8 = (( Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF )L_8;
}
}
IL2CPP_EXTERN_C Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD0C4332170305A58369DD4E7588E033413848600_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD0C4332170305A58369DD4E7588E033413848600_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mD0C4332170305A58369DD4E7588E033413848600(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m839ABABD77A829157EEA8FF46AD498E1764949AA_gshared (InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * __this, const RuntimeMethod* method)
{
{
Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF L_0 = InternalEnumerator_1_get_Current_m310233B60DE3BD88F171C6724F7CF24DD9ED0C3D((InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *)(InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t20C15D00AB714A5A6D8E4FA7A0BB3D47C637C6BF L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m839ABABD77A829157EEA8FF46AD498E1764949AA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t5248981C3816762DA2492788052E8A0B8BF47E57 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m839ABABD77A829157EEA8FF46AD498E1764949AA(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m6EF951D96333E03CA307790DA5695F40FF277941_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m6EF951D96333E03CA307790DA5695F40FF277941_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *>(__this + _offset);
InternalEnumerator_1__ctor_m6EF951D96333E03CA307790DA5695F40FF277941(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mAB312652A28D3BA9EE37F9E48FCD941DFFBB8AB7_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mAB312652A28D3BA9EE37F9E48FCD941DFFBB8AB7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *>(__this + _offset);
InternalEnumerator_1_Dispose_mAB312652A28D3BA9EE37F9E48FCD941DFFBB8AB7(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mA63D061CE3357C1C60D76652E4AA602F413C0D15_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mA63D061CE3357C1C60D76652E4AA602F413C0D15_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mA63D061CE3357C1C60D76652E4AA602F413C0D15(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t687188C87EF1FD0D50038E634676DBC449857B8E InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t687188C87EF1FD0D50038E634676DBC449857B8E L_8 = (( Entry_t687188C87EF1FD0D50038E634676DBC449857B8E (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t687188C87EF1FD0D50038E634676DBC449857B8E )L_8;
}
}
IL2CPP_EXTERN_C Entry_t687188C87EF1FD0D50038E634676DBC449857B8E InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C887FAABA9081A6E9871321B2E6A17CC1282258_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C887FAABA9081A6E9871321B2E6A17CC1282258_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1C887FAABA9081A6E9871321B2E6A17CC1282258(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m503FB8641FCBD3CD042133F985119D52AD2BED93_gshared (InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * __this, const RuntimeMethod* method)
{
{
Entry_t687188C87EF1FD0D50038E634676DBC449857B8E L_0 = InternalEnumerator_1_get_Current_m20D13C24A376EE22748E29771D4F5EE226A28C72((InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *)(InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t687188C87EF1FD0D50038E634676DBC449857B8E L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m503FB8641FCBD3CD042133F985119D52AD2BED93_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF19656A8EB6221B4D2BF82422FCE0C5C57B592E8 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m503FB8641FCBD3CD042133F985119D52AD2BED93(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD582E12EAE3CEAA09842A51A88260B0D4CCBF61B_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mD582E12EAE3CEAA09842A51A88260B0D4CCBF61B_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *>(__this + _offset);
InternalEnumerator_1__ctor_mD582E12EAE3CEAA09842A51A88260B0D4CCBF61B(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m09BAA0DAE4042E769A9FE04F3573DE2A87946B9D_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m09BAA0DAE4042E769A9FE04F3573DE2A87946B9D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *>(__this + _offset);
InternalEnumerator_1_Dispose_m09BAA0DAE4042E769A9FE04F3573DE2A87946B9D(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m6D94D52D39EE040C8F7E6CE8A97DE45C15E343D5_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m6D94D52D39EE040C8F7E6CE8A97DE45C15E343D5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m6D94D52D39EE040C8F7E6CE8A97DE45C15E343D5(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E L_8 = (( Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E )L_8;
}
}
IL2CPP_EXTERN_C Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *>(__this + _offset);
return InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m809209CB43E94A71CE8F587DE0F486FB1A06A08F_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m809209CB43E94A71CE8F587DE0F486FB1A06A08F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m809209CB43E94A71CE8F587DE0F486FB1A06A08F(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBB78EA589D8F8827DB6E6CB5AC547BC25C4AADED_gshared (InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * __this, const RuntimeMethod* method)
{
{
Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E L_0 = InternalEnumerator_1_get_Current_m8D01F938268C571097F549632EC8AF75769EEE38((InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *)(InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBB78EA589D8F8827DB6E6CB5AC547BC25C4AADED_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0BABF4D5C58493D8DBD6E1C19BC7A09AB0A83F0A *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBB78EA589D8F8827DB6E6CB5AC547BC25C4AADED(_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.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m7237DE486BADDDEE86670C29DCEF6757C2A0096A_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m7237DE486BADDDEE86670C29DCEF6757C2A0096A_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *>(__this + _offset);
InternalEnumerator_1__ctor_m7237DE486BADDDEE86670C29DCEF6757C2A0096A(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mB2192E238E2F267EE36038B64120D7C523F31F45_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mB2192E238E2F267EE36038B64120D7C523F31F45_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *>(__this + _offset);
InternalEnumerator_1_Dispose_mB2192E238E2F267EE36038B64120D7C523F31F45(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mF74F14D38F9F49414D8B8C4ADD0BA44F2C6F3270_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mF74F14D38F9F49414D8B8C4ADD0BA44F2C6F3270_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mF74F14D38F9F49414D8B8C4ADD0BA44F2C6F3270(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 L_8 = (( Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 )L_8;
}
}
IL2CPP_EXTERN_C Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m176CA0C9E12BF25CC3766C5D12A55B88347AD5F0_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m176CA0C9E12BF25CC3766C5D12A55B88347AD5F0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m176CA0C9E12BF25CC3766C5D12A55B88347AD5F0(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA9A364A356C2C1E4990561CA11E575D101CB1DDF_gshared (InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * __this, const RuntimeMethod* method)
{
{
Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 L_0 = InternalEnumerator_1_get_Current_mF06353EB96FFB5B835D4B1DFBBFC318CF0FFC3B7((InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *)(InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA9A364A356C2C1E4990561CA11E575D101CB1DDF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCFC66AF529966DF0BFFD537E44DC80571E79FB77 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA9A364A356C2C1E4990561CA11E575D101CB1DDF(_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.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mAD5E03A8CC9EBF6E74FA8EB4ED3B4B7483320EF7_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mAD5E03A8CC9EBF6E74FA8EB4ED3B4B7483320EF7_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *>(__this + _offset);
InternalEnumerator_1__ctor_mAD5E03A8CC9EBF6E74FA8EB4ED3B4B7483320EF7(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m064C8AF3B504CE7F9718715EAC7C1FA54529C92F_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m064C8AF3B504CE7F9718715EAC7C1FA54529C92F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *>(__this + _offset);
InternalEnumerator_1_Dispose_m064C8AF3B504CE7F9718715EAC7C1FA54529C92F(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mE1DBF8C46BFE4364FD9E56B66E0A9206B2EB0C47_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mE1DBF8C46BFE4364FD9E56B66E0A9206B2EB0C47_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mE1DBF8C46BFE4364FD9E56B66E0A9206B2EB0C47(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 L_8 = (( Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 )L_8;
}
}
IL2CPP_EXTERN_C Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *>(__this + _offset);
return InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEECB8E5AE82D0872338B25CE10C4D97F2703D152_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEECB8E5AE82D0872338B25CE10C4D97F2703D152_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mEECB8E5AE82D0872338B25CE10C4D97F2703D152(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF9D89500E09954EBCEEE2CC3FA23A8DE8DBEFB00_gshared (InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * __this, const RuntimeMethod* method)
{
{
Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 L_0 = InternalEnumerator_1_get_Current_m5D345E516C9789A2519BA77D38688298BC991C81((InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *)(InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF9D89500E09954EBCEEE2CC3FA23A8DE8DBEFB00_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3E46A16EEFC178EC7A9414BAEF375400A2C76AEB *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF9D89500E09954EBCEEE2CC3FA23A8DE8DBEFB00(_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.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2047B6F070C9C5C4D9EF6147976F1ED4E28AF602_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m2047B6F070C9C5C4D9EF6147976F1ED4E28AF602_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *>(__this + _offset);
InternalEnumerator_1__ctor_m2047B6F070C9C5C4D9EF6147976F1ED4E28AF602(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m08900DA592D66440E18F7945EAD98B17C6C62404_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m08900DA592D66440E18F7945EAD98B17C6C62404_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *>(__this + _offset);
InternalEnumerator_1_Dispose_m08900DA592D66440E18F7945EAD98B17C6C62404(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mB8FCAF454999038E9D103E26E7DE8D471D680DE9_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mB8FCAF454999038E9D103E26E7DE8D471D680DE9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mB8FCAF454999038E9D103E26E7DE8D471D680DE9(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_8 = (( Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 )L_8;
}
}
IL2CPP_EXTERN_C Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m118A29F1EAB9A121242D65B79DCF0199A9640C5B_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m118A29F1EAB9A121242D65B79DCF0199A9640C5B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m118A29F1EAB9A121242D65B79DCF0199A9640C5B(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2370D94B162CCB9AE9DE2667E298F002FBBDDEB7_gshared (InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * __this, const RuntimeMethod* method)
{
{
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_0 = InternalEnumerator_1_get_Current_m219A6F6D4C2AEE8F86D69E8CED72AB8566CECBFA((InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *)(InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2370D94B162CCB9AE9DE2667E298F002FBBDDEB7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tA30651E9F9C6721484813A1FA4836C7CB2EC1B24 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2370D94B162CCB9AE9DE2667E298F002FBBDDEB7(_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.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mEBD4CEE9A2F58EC98111D706BB79E7CEA45A7FB8_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mEBD4CEE9A2F58EC98111D706BB79E7CEA45A7FB8_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *>(__this + _offset);
InternalEnumerator_1__ctor_mEBD4CEE9A2F58EC98111D706BB79E7CEA45A7FB8(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m19FC0C82C4207E5E2041FB7E27EBAB18D8D4A9FA_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m19FC0C82C4207E5E2041FB7E27EBAB18D8D4A9FA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *>(__this + _offset);
InternalEnumerator_1_Dispose_m19FC0C82C4207E5E2041FB7E27EBAB18D8D4A9FA(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4D57C87AAB55A9F9856777CC0F1734146EC7EB58_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m4D57C87AAB55A9F9856777CC0F1734146EC7EB58_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m4D57C87AAB55A9F9856777CC0F1734146EC7EB58(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1 InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1 L_8 = (( Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1 )L_8;
}
}
IL2CPP_EXTERN_C Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1 InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1ECD8842B5F72ABF69E8539D91D9C2427694656B_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1ECD8842B5F72ABF69E8539D91D9C2427694656B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1ECD8842B5F72ABF69E8539D91D9C2427694656B(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9817E0D67E35A184B10AF95B6EF46EC163E90670_gshared (InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * __this, const RuntimeMethod* method)
{
{
Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1 L_0 = InternalEnumerator_1_get_Current_m99B8CA746C92B963861E75C70F5F12A8AEEAC52F((InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *)(InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Slot_tCDCAFF2D40B6BD8C6A00220D77A252D112A6C1E1 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9817E0D67E35A184B10AF95B6EF46EC163E90670_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3054D6071D30B0A01311250A42D9DDD31CC60545 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9817E0D67E35A184B10AF95B6EF46EC163E90670(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mCB8A0B699C8A09B08084A34F5A8B4816BD709ACF_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mCB8A0B699C8A09B08084A34F5A8B4816BD709ACF_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *>(__this + _offset);
InternalEnumerator_1__ctor_mCB8A0B699C8A09B08084A34F5A8B4816BD709ACF(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mE5A2510067803B4094C7B99463F4E0700B458A77_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mE5A2510067803B4094C7B99463F4E0700B458A77_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *>(__this + _offset);
InternalEnumerator_1_Dispose_mE5A2510067803B4094C7B99463F4E0700B458A77(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m848A8186BFFB8DE46073EF782468AF338D9B334D_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m848A8186BFFB8DE46073EF782468AF338D9B334D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m848A8186BFFB8DE46073EF782468AF338D9B334D(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E L_8 = (( KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m46833C1522D4FD7EAF175D8052617F25BB7E8C1E_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m46833C1522D4FD7EAF175D8052617F25BB7E8C1E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m46833C1522D4FD7EAF175D8052617F25BB7E8C1E(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Google.Protobuf.ObjectIntPair`1<System.Object>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m357FD033067DB191E5BA5730B78930CF9F57EFD8_gshared (InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E L_0 = InternalEnumerator_1_get_Current_m47AD76F2285CDCDB2146F640AEFB9932596E951A((InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *)(InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t7DD6C51BD8B952102F9BAF76647891A5E082A21E L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m357FD033067DB191E5BA5730B78930CF9F57EFD8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3012571830B70DAE4C31F8BDB6C188F92A839D67 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m357FD033067DB191E5BA5730B78930CF9F57EFD8(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mFEA9C7C73B2C9DDC9D09D27D4B58231DCFE0BFEC_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mFEA9C7C73B2C9DDC9D09D27D4B58231DCFE0BFEC_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *>(__this + _offset);
InternalEnumerator_1__ctor_mFEA9C7C73B2C9DDC9D09D27D4B58231DCFE0BFEC(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m11B2DFF4C196B995810082C658596B4C15430D73_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m11B2DFF4C196B995810082C658596B4C15430D73_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *>(__this + _offset);
InternalEnumerator_1_Dispose_m11B2DFF4C196B995810082C658596B4C15430D73(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m297E808C120909C00149D540DDA8D05A9E33BA5F_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m297E808C120909C00149D540DDA8D05A9E33BA5F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m297E808C120909C00149D540DDA8D05A9E33BA5F(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 L_8 = (( KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA458B3F09AF75991FE8B3BC660A30202D3DCF3BD_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA458B3F09AF75991FE8B3BC660A30202D3DCF3BD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mA458B3F09AF75991FE8B3BC660A30202D3DCF3BD(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF404799320D20284AD3D79FEB29FAB44F7E4E6F0_gshared (InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 L_0 = InternalEnumerator_1_get_Current_m7742257D2E4F73FAE09D4331218BDE3E813C4484((InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *)(InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF404799320D20284AD3D79FEB29FAB44F7E4E6F0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7E69305ABE657FFC4EE236A976B4B22EBFAB6A30 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF404799320D20284AD3D79FEB29FAB44F7E4E6F0(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mEE2C570D5E7E5426D066B223014819C8AF52C81C_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mEE2C570D5E7E5426D066B223014819C8AF52C81C_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *>(__this + _offset);
InternalEnumerator_1__ctor_mEE2C570D5E7E5426D066B223014819C8AF52C81C(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mF13B6674061D28A1BEC4861C9DEC3C64227EC93D_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mF13B6674061D28A1BEC4861C9DEC3C64227EC93D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *>(__this + _offset);
InternalEnumerator_1_Dispose_mF13B6674061D28A1BEC4861C9DEC3C64227EC93D(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4F549A52CFE9F1740D8C1B6F9560C3F199F4A748_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m4F549A52CFE9F1740D8C1B6F9560C3F199F4A748_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m4F549A52CFE9F1740D8C1B6F9560C3F199F4A748(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_8 = (( KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDCDCABB85F4DCAFD112EBF0FAE0C6961DBFE301D_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDCDCABB85F4DCAFD112EBF0FAE0C6961DBFE301D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDCDCABB85F4DCAFD112EBF0FAE0C6961DBFE301D(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m99CA89EB79E57A9759F9A03DF4D0B26DC43E553A_gshared (InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_0 = InternalEnumerator_1_get_Current_m5C45B04B93E24CF93F54B15DA1E0A4E5FB0D4F77((InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *)(InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m99CA89EB79E57A9759F9A03DF4D0B26DC43E553A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tF5EFF4776DC2AC7A5A6FA97DB973F4DF651913C1 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m99CA89EB79E57A9759F9A03DF4D0B26DC43E553A(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m242214F003D15A119A0C04FFE652998D8FE41522_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m242214F003D15A119A0C04FFE652998D8FE41522_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *>(__this + _offset);
InternalEnumerator_1__ctor_m242214F003D15A119A0C04FFE652998D8FE41522(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m5E91FF0A6E2EF0B84CB4158ECB1F8B4A6455CF23_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m5E91FF0A6E2EF0B84CB4158ECB1F8B4A6455CF23_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *>(__this + _offset);
InternalEnumerator_1_Dispose_m5E91FF0A6E2EF0B84CB4158ECB1F8B4A6455CF23(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mE4B207058D201EB5E54D576C57360ED5A09C2BE8_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mE4B207058D201EB5E54D576C57360ED5A09C2BE8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mE4B207058D201EB5E54D576C57360ED5A09C2BE8(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_8 = (( KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF9EE0D0E138FD359A2F13C49636ACD60C723415C_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF9EE0D0E138FD359A2F13C49636ACD60C723415C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF9EE0D0E138FD359A2F13C49636ACD60C723415C(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43DAB8F8C87A0B6E511C39045473A42294BE62CA_gshared (InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_0 = InternalEnumerator_1_get_Current_m0577F355E2082ACD4D2A5281A5D618D2BAEB018C((InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *)(InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43DAB8F8C87A0B6E511C39045473A42294BE62CA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t7CAF00E6D268359FA5CDD6B530F0E32987FF3550 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43DAB8F8C87A0B6E511C39045473A42294BE62CA(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mEEC77A7A391052F1B4D8FB1B6724FEA36735B77A_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mEEC77A7A391052F1B4D8FB1B6724FEA36735B77A_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *>(__this + _offset);
InternalEnumerator_1__ctor_mEEC77A7A391052F1B4D8FB1B6724FEA36735B77A(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m6B855E2E119047456064F5D14AB9C6E1AA2AFDB2_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m6B855E2E119047456064F5D14AB9C6E1AA2AFDB2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *>(__this + _offset);
InternalEnumerator_1_Dispose_m6B855E2E119047456064F5D14AB9C6E1AA2AFDB2(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mBAEEF92AC7553F9AC8440EA7DD7D2FCA9465B147_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mBAEEF92AC7553F9AC8440EA7DD7D2FCA9465B147_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mBAEEF92AC7553F9AC8440EA7DD7D2FCA9465B147(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 L_8 = (( KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *>(__this + _offset);
return InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCBA017C2D6C1AF8C2085728EAB8EF71EF9D678FC_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCBA017C2D6C1AF8C2085728EAB8EF71EF9D678FC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCBA017C2D6C1AF8C2085728EAB8EF71EF9D678FC(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA49E227587722A256A55E35672CD9AD099FD355D_gshared (InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 L_0 = InternalEnumerator_1_get_Current_m54C61A271B737CE44FC15F1F853752D1C87794AA((InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *)(InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA49E227587722A256A55E35672CD9AD099FD355D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAC253539ABDD2198645039A81712A228260468DC *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA49E227587722A256A55E35672CD9AD099FD355D(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m47E5478185ECA95D5B359F4E374FB6BC7580B7CD_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m47E5478185ECA95D5B359F4E374FB6BC7580B7CD_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *>(__this + _offset);
InternalEnumerator_1__ctor_m47E5478185ECA95D5B359F4E374FB6BC7580B7CD(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m8C478844CA47A9A869EA647394540050CD797AED_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m8C478844CA47A9A869EA647394540050CD797AED_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *>(__this + _offset);
InternalEnumerator_1_Dispose_m8C478844CA47A9A869EA647394540050CD797AED(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m0F22661617905FDB79D39E81504B564BD039DEFA_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m0F22661617905FDB79D39E81504B564BD039DEFA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m0F22661617905FDB79D39E81504B564BD039DEFA(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F L_8 = (( KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *>(__this + _offset);
return InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51098193F944467F3F3A17AE9BF51601F8E52850_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51098193F944467F3F3A17AE9BF51601F8E52850_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m51098193F944467F3F3A17AE9BF51601F8E52850(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0D6EA9CE98BE54884ADF85404EA27B5366877105_gshared (InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F L_0 = InternalEnumerator_1_get_Current_m75FA6BC4AF3D648D1CC38B131B58F5CF0ED3C9DA((InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *)(InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0D6EA9CE98BE54884ADF85404EA27B5366877105_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t86B8FA8A2403F2B19AACCA52B12478C95C0EB16A *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0D6EA9CE98BE54884ADF85404EA27B5366877105(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mE72C6395AF330F2DAFF86FB44EEA80F0B3A3BE71_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mE72C6395AF330F2DAFF86FB44EEA80F0B3A3BE71_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *>(__this + _offset);
InternalEnumerator_1__ctor_mE72C6395AF330F2DAFF86FB44EEA80F0B3A3BE71(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m814B367F8439B0425B556138E9C13C518435E351_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m814B367F8439B0425B556138E9C13C518435E351_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *>(__this + _offset);
InternalEnumerator_1_Dispose_m814B367F8439B0425B556138E9C13C518435E351(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m8872DB84A56252FF08BD9046F35E40B95242E50E_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m8872DB84A56252FF08BD9046F35E40B95242E50E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m8872DB84A56252FF08BD9046F35E40B95242E50E(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_8 = (( KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *>(__this + _offset);
return InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5202FAF2B575D33B7C74AA50F16B0F6E06551D12_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5202FAF2B575D33B7C74AA50F16B0F6E06551D12_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m5202FAF2B575D33B7C74AA50F16B0F6E06551D12(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m73658604098C702B91C4EEB75AD4572F9C413ADF_gshared (InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_0 = InternalEnumerator_1_get_Current_m3A2885427EB16CC4429BF0F96A63CC1BF495FA16((InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *)(InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m73658604098C702B91C4EEB75AD4572F9C413ADF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t8D1D04861C51F261F970FE452799DA77CB09F39E *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m73658604098C702B91C4EEB75AD4572F9C413ADF(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mB775C69D46D10BFD6FF078F4B087CA8C86315497_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mB775C69D46D10BFD6FF078F4B087CA8C86315497_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *>(__this + _offset);
InternalEnumerator_1__ctor_mB775C69D46D10BFD6FF078F4B087CA8C86315497(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m8B23EA278F37E6A764B7DCA2CECA1102FE80BFB7_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m8B23EA278F37E6A764B7DCA2CECA1102FE80BFB7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *>(__this + _offset);
InternalEnumerator_1_Dispose_m8B23EA278F37E6A764B7DCA2CECA1102FE80BFB7(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mDED3B9A532F20407B4E8E57E4B50F6589E0248EA_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mDED3B9A532F20407B4E8E57E4B50F6589E0248EA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mDED3B9A532F20407B4E8E57E4B50F6589E0248EA(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 L_8 = (( KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB381578FC4A10DFA5F1E074F93E2150CDD2D9F_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB381578FC4A10DFA5F1E074F93E2150CDD2D9F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6CB381578FC4A10DFA5F1E074F93E2150CDD2D9F(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0CEBB9BEC81DA6756FF72F5CA2447B4645A41FA3_gshared (InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 L_0 = InternalEnumerator_1_get_Current_mDF7208A9BAE06EFE14D308D482DF7B4E7448F6C4((InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *)(InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0CEBB9BEC81DA6756FF72F5CA2447B4645A41FA3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t0AEFE9EC70E418DDCB365376A5E1B1585E516635 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0CEBB9BEC81DA6756FF72F5CA2447B4645A41FA3(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m61F868D64FD5C0E79726859694754B78C3A12F13_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m61F868D64FD5C0E79726859694754B78C3A12F13_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *>(__this + _offset);
InternalEnumerator_1__ctor_m61F868D64FD5C0E79726859694754B78C3A12F13(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m1BF7479D1C81DB164169EA2E67489072EFAEDB8D_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m1BF7479D1C81DB164169EA2E67489072EFAEDB8D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *>(__this + _offset);
InternalEnumerator_1_Dispose_m1BF7479D1C81DB164169EA2E67489072EFAEDB8D(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m70A36FB83C5C0D46465928D98C613AC06DC4555F_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m70A36FB83C5C0D46465928D98C613AC06DC4555F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m70A36FB83C5C0D46465928D98C613AC06DC4555F(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE L_8 = (( KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *>(__this + _offset);
return InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m19A49279822B4D3317DE80D741A23A1FFBC4AA8D_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m19A49279822B4D3317DE80D741A23A1FFBC4AA8D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m19A49279822B4D3317DE80D741A23A1FFBC4AA8D(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF99F2E94E6B96C25D18AD365535F6596F6A8976D_gshared (InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE L_0 = InternalEnumerator_1_get_Current_mB446FB579A0D2052E3021D345FBA2E7BD1E2D8E7((InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *)(InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF99F2E94E6B96C25D18AD365535F6596F6A8976D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAA3F6981EE42DE1B1FBA5F55188E4EFC2269BEDA *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF99F2E94E6B96C25D18AD365535F6596F6A8976D(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD0A8DC203B7CE22AB0EBD2BBCCB87FAA5CDB08DE_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mD0A8DC203B7CE22AB0EBD2BBCCB87FAA5CDB08DE_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *>(__this + _offset);
InternalEnumerator_1__ctor_mD0A8DC203B7CE22AB0EBD2BBCCB87FAA5CDB08DE(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mD9625E1AFEC205D378A2F4E4C5734856B3FA4660_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mD9625E1AFEC205D378A2F4E4C5734856B3FA4660_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *>(__this + _offset);
InternalEnumerator_1_Dispose_mD9625E1AFEC205D378A2F4E4C5734856B3FA4660(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mEDEDC36713F335B3E121A6543C7F388DF3E12597_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mEDEDC36713F335B3E121A6543C7F388DF3E12597_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mEDEDC36713F335B3E121A6543C7F388DF3E12597(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1 InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1 L_8 = (( KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1 InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *>(__this + _offset);
return InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDE02F23A05EDB3520D5E0B9A4DA4393D41AC244B_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDE02F23A05EDB3520D5E0B9A4DA4393D41AC244B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDE02F23A05EDB3520D5E0B9A4DA4393D41AC244B(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Unity.MLAgents.Actuators.ActionBuffers>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2F6C95B5D7F0E37051E0DFC10CDCA003A82C2E3E_gshared (InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1 L_0 = InternalEnumerator_1_get_Current_m564FEB29FA381DEF423189E6CFC4386C970B97F1((InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *)(InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t76EEB30899E89BD91CAA1AB88E55CA8398182BD1 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2F6C95B5D7F0E37051E0DFC10CDCA003A82C2E3E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t244488B68AA866D990C45618F99412244803D4AC *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2F6C95B5D7F0E37051E0DFC10CDCA003A82C2E3E(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m9D656D89B537594888859250FCBB48A9328D0EFD_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m9D656D89B537594888859250FCBB48A9328D0EFD_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *>(__this + _offset);
InternalEnumerator_1__ctor_m9D656D89B537594888859250FCBB48A9328D0EFD(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mBB6A6CCD5E5F93ADF79827F6A45B629646F4B479_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mBB6A6CCD5E5F93ADF79827F6A45B629646F4B479_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *>(__this + _offset);
InternalEnumerator_1_Dispose_mBB6A6CCD5E5F93ADF79827F6A45B629646F4B479(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mCB9472F33153AD8B7DA41FAF4B07F943D4F12E7D_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mCB9472F33153AD8B7DA41FAF4B07F943D4F12E7D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mCB9472F33153AD8B7DA41FAF4B07F943D4F12E7D(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 L_8 = (( KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE26AFD180126EFC408CAD0D2927BA46999AAC944_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE26AFD180126EFC408CAD0D2927BA46999AAC944_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mE26AFD180126EFC408CAD0D2927BA46999AAC944(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3956F4C967305135B3B373A5129A561211FCB1AE_gshared (InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 L_0 = InternalEnumerator_1_get_Current_mADEBA0BBC720584F91F317AC58BD68092D28A849((InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *)(InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t772B01893CFD2BCA7256C787332FA87EADDA0B04 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3956F4C967305135B3B373A5129A561211FCB1AE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tDE1B1C6AE26EA65D66670A1788E3527D57754DC3 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3956F4C967305135B3B373A5129A561211FCB1AE(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m5501634A3EF42D4CDB91A24F9184B0E436071D21_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m5501634A3EF42D4CDB91A24F9184B0E436071D21_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *>(__this + _offset);
InternalEnumerator_1__ctor_m5501634A3EF42D4CDB91A24F9184B0E436071D21(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m489956CF0696406FD5EA5B25868481248544912A_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m489956CF0696406FD5EA5B25868481248544912A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *>(__this + _offset);
InternalEnumerator_1_Dispose_m489956CF0696406FD5EA5B25868481248544912A(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m0D1BF3D9124FF5A16605F3BA9A22D9A09E445A0E_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m0D1BF3D9124FF5A16605F3BA9A22D9A09E445A0E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m0D1BF3D9124FF5A16605F3BA9A22D9A09E445A0E(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 L_8 = (( KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDB572A4D922C61FBA17D9C5D17856C8441E5C20D_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDB572A4D922C61FBA17D9C5D17856C8441E5C20D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDB572A4D922C61FBA17D9C5D17856C8441E5C20D(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8BFDC8F6FCCB4C3110B1AC0531DC9183C30FF07B_gshared (InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 L_0 = InternalEnumerator_1_get_Current_m07619AD127F6E048B1E9C4DF900222B13246FD75((InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *)(InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8BFDC8F6FCCB4C3110B1AC0531DC9183C30FF07B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t07452246E5486E5C69E29A357BA9D7626B48B5E1 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8BFDC8F6FCCB4C3110B1AC0531DC9183C30FF07B(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mF260DE351200677B92164F16989D8378B8602FAE_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mF260DE351200677B92164F16989D8378B8602FAE_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *>(__this + _offset);
InternalEnumerator_1__ctor_mF260DE351200677B92164F16989D8378B8602FAE(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m514DDA944789009A6C184BA5C2C9DB1100F5F83E_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m514DDA944789009A6C184BA5C2C9DB1100F5F83E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *>(__this + _offset);
InternalEnumerator_1_Dispose_m514DDA944789009A6C184BA5C2C9DB1100F5F83E(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m1CDEFAC438A34D43B29BD6EEA8285BC790B9F09A_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m1CDEFAC438A34D43B29BD6EEA8285BC790B9F09A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m1CDEFAC438A34D43B29BD6EEA8285BC790B9F09A(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA L_8 = (( KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m109DDD1CB3D8A00CBBF69F2D09548AE54547F41F_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m109DDD1CB3D8A00CBBF69F2D09548AE54547F41F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m109DDD1CB3D8A00CBBF69F2D09548AE54547F41F(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m24CAA4BAFDAEB694CEDBB27E26AEEDE237DC1546_gshared (InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA L_0 = InternalEnumerator_1_get_Current_m7B410E56342281C5B11AAD74F1E99B89A55AF0C8((InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *)(InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m24CAA4BAFDAEB694CEDBB27E26AEEDE237DC1546_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tD5C77ADA98A6673B15D48A102BDBF7590017E4C5 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m24CAA4BAFDAEB694CEDBB27E26AEEDE237DC1546(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m5D8F9D41113E8C9DFC52F375E7CC4EB776DA327B_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m5D8F9D41113E8C9DFC52F375E7CC4EB776DA327B_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *>(__this + _offset);
InternalEnumerator_1__ctor_m5D8F9D41113E8C9DFC52F375E7CC4EB776DA327B(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m8ACCB43BFC6ADDBD1F3D2B583E9C0743924FA1D2_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m8ACCB43BFC6ADDBD1F3D2B583E9C0743924FA1D2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *>(__this + _offset);
InternalEnumerator_1_Dispose_m8ACCB43BFC6ADDBD1F3D2B583E9C0743924FA1D2(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m8769D2C23B301EEC48C7AFF0801E075DCBAD55F6_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m8769D2C23B301EEC48C7AFF0801E075DCBAD55F6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m8769D2C23B301EEC48C7AFF0801E075DCBAD55F6(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8 InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8 L_8 = (( KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8 InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m0A09BFB51F4017A57CCC3E85FAC0B898E3609FAB_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m0A09BFB51F4017A57CCC3E85FAC0B898E3609FAB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m0A09BFB51F4017A57CCC3E85FAC0B898E3609FAB(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m67AC7B4AA25C35FD38A20D594F40976707719AE0_gshared (InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8 L_0 = InternalEnumerator_1_get_Current_m5CA091188461288E992CFCCBB6C59834235C4DB9((InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *)(InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t97CA1AD5DC865D3DFBA7BB3738ACB17916661DB8 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m67AC7B4AA25C35FD38A20D594F40976707719AE0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4BCF0DC28CDFE9E97057D2617B9C64EA5C259A23 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m67AC7B4AA25C35FD38A20D594F40976707719AE0(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4B6DB37850E868879F81679A1D88409759EB7765_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m4B6DB37850E868879F81679A1D88409759EB7765_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *>(__this + _offset);
InternalEnumerator_1__ctor_m4B6DB37850E868879F81679A1D88409759EB7765(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mB15A1D9948C9E2CD2822F52B2F62CD427713BD82_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mB15A1D9948C9E2CD2822F52B2F62CD427713BD82_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *>(__this + _offset);
InternalEnumerator_1_Dispose_mB15A1D9948C9E2CD2822F52B2F62CD427713BD82(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m583FC4147B12DA3FAFA0533A669CA374B4D9A0C1_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m583FC4147B12DA3FAFA0533A669CA374B4D9A0C1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m583FC4147B12DA3FAFA0533A669CA374B4D9A0C1(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_8 = (( KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *>(__this + _offset);
return InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m155A4FB8B3D4279780A334AD1773264888341227_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m155A4FB8B3D4279780A334AD1773264888341227_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m155A4FB8B3D4279780A334AD1773264888341227(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC1E83F3D88BCC59921351734CFD9513C705B4F83_gshared (InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_0 = InternalEnumerator_1_get_Current_m827AA5B332067E08926B4873797AF203930D6355((InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *)(InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC1E83F3D88BCC59921351734CFD9513C705B4F83_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t89EE644047F2E02902D276C4886D44DC103A207C *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC1E83F3D88BCC59921351734CFD9513C705B4F83(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m68CFC035FC3DC1BD21D1ACB9580D1852CC49FF51_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m68CFC035FC3DC1BD21D1ACB9580D1852CC49FF51_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *>(__this + _offset);
InternalEnumerator_1__ctor_m68CFC035FC3DC1BD21D1ACB9580D1852CC49FF51(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDCA828D764CBB14FB3CF31AF0BDC68709FA4DAE7_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mDCA828D764CBB14FB3CF31AF0BDC68709FA4DAE7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *>(__this + _offset);
InternalEnumerator_1_Dispose_mDCA828D764CBB14FB3CF31AF0BDC68709FA4DAE7(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m9B1CF619F7F4E40343409851A9C45D5E2CB9347D_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m9B1CF619F7F4E40343409851A9C45D5E2CB9347D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m9B1CF619F7F4E40343409851A9C45D5E2CB9347D(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_8 = (( KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8AA11D403DCF5974D63F330E5390A13F2521A2B_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8AA11D403DCF5974D63F330E5390A13F2521A2B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8AA11D403DCF5974D63F330E5390A13F2521A2B(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9646270AE8A4EB0758936B3CB5A0530524ADFB4C_gshared (InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_0 = InternalEnumerator_1_get_Current_mF0C51E221CD4A4E7C605483AF49C78902866C3C5((InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *)(InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9646270AE8A4EB0758936B3CB5A0530524ADFB4C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEDC11688D96373751A66E805DD85CA5A655B5A14 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9646270AE8A4EB0758936B3CB5A0530524ADFB4C(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m528291295CA6D5334E2C72963F4679C7ECF119A5_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m528291295CA6D5334E2C72963F4679C7ECF119A5_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *>(__this + _offset);
InternalEnumerator_1__ctor_m528291295CA6D5334E2C72963F4679C7ECF119A5(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mCEA52B18477E0D858EC6671BA30D66811923B795_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mCEA52B18477E0D858EC6671BA30D66811923B795_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *>(__this + _offset);
InternalEnumerator_1_Dispose_mCEA52B18477E0D858EC6671BA30D66811923B795(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mC14339F688B871586DD176D67FB74CCCD3A8FE25_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mC14339F688B871586DD176D67FB74CCCD3A8FE25_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mC14339F688B871586DD176D67FB74CCCD3A8FE25(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_8 = (( KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *>(__this + _offset);
return InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52A1DCBCE25D2DC0BFFD86681646733F0B80DB58_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52A1DCBCE25D2DC0BFFD86681646733F0B80DB58_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m52A1DCBCE25D2DC0BFFD86681646733F0B80DB58(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE951499B2927EC4DC4553DB5B3A8D3FB29965763_gshared (InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_0 = InternalEnumerator_1_get_Current_mED1D2631CF12AA84D925732B6F60E5D1589B250A((InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *)(InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE951499B2927EC4DC4553DB5B3A8D3FB29965763_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185E7E9D0D709B91ED1697566D62CC03D02B703D *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE951499B2927EC4DC4553DB5B3A8D3FB29965763(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mC6CC09F89E9FA9EBE66CDDF4E15F7946152719FF_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mC6CC09F89E9FA9EBE66CDDF4E15F7946152719FF_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *>(__this + _offset);
InternalEnumerator_1__ctor_mC6CC09F89E9FA9EBE66CDDF4E15F7946152719FF(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m52051D7FBEF765AC6C085175797B3D3821690C9C_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m52051D7FBEF765AC6C085175797B3D3821690C9C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *>(__this + _offset);
InternalEnumerator_1_Dispose_m52051D7FBEF765AC6C085175797B3D3821690C9C(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m2A459CC2005542BA53CBA7DF8F3D85D12F12B91C_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m2A459CC2005542BA53CBA7DF8F3D85D12F12B91C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m2A459CC2005542BA53CBA7DF8F3D85D12F12B91C(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 L_8 = (( KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m06CA1CABC8A4A5BACAB2EF6A2F471E64A9CD3D33_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m06CA1CABC8A4A5BACAB2EF6A2F471E64A9CD3D33_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m06CA1CABC8A4A5BACAB2EF6A2F471E64A9CD3D33(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCDB9C76E233C4FD56B69F1D5F863005771F98D6E_gshared (InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 L_0 = InternalEnumerator_1_get_Current_m5DFE0E2A69F6C60824E18E67176082E064F9EB30((InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *)(InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t169DC5A905B6A5878CDBE24B2E799E0C996673C2 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCDB9C76E233C4FD56B69F1D5F863005771F98D6E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t61131C816FC0109AF890D8D3F39588A2879B7161 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCDB9C76E233C4FD56B69F1D5F863005771F98D6E(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m8727B259CBEDE6D24BC36E6E95DE2E5C4A7A2C2D_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m8727B259CBEDE6D24BC36E6E95DE2E5C4A7A2C2D_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *>(__this + _offset);
InternalEnumerator_1__ctor_m8727B259CBEDE6D24BC36E6E95DE2E5C4A7A2C2D(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m19D92A722260CEFC4E6756C1963A7A0C4D1201AF_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m19D92A722260CEFC4E6756C1963A7A0C4D1201AF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *>(__this + _offset);
InternalEnumerator_1_Dispose_m19D92A722260CEFC4E6756C1963A7A0C4D1201AF(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m49A2FD3048ABA6102A6FC8FECD358A858351E8BF_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m49A2FD3048ABA6102A6FC8FECD358A858351E8BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m49A2FD3048ABA6102A6FC8FECD358A858351E8BF(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3 InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3 L_8 = (( KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3 InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4D0E10E77B817D8B8D6F350773CD9FD72EA753EC_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4D0E10E77B817D8B8D6F350773CD9FD72EA753EC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4D0E10E77B817D8B8D6F350773CD9FD72EA753EC(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<System.Int32>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF46E5137906B3173143ECB26E28476BBB50CBC30_gshared (InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3 L_0 = InternalEnumerator_1_get_Current_mEBDCA0D9E69FF412722C45C29FA1F478592DC1B5((InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *)(InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t797086749A6A77ADE6556A4D525720B011BAD9E3 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF46E5137906B3173143ECB26E28476BBB50CBC30_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t62E3525510DD4EFD56838D84FD71AFFBA716EEE7 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF46E5137906B3173143ECB26E28476BBB50CBC30(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mF20BA8282530E2D2D4A66E63487D22962F761A0D_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mF20BA8282530E2D2D4A66E63487D22962F761A0D_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *>(__this + _offset);
InternalEnumerator_1__ctor_mF20BA8282530E2D2D4A66E63487D22962F761A0D(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m998EA33EE3505478DD9D2C750D46F75BFCC9D6BF_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m998EA33EE3505478DD9D2C750D46F75BFCC9D6BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *>(__this + _offset);
InternalEnumerator_1_Dispose_m998EA33EE3505478DD9D2C750D46F75BFCC9D6BF(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mFD63B88E1D74E3EC82108E2A6C8C764D1214F213_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mFD63B88E1D74E3EC82108E2A6C8C764D1214F213_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mFD63B88E1D74E3EC82108E2A6C8C764D1214F213(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7 InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7 L_8 = (( KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7 InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m45428AFEBC4D8ADCAD06F3C5CDC59F1B322929DC_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m45428AFEBC4D8ADCAD06F3C5CDC59F1B322929DC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m45428AFEBC4D8ADCAD06F3C5CDC59F1B322929DC(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Nullable`1<Unity.Barracuda.TensorShape>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE64FE7BFBC439BAF21CFC0D9901C399AF6D4EB1D_gshared (InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7 L_0 = InternalEnumerator_1_get_Current_m479A3CBF614FC03E3C3345EBA4527F58212B341C((InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *)(InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tF282C7440D689AD44918018EA20C03758C9FBDF7 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE64FE7BFBC439BAF21CFC0D9901C399AF6D4EB1D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t06CCFDE2E5C5EA3EF113DB2714A99AE29C9B61F6 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE64FE7BFBC439BAF21CFC0D9901C399AF6D4EB1D(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m5207FBDBFFFA3362A79214E0F6563073D0739B36_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m5207FBDBFFFA3362A79214E0F6563073D0739B36_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *>(__this + _offset);
InternalEnumerator_1__ctor_m5207FBDBFFFA3362A79214E0F6563073D0739B36(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m5D695D1842FAD0CF7E2626EE58BE25188594A063_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m5D695D1842FAD0CF7E2626EE58BE25188594A063_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *>(__this + _offset);
InternalEnumerator_1_Dispose_m5D695D1842FAD0CF7E2626EE58BE25188594A063(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mFA644183525E4E7C1DA9E0AB2520DEC0664DB22E_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mFA644183525E4E7C1DA9E0AB2520DEC0664DB22E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mFA644183525E4E7C1DA9E0AB2520DEC0664DB22E(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_8 = (( KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDEA574E3825E771EA4138A2FDBA795680D2D6DDF_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDEA574E3825E771EA4138A2FDBA795680D2D6DDF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mDEA574E3825E771EA4138A2FDBA795680D2D6DDF(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8F15A6CF9D2375039F3A2922EC07A6F66A911D2E_gshared (InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_0 = InternalEnumerator_1_get_Current_m8BCE8ACA1FB9184338A431ADF16C9ADEF01FE5A5((InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *)(InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8F15A6CF9D2375039F3A2922EC07A6F66A911D2E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBD21A361A5A557D215F263973860F89CDAA6C679 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8F15A6CF9D2375039F3A2922EC07A6F66A911D2E(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m9F3DE26BFE9BF17F177A5DC956AADC3AEC5A7729_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m9F3DE26BFE9BF17F177A5DC956AADC3AEC5A7729_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *>(__this + _offset);
InternalEnumerator_1__ctor_m9F3DE26BFE9BF17F177A5DC956AADC3AEC5A7729(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mEA3762DB58F8733CC8196C00787BFB4B1D1BBBFC_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mEA3762DB58F8733CC8196C00787BFB4B1D1BBBFC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *>(__this + _offset);
InternalEnumerator_1_Dispose_mEA3762DB58F8733CC8196C00787BFB4B1D1BBBFC(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m4BECF4142A35A113A6B4932DB906E425F6209742_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m4BECF4142A35A113A6B4932DB906E425F6209742_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m4BECF4142A35A113A6B4932DB906E425F6209742(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_8 = (( KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *>(__this + _offset);
return InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8257FAF3E914823A81665B44108DBB6FF6E676B_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8257FAF3E914823A81665B44108DBB6FF6E676B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mB8257FAF3E914823A81665B44108DBB6FF6E676B(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCB16D07C75263BD2D00943720593924E2548EC08_gshared (InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_0 = InternalEnumerator_1_get_Current_m52F1F50D102498BDAA3DC236872E47AB913F5B5D((InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *)(InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCB16D07C75263BD2D00943720593924E2548EC08_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t632011B8114E218BF0B4A2356B7C33C343B2566C *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCB16D07C75263BD2D00943720593924E2548EC08(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1CB3308838F195C141B17BC3E556D7B11BBCA550_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m1CB3308838F195C141B17BC3E556D7B11BBCA550_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *>(__this + _offset);
InternalEnumerator_1__ctor_m1CB3308838F195C141B17BC3E556D7B11BBCA550(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m759FE9A3148A7BD8EB6556DDDC6A1A521E53F911_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m759FE9A3148A7BD8EB6556DDDC6A1A521E53F911_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *>(__this + _offset);
InternalEnumerator_1_Dispose_m759FE9A3148A7BD8EB6556DDDC6A1A521E53F911(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mDF2BD4031534E1F449162E7E0961A95D3BAFC6C9_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mDF2BD4031534E1F449162E7E0961A95D3BAFC6C9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mDF2BD4031534E1F449162E7E0961A95D3BAFC6C9(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D L_8 = (( KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m71699E2DEA73C7A4B9C5D2BCB5291E2664D16C26_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m71699E2DEA73C7A4B9C5D2BCB5291E2664D16C26_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m71699E2DEA73C7A4B9C5D2BCB5291E2664D16C26(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF82BB0B739401816E30465A829ACCE3DF858751D_gshared (InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D L_0 = InternalEnumerator_1_get_Current_mA391EDA453E4772EB705ADF3B3C22D95A09F1A3B((InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *)(InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t9D1BF53588A5A96405532C1179DE74749741D91D L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF82BB0B739401816E30465A829ACCE3DF858751D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tCC1A279C28FCF802110F2234DCA93D06D1A6C5C7 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF82BB0B739401816E30465A829ACCE3DF858751D(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mDB830C84CF94F0E0119F60E2FAD7CB8E0F472174_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mDB830C84CF94F0E0119F60E2FAD7CB8E0F472174_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *>(__this + _offset);
InternalEnumerator_1__ctor_mDB830C84CF94F0E0119F60E2FAD7CB8E0F472174(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m2F8B9758B98FA9E279D27D7A45A6BAFA896DB8A2_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m2F8B9758B98FA9E279D27D7A45A6BAFA896DB8A2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *>(__this + _offset);
InternalEnumerator_1_Dispose_m2F8B9758B98FA9E279D27D7A45A6BAFA896DB8A2(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m0D340F54E60087B3EE2A9589A4F8072D47722DDE_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m0D340F54E60087B3EE2A9589A4F8072D47722DDE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m0D340F54E60087B3EE2A9589A4F8072D47722DDE(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF L_8 = (( KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *>(__this + _offset);
return InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m82D8E2877465899F74405EA923FDBAFF92E800EB_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m82D8E2877465899F74405EA923FDBAFF92E800EB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m82D8E2877465899F74405EA923FDBAFF92E800EB(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.ValueTuple`2<System.Int32,System.Object>>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m51713E13DFED5BA38700BE7033CE6E3B308A2BCA_gshared (InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF L_0 = InternalEnumerator_1_get_Current_m36717688ED322856B2D7FE4773CBF036BB240C22((InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *)(InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tD82D97426E3841C5BECB0677CB02382D8C4F23DF L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m51713E13DFED5BA38700BE7033CE6E3B308A2BCA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB603B77C76AE09C670E08270322DC4B7E5BEB63E *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m51713E13DFED5BA38700BE7033CE6E3B308A2BCA(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m072BD826BD6A467C36045938F3054E9BF121F4D5_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m072BD826BD6A467C36045938F3054E9BF121F4D5_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *>(__this + _offset);
InternalEnumerator_1__ctor_m072BD826BD6A467C36045938F3054E9BF121F4D5(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m3ADB9371A94E622FD8AF6543679A66950EA1C25D_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m3ADB9371A94E622FD8AF6543679A66950EA1C25D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *>(__this + _offset);
InternalEnumerator_1_Dispose_m3ADB9371A94E622FD8AF6543679A66950EA1C25D(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m7B6116857905B986364F2DD35FF99AE55C783A90_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m7B6116857905B986364F2DD35FF99AE55C783A90_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m7B6116857905B986364F2DD35FF99AE55C783A90(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A L_8 = (( KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m93547CE6144F9DCE5DA0C00F803EEBD0804093C8_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m93547CE6144F9DCE5DA0C00F803EEBD0804093C8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m93547CE6144F9DCE5DA0C00F803EEBD0804093C8(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.PrecompiledComputeOps/CompiledLayer>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE4F8E4FDF06719D0ED8080612440C0522D90A463_gshared (InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A L_0 = InternalEnumerator_1_get_Current_m9EED87EF46C1EBC2A1D951D3716AF541E2664420((InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *)(InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t95505AC047681192CD2379CD8EB760D7BD97AC7A L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE4F8E4FDF06719D0ED8080612440C0522D90A463_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tAB8085861B378B7A6AC4D3A0A04153435BA2D955 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE4F8E4FDF06719D0ED8080612440C0522D90A463(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m7C81F6CE5067A6BCF3CFB52E46FBC8DF7AE1E0DC_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m7C81F6CE5067A6BCF3CFB52E46FBC8DF7AE1E0DC_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *>(__this + _offset);
InternalEnumerator_1__ctor_m7C81F6CE5067A6BCF3CFB52E46FBC8DF7AE1E0DC(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m86E3DC9BF30D4F65E8BCA1E9937D085A5BCBF436_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m86E3DC9BF30D4F65E8BCA1E9937D085A5BCBF436_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *>(__this + _offset);
InternalEnumerator_1_Dispose_m86E3DC9BF30D4F65E8BCA1E9937D085A5BCBF436(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mA2A0106F218B0BE1ED20DC9B91C95057C0CA8AC4_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mA2A0106F218B0BE1ED20DC9B91C95057C0CA8AC4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mA2A0106F218B0BE1ED20DC9B91C95057C0CA8AC4(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424 InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424 L_8 = (( KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424 InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *>(__this + _offset);
return InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF547315C0BE75A3700B7F31B738ADE73B3376BF2_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF547315C0BE75A3700B7F31B738ADE73B3376BF2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mF547315C0BE75A3700B7F31B738ADE73B3376BF2(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.Barracuda.TensorShape>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m58EB5F9E0FA088D3573B922203D250591F18037C_gshared (InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424 L_0 = InternalEnumerator_1_get_Current_m9B12EC6639F31BF19E1841F558D4B92443B2012B((InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *)(InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tA1D812FF35D7158E42BA9566355B827B574B4424 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m58EB5F9E0FA088D3573B922203D250591F18037C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC6B1D9CDAEF2A0819F6A36D479C568350C13045A *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m58EB5F9E0FA088D3573B922203D250591F18037C(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m07C3057C4A35E51C3319C0E7A3E2BD860A483F66_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m07C3057C4A35E51C3319C0E7A3E2BD860A483F66_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *>(__this + _offset);
InternalEnumerator_1__ctor_m07C3057C4A35E51C3319C0E7A3E2BD860A483F66(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m738CBC63FA6ABC5D42D9A240658CC5321BE513A7_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m738CBC63FA6ABC5D42D9A240658CC5321BE513A7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *>(__this + _offset);
InternalEnumerator_1_Dispose_m738CBC63FA6ABC5D42D9A240658CC5321BE513A7(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3FD6C35705C05C8F58478E0A339FF8C43CF52A39_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m3FD6C35705C05C8F58478E0A339FF8C43CF52A39_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m3FD6C35705C05C8F58478E0A339FF8C43CF52A39(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C L_8 = (( KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m185689B68AAFBC44A3B1433FCBFCB8EEDC01F49A_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m185689B68AAFBC44A3B1433FCBFCB8EEDC01F49A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m185689B68AAFBC44A3B1433FCBFCB8EEDC01F49A(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Unity.MLAgents.Actuators.ActionSpec>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9954378D50B23EE1FE627D13A72E03954A3F7C76_gshared (InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C L_0 = InternalEnumerator_1_get_Current_mD3324BFC677FBB657CD235C250F85BF7804CBE66((InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *)(InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t9C3B3D4CA31AD4E3846500AF7332BA915FEE5B0C L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9954378D50B23EE1FE627D13A72E03954A3F7C76_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t6848035DBFF10EB0E00819757D1C701EE0653FF8 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9954378D50B23EE1FE627D13A72E03954A3F7C76(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mCCD8AE36B9CAFB92763676392FE84116538AD24E_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mCCD8AE36B9CAFB92763676392FE84116538AD24E_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *>(__this + _offset);
InternalEnumerator_1__ctor_mCCD8AE36B9CAFB92763676392FE84116538AD24E(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mA0DF4088CD60257BBC8527908BE16E048F6C5E98_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mA0DF4088CD60257BBC8527908BE16E048F6C5E98_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *>(__this + _offset);
InternalEnumerator_1_Dispose_mA0DF4088CD60257BBC8527908BE16E048F6C5E98(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m3FDFA1D96E4B58DB6805E65BBBDBD46FCAC02DA0_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m3FDFA1D96E4B58DB6805E65BBBDBD46FCAC02DA0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m3FDFA1D96E4B58DB6805E65BBBDBD46FCAC02DA0(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B L_8 = (( KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *>(__this + _offset);
return InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6238AD483ECDECE96631A063795D9CF68C3BB44B_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6238AD483ECDECE96631A063795D9CF68C3BB44B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6238AD483ECDECE96631A063795D9CF68C3BB44B(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Single,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBAC376F386E8FAD63A30A9DCED9D09C501BCC91_gshared (InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B L_0 = InternalEnumerator_1_get_Current_m729DEA8E6627B575B89BFA409465661C1185EF14((InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *)(InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tC8D7C6B929FF236A5B188E5F10CB8531C6C2BA7B L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBAC376F386E8FAD63A30A9DCED9D09C501BCC91_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t817EB2864FD59724E3A17DC50E323427E0073AEC *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBAC376F386E8FAD63A30A9DCED9D09C501BCC91(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m9C482B8E70A456521E2639D0B7B4B8767C22E0FD_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m9C482B8E70A456521E2639D0B7B4B8767C22E0FD_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *>(__this + _offset);
InternalEnumerator_1__ctor_m9C482B8E70A456521E2639D0B7B4B8767C22E0FD(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m70F1D13BC9F7DC04FAF89CCABBF08D59FCABA3FD_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m70F1D13BC9F7DC04FAF89CCABBF08D59FCABA3FD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *>(__this + _offset);
InternalEnumerator_1_Dispose_m70F1D13BC9F7DC04FAF89CCABBF08D59FCABA3FD(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mD57B806231F635FEAB78C7830ABA88430462A3AE_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mD57B806231F635FEAB78C7830ABA88430462A3AE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mD57B806231F635FEAB78C7830ABA88430462A3AE(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C L_8 = (( KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *>(__this + _offset);
return InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7794B03697B0551B5F41792EE6B57D5936417915_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7794B03697B0551B5F41792EE6B57D5936417915_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7794B03697B0551B5F41792EE6B57D5936417915(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m08C39EB913D939BA99E8565AC33FE74CB1CD6E6E_gshared (InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C L_0 = InternalEnumerator_1_get_Current_mEC6765B4F8B33AFB7B20CB01000F6BB9804694FD((InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *)(InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m08C39EB913D939BA99E8565AC33FE74CB1CD6E6E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tC83AB2279F026F3415BC6F1F9A74D00E2A12A91E *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m08C39EB913D939BA99E8565AC33FE74CB1CD6E6E(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mF08617A642B743C4655877FCEF67BB41A8E37941_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mF08617A642B743C4655877FCEF67BB41A8E37941_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *>(__this + _offset);
InternalEnumerator_1__ctor_mF08617A642B743C4655877FCEF67BB41A8E37941(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m5FC30F2AC2639B07D9DF4CF80D73CE0BF79171A1_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m5FC30F2AC2639B07D9DF4CF80D73CE0BF79171A1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *>(__this + _offset);
InternalEnumerator_1_Dispose_m5FC30F2AC2639B07D9DF4CF80D73CE0BF79171A1(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mC05421D63FFDE4EE06C08A709F49CA129C70C058_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mC05421D63FFDE4EE06C08A709F49CA129C70C058_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mC05421D63FFDE4EE06C08A709F49CA129C70C058(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 L_8 = (( KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *>(__this + _offset);
return InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8806CBB693976B5D080E4578F057147A2A926F72_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8806CBB693976B5D080E4578F057147A2A926F72_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m8806CBB693976B5D080E4578F057147A2A926F72(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9B0BD9F6373280E438F8A2DD47C301648B5823DA_gshared (InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 L_0 = InternalEnumerator_1_get_Current_mDC9591CAB935E56330215398B919BD962FD672B9((InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *)(InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9B0BD9F6373280E438F8A2DD47C301648B5823DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t76465CCFB2F4472FC1B3AE336B50F38887E04E0C *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9B0BD9F6373280E438F8A2DD47C301648B5823DA(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m8C418CCC75787610D17FB1F4CF94A8D537C0A8B6_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m8C418CCC75787610D17FB1F4CF94A8D537C0A8B6_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *>(__this + _offset);
InternalEnumerator_1__ctor_m8C418CCC75787610D17FB1F4CF94A8D537C0A8B6(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m357258C619F7231B639449CE7A811C2E921C2F2B_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m357258C619F7231B639449CE7A811C2E921C2F2B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *>(__this + _offset);
InternalEnumerator_1_Dispose_m357258C619F7231B639449CE7A811C2E921C2F2B(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m117483E16F2F1B10DD92C6F54AC53F0861EAC39E_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m117483E16F2F1B10DD92C6F54AC53F0861EAC39E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m117483E16F2F1B10DD92C6F54AC53F0861EAC39E(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562 InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562 L_8 = (( KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562 InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7FAF26AB53957784BD0986CAF59E1C35F2064A09_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7FAF26AB53957784BD0986CAF59E1C35F2064A09_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m7FAF26AB53957784BD0986CAF59E1C35F2064A09(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Int32Enum,System.Int32Enum>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBC8B6E0550D6941CE05C76CF2D7AEA20408F585_gshared (InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562 L_0 = InternalEnumerator_1_get_Current_mEE7870CEF29F910F1DDFCF7A0D742D59127914F3((InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *)(InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t7504CEB360B186D25FE4EFEF92CAF22958657562 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBC8B6E0550D6941CE05C76CF2D7AEA20408F585_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tB71AAE45D02891627DC6CEEAA7CB3737F8C86C31 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBBC8B6E0550D6941CE05C76CF2D7AEA20408F585(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m05E04E122300AB7287C1F7E1BE04E0FF936FFE46_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m05E04E122300AB7287C1F7E1BE04E0FF936FFE46_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *>(__this + _offset);
InternalEnumerator_1__ctor_m05E04E122300AB7287C1F7E1BE04E0FF936FFE46(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m7F7A577B02CB8D2C5AE6065E646244023CB17F28_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m7F7A577B02CB8D2C5AE6065E646244023CB17F28_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *>(__this + _offset);
InternalEnumerator_1_Dispose_m7F7A577B02CB8D2C5AE6065E646244023CB17F28(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mBCDB3AE1EDCFA3F9D2548BA5919CEEBE82AD5E06_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mBCDB3AE1EDCFA3F9D2548BA5919CEEBE82AD5E06_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mBCDB3AE1EDCFA3F9D2548BA5919CEEBE82AD5E06(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 L_8 = (( KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2A7CFC894C8F92BBC2B2605758F7A0DE1A5EBD4C_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2A7CFC894C8F92BBC2B2605758F7A0DE1A5EBD4C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2A7CFC894C8F92BBC2B2605758F7A0DE1A5EBD4C(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD7C8BAAFFF8522454FE1648F4FB1AEE12E1D3EC7_gshared (InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 L_0 = InternalEnumerator_1_get_Current_mCC49C6985D411C95923EA6B4E7A429CED3B7E18D((InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *)(InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t763F028283519A2C5A42925C2D288C84296E4E71 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD7C8BAAFFF8522454FE1648F4FB1AEE12E1D3EC7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4E479DD6A30399F7B6237DCBF0FF7FEF1BE9B436 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD7C8BAAFFF8522454FE1648F4FB1AEE12E1D3EC7(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mD0C8B60785A9D2334E9367CDFF1318509ECAFF22_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mD0C8B60785A9D2334E9367CDFF1318509ECAFF22_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *>(__this + _offset);
InternalEnumerator_1__ctor_mD0C8B60785A9D2334E9367CDFF1318509ECAFF22(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mE94D7652E31C213E15580E0F2AD67B900F1901E5_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mE94D7652E31C213E15580E0F2AD67B900F1901E5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *>(__this + _offset);
InternalEnumerator_1_Dispose_mE94D7652E31C213E15580E0F2AD67B900F1901E5(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mDDA5DF528DCD48773088711584E28E3E1D70D6D8_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mDDA5DF528DCD48773088711584E28E3E1D70D6D8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mDDA5DF528DCD48773088711584E28E3E1D70D6D8(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C L_8 = (( KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *>(__this + _offset);
return InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1D8A5D3A455BDEE762C1B8A58CD0BC7E09E11152_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1D8A5D3A455BDEE762C1B8A58CD0BC7E09E11152_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1D8A5D3A455BDEE762C1B8A58CD0BC7E09E11152(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringLongTriplet,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9E0054AA9D4615C4E358DB1A8AE81EFD0DC6476E_gshared (InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C L_0 = InternalEnumerator_1_get_Current_m6AABACFE82EE30CE9F6C14B1860595AC0BBA097E((InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *)(InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t4D68C08E386297A17B9EE2897DE9EEE64EB08D2C L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9E0054AA9D4615C4E358DB1A8AE81EFD0DC6476E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tE1B5B6F4BC87EA086CAE1132DD835F11D7DDF8B5 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9E0054AA9D4615C4E358DB1A8AE81EFD0DC6476E(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_mE7F445B328003440BE0D179BA70CA91B01CDC06C_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_mE7F445B328003440BE0D179BA70CA91B01CDC06C_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *>(__this + _offset);
InternalEnumerator_1__ctor_mE7F445B328003440BE0D179BA70CA91B01CDC06C(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mDBE998E404AB29E326B872C5924000CD53FAFEE5_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mDBE998E404AB29E326B872C5924000CD53FAFEE5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *>(__this + _offset);
InternalEnumerator_1_Dispose_mDBE998E404AB29E326B872C5924000CD53FAFEE5(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_m7392ED7FBC297563A2226979703F4E4B058E9E62_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_m7392ED7FBC297563A2226979703F4E4B058E9E62_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *>(__this + _offset);
return InternalEnumerator_1_MoveNext_m7392ED7FBC297563A2226979703F4E4B058E9E62(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184 InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184 L_8 = (( KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184 InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *>(__this + _offset);
return InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2F86825931F13560EAB7E4CECBE90F514B5E87_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2F86825931F13560EAB7E4CECBE90F514B5E87_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_mCB2F86825931F13560EAB7E4CECBE90F514B5E87(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.StringStringPair,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m95B81570191DCF3DE0DE7198614875DEACF3E7FE_gshared (InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184 L_0 = InternalEnumerator_1_get_Current_m7CEA17CA3277CB30D1C55BA45A37DE536DD0ECB1((InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *)(InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t9F28EAAC54457DCD84053313F638CA19CC5B3184 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m95B81570191DCF3DE0DE7198614875DEACF3E7FE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t10BDFA0493376FBFEFA505D2003692E51AF3C83E *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m95B81570191DCF3DE0DE7198614875DEACF3E7FE(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m94D1F1F106E37071F81E0B5B75E2AA9146A4548A_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m94D1F1F106E37071F81E0B5B75E2AA9146A4548A_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *>(__this + _offset);
InternalEnumerator_1__ctor_m94D1F1F106E37071F81E0B5B75E2AA9146A4548A(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_m2BD69D5A5C524D6C2025294699B214D115E5634C_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_m2BD69D5A5C524D6C2025294699B214D115E5634C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *>(__this + _offset);
InternalEnumerator_1_Dispose_m2BD69D5A5C524D6C2025294699B214D115E5634C(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mCEA21E4E9207E97675444C5055388AFFCDAC227A_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mCEA21E4E9207E97675444C5055388AFFCDAC227A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mCEA21E4E9207E97675444C5055388AFFCDAC227A(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980 InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980 L_8 = (( KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980 InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *>(__this + _offset);
return InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6F29EC8CCAF82D6B8BA93DFA53F19C4D55E1B6D8_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6F29EC8CCAF82D6B8BA93DFA53F19C4D55E1B6D8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m6F29EC8CCAF82D6B8BA93DFA53F19C4D55E1B6D8(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Unity.Barracuda.TensorShape,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m519554408FEB22490281AC754DFEF663ADCB2613_gshared (InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980 L_0 = InternalEnumerator_1_get_Current_mFFA047A732BCB621E5F340AF2D7BFF3C7ED86F26((InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *)(InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t1E526CAFB60828C8AF6714F718F9D2A4AA5ED980 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m519554408FEB22490281AC754DFEF663ADCB2613_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tEB63D42B095FB976BF1A56301145D8AE50C07F5F *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m519554408FEB22490281AC754DFEF663ADCB2613(_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.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::.ctor(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m162F2F2AA22CBE55DF2645F07CB932F5F4EB743F_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1__ctor_m162F2F2AA22CBE55DF2645F07CB932F5F4EB743F_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *>(__this + _offset);
InternalEnumerator_1__ctor_m162F2F2AA22CBE55DF2645F07CB932F5F4EB743F(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_Dispose_mD4E3E27B3B77F32B80EE127DC011E35C6A3A1CD7_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_Dispose_mD4E3E27B3B77F32B80EE127DC011E35C6A3A1CD7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *>(__this + _offset);
InternalEnumerator_1_Dispose_mD4E3E27B3B77F32B80EE127DC011E35C6A3A1CD7(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEnumerator_1_MoveNext_mDA7E54CEDC4B9D58D253AD6378C06D61A0FD2441_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001b;
}
}
{
RuntimeArray * L_1 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001b:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_003c;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
int32_t L_5 = V_0;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
return (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool InternalEnumerator_1_MoveNext_mDA7E54CEDC4B9D58D253AD6378C06D61A0FD2441_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *>(__this + _offset);
return InternalEnumerator_1_MoveNext_mDA7E54CEDC4B9D58D253AD6378C06D61A0FD2441(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0015;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteral2743196813A5635EC097418239BD515966A50491, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteral81B88171F853E60535AA475D08BD5584CD5E2503, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = (RuntimeArray *)__this->get_array_0();
RuntimeArray * L_5 = (RuntimeArray *)__this->get_array_0();
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
NullCheck((RuntimeArray *)L_4);
KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 L_8 = (( KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 (*) (RuntimeArray *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((RuntimeArray *)L_4, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 )L_8;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *>(__this + _offset);
return InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m72DAC9C9A8D7F1800767EA0866473B6BE3683CD1_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
IL2CPP_EXTERN_C void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m72DAC9C9A8D7F1800767EA0866473B6BE3683CD1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *>(__this + _offset);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m72DAC9C9A8D7F1800767EA0866473B6BE3683CD1(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0007817C91F99D353BEEA5B5336C841F02AF937_gshared (InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 L_0 = InternalEnumerator_1_get_Current_mC716BD825BE78B49C38E17B56CDC898023822A95((InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *)(InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0007817C91F99D353BEEA5B5336C841F02AF937_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_tBFC602AACA8AC51BAF8F3BA797FB7163E93ADD43 *>(__this + _offset);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0007817C91F99D353BEEA5B5336C841F02AF937(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
|
5ef55371f4e237b212b3cd57a3dd5cae2bdfc54f | 845abf347fa5f5715dd3379237e42e88fbca34a9 | /hackerrank/random_problem/between_two_sets.cpp | f14b47cc4b74b66866da88cbee652ac9a064c67b | [] | no_license | tariqul87/coding-practice | cf03375a08e8d78d8464960ccb26ee5937a12782 | 209814f8ddef2e9c202b7750f09e964b3fe8d117 | refs/heads/master | 2021-06-22T04:04:45.269606 | 2020-12-16T13:15:32 | 2020-12-16T13:15:32 | 158,011,562 | 0 | 0 | null | 2020-12-16T13:15:33 | 2018-11-17T18:11:38 | C++ | UTF-8 | C++ | false | false | 1,780 | cpp | between_two_sets.cpp | #include <iostream>
#include <vector>
using namespace std;
// https://www.hackerrank.com/challenges/between-two-sets/problem
int calculateGCD(int a, int b)
{
int max = a > b ? a : b;
int min = a <= b ? a : b;
while (max % min != 0)
{
int d = max - min;
if (d > min)
{
max = d;
}
else
{
max = min;
min = d;
}
}
return min;
}
int calculatelcm(int m, int n)
{
return (m * n) / calculateGCD(m, n);
}
int checkIfCommonFactor(vector<int> a, int n)
{
bool common = true;
for (auto iterator = a.begin(); iterator != a.end(); iterator++)
{
if (*iterator % n != 0)
{
common = false;
break;
}
}
return common;
}
int main(void)
{
int m, n, lcm = 1, gcd, mina = 101, maxb = 0;
cin >> m >> n;
vector<int> a, b;
for (int i = 0; i < m; i++)
{
int x;
cin >> x;
a.push_back(x);
if (x < mina)
{
mina = x;
}
}
for (int i = 0; i < n; i++)
{
int x;
cin >> x;
b.push_back(x);
if (x > maxb)
{
maxb = x;
}
}
if (mina > maxb)
{
cout << 0 << endl;
return 0;
}
for (int i = 0; i < m; i++)
{
lcm = calculatelcm(lcm, a[i]);
}
for (int i = 0; i < n; i++)
{
if (i == 0)
{
gcd = b[i];
}
else
{
gcd = calculateGCD(gcd, b[i]);
}
}
int count = 0;
for (int i = 1; lcm * i <= gcd; i++)
{
if (gcd % (lcm * i) == 0)
{
count++;
}
}
cout << count << endl;
return 0;
} |
e41fc8f3ba46448b9e714680707250fa14907008 | c9fc6f52b4620468240ee51b338f1d6a78ec4d5d | /include/splashkit/sound.h | 576c936a443a31757ff4291a47a39ebae41827e1 | [] | no_license | jethall1/splashkit-flappybird | 842d6fdf839bbef895e58ad7cd450bebe23a4e5d | da6616c7028597788bf9c417fd4bc6ad57959d14 | refs/heads/master | 2022-11-15T23:37:30.411399 | 2020-07-11T06:51:13 | 2020-07-11T06:51:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,416 | h | sound.h | //
// SplashKit Generated Sound C++ Code
// DO NOT MODIFY
//
#ifndef __sound_h
#define __sound_h
#include "sound.h"
#include <string>
#include <vector>
using std::string;
using std::vector;
struct _sound_effect_data;
typedef struct _sound_effect_data *sound_effect;
void fade_all_sound_effects_out(int ms);
void fade_sound_effect_out(sound_effect effect, int ms);
void free_all_sound_effects();
void free_sound_effect(sound_effect effect);
bool has_sound_effect(const string &name);
sound_effect load_sound_effect(const string &name, const string &filename);
void play_sound_effect(const string &name);
void play_sound_effect(const string &name, float volume);
void play_sound_effect(const string &name, int times);
void play_sound_effect(const string &name, int times, float volume);
void play_sound_effect(sound_effect effect);
void play_sound_effect(sound_effect effect, float volume);
void play_sound_effect(sound_effect effect, int times);
void play_sound_effect(sound_effect effect, int times, float volume);
string sound_effect_filename(sound_effect effect);
string sound_effect_name(sound_effect effect);
sound_effect sound_effect_named(const string &name);
bool sound_effect_playing(const string &name);
bool sound_effect_playing(sound_effect effect);
void stop_sound_effect(const string &name);
void stop_sound_effect(sound_effect effect);
#endif /* __sound_h */
|
564cd827d2caa1aa7aacc9c843a09e99d53b4a9c | 096655ed43e121f76b59adf19852c17a2a350d2c | /qws/include/gui/QPixmap_DhClass.h | 78d90c46bc351351a713545a91cd143b0aec5705 | [] | no_license | keera-studios/hsQt | 7b2dde00b498725db10d2d4040d6dff366845024 | 8aa71a585cbec40005354d0ee43bce9794a55a9a | refs/heads/master | 2020-12-24T13:43:57.245584 | 2017-11-23T12:49:31 | 2017-11-23T12:49:31 | 30,883,063 | 42 | 5 | null | 2017-11-23T12:49:32 | 2015-02-16T18:57:48 | Haskell | UTF-8 | C++ | false | false | 2,079 | h | QPixmap_DhClass.h | /////////////////////////////////////////////////////////////////////////////
//
// File : QPixmap_DhClass.h
// Copyright : (c) David Harley 2010
// Project : qtHaskell
// Version : 1.1.4
// Modified : 2010-09-02 17:01:53
//
// Warning : this file is machine generated - do not modify.
//
/////////////////////////////////////////////////////////////////////////////
#ifndef dhclassheader
#define dhclassheader
#include <qpointer.h>
#include <dynamicqhandler.h>
#include <DhOther_gui.h>
#include <DhAutohead_gui.h>
#endif
class DhQPixmap : public DynamicQHandler, public QPixmap
{
private:
static QHash<QByteArray, int> initXhHash();
static QHash<QByteArray, int> xhHash;
public:
bool setDynamicQHandler(void * ro_ptr, char * eventId, void * rf_ptr, void * st_ptr, void * df_ptr);
bool unSetDynamicQHandler(char * eventId);
bool setDynamicQHandlerud(int udtyp, void * ro_ptr, int eventId, void * rf_ptr, void * st_ptr, void * df_ptr);
bool unSetDynamicQHandlerud(int udtyp, int eventId);
void userDefined(int x1) const;
QVariant* userDefinedVariant(int x1, QVariant* x2) const;
explicit DhQPixmap() : DynamicQHandler(), QPixmap() {};
explicit DhQPixmap(const QPixmap& x1) : DynamicQHandler(), QPixmap(x1) {};
explicit DhQPixmap(const QSize& x1) : DynamicQHandler(), QPixmap(x1) {};
explicit DhQPixmap(const QString& x1) : DynamicQHandler(), QPixmap(x1) {};
explicit DhQPixmap(const QString& x1, const char* x2) : DynamicQHandler(), QPixmap(x1, x2) {};
explicit DhQPixmap(int x1, int x2) : DynamicQHandler(), QPixmap(x1, x2) {};
explicit DhQPixmap(const QString& x1, const char* x2, Qt::ImageConversionFlags x3) : DynamicQHandler(), QPixmap(x1, x2, x3) {};
int devType() const;
int DhdevType() const;
int DvhdevType() const;
int metric(QPaintDevice::PaintDeviceMetric x1) const;
int Dhmetric(long x1) const;
int Dvhmetric(long x1) const;
QPaintEngine* paintEngine() const;
QPaintEngine* DhpaintEngine() const;
QPaintEngine* DvhpaintEngine() const;
~DhQPixmap(){}
};
|
319d4fb629188e4de8bd2c061fddb8a8c9c324d1 | e3259c908ba1b6bc517a97c6beefeaa3a02439ab | /source/cvt.cpp | 5a257e3829a351780036479ad2d1b3fb75137917 | [
"BSD-2-Clause"
] | permissive | OS2World/APP-EDITOR-FAST_Editor_Lite | c2b9d99bfba64ba9eee7993ee6127d5ea8ef3cdb | 0fc5ec808e0461180d1d6d253b59ae9ed32ae2fb | refs/heads/master | 2020-05-22T12:34:05.287574 | 2015-04-13T21:06:32 | 2015-04-13T21:06:32 | 13,176,427 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,951 | cpp | cvt.cpp | /*
** Module :CVT.CPP
** Abstract :
**
** Copyright (C) Sergey I. Yevtushenko
**
** Log: Fri 02/04/2004 Created
**
*/
#include <string.h>
#include <cvt.h>
#include <_ctype.h>
#include <version.h>
//-----------------------------------------
// String
//-----------------------------------------
int cstrlen(char *str)
{
int rc = 0;
if(str)
{
while(*str)
{
if(*str != SWITCH_CHAR)
rc++;
str++;
}
}
return rc;
}
char *str_dup(char* str, int len)
{
if(len < 0)
len = (str) ? strlen(str):0;
char *ptr = new char[len+1];
if(len)
{
if(str)
memcpy(ptr, str, len);
else
memset(ptr, ' ', len);
}
ptr[len] = 0;
return ptr;
}
char* merge2str(char* str1, char* str2, char* between)
{
int sz = strlen(str1) + strlen(str2) + 1;
if(between)
sz += strlen(between);
char* new_var = new char[sz];
strcpy(new_var, str1);
if(between)
strcat(new_var, between);
strcat(new_var, str2);
return new_var;
}
//-----------------------------------------
// Number <-> string conversion
//-----------------------------------------
char* u2s(unsigned int ulID, int minlen, char* numbuff)
{
if(!numbuff)
return 0;
char *buff = numbuff;
char *str;
int slen = 0;
str = buff;
do
{
*str++ = (char)((ulID % 10) + '0');
ulID /= 10;
slen++;
}
while(ulID);
while(slen < minlen)
{
*str++ = '0';
slen++;
}
*str-- = 0;
for(; str > buff; str--, buff++)
{
*buff ^= *str;
*str ^= *buff;
*buff ^= *str;
}
return numbuff;
}
char* i2s(int i, int minlen, char* numbuff)
{
char* p = numbuff;
if(!numbuff)
return 0;
if(i < 0)
{
*numbuff++ = '-';
if(minlen > 0)
minlen--;
i = -i;
}
u2s(i, minlen, numbuff);
return p;
}
char* c2x(int chr, char* numbuff)
{
char nibble;
if(!numbuff)
return 0;
nibble = (char)(chr >> 4);
numbuff[0] = (char)((nibble > 9) ? (nibble + 'A' - 10) : (nibble + '0'));
nibble = (char)(chr & 0x0F);
numbuff[1] = (char)((nibble > 9) ? (nibble + 'A' - 10) : (nibble + '0'));
numbuff[2] = 0;
return numbuff;
}
unsigned s2u(char *str)
{
unsigned ulRes = 0;
if(!str)
return ulRes;
while(*str == ' ')
str++;
if(str[0] == '0' && (str[1] == 'x' || str[1] == 'X'))
{
str += 2;
while(__ishd(*str))
{
ulRes <<= 4;
if(__isdd(*str))
ulRes |= *str - '0';
else
ulRes |= __to_upper(*str) - 'A' + 0x0A;
str++;
}
}
else
{
while(__isdd(*str))
{
ulRes *= 10;
ulRes += *str - '0';
str++;
}
}
return ulRes;
}
int s2i(char *str)
{
int sign = 0;
if(!str)
return 0;
while(*str == ' ' || *str == '+' || *str == '-')
{
if(*str == '-')
sign = 1 - sign;
str++;
}
unsigned u = s2u(str);
return (sign) ? -u:u;
}
|
7d227b1cd8b77cfdb04f6d69812183790d84e7ea | 3febe9bd6d3f0240754239bca7c02720a53dbe22 | /io/src/FileSystem/FileSystemConnection.cpp | 721e17cde3cae96514bf902d8410b60aa3496e76 | [
"Apache-2.0"
] | permissive | BlazingDB/blazingsql | 9c7b1bdad1538a4478332de57375830090069e85 | a35643d4c983334757eee96d5b9005b8b9fbd21b | refs/heads/branch-21.08 | 2023-08-17T16:10:36.051621 | 2021-09-30T21:51:09 | 2021-09-30T21:51:09 | 150,149,024 | 854 | 114 | Apache-2.0 | 2022-09-16T23:58:36 | 2018-09-24T18:25:45 | C++ | UTF-8 | C++ | false | false | 16,154 | cpp | FileSystemConnection.cpp | /*
* Copyright 2017 BlazingDB, Inc.
* Copyright 2018-2019 Percy Camilo Triveño Aucahuasi <percy@blazingdb.com>
*/
#include "FileSystemConnection.h"
#include "Util/StringUtil.h"
namespace HadoopFileSystemConnection {
const std::string driverTypeName(DriverType driverType) {
switch(driverType) {
case DriverType::LIBHDFS: return "LIBHDFS"; break;
case DriverType::LIBHDFS3: return "LIBHDFS3"; break;
default: break;
}
return "UNDEFINED";
}
DriverType driverTypeFromName(const std::string & driverTypeName) {
if(driverTypeName == "LIBHDFS") {
return DriverType::LIBHDFS;
}
if(driverTypeName == "LIBHDFS3") {
return DriverType::LIBHDFS3;
}
return DriverType::UNDEFINED;
}
const std::string connectionPropertyName(ConnectionProperty connectionProperty) {
switch(connectionProperty) {
case ConnectionProperty::HOST: return "hdfs.host"; break;
case ConnectionProperty::PORT: return "hdfs.port"; break;
case ConnectionProperty::USER: return "hdfs.user"; break;
case ConnectionProperty::DRIVER_TYPE: return "hdfs.driver.type"; break;
case ConnectionProperty::KERBEROS_TICKET: return "hdfs.kerberos.ticket"; break;
default: break;
}
return "UNDEFINED";
}
const std::string connectionPropertyEnvName(ConnectionProperty connectionProperty) {
std::string property = "BLAZING_";
property += connectionPropertyName(connectionProperty);
property = StringUtil::replace(property, ".", "_");
property = StringUtil::toUpper(property);
return property;
}
// returns false if some argument is invalid, true otherwise
bool verifyConnectionProperties(const std::string & host,
int port,
const std::string & user,
DriverType driverType,
const std::string & /*kerberosTicket*/) {
// TODO percy more checks, use regular expressions here
if(host.empty()) {
return false;
}
if(port < 0) {
return false;
}
if(user.empty()) {
return false;
}
if(driverType == DriverType::UNDEFINED) {
return false;
}
// NOTE kerberosTicket can be empty
return true;
}
} // END namespace HadoopFileSystemConnection
namespace S3FileSystemConnection {
const std::string connectionPropertyName(ConnectionProperty connectionProperty) {
switch(connectionProperty) {
case ConnectionProperty::BUCKET_NAME: return "s3.bucket_name"; break;
case ConnectionProperty::ENCRYPTION_TYPE: return "s3.encryption_type"; break;
case ConnectionProperty::KMS_KEY_AMAZON_RESOURCE_NAME: return "s3.kms_key_amazon_resource_name"; break;
case ConnectionProperty::ACCESS_KEY_ID: return "s3.access_key_id"; break;
case ConnectionProperty::SECRET_KEY: return "s3.secret_key"; break;
case ConnectionProperty::SESSION_TOKEN: return "s3.session_token"; break;
case ConnectionProperty::ENDPOINT_OVERRIDE: return "s3.endpoint_override"; break;
case ConnectionProperty::REGION: return "s3.region"; break;
case ConnectionProperty::UNDEFINED: break;
default: break;
}
return "UNDEFINED";
}
const std::string connectionPropertyEnvName(ConnectionProperty connectionProperty) {
std::string property = "BLAZING_";
property += connectionPropertyName(connectionProperty);
property = StringUtil::replace(property, ".", "_");
property = StringUtil::toUpper(property);
return property;
}
const std::string encryptionTypeName(EncryptionType encryptionType) {
switch(encryptionType) {
case EncryptionType::NONE: return "None"; break;
case EncryptionType::AES_256: return "AES-256"; break;
case EncryptionType::AWS_KMS: return "AWS-KMS"; break;
default: break;
}
return "UNDEFINED";
}
EncryptionType encryptionTypeFromName(const std::string & encryptionTypeName) {
if(encryptionTypeName == "None") {
return EncryptionType::NONE;
}
if(encryptionTypeName == "AES-256") {
return EncryptionType::AES_256;
}
if(encryptionTypeName == "AWS-KMS") {
return EncryptionType::AWS_KMS;
}
return EncryptionType::UNDEFINED; // return invalid
}
// returns false if some argument is invalid, true otherwise
bool verifyConnectionProperties(const std::string & bucketName,
S3FileSystemConnection::EncryptionType encryptionType,
const std::string & kmsKeyAmazonResourceName,
const std::string & /*accessKeyId*/,
const std::string & /*secretKey*/,
const std::string & /*sessionToken*/,
const std::string & /*endpointOverride*/,
const std::string & /*region*/) {
// TODO percy more checks, use regular expressions here
if(bucketName.empty()) {
return false;
}
if(encryptionType == EncryptionType::UNDEFINED) {
return false;
}
if((encryptionType == EncryptionType::AWS_KMS) && kmsKeyAmazonResourceName.empty()) {
return false;
}
// if (sessionToken.empty()) {
// return false;
// }
return true;
}
} // END namespace S3FileSystemConnection
namespace GoogleCloudStorageConnection {
const std::string connectionPropertyName(ConnectionProperty connectionProperty) {
switch(connectionProperty) {
case ConnectionProperty::PROJECT_ID: return "gcs.project_id"; break;
case ConnectionProperty::BUCKET_NAME: return "gcs.bucket_name"; break;
case ConnectionProperty::USE_DEFAULT_ADC_JSON_FILE: return "gcs.use_default_adc_json_file"; break;
case ConnectionProperty::ADC_JSON_FILE: return "gcs.adc_json_file"; break;
default: break;
}
return "UNDEFINED";
}
const std::string connectionPropertyEnvName(ConnectionProperty connectionProperty) {
std::string property = "BLAZING_";
property += connectionPropertyName(connectionProperty);
property = StringUtil::replace(property, ".", "_");
property = StringUtil::toUpper(property);
return property;
}
// returns false if some argument is invalid, true otherwise
bool verifyConnectionProperties(const std::string & projectId,
const std::string & bucketName,
bool useDefaultAdcJsonFile,
const std::string & adcJsonFile) {
// TODO percy throw error details here?
if(projectId.empty()) {
return false;
}
if(bucketName.empty()) {
return false;
}
if((useDefaultAdcJsonFile == false) && adcJsonFile.empty()) {
return false;
}
return true;
}
} // END namespace GoogleCloudStorageConnection
// BEGIN FileSystemConnection
FileSystemConnection::FileSystemConnection() : fileSystemType(FileSystemType::UNDEFINED) {}
FileSystemConnection::FileSystemConnection(FileSystemType fileSystemType) {
const bool isUndefined = (fileSystemType == FileSystemType::UNDEFINED);
const bool isLocal = (fileSystemType == FileSystemType::LOCAL);
if(isUndefined || (isLocal == false)) {
invalidate();
return;
}
this->fileSystemType = fileSystemType;
}
FileSystemConnection::FileSystemConnection(const std::string & host,
int port,
const std::string & user,
HadoopFileSystemConnection::DriverType driverType,
const std::string & kerberosTicket) {
using namespace HadoopFileSystemConnection;
const bool valid = verifyConnectionProperties(host, port, user, driverType, kerberosTicket);
if(valid == false) {
this->invalidate();
return;
}
const std::string portString = std::to_string(port);
const std::string driverString = driverTypeName(driverType);
// NOTE never change this insertion order
const std::map<std::string, std::string> connectionProperties = {
{connectionPropertyName(ConnectionProperty::HOST), host},
{connectionPropertyName(ConnectionProperty::PORT), portString},
{connectionPropertyName(ConnectionProperty::USER), user},
{connectionPropertyName(ConnectionProperty::DRIVER_TYPE), driverString},
{connectionPropertyName(ConnectionProperty::KERBEROS_TICKET), kerberosTicket}};
this->fileSystemType = FileSystemType::HDFS;
this->connectionProperties = std::move(connectionProperties);
}
FileSystemConnection::FileSystemConnection(const std::string & bucketName,
S3FileSystemConnection::EncryptionType encryptionType,
const std::string & kmsKeyAmazonResourceName,
const std::string & accessKeyId,
const std::string & secretKey,
const std::string & sessionToken,
const std::string & endpointOverride,
const std::string & region) {
using namespace S3FileSystemConnection;
const bool valid = verifyConnectionProperties(
bucketName, encryptionType, kmsKeyAmazonResourceName, accessKeyId, secretKey, sessionToken, endpointOverride, region);
if(valid == false) {
this->invalidate();
return;
}
const std::string encryptionString = encryptionTypeName(encryptionType);
// NOTE never change this insertion order
const std::map<std::string, std::string> connectionProperties = {
{connectionPropertyName(ConnectionProperty::BUCKET_NAME), bucketName},
{connectionPropertyName(ConnectionProperty::ENCRYPTION_TYPE), encryptionString},
{connectionPropertyName(ConnectionProperty::KMS_KEY_AMAZON_RESOURCE_NAME), kmsKeyAmazonResourceName},
{connectionPropertyName(ConnectionProperty::ACCESS_KEY_ID), accessKeyId},
{connectionPropertyName(ConnectionProperty::SECRET_KEY), secretKey},
{connectionPropertyName(ConnectionProperty::SESSION_TOKEN), sessionToken},
{connectionPropertyName(ConnectionProperty::ENDPOINT_OVERRIDE), endpointOverride},
{connectionPropertyName(ConnectionProperty::REGION), region}};
this->fileSystemType = FileSystemType::S3;
this->connectionProperties = std::move(connectionProperties);
}
FileSystemConnection::FileSystemConnection(const std::string & projectId,
const std::string & bucketName,
bool useDefaultAdcJsonFile,
const std::string & adcJsonFile) {
using namespace GoogleCloudStorageConnection;
const bool valid = verifyConnectionProperties(projectId, bucketName, useDefaultAdcJsonFile, adcJsonFile);
if(valid == false) {
this->invalidate();
return;
}
std::string useDefaultAdcJsonFileStr = "true";
if(useDefaultAdcJsonFile == false) {
useDefaultAdcJsonFileStr = "false";
}
// NOTE never change this insertion order
const std::map<std::string, std::string> connectionProperties = {
{connectionPropertyName(ConnectionProperty::PROJECT_ID), projectId},
{connectionPropertyName(ConnectionProperty::BUCKET_NAME), bucketName},
{connectionPropertyName(ConnectionProperty::USE_DEFAULT_ADC_JSON_FILE), useDefaultAdcJsonFileStr},
{connectionPropertyName(ConnectionProperty::ADC_JSON_FILE), adcJsonFile}};
this->fileSystemType = FileSystemType::GOOGLE_CLOUD_STORAGE;
this->connectionProperties = std::move(connectionProperties);
}
FileSystemConnection::FileSystemConnection(const std::string & fileSystemConnectionString) {
const std::vector<std::string> fileSystemTypeSplit = StringUtil::split(fileSystemConnectionString, " : ");
if(fileSystemTypeSplit.size() == 2) {
const std::string fileSystemType = fileSystemTypeSplit[0];
if(fileSystemType == fileSystemTypeName(FileSystemType::LOCAL)) {
this->fileSystemType = FileSystemType::LOCAL;
} else if(fileSystemType == fileSystemTypeName(FileSystemType::HDFS)) {
this->fileSystemType = FileSystemType::HDFS;
} else if(fileSystemType == fileSystemTypeName(FileSystemType::S3)) {
this->fileSystemType = FileSystemType::S3;
} else if(fileSystemType == fileSystemTypeName(FileSystemType::GOOGLE_CLOUD_STORAGE)) {
this->fileSystemType = FileSystemType::GOOGLE_CLOUD_STORAGE;
} else {
this->invalidate();
return;
}
if(requireConnectionProperties()) {
const std::vector<std::string> connectionPropertiesSplit = StringUtil::split(fileSystemTypeSplit[1], ",");
for(const std::string & property : connectionPropertiesSplit) {
const std::vector<std::string> propSplit = StringUtil::split(property, "|");
if(propSplit.size() == 2) {
this->connectionProperties[propSplit[0]] = propSplit[1];
} else {
// malformed text
this->invalidate();
return;
}
}
}
} else {
this->invalidate();
return;
}
}
FileSystemConnection::FileSystemConnection(const FileSystemConnection & other)
: fileSystemType(other.fileSystemType), connectionProperties(other.connectionProperties) {}
FileSystemConnection::FileSystemConnection(FileSystemConnection && other)
: fileSystemType(std::move(other.fileSystemType)), connectionProperties(std::move(other.connectionProperties)) {}
FileSystemConnection::~FileSystemConnection() {}
bool FileSystemConnection::isValid() const noexcept {
if(this->fileSystemType == FileSystemType::UNDEFINED) {
return false;
}
if(this->requireConnectionProperties() && this->connectionProperties.empty()) {
return false;
}
return true;
}
FileSystemType FileSystemConnection::getFileSystemType() const noexcept { return this->fileSystemType; }
const std::map<std::string, std::string> FileSystemConnection::getConnectionProperties() const noexcept {
return this->connectionProperties;
}
const std::string FileSystemConnection::getConnectionProperty(
HadoopFileSystemConnection::ConnectionProperty connectionProperty) const noexcept {
using namespace HadoopFileSystemConnection;
if(this->isValid() == false) {
return std::string();
}
if(this->fileSystemType != FileSystemType::HDFS) {
return std::string();
}
const std::string propertyName = connectionPropertyName(connectionProperty);
return this->connectionProperties.at(propertyName);
}
const std::string FileSystemConnection::getConnectionProperty(
S3FileSystemConnection::ConnectionProperty connectionProperty) const noexcept {
using namespace S3FileSystemConnection;
if(this->isValid() == false) {
return std::string();
}
if(this->fileSystemType != FileSystemType::S3) {
return std::string();
}
const std::string propertyName = connectionPropertyName(connectionProperty);
return this->connectionProperties.at(propertyName);
}
const std::string FileSystemConnection::getConnectionProperty(
GoogleCloudStorageConnection::ConnectionProperty connectionProperty) const noexcept {
using namespace GoogleCloudStorageConnection;
if(this->isValid() == false) {
return std::string();
}
if(this->fileSystemType != FileSystemType::GOOGLE_CLOUD_STORAGE) {
return std::string();
}
const std::string propertyName = connectionPropertyName(connectionProperty);
return this->connectionProperties.at(propertyName);
}
std::string FileSystemConnection::toString() const {
if(this->fileSystemType == FileSystemType::UNDEFINED) {
return std::string();
}
std::string connectionProperties = "";
for(const auto & connectionProperty : this->connectionProperties) {
if(connectionProperties == "") {
connectionProperties += connectionProperty.first + ":" + connectionProperty.second;
} else {
connectionProperties += "|" + connectionProperty.first + ":" + connectionProperty.second;
}
}
const std::string result = fileSystemTypeName(this->fileSystemType) + "=>" + connectionProperties;
return result;
}
FileSystemConnection & FileSystemConnection::operator=(const FileSystemConnection & other) {
this->fileSystemType = other.fileSystemType;
this->connectionProperties = other.connectionProperties;
return *this;
}
FileSystemConnection & FileSystemConnection::operator=(FileSystemConnection && other) {
this->fileSystemType = std::move(other.fileSystemType);
this->connectionProperties = std::move(other.connectionProperties);
return *this;
}
bool FileSystemConnection::operator==(const FileSystemConnection & other) const {
const bool fileSystemTypeEquals = (this->fileSystemType == other.fileSystemType);
const bool connectionPropertiesEquals = (this->connectionProperties == other.connectionProperties);
const bool connectionPropertiesSizeEquals =
(this->connectionProperties.size() == other.connectionProperties.size());
const bool equals = (fileSystemTypeEquals && connectionPropertiesEquals && connectionPropertiesSizeEquals);
return equals;
}
bool FileSystemConnection::operator!=(const FileSystemConnection & other) const { return !(*this == other); }
void FileSystemConnection::invalidate() {
this->fileSystemType = FileSystemType::UNDEFINED;
this->connectionProperties = std::map<std::string, std::string>();
}
bool FileSystemConnection::requireConnectionProperties() const noexcept {
bool require = false;
switch(this->fileSystemType) {
case FileSystemType::LOCAL: require = false; break;
case FileSystemType::HDFS: require = true; break;
case FileSystemType::S3: require = true; break;
case FileSystemType::GOOGLE_CLOUD_STORAGE: require = true; break;
default: break;
}
return require;
}
// END FileSystemConnection
|
cbc6a85f2de22da45ff86b486aed3bbe41df9b07 | 7d923744607c91d9078ae63d31573cbf5300134d | /ABC/148/A.cpp | 6bf2cc3cafdd8264fe29745a3f30b7cc326575be | [] | no_license | myabu-dev/AtCoder | 10f9fe99f54408b703c93e7c2af7724c8f8b32e1 | 5e35b76e9294e5bafce554ce1f071ebec4e23304 | refs/heads/master | 2021-06-24T21:49:46.570473 | 2021-06-17T11:52:01 | 2021-06-17T11:52:01 | 180,811,678 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 270 | cpp | A.cpp | //
// Created by Myabu on 2020/01/08.
//
#include<iostream>
using namespace std;
int main(void){
int A, B;
cin>>A>>B;
if(A+B==4){
cout<<2<<endl;
}else if(A+B==3){
cout<<3<<endl;
}else{
cout<<1<<endl;
}
return 0;
}
|
0f8c840e0b7ab815b7afd6306fc915431709bbc8 | 14fe137c60481ea3ad445ac1da585d9aad0a551b | /PODSampler-v1912/libPOD/lnInclude/MatrixBase_bottomRightCorner_int_int.cpp | 41bdaaaedf3d5c765901e4d38a731a360d91a1f3 | [] | no_license | maxshatsky/libDataAnalysis | 7eec4384cfee085e2601b15cff70fada8b8154be | 0d17b0678c7881a7f0c46bb7a87ec2a746b01486 | refs/heads/master | 2021-07-09T15:01:03.778585 | 2020-09-07T09:53:36 | 2020-09-07T09:53:36 | 192,750,658 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 73 | cpp | MatrixBase_bottomRightCorner_int_int.cpp | ../thirdparty/Eigen/doc/snippets/MatrixBase_bottomRightCorner_int_int.cpp |
6dcf2f81f2fdfc7770d794677bd18072a573c571 | 94828e2e7f8d986d0837a1501f0570181d9cf634 | /hello.cpp | 3be5e1718c87266c343d7959f116dbfb993d4a1b | [] | no_license | souravsehgal-9/cs308 | 0e6f58a53ee0df758d4c18f56aecff037da2796d | aca236e5bba43c4e6fc73012e7d75b6ac00f047b | refs/heads/main | 2023-08-03T00:59:03.906890 | 2021-09-25T08:09:52 | 2021-09-25T08:09:52 | 410,042,331 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 173 | cpp | hello.cpp | #include <iostream>
#include "functions.h"
using namespace std;
void print_hello(){
printf("\n");
prinf("Hello Sourav Sehgal!\nHope you are fine");
printf("\n");
}
|
0c20f18c430c1da67db329eb42cf2c767055cfb6 | b825fa70c99bf8b190749070b94fdeb8735195b8 | /FOCOLOCO_02/FOCOLOCO_02.ino | 7a8fdd337b806a0824dadd89496805f388f6a32b | [] | no_license | moita/FOCOLOCOV2 | a7889f1e50300930c7a1d9cf0b2be88665a1fda1 | bda2eb4b79a19810deeb30f7abc6d37b44a6dfe0 | refs/heads/master | 2021-01-24T21:19:50.926876 | 2014-04-10T08:39:52 | 2014-04-10T08:39:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,069 | ino | FOCOLOCO_02.ino | // Adafruit Motor shield library
// copyright Adafruit Industries LLC, 2009
// this code is public domain, enjoy!
#include "OneButton.h" //this library allows buttons to call mutiple events: http://www.mathertel.de/Arduino/OneButtonLibrary.aspx
#include <LiquidCrystal.h>
#include <Encoder.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
Encoder myEnc(2, 3);
OneButton button(4, true); // Setup a OneButton on pin 4.
int encoderPin1 = 3;
int encoderPin2 = 2;
volatile int lastEncoded = 0;
int encoderValue;
long lastencoderValue = 0;
int lastMSB = 0;
int lastLSB = 0;
int lens;
int infinity =0 ;
int macro = 999;
int hardstop = 0;
int mark1;
int mark2;
int mark3;
int dist = 0;
int bat = 6;
char buffer [16]; //used with sprintinf to format text for LCD
int n; //used with sprintinf to format text for LCD
long oldPosition = -999;
long previoushardstop = 0;
void setup() {
button.attachDoubleClick(infinityFunction); // link the recordFunction to be called on a doubleclick event.
button.attachClick (macroFunction); // link the reverseFunction to be called on a click (short click) event.
button.attachPress (resetFunction); // link the playbackFunction to be called on a press (long click) event.
lcd.begin(16, 2);
lcd.clear();
}
void loop() {
long newPosition = myEnc.read();
if (oldPosition < newPosition) {
hardstop++;
oldPosition = newPosition;
}
if (oldPosition > newPosition) {
hardstop--;
oldPosition = newPosition;
}
hardstop = constrain(hardstop,infinity,macro);
button.tick(); //this checks for a button press event
lcd.setCursor(0, 0);
lcd.print("STP MAC INF BAT");
lcd.setCursor(0, 1);
n=sprintf (buffer, "%03d %03d %03d %02d ",hardstop, macro, infinity, bat);
lcd.print(buffer); ///< You will get “000 00 00 00 00″
}
void macroFunction(){
macro = hardstop;
}
void infinityFunction(){
infinity = hardstop;
}
void resetFunction(){
macro = 1000;
infinity = 0;
}
|
227b5de3fb2b74b749be9850fe8a32581f4dd5fe | 0f3b744a5edcf7b3bc7e43b7ca54ad9e713ba51c | /public/interface/interface.h | 192da48f6352e5216321b97cf03812ff934d5cfe | [] | no_license | blockspacer/lite_client | 5713c35c0b9f3d06a286fbabb846d3617f3d5594 | 0e36b3cbc474d788f4674af1e918170b015046ad | refs/heads/master | 2021-05-25T13:43:02.351609 | 2014-03-14T15:10:52 | 2014-03-14T15:10:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 134 | h | interface.h | #ifndef LC_INTERFACE_H
#define LC_INTERFACE_H
class Interface {
public:
virtual ~Interface(void) {}
};
#endif // LC_INTERFACE_H
|
bd9c951b60532612d47c373b0c02162bebbbeeeb | 62ea60b61915aa90f28c36943a571b2d2b142cf8 | /project3/encode/writer.cpp | 4f027416d7df432f9ce0ed4048505f6051414037 | [] | no_license | puradox/CS-165 | 9b055a6c6a01509a4a53dbe76390e4d0f878ab42 | 6c40de39e812acf77b4dd69e8e5f7ca4b755d56e | refs/heads/master | 2020-03-08T01:43:51.860560 | 2018-06-06T16:10:16 | 2018-06-06T16:10:16 | 127,838,821 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,402 | cpp | writer.cpp | #include <iostream>
#include <iomanip>
#include <vector>
#include <cinttypes>
#include <bitset>
#include "writer.hpp"
#include "config.hpp"
void write(config conf, uint64_t inChars, std::vector<encode_output> outputs) {
std::bitset<8> *buffer = new std::bitset<8>();
uint64_t outChars = 0;
uint8_t counter = 0; // how many bits have been written
// Write N, L, and S to standard output
*buffer = std::bitset<8>(conf.N);
std::cout << (char*)buffer;
++outChars;
*buffer = std::bitset<8>(conf.L);
std::cout << (char*)buffer;
++outChars;
*buffer = std::bitset<8>(conf.S);
std::cout << (char*)buffer;
++outChars;
for (encode_output out : outputs) {
if (out.length == 0) {
// Write match length L (which is all zeros in this case)
for (uint8_t i = 0; i < conf.L; i++) {
buffer->set(7 - counter, 0);
++counter;
if (counter >= 8) {
std::cout << (char*)buffer;
counter = 0;
++outChars;
}
}
// Write string length S
std::bitset<5> string_length(out.offset);
uint8_t strlen_offset = 5 - conf.S;
for (uint8_t i = 0; i < conf.S; i++) {
buffer->set(7 - counter, string_length[4 - (strlen_offset + i)]);
++counter;
if (counter >= 8) {
std::cout << (char*)buffer;
counter = 0;
++outChars;
}
}
// Write the string contents
for (uint8_t i = 0; i < out.chars.length(); i++) {
std::bitset<8> char_buffer(out.chars.at(i));
for (uint8_t i = 0; i < 8; i++) {
buffer->set(7 - counter, char_buffer[7 - i]);
++counter;
if (counter >= 8) {
std::cout << (char*)buffer;
counter = 0;
++outChars;
}
}
}
}
else {
// Write the match length L
std::bitset<4> length(out.length - 1);
uint8_t length_offset = 4 - conf.L;
for (uint8_t i = 0; i < conf.L; i++) {
buffer->set(7 - counter, length[3 - (length_offset + i)]);
++counter;
if (counter >= 8) {
std::cout << (char*)buffer;
counter = 0;
++outChars;
}
}
// Write the match offset N
std::bitset<14> offset(out.offset);
uint8_t offset_offset = 14 - conf.N;
for (uint8_t i = 0; i < conf.N; i++) {
buffer->set(7 - counter, offset[13 - (offset_offset + i)]);
++counter;
if (counter >= 8) {
std::cout << (char*)buffer;
counter = 0;
++outChars;
}
}
}
}
// Write the end-of-file token.
for (uint8_t i = 0; i < conf.L + conf.S; i++) {
buffer->set(7 - counter, 0);
++counter;
if (counter >= 8) {
std::cout << (char*)buffer;
counter = 0;
++outChars;
}
}
// If we have a partial byte left over, we have to write it. We don't care
// what the remainder of the buffer is filled with since it is after our
// end-of-file identifier.
if (counter != 0) {
std::cout << (char*)buffer;
++outChars;
}
double compressedGain = 100 - (100 * ((double)outChars/inChars));
std::cerr << "Parameter Values:" << std::endl;
std::cerr << "N=" << (int)conf.N << ", L=" << (int)conf.L << ", S=" << (int)conf.S << std::endl;
std::cerr << "Bytes in: " << inChars << ", Bytes out: " << outChars << std::endl;
std::cerr << "Compressed file was " << std::setprecision(3) << compressedGain << "% smaller than original." << std::endl;
delete buffer;
}
std::ostream &operator<<(std::ostream &os, const encode_output &eo)
{
if (eo.length == 0)
{
// string literal
return os << eo.chars;
}
else
{
// match
return os << "(len=" << eo.length << ", offset=" << eo.offset << ")";
}
}
|
21516b027cca3423188a3d72451080b024a58c79 | 14873498e1f79e33f222467b9da1040970e2e235 | /source/TutorialModeSelectScene.cpp | e23426e36f069b4782cb241d0ac9b732f7a83043 | [] | no_license | takowasaby/SpaceShip | 4d6092473db6906b0e5f3ab69e864b56bd1c8e14 | ac2acac1df169cf30189f7a97936a8f1029870cb | refs/heads/master | 2021-04-03T07:44:53.859527 | 2018-09-04T09:51:39 | 2018-09-04T09:51:39 | 125,162,908 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 267 | cpp | TutorialModeSelectScene.cpp | #include "TutorialModeSelectScene.h"
TutorialModeSelectScene::TutorialModeSelectScene(SceneChanger * impl, const Parameter & parameter) :
AbstractScene(impl, parameter)
{
}
void TutorialModeSelectScene::update()
{
}
void TutorialModeSelectScene::draw() const
{
}
|
5c35aa9a4572a2502a797db20e9da881b877ba0e | 89569c37496e1c32a556a8271436c0c74095d8d6 | /experimental/LaneDetection/Test_CVSystem.hpp | 6fae5e0acd60b37861f825bdca3ccbf2c00f0737 | [] | no_license | cool971299411/auton_net | 755c771d87251d135e1c85be63250b86a3ee965c | 8da208ab94e0c4633322c3418e9c9a1c4f3852b7 | refs/heads/master | 2021-05-27T06:21:29.189148 | 2014-08-12T12:43:02 | 2014-08-12T12:43:02 | null | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 378 | hpp | Test_CVSystem.hpp | /// Implements tests for CVSystem.
/// \author: Piotr Gródek (grodekpiotr@gmail.com)
#ifndef __TEST_CV_SYSTEM_HPP__
#define __TEST_CV_SYSTEM_HPP__
#include "CVSystem.hpp"
class TestCVSystem
{
public:
explicit TestCVSystem(CVSystem* _cvs);
bool laneDetect(const std::string & source);
private:
CVSystem* cvs;
};
#endif //__TEST_CV_SYSTEM_HPP__
|
e99ebbe228bcab5e0ede05fd1b5896f065c17a9c | 5cdd9c1b6adb67fec94f6349ad6203ce2702fecb | /src/EnergyPlus/PVWatts.hh | 14f0dc689aa30a9abe3a245e7a3749cf72012d66 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | NREL/EnergyPlus | 9d8fc6936b5a0c81d2469ab9cdabe55405ccb8f2 | 50b8a5511ce559e5175524b943c26cc5b99d712d | refs/heads/develop | 2023-09-04T08:20:29.804559 | 2023-09-01T13:58:55 | 2023-09-01T13:58:55 | 14,620,185 | 1,013 | 406 | NOASSERTION | 2023-09-14T19:52:57 | 2013-11-22T14:47:34 | C++ | UTF-8 | C++ | false | false | 7,915 | hh | PVWatts.hh | // EnergyPlus, Copyright (c) 1996-2023, The Board of Trustees of the University of Illinois,
// The Regents of the University of California, through Lawrence Berkeley National Laboratory
// (subject to receipt of any required approvals from the U.S. Dept. of Energy), Oak Ridge
// National Laboratory, managed by UT-Battelle, Alliance for Sustainable Energy, LLC, and other
// contributors. All rights reserved.
//
// NOTICE: This Software was developed under funding from the U.S. Department of Energy and the
// U.S. Government consequently retains certain rights. As such, the U.S. Government has been
// granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable,
// worldwide license in the Software to reproduce, distribute copies to the public, prepare
// derivative works, and perform publicly and display publicly, and to permit others to do so.
//
// 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.
//
// (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory,
// the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be
// used to endorse or promote products derived from this software without specific prior
// written permission.
//
// (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in stand-alone form
// without changes from the version obtained under this License, or (ii) Licensee makes a
// reference solely to the software portion of its product, Licensee must refer to the
// software as "EnergyPlus version X" software, where "X" is the version number Licensee
// obtained under this License and may not use a different name for the software. Except as
// specifically required in this Section (4), Licensee shall not use in a company name, a
// product name, in advertising, publicity, or other promotional activities any name, trade
// name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly
// similar designation, without the U.S. Department of Energy's prior written consent.
//
// 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 OWNER 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.
#ifndef PVWatts_hh_INCLUDED
#define PVWatts_hh_INCLUDED
// C++ Headers
#include <map>
#include <memory>
#include <string>
// ObjexxFCL Headers
// EnergyPlus Headers
#include <EnergyPlus/Data/BaseData.hh>
#include <EnergyPlus/DataSurfaces.hh>
#include <EnergyPlus/EnergyPlus.hh>
// SAM Headers
// #include <../third_party/ssc/shared/lib_irradproc.h>
// #include <../third_party/ssc/shared/lib_pvwatts.h>
// #include <../third_party/ssc/shared/lib_pvshade.h>
// #include <../third_party/ssc/shared/lib_pv_incidence_modifier.h>
#include <../third_party/ssc/ssc/sscapi.h>
namespace EnergyPlus {
// Forward declarations
struct EnergyPlusData;
namespace PVWatts {
enum class ModuleType
{
Invalid = -1,
STANDARD,
PREMIUM,
THIN_FILM,
Num
};
enum class ArrayType
{
Invalid = -1,
FIXED_OPEN_RACK,
FIXED_ROOF_MOUNTED,
ONE_AXIS,
ONE_AXIS_BACKTRACKING,
TWO_AXIS,
Num
};
enum class GeometryType
{
Invalid = -1,
TILT_AZIMUTH,
SURFACE,
Num
};
struct DCPowerOutput
{
Real64 poa; // Plane of array irradiance
Real64 tpoa; // Transmitted plane of array irradiance
Real64 pvt; // PV Cell temperature
Real64 dc; // DC power output
};
struct IrradianceOutput
{
Real64 solazi;
Real64 solzen;
Real64 solalt;
Real64 aoi;
Real64 stilt;
Real64 sazi;
Real64 rot;
Real64 btd;
Real64 ibeam;
Real64 iskydiff;
Real64 ignddiff;
int sunup;
};
class PVWattsGenerator
{
private:
enum AlphaFields
{
NAME = 1,
VERSION = 2,
MODULE_TYPE = 3,
ARRAY_TYPE = 4,
GEOMETRY_TYPE = 5,
SURFACE_NAME = 6,
};
enum NumFields
{
DC_SYSTEM_CAPACITY = 1,
SYSTEM_LOSSES = 2,
TILT_ANGLE = 3,
AZIMUTH_ANGLE = 4,
GROUND_COVERAGE_RATIO = 5,
};
// User inputs
std::string name_;
Real64 dcSystemCapacity_;
ModuleType moduleType_;
ArrayType arrayType_;
Real64 systemLosses_;
GeometryType geometryType_;
Real64 tilt_;
Real64 azimuth_;
int surfaceNum_;
Real64 groundCoverageRatio_;
Real64 DCtoACRatio_;
Real64 inverterEfficiency_;
// Output variables
Real64 outputDCPower_;
Real64 outputDCEnergy_;
Real64 outputACPower_;
Real64 outputACEnergy_;
Real64 cellTemperature_;
Real64 planeOfArrayIrradiance_;
Real64 shadedPercent_;
ssc_module_t pvwattsModule_;
ssc_data_t pvwattsData_;
Real64 NumTimeStepsToday_;
public:
static std::unique_ptr<PVWattsGenerator> createFromIdfObj(EnergyPlusData &state, int objNum);
PVWattsGenerator(EnergyPlusData &state,
const std::string &name,
const Real64 dcSystemCapacity,
ModuleType moduleType,
ArrayType arrayType,
Real64 systemLosses = 0.14,
GeometryType geometryType = GeometryType::TILT_AZIMUTH,
Real64 tilt = 20.0,
Real64 azimuth = 180.0,
size_t surfaceNum = 0,
Real64 groundCoverageRatio = 0.4);
void setupOutputVariables(EnergyPlusData &state);
Real64 getDCSystemCapacity();
ModuleType getModuleType();
ArrayType getArrayType();
Real64 getSystemLosses();
GeometryType getGeometryType();
Real64 getTilt();
Real64 getAzimuth();
DataSurfaces::SurfaceData &getSurface(EnergyPlusData &state);
Real64 getGroundCoverageRatio();
Real64 getCellTemperature();
Real64 getPlaneOfArrayIrradiance();
void setCellTemperature(Real64 cellTemp);
void setPlaneOfArrayIrradiance(Real64 poa);
// Setters so we can store properties of the attached inverter.
void setDCtoACRatio(Real64 dc2ac);
void setInverterEfficiency(Real64 inverterEfficiency);
void calc(EnergyPlusData &state);
void getResults(Real64 &GeneratorPower, Real64 &GeneratorEnergy, Real64 &ThermalPower, Real64 &ThermalEnergy);
};
} // namespace PVWatts
} // namespace EnergyPlus
#endif
|
aba6d422b0138c3e0bbd37b0bd07145702ecd0bc | 148d0c150fc4e8320cefe290e3016279facfeb07 | /timus/sum of digit.cpp | 2e5640aaa66703726a245b4d248fa64607f32899 | [] | no_license | Arnab1899/Competitve-Programming | 78b15dcb4dcf492478ddf6a7ddcede0f256796e6 | 244b64363f0f45ba6126f25c13b2a3f063b91914 | refs/heads/master | 2023-03-23T07:16:13.960200 | 2021-03-14T17:35:22 | 2021-03-14T17:35:22 | 347,706,485 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 317 | cpp | sum of digit.cpp | #include<bits/stdc++.h>
using namespace std;
int main ()
{
int num;
cin >> num ;
while(num--)
{
int loop;
int sum = 0;
cin >> loop;
while(loop!= 0)
{
sum = sum + loop % 10;
loop = loop/10;
}
cout << sum << endl;
}
return 0;
}
|
f42a1f897902c5d19bff945972e1a809ccb6d21c | dbb18babfe7596bb6d3fd69e829937cd72c33d70 | /main.cpp | 1c40219c431add653e8dbf52fc1de0c6d681ba85 | [] | no_license | LibraSkywalker/SmallCC | 1561a61d8326a98dc13325095c7fe6e1be58bb9a | ef29d8f780c87047d488fe8221ca4458ba1239c0 | refs/heads/master | 2021-01-20T12:06:25.033573 | 2017-01-22T09:55:03 | 2017-01-22T09:55:03 | 79,512,692 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,547 | cpp | main.cpp | #include <iostream>
#include "AST.h"
#include "semanticAnalyzer.h"
using namespace std;
EventList* Globe;
bool semanticAnalyze(){
{
globeScope = currentScope = make_shared<Scope>();
IntType = std::static_pointer_cast<TypeSymbol>(globeScope->putVariable("int",TYPESYMBOL));
ReadFunc = std::static_pointer_cast<FunctionSymbol>(globeScope->putVariable("read",FUNCTIONSYMBOL));
WriteFunc = std::static_pointer_cast<FunctionSymbol>(globeScope->putVariable("write",FUNCTIONSYMBOL));
ReadFunc->addParameter(make_shared<VariableSymbol>(IntType));
WriteFunc->addParameter(make_shared<VariableSymbol>(IntType));
if (!Globe->check()){
fprintf(stderr,"Semantic check failed\n%s", SystemError.c_str());
cout << "Error." << endl;
return 1;
} else {
return 0;
// cout << "Semantic check succeed\n" << endl;
}
}
}
void mipsCodeGenerate(){
cout <<".data"<< endl << endl;
cout <<"VReg: .space 32768" << endl << endl;
cout <<".text"<< endl << endl;
currentScope = globeScope;
SymbolTag = counter;
Globe->generate();
}
int main(int argc,char* argv[])
{
if (argc <= 1){
fprintf(stderr,"need more arguments\n");
return 1;
}
extern int yyparse(void);
extern FILE *yyin;
//yyin= fopen("test","r");
yyin= fopen(argv[1],"r");
freopen(argv[2],"w",stdout);
extern int yyparse(void);
if(yyparse()){
return 1;
}
if (semanticAnalyze() != 0) return 1;
mipsCodeGenerate();
return 0;
}
|
243d52dc2294e92c57564a49e326c906f86d5176 | fd0c132f979ecd77168511c6f4d276c480147e57 | /ios/Classes/Native/AssemblyU2DCSharp_Org_BouncyCastle_X509_X509Certif3646547314.h | e89bca228dc9b505e2d12a5d80ca41758043804b | [] | no_license | ping203/gb | 9a4ab562cc6e50145660d2499f860e07a0b6e592 | e1f69a097928c367042192619183d7445de90d85 | refs/heads/master | 2020-04-23T02:29:53.957543 | 2017-02-17T10:33:25 | 2017-02-17T10:33:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,123 | h | AssemblyU2DCSharp_Org_BouncyCastle_X509_X509Certif3646547314.h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// Org.BouncyCastle.X509.PemParser
struct PemParser_t1487846991;
// Org.BouncyCastle.Asn1.Asn1Set
struct Asn1Set_t2420705913;
// System.IO.Stream
struct Stream_t3255436806;
#include "mscorlib_System_Object2689449295.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Org.BouncyCastle.X509.X509CertificateParser
struct X509CertificateParser_t3646547314 : public Il2CppObject
{
public:
// Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.X509.X509CertificateParser::sData
Asn1Set_t2420705913 * ___sData_1;
// System.Int32 Org.BouncyCastle.X509.X509CertificateParser::sDataObjectCount
int32_t ___sDataObjectCount_2;
// System.IO.Stream Org.BouncyCastle.X509.X509CertificateParser::currentStream
Stream_t3255436806 * ___currentStream_3;
public:
inline static int32_t get_offset_of_sData_1() { return static_cast<int32_t>(offsetof(X509CertificateParser_t3646547314, ___sData_1)); }
inline Asn1Set_t2420705913 * get_sData_1() const { return ___sData_1; }
inline Asn1Set_t2420705913 ** get_address_of_sData_1() { return &___sData_1; }
inline void set_sData_1(Asn1Set_t2420705913 * value)
{
___sData_1 = value;
Il2CppCodeGenWriteBarrier(&___sData_1, value);
}
inline static int32_t get_offset_of_sDataObjectCount_2() { return static_cast<int32_t>(offsetof(X509CertificateParser_t3646547314, ___sDataObjectCount_2)); }
inline int32_t get_sDataObjectCount_2() const { return ___sDataObjectCount_2; }
inline int32_t* get_address_of_sDataObjectCount_2() { return &___sDataObjectCount_2; }
inline void set_sDataObjectCount_2(int32_t value)
{
___sDataObjectCount_2 = value;
}
inline static int32_t get_offset_of_currentStream_3() { return static_cast<int32_t>(offsetof(X509CertificateParser_t3646547314, ___currentStream_3)); }
inline Stream_t3255436806 * get_currentStream_3() const { return ___currentStream_3; }
inline Stream_t3255436806 ** get_address_of_currentStream_3() { return &___currentStream_3; }
inline void set_currentStream_3(Stream_t3255436806 * value)
{
___currentStream_3 = value;
Il2CppCodeGenWriteBarrier(&___currentStream_3, value);
}
};
struct X509CertificateParser_t3646547314_StaticFields
{
public:
// Org.BouncyCastle.X509.PemParser Org.BouncyCastle.X509.X509CertificateParser::PemCertParser
PemParser_t1487846991 * ___PemCertParser_0;
public:
inline static int32_t get_offset_of_PemCertParser_0() { return static_cast<int32_t>(offsetof(X509CertificateParser_t3646547314_StaticFields, ___PemCertParser_0)); }
inline PemParser_t1487846991 * get_PemCertParser_0() const { return ___PemCertParser_0; }
inline PemParser_t1487846991 ** get_address_of_PemCertParser_0() { return &___PemCertParser_0; }
inline void set_PemCertParser_0(PemParser_t1487846991 * value)
{
___PemCertParser_0 = value;
Il2CppCodeGenWriteBarrier(&___PemCertParser_0, value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
|
22c3e0581f30aa28c88647d930d534a92bda27d6 | c4e290effbd123536b3753ea7f17a5c531d9aa9e | /c++/lat9_7.cpp | 83b937deea9751118e5d56fd867a8ed70a6031c9 | [] | no_license | djandatua/tugas-kuliah | b1325ada9240e2d8b381e065649d5e102fd6fd09 | e1f64b111c342f41dd91a40d1e618c45d9268710 | refs/heads/master | 2021-08-07T17:41:25.038855 | 2020-05-11T10:42:32 | 2020-05-11T10:42:32 | 174,842,993 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 932 | cpp | lat9_7.cpp | #include <iostream>
#include <stdlib.h>
#include <cstring>
using namespace std;
char *entry, letter, choice [2];
int ascii, len, binary [8], total;
void prog ();
int main()
{
prog();
return 0;
}
void prog()
{
entry = new char [501];
cout<<"Masukkan kalimat yang ingin dikonfersi (sampai 500 huruf) : ";
cin.getline(entry, 500);
len = strlen (entry);
for (int i=0; i<len; i++)
{
total=0;
letter=entry[i];
ascii=letter;
while(ascii>0)
{
if ((ascii%2)==0)
{
binary [total] =0;
ascii=ascii/2;
total++;
}
else
{
binary [total] =1;
ascii=ascii/2;
total++;
}
}
total--;
while (total>=0)
{
cout<<binary[total];
total--;
}
delete [] entry;
cout<<endl<<"Akan diulangi lagi (1 = YA, 2 = TIDAK) ? :";
cin.getline(choice, 3);
if (choice [0] == '1')
{
prog();
}
else
{
exit(0);
}
}
}
|
2c1cc9a01fc3be2b15810d46d2d36159c58dfaf3 | 2767942a5f3197b610f67846ef1c3a33ea755653 | /FeatureVector.h | 0bc835d15a4110c022fea5d8f6553b5539a84442 | [] | no_license | cjld/MeshDeform | c6f6e33f18145b4dd319ead84f43e2429172276e | b82ea403575d8ed473847773e2957b593f47045d | refs/heads/master | 2020-06-03T18:19:28.484315 | 2014-11-13T15:27:30 | 2014-11-13T15:27:30 | 26,049,085 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,664 | h | FeatureVector.h | #ifndef DFEATURE_VECTOR_H
#define DFEATURE_VECTOR_H
#include <OpenMesh/Core/IO/MeshIO.hh>
#include <vector>
#include <Eigen/Eigen>
#include <fstream>
#include "Align.h"
class FeatureVector;
class RefMesh {
public :
int vvs;
DTriMesh *mesh;
std::vector<AffineAlign*> align;
std::vector<int> d;
std::vector< std::vector< std::pair<int,int> > > rd;
std::vector<double> w,c;
std::vector< std::pair<int, std::pair<int,int> > > bfsq;
bool usec;
int fvNum;
~RefMesh();
RefMesh(DTriMesh &ms);
void getFeature(DTriMesh &ms, FeatureVector &fv);
void printCij(std::ofstream &fout);
double getWij(int e);
static double normalScale;
static int root;
};
class FeatureVector {
public :
std::vector<Eigen::Matrix3d> s,r,dr,logdr,logr;
std::vector<bool> isConst;
std::vector<Eigen::Vector3d> constPoint;
FeatureVector() {}
FeatureVector(std::vector<double> weight, std::vector<FeatureVector> &fvs);
void setConstPoint(int i, Eigen::Vector3d v);
void loadConstPoint(std::istream& cin);
void loadConstPoint(std::istream& cin, DTriMesh& mesh);
void blendFrom(std::vector<double> weight, std::vector<FeatureVector> &fvs);
void calcLogRFromR();
void calcRFromLogR();
void resize(const FeatureVector &other);
};
std::ostream& operator<<(std::ostream& cout, FeatureVector &fv);
FeatureVector operator +(const FeatureVector &a, const FeatureVector &b);
FeatureVector operator -(const FeatureVector &a, const FeatureVector &b);
double operator *(const FeatureVector &a, const FeatureVector &b);
FeatureVector operator *(const FeatureVector &a, const double &b);
#endif
|
4379918afebaa9aa60f24fc2adf12031fb1db983 | 63ce7b319508411bdbeb326f52fe949cdfbfb502 | /Arrays/SpiralOrderMatrix_I.cpp | c4545a1093fe9a5ee33421aec6ba78a7be3490bb | [] | no_license | Sneha0607/InterviewBit_Solutions | bf9c6461e76db3603ccebc02c2ce5e0d89dbdd73 | 016c2a3fc06ea91c0ac2c6d9838a5ea855ae5a88 | refs/heads/master | 2023-06-30T14:10:56.182919 | 2021-08-03T16:21:23 | 2021-08-03T16:21:23 | 391,346,064 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 965 | cpp | SpiralOrderMatrix_I.cpp | /* Spiral Order Matrix I
Given a matrix of m * n elements (m rows, n columns), return all elements of the matrix in spiral order.
Example:
Given the following matrix:
[
[ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ]
]
You should return
[1, 2, 3, 6, 9, 8, 7, 4, 5]
*/
vector<int> Solution::spiralOrder(const vector<vector<int>> &A)
{
int bottom = A.size()-1, top = 0;
int right = A[0].size()-1, left = 0;
int dir = 0;
vector<int> ans;
while(top<=bottom && left<=right)
{
if(dir == 0)
{
for(int i=left; i<=right; i++)
ans.push_back(A[top][i]);
top++;
dir = 1;
}
else if(dir == 1)
{
for(int i=top; i<=bottom; i++)
ans.push_back(A[i][right]);
right--;
dir = 2;
}
else if(dir == 2)
{
for(int i=right; i>=left; i--)
ans.push_back(A[bottom][i]);
bottom--;
dir = 3;
}
else if(dir == 3)
{
for(int i=bottom; i>=top; i--)
ans.push_back(A[i][left]);
left++;
dir = 0;
}
}
return ans;
} |
f16342e0abd8c350091f0175c2fc472baa735b57 | bafae1c46014f4069fda40735b7a305616707c9b | /SaturdayNightEngine/NR_StepperBase.h | 2b7ab4ca9303cac9514e95b77e70fdb09621b06c | [] | no_license | Glimster/PhysicsAndGames | b9bd212436b8226617ecfde870640a30a96bd42e | 2bcbc9085889167c11b1adf89132f371cf65e898 | refs/heads/master | 2021-01-20T11:45:40.528735 | 2017-11-01T09:53:18 | 2017-11-01T09:53:18 | 101,686,173 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 697 | h | NR_StepperBase.h | // More or less a copy of the Numerical Recipes ODE solver
#pragma once
#include< vector >
class NR_StepperBase
{
public:
NR_StepperBase( std::vector< double >& y,
std::vector< double >& dydx,
double& x,
const double absoluteTolerance,
const double relativeTolerance,
bool dense );
template<class T>
inline T SQR( const T a ) { return a*a; }
public:
double& x_;
double xOld_;
std::vector< double >& y_;
std::vector< double >& dydx_;
double absoluteTolerance_, relativeTolerance_;
bool dense_;
double hdid_;
double hnext_;
int n_, neqn_;
std::vector< double > yout_, yerr_;
};
|
cb408b1424b7e2a09245ac87d4f47219f9d2c0cb | 51ec5b6e0098be3f560d867a5e9ef6dfc0d5c4d4 | /mapToRange.cpp | 3d9dec768566919fb960f27da3448783a2f2c75a | [] | no_license | bloops/Algorithms-and-Data-Structures | cc9d02d9c65d4bf82e5a327b7d15b59215339c0c | 5fd19963d766057b737a5f190fb4e7f2021d4ee9 | refs/heads/master | 2020-04-05T22:48:41.797748 | 2012-11-25T09:51:10 | 2012-11-25T09:51:10 | 4,063,073 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 909 | cpp | mapToRange.cpp | #include <iostream>
#include <sstream>
#include <algorithm>
#include <vector>
#include <string>
#include <set>
#include <queue>
#include <stack>
#include <map>
#include <cstdio>
#include <cstring>
#include <cassert>
using namespace std;
#define FOR(i, n) for(int i=0;i<int(n);i++)
#define FOR1(i, n) for(int i=1;i<=int(n);i++)
#define FORA(i, a, n) for(int i=a;i<int(n);i++)
#define FORR(i, n) for(int i=n-1;i>=0;i--)
#define FORE(it, c) for(typeof(c.begin()) it = c.begin(); it != c.end(); it++)
#define ALL(c) c.begin(), c.end()
#define CLR(c,v) memset(c,v,sizeof(c))
typedef long long int lli;
typedef pair<int,int> ii;
int main()
{
ios::sync_with_stdio(false);
int n = 10;
int A[] = {4,1,2,2,4,5,6,0,9,9};
map<int,int> M;
FOR(i,n) M[A[i]] = 0;
int cur = 0;
FORE(it,M) {
it->second = ++cur;
}
FOR(i,n) cout << M[A[i]] << ' '; cout << endl;
return 0;
}
|
62429921b0bc9dc7796256483b308ef78a7dada6 | 72f4b1e4a7ee2a38c4c09f62575e30fd735b447b | /src/foundation/Base32Encoder.h | 349005054645b866e6d8c82865d43e263c1eb2a1 | [] | no_license | ma-bo/lua-poco | 735ceb8c740810bc0e5ad0c6ae3a6ab9f4df1db3 | 7735233722f9e4f7e2054b05213f23320183da7c | refs/heads/master | 2023-01-24T01:44:02.786066 | 2023-01-12T19:07:02 | 2023-01-12T19:07:02 | 11,433,172 | 21 | 8 | null | 2016-08-12T16:02:59 | 2013-07-15T20:38:59 | C++ | UTF-8 | C++ | false | false | 998 | h | Base32Encoder.h | #ifndef LUA_POCO_BASE32ENCODER_H
#define LUA_POCO_BASE32ENCODER_H
#include "LuaPoco.h"
#include "Userdata.h"
#include "OStream.h"
#include <Poco/Base32Encoder.h>
extern "C"
{
LUAPOCO_API int luaopen_poco_base32encoder(lua_State* L);
}
namespace LuaPoco
{
extern const char* POCO_BASE32ENCODER_METATABLE_NAME;
class Base32EncoderUserdata : public Userdata, public OStream
{
public:
Base32EncoderUserdata(std::ostream & ostr, bool padding, int ref);
virtual ~Base32EncoderUserdata();
virtual std::ostream& ostream();
// register metatable for this class
static bool registerBase32Encoder(lua_State* L);
// constructor function
static int Base32Encoder(lua_State* L);
Poco::Base32Encoder mBase32Encoder;
private:
int mUdReference;
bool mClosed;
// metamethod infrastructure
static int metamethod__tostring(lua_State* L);
static int metamethod__gc(lua_State* L);
// methods
static int close(lua_State* L);
};
} // LuaPoco
#endif
|
409826be9885bf61e26a8a0d89f7cec1fd091caf | 5ba2b48e14db00f02310c50fb58e444bc9a9a0da | /枚举实例测试.cpp | c6e27789b459d5c5e99d1318fcffee06dec59004 | [] | no_license | GalenDeng/C | 71e314e2fcf7586d01aa31dd87e74d1037311b15 | 3c9a8f7f18eba3451022da912367b91b1567647c | refs/heads/master | 2021-09-06T18:31:57.141059 | 2018-02-09T18:51:25 | 2018-02-09T18:51:25 | 112,195,213 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 547 | cpp | 枚举实例测试.cpp | ## 枚举实例测试 (2017.11.27)
//1.
#include <iostream>
using namespace std;
int main()
{
enum days
{
one,two,three
}day;
day = one;
switch (day)
{
case one:
cout << "one" << endl;
break;
case two:
cout << "two" << endl;
break;
default:
cout << "three" << endl;
break;
}
return 0;
}
//2. 枚举类型不一定要在 main 中定义
#include <iostream>
using namespace std;
enum time
{
first,second,
third,forth,fifth
};
int main()
{
enum time a = fifth;
if (a == fifth) {
cout << "sucess!\n";
}
return 0;
} |
990453584a8bc8274d351e02f76eebc7acb8deae | 95d69b8adfcb179abdc6e6649c33d46c8ce3fd56 | /abc141/e/e_6.cpp | 52ef452073f36b07fc6acf06b4bf80de1d21b898 | [] | no_license | south37/atcoder | 4599a45aef1ba860c9816988de2e1a8b5659f0c1 | 3725105f1b946b0e54fb6cb795c3e487c0ab50d6 | refs/heads/master | 2021-06-16T23:42:14.288234 | 2020-08-04T19:24:25 | 2020-08-04T19:24:25 | 200,486,084 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,879 | cpp | e_6.cpp | // base: http://drken1215.hatenablog.com/entry/2019/09/16/014600
#include <algorithm>
#include <cassert>
#include <cmath>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <unordered_map>
#include <vector>
#include <string.h>
using namespace std;
#define rep(i, n) for(int i = 0; i < n; ++i)
#define all(s) s.begin(), s.end()
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> P;
typedef tuple<ll, ll, ll> triple;
typedef double D;
const ll INF = 1e9;
const ll MOD = 1000000007; // 1e9 + 7
ll powmod(ll x, ll y) {
ll r = 1;
while (y) {
if (y & 1) {
r = r * x % MOD;
}
x = x * x % MOD;
y >>= 1;
}
return r;
}
// RollingHash with mod(2**64)
struct RollingHash {
// Mod is 2**64 (max of ull + 1)
static const ull base1 = 1000000007;
vector<ull> _hash, _power;
RollingHash(const string& S) { init(S); }
void init(const string& S) {
int n = S.size();
_hash.resize(n+1);
_power.assign(n+1, 1);
rep(i, n) {
_hash[i+1] = _hash[i] * base1 + S[i];
_power[i+1] = _power[i] * base1;
}
}
// get hash of S[left:right]
inline ull get(int l, int r) const {
ull res1 = _hash[r] - _hash[l] * _power[r-l];
return res1;
}
// get lcp of S[a:] and T[b:]
inline int getLCP(int a, int b) const {
int len = min((int)_hash.size()-a, (int)_hash.size()-b);
int low = 0, high = len;
while (high - low > 1) {
int mid = (low + high) >> 1;
if (get(a, a+mid) != get(b, b+mid)) high = mid;
else low = mid;
}
return low;
}
};
int main(int argc, char** argv) {
int N;
cin >> N;
string S;
cin >> S;
RollingHash rh(S);
int ans = 0;
rep(i, N) {
for (int j = i + 1; j < N; ++j) {
int lcp = rh.getLCP(i, j);
lcp = min(lcp, j - i);
ans = max(ans, lcp);
}
}
cout << ans << endl;
}
|
640b72c9ace9d9a0038a8fbca98085273250d8de | a92b18defb50c5d1118a11bc364f17b148312028 | /src/prod/src/Hosting2/IFabricActivatorClient.h | 08b93203737fc3fef77e3bd441727696e6094404 | [
"MIT"
] | permissive | KDSBest/service-fabric | 34694e150fde662286e25f048fb763c97606382e | fe61c45b15a30fb089ad891c68c893b3a976e404 | refs/heads/master | 2023-01-28T23:19:25.040275 | 2020-11-30T11:11:58 | 2020-11-30T11:11:58 | 301,365,601 | 1 | 0 | MIT | 2020-11-30T11:11:59 | 2020-10-05T10:05:53 | null | UTF-8 | C++ | false | false | 17,902 | h | IFabricActivatorClient.h | // ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------
#pragma once
namespace Hosting2
{
class IFabricActivatorClient : public Common::AsyncFabricComponent
{
public:
virtual ~IFabricActivatorClient() {}
virtual Common::AsyncOperationSPtr BeginActivateProcess(
std::wstring const & applicationId,
std::wstring const & appServiceId,
ProcessDescriptionUPtr const & processDescription,
std::wstring const & runasUserId,
bool isContainerHost,
ContainerDescriptionUPtr && containerDescription,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndActivateProcess(Common::AsyncOperationSPtr const &, __out DWORD & processId) = 0;
virtual Common::AsyncOperationSPtr BeginDeactivateProcess(
std::wstring const & appServiceId,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndDeactivateProcess(Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginActivateHostedService(
Hosting2::HostedServiceParameters const & params,
Common::TimeSpan const timeout,
Common::AsyncCallback const & callback,
Common::AsyncOperationSPtr const & parent) = 0;
virtual Common::ErrorCode EndActivateHostedService(Common::AsyncOperationSPtr const & operation) = 0;
virtual Common::AsyncOperationSPtr BeginDeactivateHostedService(
std::wstring const & serviceName,
Common::TimeSpan timeout,
Common::AsyncCallback const & callback,
Common::AsyncOperationSPtr const & parent) = 0;
virtual Common::ErrorCode EndDeactivateHostedService(Common::AsyncOperationSPtr const & operation) = 0;
virtual Common::AsyncOperationSPtr BeginConfigureSecurityPrincipals(
std::wstring const & applicationId,
ULONG applicationPackageCounter,
ServiceModel::PrincipalsDescription const & principalsDescription,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndConfigureSecurityPrincipals(
Common::AsyncOperationSPtr const &,
__out PrincipalsProviderContextUPtr &) = 0;
virtual Common::AsyncOperationSPtr BeginConfigureSecurityPrincipalsForNode(
std::wstring const & applicationId,
ULONG applicationPackageCounter,
ServiceModel::PrincipalsDescription const & principalsDescription,
int allowedUserCreationFailureCount,
bool updateExisting,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndConfigureSecurityPrincipalsForNode(
Common::AsyncOperationSPtr const &,
__out PrincipalsProviderContextUPtr &) = 0;
//Application Package operations
virtual Common::AsyncOperationSPtr BeginCleanupSecurityPrincipals(
std::wstring const & applicationId,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndCleanupSecurityPrincipals(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginCleanupApplicationSecurityGroup(
std::vector<std::wstring> const & applicationIds,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndCleanupApplicationSecurityGroup(
Common::AsyncOperationSPtr const &,
__out std::vector<std::wstring> & deletedAppPrincipals) = 0;
#if defined(PLATFORM_UNIX)
virtual Common::AsyncOperationSPtr BeginDeleteApplicationFolder(
std::vector<std::wstring> const & appFolders,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndDeleteApplicationFolder(
Common::AsyncOperationSPtr const &,
__out std::vector<std::wstring> & deletedAppFolders) = 0;
#endif
virtual Common::AsyncOperationSPtr BeginConfigureSMBShare(
std::vector<std::wstring> const & sidPrincipals,
DWORD accessMask,
std::wstring const & localFullPath,
std::wstring const & shareName,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndConfigureSMBShare(Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginConfigureResourceACLs(
std::vector<std::wstring> const & sids,
DWORD accessMask,
std::vector<CertificateAccessDescription> const & certificateAccessDescriptions,
std::vector<wstring> const & applicationFolders,
ULONG applicationCounter,
std::wstring const & nodeId,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndConfigureResourceACLs(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginConfigureCrashDumps(
bool enable,
std::wstring const & servicePackageId,
std::vector<std::wstring> const & exeNames,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndConfigureCrashDumps(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginFabricUpgrade(
bool const useFabricInstallerService,
std::wstring const & programToRun,
std::wstring const & arguments,
std::wstring const & downloadedFabricPackageLocation,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndFabricUpgrade(
Common::AsyncOperationSPtr const &) = 0;
//ServicePackageOperations
virtual Common::AsyncOperationSPtr BeginConfigureEndpointSecurity(
std::wstring const & principalSid,
UINT port,
bool isHttps,
bool cleanupAcls,
std::wstring const & prefix,
std::wstring const & servicePackageId,
bool isSharedPort,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndConfigureEndpointSecurity(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginCreateSymbolicLink(
std::vector<ArrayPair<std::wstring, std::wstring>> const & symbolicLinks,
DWORD flags,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndCreateSymbolicLink(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginDownloadContainerImages(
std::vector<ContainerImageDescription> const & containerImages,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndDownloadContainerImages(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginConfigureSharedFolderPermissions(
std::vector<std::wstring> const & sharedFolders,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndConfigureSharedFolderPermissions(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginTerminateProcess(
std::wstring const & appServiceId,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndTerminateProcess(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginConfigureEndpointCertificateAndFirewallPolicy(
std::wstring const & servicePackageId,
std::vector<Hosting2::EndpointCertificateBinding> const & endpointCertBindings,
bool cleanupEndpointCert,
bool cleanupFirewallPolicy,
std::vector<LONG> const & firewallPorts,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndConfigureEndpointCertificateAndFirewallPolicy(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginAssignIpAddresses(
std::wstring const & servicePackageId,
std::vector<std::wstring> const & codePackages,
bool cleanup,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndAssignIpAddresses(
Common::AsyncOperationSPtr const &,
__out std::vector<std::wstring> & assignedIps) = 0;
virtual Common::AsyncOperationSPtr BeginManageOverlayNetworkResources(
std::wstring const & nodeName,
std::wstring const & nodeIpAddress,
std::wstring const & servicePackageId,
std::map<wstring, std::vector<std::wstring>> const & codePackageNetworkNames,
ManageOverlayNetworkAction::Enum action,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndManageOverlayNetworkResources(
Common::AsyncOperationSPtr const &,
__out std::map<wstring, std::map<std::wstring, std::wstring>> & assignedNetworkResources) = 0;
virtual Common::AsyncOperationSPtr BeginUpdateRoutes(
Management::NetworkInventoryManager::PublishNetworkTablesRequestMessage const & networkTables,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndUpdateRoutes(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginConfigureContainerCertificateExport(
std::map<std::wstring, std::vector<ServiceModel::ContainerCertificateDescription>> const & certificateRef,
std::wstring workDirectoryPath,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndConfigureContainerCertificateExport(
Common::AsyncOperationSPtr const &,
__out std::map<std::wstring, std::wstring> & certificatePaths,
__out std::map<std::wstring, std::wstring> & certificatePasswordPaths) = 0;
virtual Common::AsyncOperationSPtr BeginCleanupContainerCertificateExport(
std::map<std::wstring, std::wstring> const & certificatePaths,
std::map<std::wstring, std::wstring> const & certificatePasswordPaths,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndCleanupContainerCertificateExport(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginSetupContainerGroup(
std::wstring const & containerGroupId,
ServiceModel::NetworkType::Enum networkType,
std::wstring const & openNetworkAssignedIp,
std::map<std::wstring, std::wstring> const & overlayNetworkResources,
std::vector<std::wstring> const & dnsServers,
std::wstring const & appfolder,
std::wstring const & appId,
std::wstring const & appName,
std::wstring const & partitionId,
std::wstring const & servicePackageActivationId,
ServiceModel::ServicePackageResourceGovernanceDescription const & spRg,
#if defined(PLATFORM_UNIX)
ContainerPodDescription const & podDescription,
#endif
bool isCleanup,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndSetupContainerGroup(
Common::AsyncOperationSPtr const &,
__out std::wstring & data) = 0;
virtual Common::ErrorCode ConfigureEndpointSecurity(
std::wstring const & principalSid,
UINT port,
bool isHttps,
bool cleanupAcls,
std::wstring const & servicePackageId,
bool isSharedPort) = 0;
virtual Common::ErrorCode ConfigureEndpointBindingAndFirewallPolicy(
std::wstring const & servicePackageId,
std::vector<Hosting2::EndpointCertificateBinding> const &,
bool isCleanup,
bool cleanupFirewallPolicy,
std::vector<LONG> const & firewallPorts) = 0;
virtual Common::ErrorCode CleanupAssignedIPs(
std::wstring const & servicePackageId) = 0;
virtual Common::ErrorCode CleanupAssignedOverlayNetworkResources(
std::map<std::wstring, std::vector<std::wstring>> const & codePackageNetworkNames,
std::wstring const & nodeName,
std::wstring const & nodeIpAddress,
std::wstring const & servicePackageId) = 0;
virtual Common::AsyncOperationSPtr BeginDeleteContainerImages(
std::vector<std::wstring> const & imageNames,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndDeleteContainerImages(
Common::AsyncOperationSPtr const &) =0 ;
virtual Common::AsyncOperationSPtr BeginGetContainerInfo(
std::wstring const & appServiceId,
bool isServicePackageActivationModeExclusive,
std::wstring const & containerInfoType,
std::wstring const & containerInfoArgs,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndGetContainerInfo(
Common::AsyncOperationSPtr const &,
__out wstring & containerInfo) = 0;
virtual Common::AsyncOperationSPtr BeginGetImages(
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndGetImages(
Common::AsyncOperationSPtr const &,
__out std::vector<wstring> & images) = 0;
virtual void AbortApplicationEnvironment(std::wstring const & applicationId) = 0;
virtual void AbortProcess(std::wstring const & appServiceId) = 0;
virtual Common::HHandler AddProcessTerminationHandler(Common::EventHandler const & eventhandler) = 0;
virtual void RemoveProcessTerminationHandler(Common::HHandler const & handler) = 0;
virtual Common::HHandler AddContainerHealthCheckStatusChangeHandler(Common::EventHandler const & eventhandler) = 0;
virtual void RemoveContainerHealthCheckStatusChangeHandler(Common::HHandler const & handler) = 0;
virtual Common::HHandler AddRootContainerTerminationHandler(Common::EventHandler const & eventhandler) = 0;
virtual void RemoveRootContainerTerminationHandler(Common::HHandler const & handler) = 0;
virtual bool IsIpcClientInitialized() = 0;
virtual Common::AsyncOperationSPtr BeginConfigureNodeForDnsService(
bool,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndConfigureNodeForDnsService(
Common::AsyncOperationSPtr const &) = 0;
virtual Common::AsyncOperationSPtr BeginGetNetworkDeployedPackages(
std::vector<std::wstring> const &,
std::wstring const &,
std::wstring const &,
std::wstring const &,
std::map<std::wstring, std::wstring> const &,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndGetNetworkDeployedPackages(
Common::AsyncOperationSPtr const &,
__out std::map<std::wstring, std::map<std::wstring, std::vector<std::wstring>>> &,
__out std::map<std::wstring, std::map<std::wstring, std::wstring>> &) = 0;
virtual Common::AsyncOperationSPtr BeginGetDeployedNetworks(
ServiceModel::NetworkType::Enum,
Common::TimeSpan,
Common::AsyncCallback const &,
Common::AsyncOperationSPtr const &) = 0;
virtual Common::ErrorCode EndGetDeployedNetworks(
Common::AsyncOperationSPtr const &,
__out std::vector<std::wstring> &) = 0;
};
} |
c0801b40ec6a4067ea3b978bc050313db1db8596 | 802c96a0bcab5eb4b4ac4f6a41457a3f5ae321df | /tests/math.cpp | d163a19e34df0bfd3bb1befa9610a220fdff6af5 | [
"MIT"
] | permissive | sariug/PrettyXYZ | dd0237aea00ed5f84dd7228938277c4d841448d7 | e7d57ac08107061406c346a7681870b8cd34c478 | refs/heads/master | 2022-10-25T09:46:43.177504 | 2020-06-14T16:40:26 | 2020-06-14T16:40:26 | 268,230,398 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,116 | cpp | math.cpp | #define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include "3rdparty/catch.hpp"
#define PRETTY_TEXT_RENDER
#include "../PrettyXYZ.hpp"
using namespace PrettyXYZ::MathUtils;
TEST_CASE("Matrix rotation", "Rotation")
{
Matrix4 expected({0.7268376, 0.6414292, -0.2455112, 0,
-0.4733292, 0.7268376, 0.4976611, 0,
0.4976611, -0.2455112, 0.8319001, 0,
0, 0, 0, 1});
Vector3 axis(2, 2, 3);
axis.normalized();
Matrix4 real = rotate(50, axis);
for (int i = 0; i < 16; i++)
REQUIRE(real[i] == Approx(expected[i])); // Approx is needed due to floating point comparison
}
TEST_CASE("Math operation", "MathOp")
{
Vector3 V1(3);
Vector3 V2(5);
Vector3 V3 = V1 + V2;
REQUIRE(V3.x == 8.0f);
REQUIRE(V3.y == 8.0f);
REQUIRE(V3.z == 8.0f);
Matrix4 M(10);
Vector4 V4 = M * Vector4(V1, 3);
REQUIRE(V4.x == 120.0f);
REQUIRE(V4.y == 120.0f);
REQUIRE(V4.z == 120.0f);
REQUIRE(V4.w == 120.0f);
REQUIRE(V4.xyz().x == 120.0f);
REQUIRE(V4.xyz().y == 120.0f);
REQUIRE(V4.xyz().z == 120.0f);
Matrix4 M2(15);
Matrix4 M3 = M * M2;
for (int i = 0; i < 16; i++)
REQUIRE(M3[i] == 600.0f);
Matrix4 M4(1.0f);
Matrix4 M5(1.0f);
M5[1] = M5[2] = M5[3] = M5[6] = M5[7] = M5[11] = -1.0f;
Matrix4 M6 = M5 * M4;
for (int i = 0; i < 16; i++)
{
switch (i % 4)
{
case 0:
REQUIRE(M6[i] == 4);
break;
case 1:
REQUIRE(M6[i] == 2);
break;
case 2:
REQUIRE(M6[i] == 0);
break;
case 3:
REQUIRE(M6[i] == -2);
break;
default:
throw;
}
}
}
TEST_CASE("Vec3 Copy constructor", "vec3copy")
{
Vector3 V1(3);
Vector3 V2(5);
V1 = V2;
REQUIRE(V1.x == 5.0f);
REQUIRE(V1.y == 5.0f);
REQUIRE(V1.z == 5.0f);
}
TEST_CASE("MatrixFunctions", "mat4funcs")
{
Matrix4 M(4.0f);
M.resetTranslation();
REQUIRE(M[12] == 0.0f);
REQUIRE(M[13] == 0.0f);
REQUIRE(M[14] == 0.0f);
float example_matrix[16] = {1, 0, 2, 1, 1, 3, 3, 0, 1, 1, 1, 2, 0, 2, 0, 1};
float inverted_matrix[16] = {-3, 1, 3, -3, -0.5, 0.25, 0.25, -0, 1.5, -0.25, -1.25, 1, 1, -0.5, -0.5, 1};
Matrix4 M2(example_matrix);
M2.inverted();
for (int i = 0; i < 16; i++)
REQUIRE(M2[i] == inverted_matrix[i]);
}
TEST_CASE("Pointer", "[ptr]")
{
Vector3 V(3, 5, 7.5);
REQUIRE(static_cast<void *>(&(V)) == static_cast<void *>(&(V.x)));
Matrix4 M(3);
REQUIRE(reinterpret_cast<float *>(&(M)) == M.begin());
}
TEST_CASE("Matrix4 constructor", "[matrix44const]")
{
Matrix4 C0(3);
for (int i = 0; i < 16; i++)
REQUIRE(C0[i] == 3.0f);
Matrix4 C1(C0);
for (int i = 0; i < 16; i++)
REQUIRE(C1[i] == 3.0f);
Matrix4 C2(C1);
for (int i = 0; i < 16; i++)
REQUIRE(C2[i] == 3.0f);
C0[3] = 26.0f;
C0[10] = 0.0005f;
Matrix4 C4(4);
C4 = C0;
REQUIRE(C4[3] == 26.0f);
REQUIRE(C4[10] == 0.0005f);
}
TEST_CASE("Vector4 constructor", "[vector4const]")
{
Vector4 C0;
REQUIRE(C0.x == 0.0f);
REQUIRE(C0.y == 0.0f);
REQUIRE(C0.z == 0.0f);
REQUIRE(C0.w == 0.0f);
Vector4 C1(5.2);
REQUIRE(C1.x == 5.2f);
REQUIRE(C1.y == 5.2f);
REQUIRE(C1.z == 5.2f);
REQUIRE(C1.w == 5.2f);
Vector4 C2(3, 5, 7.5, -3);
REQUIRE(C2.x == 3.0f);
REQUIRE(C2.y == 5.0f);
REQUIRE(C2.z == 7.5f);
REQUIRE(C2.w == -3.0f);
Vector4 C3(Vector3(3, 5, 7), -3);
REQUIRE(C3.x == 3.0f);
REQUIRE(C3.y == 5.0f);
REQUIRE(C3.z == 7.0f);
REQUIRE(C3.w == -3.0f);
}
TEST_CASE("Vector3 constructor", "[vector3const]")
{
Vector3 C0;
REQUIRE(C0.x == 0.0f);
REQUIRE(C0.y == 0.0f);
REQUIRE(C0.z == 0.0f);
Vector3 C1(5.2);
REQUIRE(C1.x == 5.2f);
REQUIRE(C1.y == 5.2f);
REQUIRE(C1.z == 5.2f);
Vector3 C2(3, 5, 7.5);
REQUIRE(C2.x == 3.0f);
REQUIRE(C2.y == 5.0f);
REQUIRE(C2.z == 7.5f);
}
|
fd02e9664d0f89f74936fa4a625dc5cbcfd87385 | 80ce0a1103d437eb3b0b9daf4635ee82a03fff99 | /pylon/window/init.cpp | d4774c968a770aebdd4e885052d0345cf0968063 | [] | no_license | tarpeyd12/pylon | 51f1f623fff4a2f6556a257963c16a57e4e6d869 | 9072968c60a0cb855730a633d5f0e017f6fbb2aa | refs/heads/master | 2021-01-10T02:49:18.012035 | 2018-03-02T10:04:28 | 2018-03-02T10:04:28 | 47,670,575 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,422 | cpp | init.cpp | #include "main.h"
namespace Main
{
void Init()
{
int exret = -1, i = -1;
std::string ininames[] = {
"conf.ini",
".conf",
".config",
"config.ini",
"conf.txt",
"config.txt"
};
std::string ininame = "conf.ini";
// i starts as -1 so this while loop is ok
while( ++i < 6 && exret != 0 )
{
exret = FileLoader::extractfile( pylon_archive, ininames[i], true, false, "", false, "" );
if( exret == 0 )
{
ininame = ininames[i];
break;
}
else if( exret < 0 )
{
if( FileLoader::checkfile(ininames[i]) )
{
ininame = ininames[i];
break;
}
}
}
FileLoader::Ini ini(ininame);
if( !Main::dontremove )
{
FileLoader::System::Files::remove( ininame );
}
if( ini.getvalue("pylon", "type").compare("main") != 0 )
{
cout << "ERROR: cannot run pylon archive." << endl;
cout << "\tNot a pylon archive of type main." << endl;
cout << "Exiting ..." << endl;
exit(-1);
}
std::string requiredVersion = ini.getvalue("pylon", "version");
unsigned int ver1[4], ver2[4];
sscanf(requiredVersion.c_str(), "%d.%d.%d.%d", &ver1[0], &ver1[1], &ver1[2], &ver1[3]);
sscanf(Main::VersionStringRaw.c_str(), "%d.%d.%d.%d", &ver2[0], &ver2[1], &ver2[2], &ver2[3]);
for(unsigned int i = 0; i < 4; i++)
{
if(ver1[i]>ver2[i])
{
cout << "ERROR: cannot run pylon archive." << endl;
cout << "Program version too low, you may need to update:" << endl;
cout << "\trequired version \"" << requiredVersion << "\"" << endl;
cout << "\tcurrent version \"" << Main::VersionStringRaw << "\"" << endl;
exit(-1);
}
}
Main::main_py = ini.getvalue("pylon", "main");
Main::init_py = ini.getvalue("pylon", "init");
Main::ext_dir = ini.getvalue("pylon", "extractiondir");
FileLoader::extractfile(pylon_archive, main_py, true, false, ext_dir, false, "");
FileLoader::extractfile(pylon_archive, init_py, true, false, ext_dir, false, "");
std::string winname = ini.getvalue("window", "name");
if( winname.length() )
{
std::string n = winname;
if( POGEL::hasproperty(POGEL_DEBUG) )
{
n = "Pylon."+VersionString+": '"+winname+"' in "+(!forcedir?"archive: '"+pylon_archive:"folder: '"+forced_dir)+"'";
}
Renderer::Window::Create(n);
}
else
{
Renderer::Window::Create("Pylon." + VersionString);
}
// add the main archive to the archive linkage system
FileLoader::ArchiveHandler::addArchiveLink("{main}", pylon_archive);
// extract all the pylon files in the main archive
ClassList<std::string> * tmpinternalarchivelist = FileLoader::ArchiveHandler::getAllFilesOfType(".pylon");
if( tmpinternalarchivelist )
{
FileLoader::ArchiveHandler::extractKnownFiles(*tmpinternalarchivelist);
//delete tmpinternalarchivelist;
}
if( ini.hasSection("archives") )
{
ClassList<std::string> * keynames = ini.keysinsection("archives");
if( keynames && keynames->length() )
{
for( unsigned int i = 0; i < keynames->length(); i++ )
{
std::string key = keynames->get(i);
std::string alias = "{" + key + "}";
std::string value = ini.getvalue("archives", key);
if( !FileLoader::ArchiveHandler::isKnownFile(value) )
{
if( FileLoader::ArchiveHandler::isKnownFile(value+".pylon") )
{
value = value + ".pylon";
}
}
FileLoader::ArchiveHandler::addArchiveLink(alias, value);
}
}
if( keynames )
{
delete keynames;
}
}
if( ini.hasSection("code") )
{
ClassList<std::string> codetypes;
if( ini.hasSection("codetypes") )
{
ClassList<std::string> * keynames = ini.keysinsection("codetypes");
if( keynames && keynames->length() )
{
for( unsigned int i = 0; i < keynames->length(); i++ )
{
std::string key = keynames->get(i);
std::string value = ini.getvalue("codetypes", key);
if( !value.compare("true") || !value.compare("True") || !value.compare("TRUE") )
{
codetypes += key;
}
}
}
if( keynames )
{
delete keynames;
}
}
std::string codeDir = ini.getvalue("code", "dir");
std::string codeExtract = ini.getvalue("code", "extract");
bool doCodeExtract = false;
if( !codeExtract.compare("true") || !codeExtract.compare("True") || !codeExtract.compare("TRUE") )
{
doCodeExtract = true;
}
//std::string codeExclude = ini.getvalue("code", "exclude");
ClassList<std::string> * filesInCodeDir = FileLoader::ArchiveHandler::getAllFilesInDir(codeDir);
if( filesInCodeDir )
{
if( codetypes.length() )
{
for(unsigned int i = 0; i < codetypes.length(); i++)
{
ClassList<std::string> * tfiles = FileLoader::ArchiveHandler::getFilesOfType(codetypes[i], filesInCodeDir);
if( tfiles && tfiles->length() )
{
FileLoader::ArchiveHandler::codeFiles += tfiles;
}
if( tfiles )
{
delete tfiles;
}
}
}
else
{
FileLoader::ArchiveHandler::codeFiles += filesInCodeDir;
}
for(unsigned int i = 0; i < FileLoader::ArchiveHandler::codeFiles.length(); i++)
{
if( !FileLoader::ArchiveHandler::codeFiles[i].compare(Main::main_py) || !FileLoader::ArchiveHandler::codeFiles[i].compare(Main::init_py) )
{
FileLoader::ArchiveHandler::codeFiles -= i--;
}
}
if( doCodeExtract )
{
FileLoader::ArchiveHandler::extractKnownFiles(FileLoader::ArchiveHandler::codeFiles);
}
filesInCodeDir->safeclear();
delete filesInCodeDir;
}
}
}
}
|
5e2b7f21cc2e819c83129df9c457817bf52f0024 | 15ffa0dac35440f08a36e59656cf1834cd9f828d | /ESP8266_BME280_WEBSERVER-master.ino | 6f780347d78675f4f8391ee63468ab1134b42bc1 | [
"MIT"
] | permissive | thierryndrj/ESP8266_BME280_Web_Server | 07cf759bb476496da6796cea87fce3063dcf193c | 07e491c93266d4ec39b93aa7d4d01631f8513f29 | refs/heads/master | 2023-03-23T13:08:55.354348 | 2020-08-31T02:21:01 | 2020-08-31T02:21:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,551 | ino | ESP8266_BME280_WEBSERVER-master.ino | /*
Project made and maintained by Kumar Aditya
ESP8266 Weather Station
Reads the temperature and humidity values from BME280 sensor, create a beautiful chart of the data
on a webserver whose data is stored on SPIFFS memory.
Change these lines as per yours:
const char *ssid = "REPLACE_WITH_YOUR_SSID"; // replace with your SSID
const char *password = "REPLACE_WITH_YOUR_PASSWORD"; // replace with your Password
For SPI Communication- Uncomment the following lines:
#include <SPI.h>
#define BME_SCK 14
#define BME_MISO 12
#define BME_MOSI 13
#define BME_CS 15
For Hardware SPI Communication- Uncomment the following lines:
Adafruit_BME280 bme(BME_CS); // use this for hardware SPI
For Software SPI Communication- Uncomment the following lines:
Adafruit_BME280 bme(BME_CS, BME_MOSI, BME_MISO, BME_SCK); // use this for software SPI
& Comment the following lines:
#include <Wire.h> // use this for I2C
Adafruit_BME280 bme; // use this for I2C
Parts list:
NodeMCU :
https://amzn.to/397GzNe
BME280 Sensor:
https://amzn.to/2xlIAII
Jumper Wires:
https://amzn.to/2U9lWMz
The source code can be found at:
https://github.com/rahuladitya303/ESP8266_BME280_Web_Server/
Download ESPAsyncWebServer library :
https://github.com/me-no-dev/ESPAsyncWebServer/archive/master.zip
Download ESPAsyncTCP library :
https://github.com/me-no-dev/ESPAsyncTCP/archive/master.zip
Download ESP8266 Filesystem Uploader :
https://github.com/esp8266/arduino-esp8266fs-plugin/releases/download/0.5.0/ESP8266FS-0.5.0.zip
*/
#include <Adafruit_Sensor.h>
#include <Adafruit_BME280.h>
#include <ESP8266WiFi.h>
#include <Hash.h>
#include <ESPAsyncTCP.h>
#include <ESPAsyncWebServer.h>
/*#include <SPI.h>
#define BME_SCK 14
#define BME_MISO 12
#define BME_MOSI 13
#define BME_CS 15*/
//Adafruit_BME280 bme(BME_CS); // use this for hardware SPI
//Adafruit_BME280 bme(BME_CS, BME_MOSI, BME_MISO, BME_SCK); // use this for software SPI
#include <Wire.h> // use this for I2C
Adafruit_BME280 bme; // use this for I2C
const char *ssid = "REPLACE_WITH_YOUR_SSID"; // replace with your SSID
const char *password = "REPLACE_WITH_YOUR_PASSWORD"; // replace with your Password
AsyncWebServer server(80); // start AsyncWebServer as server at port 80
String readBME280Temperature() // returns temperature reading from BME280 as String
{
float t = bme.readTemperature();
if (isnan(t))
{
Serial.println("Failed to read from BME280 sensor!");
return "";
}
else
{
Serial.println(t);
return String(t);
}
}
String readBME280Humidity() // returns humidity reading from BME280 as String
{
float h = bme.readHumidity();
if (isnan(h))
{
Serial.println("Failed to read from BME280 sensor!");
return "";
}
else
{
Serial.println(h);
return String(h);
}
}
void setup()
{
Serial.begin(115200); // change baudrate as per your need
// start I2C communication
bool status = bme.begin(0x76);
if (!status)
{
Serial.println("Could not find a valid BME280 sensor, check wiring!");
while (1)
;
}
// Initialize SPIFFS
if (!SPIFFS.begin())
{
Serial.println("An Error has occurred while mounting SPIFFS");
return;
}
// Connect to Wi-Fi
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED)
{
delay(1000);
Serial.print("Connecting to WiFi..");
Serial.print(".");
}
Serial.print("\nConnected to the WiFi network: ");
Serial.print(WiFi.SSID());
Serial.print("IP address:");
Serial.print(WiFi.localIP());
// send index.html file from SPIFFS
server.on("/", HTTP_GET, [](AsyncWebServerRequest *request) {
request->send(SPIFFS, "/index.html");
});
// send style.css file from SPIFFS
server.on("/style.css", HTTP_GET, [](AsyncWebServerRequest *request) {
request->send(SPIFFS, "/style.css", "text/css");
});
// send script.js file from SPIFFS
server.on("/script.js", HTTP_GET, [](AsyncWebServerRequest *request) {
request->send(SPIFFS, "/script.js", "text/javascript");
});
// send BME280 temperature
server.on("/temperature", HTTP_GET, [](AsyncWebServerRequest *request) {
request->send_P(200, "text/plain", readBME280Temperature().c_str());
});
// send BME280 humidity
server.on("/humidity", HTTP_GET, [](AsyncWebServerRequest *request) {
request->send_P(200, "text/plain", readBME280Humidity().c_str());
});
server.begin(); // begin server at port 80
}
void loop()
{
}
|
f33f6912f57c97ba3a9f8ab31191d574ef7c643d | 98ec9ec18e7a2edbfab2ad13b0e248fa004c6e8a | /Arduino Code/Week2/Week2.ino | 7d229401adeb8af4ca03ad605a44546bbb3b7f31 | [] | no_license | DIBLab/Rover | 320f2fce9bab7cf7db4bac2d1abc46c4710466e4 | af479053546efb807c850418dbd0bbf8c9fc2a4d | refs/heads/master | 2021-05-16T12:42:34.032996 | 2018-04-18T15:56:06 | 2018-04-18T15:56:06 | 105,308,867 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 783 | ino | Week2.ino | //Week 2:
//Basic setup
//Make the rover drive
#include <Servo.h> //this includes the Servo library so that your code is easier to write
//Name your servos
Servo leftServo;
Servo rightServo;
void setup() {
// put your setup code here, to run once:
//Attach your servos to the pin that you have them wired to
leftServo.attach(10);
rightServo.attach(11);
}
void loop() {
// put your main code here, to run repeatedly:
//Set both servos to stopped (90)
leftServo.write(90);
rightServo.write(90);
//wait for one second
delay(1000);
//Set both servos to drive forward
//they have opposite numbers because they are mounted in opposite directions
leftServo.write(120);
rightServo.write(20);
//let the rover drive for a second
delay(1000);
}
|
816843e7b46e1924f65520850e2ae92836c4ea97 | a3d6556180e74af7b555f8d47d3fea55b94bcbda | /gpu/ipc/service/gpu_memory_buffer_factory_io_surface.cc | e9bfc8bce5b34a21dd717263dc05559c44800fac | [
"BSD-3-Clause"
] | permissive | chromium/chromium | aaa9eda10115b50b0616d2f1aed5ef35d1d779d6 | a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c | refs/heads/main | 2023-08-24T00:35:12.585945 | 2023-08-23T22:01:11 | 2023-08-23T22:01:11 | 120,360,765 | 17,408 | 7,102 | BSD-3-Clause | 2023-09-10T23:44:27 | 2018-02-05T20:55:32 | null | UTF-8 | C++ | false | false | 1,862 | cc | gpu_memory_buffer_factory_io_surface.cc | // Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/ipc/service/gpu_memory_buffer_factory_io_surface.h"
#include <vector>
#include "base/logging.h"
#include "gpu/command_buffer/common/gpu_memory_buffer_support.h"
#include "gpu/ipc/common/gpu_client_ids.h"
#include "ui/gfx/buffer_format_util.h"
#include "ui/gfx/mac/io_surface.h"
namespace gpu {
namespace {
// A GpuMemoryBuffer with client_id = 0 behaves like anonymous shared memory.
const int kAnonymousClientId = 0;
} // namespace
GpuMemoryBufferFactoryIOSurface::GpuMemoryBufferFactoryIOSurface() {
}
GpuMemoryBufferFactoryIOSurface::~GpuMemoryBufferFactoryIOSurface() {
}
gfx::GpuMemoryBufferHandle
GpuMemoryBufferFactoryIOSurface::CreateGpuMemoryBuffer(
gfx::GpuMemoryBufferId id,
const gfx::Size& size,
const gfx::Size& framebuffer_size,
gfx::BufferFormat format,
gfx::BufferUsage usage,
int client_id,
SurfaceHandle surface_handle) {
DCHECK_NE(client_id, kAnonymousClientId);
DCHECK_EQ(framebuffer_size, size);
bool should_clear = true;
base::apple::ScopedCFTypeRef<IOSurfaceRef> io_surface =
gfx::CreateIOSurface(size, format, should_clear);
if (!io_surface) {
LOG(ERROR) << "Failed to allocate IOSurface.";
return gfx::GpuMemoryBufferHandle();
}
gfx::GpuMemoryBufferHandle handle;
handle.type = gfx::IO_SURFACE_BUFFER;
handle.id = id;
handle.io_surface = io_surface;
return handle;
}
void GpuMemoryBufferFactoryIOSurface::DestroyGpuMemoryBuffer(
gfx::GpuMemoryBufferId id,
int client_id) {}
bool GpuMemoryBufferFactoryIOSurface::FillSharedMemoryRegionWithBufferContents(
gfx::GpuMemoryBufferHandle buffer_handle,
base::UnsafeSharedMemoryRegion shared_memory) {
return false;
}
} // namespace gpu
|
579ae1f2b65c8be692730a0772574b97b20c6526 | a90d9373304c4ec4b3ea8ec46314bf02e9b2e864 | /poincare/src/absolute_value.cpp | a27a03f8b814e324f6e61ef72415b6d99ff97f96 | [] | no_license | charlie-x/epsilon | 084668654b1de8cce292ad9ede63fd02e10d5419 | e4c3a98b24c2c407dac3b03332da4fb2c625b1e5 | refs/heads/master | 2023-06-08T19:59:28.898004 | 2023-01-30T10:11:19 | 2023-01-31T14:17:54 | 256,359,479 | 0 | 0 | null | 2020-04-17T00:16:41 | 2020-04-17T00:16:41 | null | UTF-8 | C++ | false | false | 6,665 | cpp | absolute_value.cpp | #include <poincare/absolute_value.h>
#include <poincare/constant.h>
#include <poincare/dependency.h>
#include <poincare/layout_helper.h>
#include <poincare/serialization_helper.h>
#include <poincare/absolute_value_layout.h>
#include <poincare/complex_argument.h>
#include <poincare/complex_cartesian.h>
#include <poincare/float.h>
#include <poincare/multiplication.h>
#include <poincare/power.h>
#include <poincare/derivative.h>
#include <poincare/sign_function.h>
#include <poincare/simplification_helper.h>
#include <assert.h>
#include <cmath>
namespace Poincare {
int AbsoluteValueNode::numberOfChildren() const { return AbsoluteValue::s_functionHelper.numberOfChildren(); }
Layout AbsoluteValueNode::createLayout(Preferences::PrintFloatMode floatDisplayMode, int numberOfSignificantDigits, Context * context) const {
return AbsoluteValueLayout::Builder(childAtIndex(0)->createLayout(floatDisplayMode, numberOfSignificantDigits, context));
}
int AbsoluteValueNode::serialize(char * buffer, int bufferSize, Preferences::PrintFloatMode floatDisplayMode, int numberOfSignificantDigits) const {
return SerializationHelper::Prefix(this, buffer, bufferSize, floatDisplayMode, numberOfSignificantDigits, AbsoluteValue::s_functionHelper.aliasesList().mainAlias());
}
Expression AbsoluteValueNode::shallowReduce(const ReductionContext& reductionContext) {
return AbsoluteValue(this).shallowReduce(reductionContext);
}
bool AbsoluteValueNode::derivate(const ReductionContext& reductionContext, Symbol symbol, Expression symbolValue) {
return AbsoluteValue(this).derivate(reductionContext, symbol, symbolValue);
}
Expression AbsoluteValue::shallowReduce(ReductionContext reductionContext) {
{
Expression e = SimplificationHelper::defaultShallowReduce(
*this,
&reductionContext,
SimplificationHelper::BooleanReduction::UndefinedOnBooleans,
SimplificationHelper::UnitReduction::ExtractUnitsOfFirstChild,
SimplificationHelper::MatrixReduction::UndefinedOnMatrix,
SimplificationHelper::ListReduction::DistributeOverLists
);
if (!e.isUninitialized()) {
return e;
}
}
Expression c = childAtIndex(0);
// |x| = ±x if x is real
if (c.isReal(reductionContext.context(), reductionContext.shouldCheckMatrices()) ||
reductionContext.complexFormat() == Preferences::ComplexFormat::Real) {
double app = c.node()->approximate(double(), ApproximationContext(reductionContext, true)).toScalar();
if (!std::isnan(app)) {
if ((c.isNumber() && app >= 0) || app >= Float<double>::EpsilonLax()) {
/* abs(a) = a with a >= 0
* To check that a > 0, if a is a number we can use float comparison;
* in other cases, we are more conservative and rather check that
* a > epsilon ~ 1E-7 to avoid potential error due to float precision. */
replaceWithInPlace(c);
return c;
} else if ((c.isNumber() && app < 0.0f) || app <= -Float<double>::EpsilonLax()) {
// abs(a) = -a with a < 0 (same comment as above to check that a < 0)
Multiplication m = Multiplication::Builder(Rational::Builder(-1), c);
replaceWithInPlace(m);
return m.shallowReduce(reductionContext);
}
} else if (reductionContext.target() != ReductionTarget::User) {
// Do not display sign(x)*x to the user
Expression sign = SignFunction::Builder(c.clone());
Expression result = Multiplication::Builder(sign, c);
sign.shallowReduce(reductionContext);
replaceWithInPlace(result);
return result.shallowReduce(reductionContext);
}
}
// |a+ib| = sqrt(a^2+b^2)
if (c.type() == ExpressionNode::Type::ComplexCartesian) {
ComplexCartesian complexChild = static_cast<ComplexCartesian &>(c);
Expression childNorm = complexChild.norm(reductionContext);
replaceWithInPlace(childNorm);
return childNorm.shallowReduce(reductionContext);
}
// |z^y| = |z|^y if y is real
/* Proof:
* Let's write z = r*e^(i*θ) and y = a+ib
* |z^y| = |(r*e^(i*θ))^(a+ib)|
* = |r^a*r^(i*b)*e^(i*θ*a)*e^(-θ*b)|
* = |r^a*e^(i*b*ln(r))*e^(i*θ*a)*e^(-θ*b)|
* = |r^a*e^(-θ*b)|
* = r^a*|e^(-θ*b)|
* |z|^y = |r*e^(i*θ)|^(a+ib)
* = r^(a+ib)
* = r^a*r^(i*b)
* = r^a*e^(i*b*ln(r))
* So if b = 0, |z^y| = |z|^y
*/
if (c.type() == ExpressionNode::Type::Power && c.childAtIndex(1).isReal(reductionContext.context(), reductionContext.shouldCheckMatrices())) {
List listOfDependencies = List::Builder();
if (reductionContext.complexFormat() == Preferences::ComplexFormat::Real) {
listOfDependencies.addChildAtIndexInPlace(c.clone(), 0, 0);
}
Expression newabs = AbsoluteValue::Builder(c.childAtIndex(0));
c.replaceChildAtIndexInPlace(0, newabs);
newabs.shallowReduce(reductionContext);
if (reductionContext.complexFormat() == Preferences::ComplexFormat::Real) {
c = Dependency::Builder(c.shallowReduce(reductionContext), listOfDependencies);
}
replaceWithInPlace(c);
return c.shallowReduce(reductionContext);
}
// |x*y| = |x|*|y|
if (c.type() == ExpressionNode::Type::Multiplication) {
Multiplication m = Multiplication::Builder();
int childrenNumber = c.numberOfChildren();
for (int i = 0; i < childrenNumber; i++) {
AbsoluteValue newabs = AbsoluteValue::Builder(c.childAtIndex(i));
m.addChildAtIndexInPlace(newabs, m.numberOfChildren(), m.numberOfChildren());
newabs.shallowReduce(reductionContext);
}
replaceWithInPlace(m);
return m.shallowReduce(reductionContext);
}
// |i| = 1
if (c.type() == ExpressionNode::Type::ConstantMaths && static_cast<const Constant &>(c).isComplexI()) {
Expression e = Rational::Builder(1);
replaceWithInPlace(e);
return e;
}
// abs(-x) = abs(x)
c.makePositiveAnyNegativeNumeralFactor(reductionContext);
return *this;
}
// Derivate of |f(x)| is f'(x)*sg(x) (and undef in 0) = f'(x)*(f(x)/|f(x)|)
bool AbsoluteValue::derivate(const ReductionContext& reductionContext, Symbol symbol, Expression symbolValue) {
{
Expression e = Derivative::DefaultDerivate(*this, reductionContext, symbol);
if (!e.isUninitialized()) {
return true;
}
}
Expression f = childAtIndex(0);
Multiplication result = Multiplication::Builder();
result.addChildAtIndexInPlace(Derivative::Builder(f.clone(),
symbol.clone().convert<Symbol>(),
symbolValue.clone()
),0,0);
result.addChildAtIndexInPlace(f.clone(),1,1);
replaceWithInPlace(result);
result.addChildAtIndexInPlace(Power::Builder(*this,Rational::Builder(-1)),2,2);
return true;
}
}
|
8cc90bce0a451f845eb4d03ea57cf8ab5618f9db | 012fc5162432c654741203ca5ec3081e64b770e2 | /tests/testhelpers.cpp | c9bb8ed6702425e7018a7bfaa8afa8dcc176edaa | [
"MIT"
] | permissive | Daiver/NumGrind | 6df4e4bc8d4208b129a6d63ccdd2daab951b7583 | b5875034ec0debba7594191d6e818676543e5cf6 | refs/heads/master | 2020-12-02T07:45:11.579917 | 2016-11-19T11:39:58 | 2016-11-19T11:39:58 | 69,108,945 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 66 | cpp | testhelpers.cpp | //
// Created by daiver on 28.09.16.
//
#include "testhelpers.h"
|
6acd40329f1bde19152f0c866b7490fb29be23d6 | 8db5a149b4869e1e86d4a09114c31f4a5066f5b1 | /src/quiz/ransac/ransac2d.cpp | 4e30c43842610914d4a5850738689f26c2b36d48 | [] | no_license | sunsided/SFND_Lidar_Obstacle_Detection | 7e4e6c618f7705e777db99a7a501ee97cdd6f6b7 | 1d45e00e442b92e6b288db53c174605ac55af702 | refs/heads/master | 2022-07-18T06:34:26.487740 | 2020-05-11T10:31:59 | 2020-05-11T10:31:59 | 262,377,521 | 1 | 2 | null | 2020-05-08T16:47:39 | 2020-05-08T16:47:38 | null | UTF-8 | C++ | false | false | 7,878 | cpp | ransac2d.cpp | /* \author Aaron Brown */
// Quiz on implementing simple RANSAC line fitting
#include <unordered_set>
#include "../../render/render.h"
#include "../../processPointClouds.h"
#include "../../processPointClouds.cpp" // using templates for processPointClouds so also include .cpp to help linker
pcl::PointCloud<pcl::PointXYZ>::Ptr CreateData() {
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>());
// Add inliers
float scatter = 0.6;
for (int i = -5; i < 5; i++) {
double rx = 2 * (((double) rand() / (RAND_MAX)) - 0.5);
double ry = 2 * (((double) rand() / (RAND_MAX)) - 0.5);
pcl::PointXYZ point;
point.x = i + scatter * rx;
point.y = i + scatter * ry;
point.z = 0;
cloud->points.push_back(point);
}
// Add outliers
int numOutliers = 10;
while (numOutliers--) {
double rx = 2 * (((double) rand() / (RAND_MAX)) - 0.5);
double ry = 2 * (((double) rand() / (RAND_MAX)) - 0.5);
pcl::PointXYZ point;
point.x = 5 * rx;
point.y = 5 * ry;
point.z = 0;
cloud->points.push_back(point);
}
cloud->width = cloud->points.size();
cloud->height = 1;
return cloud;
}
pcl::PointCloud<pcl::PointXYZ>::Ptr CreateData3D() {
ProcessPointClouds<pcl::PointXYZ> pointProcessor;
// Needs to be run from repo root.
const auto points = pointProcessor.loadPcd("src/sensors/data/pcd/simpleHighway.pcd");
assert(points->points.size() >= 2);
return points;
}
pcl::visualization::PCLVisualizer::Ptr initScene() {
pcl::visualization::PCLVisualizer::Ptr viewer(new pcl::visualization::PCLVisualizer("2D Viewer"));
viewer->setBackgroundColor(0.133, 0.133, 0.133);
viewer->initCameraParameters();
viewer->setCameraPosition(0, 0, 15, 0, 1, 0);
viewer->addCoordinateSystem(1.0);
return viewer;
}
#ifdef FOR_FUTURE_REFERENCE
std::unordered_set<int> Ransac(pcl::PointCloud<pcl::PointXYZ>::Ptr cloud, int maxIterations, float distanceTol) {
std::unordered_set<int> inliersResult;
srand(time(0));
const auto numPoints = cloud->points.size();
assert(numPoints >= 2);
// For max iterations
for (auto i = 0; i < maxIterations; ++i) {
// Randomly sample subset and fit line.
// We're using a set here to ensure we never sample the same point twice.
std::unordered_set<int> inliers;
while (inliers.size() < 2) {
inliers.insert(rand() % numPoints);
}
// Get both points.
auto itr = inliers.begin();
const auto& p1 = cloud->points[*itr];
itr++;
const auto& p2 = cloud->points[*itr];
// Determine the line through both points.
const auto a = p1.y - p2.y;
const auto b = p2.x - p1.x;
const auto c = p1.x*p2.y - p2.x*p1.y;
const auto normalizer = 1.0 / std::sqrt(a * a + b * b);
// Measure distance between every point and fitted line
for (auto j = 0; j < numPoints; ++j) {
// Skip points we already know are inliers.
if (inliers.count(j) > 0) {
continue;
}
// Determine the distance of the current point to the line.
const auto& pt = cloud->points[j];
const auto px = pt.x;
const auto py = pt.y;
const auto d = std::abs(a*px + b*py + c) * normalizer;
// If distance is smaller than threshold count it as inlier
if (d <= distanceTol) {
inliers.insert(j);
}
}
// Return indices of inliers from fitted line with most inliers.
// Specifically, we only keep the result if we found a better answer than
// the one we already have.
if (inliers.size() > inliersResult.size()) {
inliersResult = inliers;
}
}
return inliersResult;
}
#endif
std::unordered_set<int> RansacPlane(pcl::PointCloud<pcl::PointXYZ>::Ptr cloud, int maxIterations, float distanceTol) {
std::unordered_set<int> inliersResult;
srand(time(0));
const auto numPoints = cloud->points.size();
assert(numPoints >= 3); // ... and points are not collinear ...
// For max iterations
for (auto i = 0; i < maxIterations; ++i) {
// Randomly sample subset and fit a plane.
// We're using a set here to ensure we never sample the same point twice.
std::unordered_set<int> inliers;
while (inliers.size() < 3) {
inliers.insert(rand() % numPoints);
}
// Get all points.
auto itr = inliers.begin();
const auto& p1 = cloud->points[*itr];
itr++;
const auto& p2 = cloud->points[*itr];
itr++;
const auto& p3 = cloud->points[*itr];
// Determine the plane through three points.
const auto v1 = Vect3{p2} - Vect3{p1};
const auto v2 = Vect3{p3} - Vect3{p1};
// Determine plane normal by taking the cross product.
const auto normal = v1.cross(v2);
const auto normalizer = 1.0 / normal.norm();
// Plane coefficients
const auto A = normal.x;
const auto B = normal.y;
const auto C = normal.z;
const auto D = (A * p1.x + B * p1.y + C * p1.z);
// Measure distance between every point and fitted line
for (auto j = 0; j < numPoints; ++j) {
// Skip points we already know are inliers.
if (inliers.count(j) > 0) {
continue;
}
// Determine the distance of the current point to the line.
const auto& pt = cloud->points[j];
const auto d = std::abs(A * pt.x + B * pt.y + C * pt.z + D) * normalizer;
// If distance is smaller than threshold count it as inlier
if (d <= distanceTol) {
inliers.insert(j);
}
}
// Return indices of inliers from fitted line with most inliers.
// Specifically, we only keep the result if we found a better answer than
// the one we already have.
if (inliers.size() > inliersResult.size()) {
inliersResult = inliers;
}
}
return inliersResult;
}
int main() {
// Create viewer
pcl::visualization::PCLVisualizer::Ptr viewer = initScene();
// Create data
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud = CreateData3D(); // use CreateData() for line fitting
// Time segmentation process
auto startTime = std::chrono::steady_clock::now();
// Run RANSAC to find the line.
const auto maxIterations = 100;
const auto distanceTolerance = 0.2;
std::unordered_set<int> inliers = RansacPlane(cloud, maxIterations, distanceTolerance);
auto endTime = std::chrono::steady_clock::now();
auto elapsedTime = std::chrono::duration_cast<std::chrono::milliseconds>(endTime - startTime);
std::cout << "plane segmentation took " << elapsedTime.count() << " ms" << std::endl;
pcl::PointCloud<pcl::PointXYZ>::Ptr cloudInliers(new pcl::PointCloud<pcl::PointXYZ>());
pcl::PointCloud<pcl::PointXYZ>::Ptr cloudOutliers(new pcl::PointCloud<pcl::PointXYZ>());
for (int index = 0; index < cloud->points.size(); index++) {
pcl::PointXYZ point = cloud->points[index];
if (inliers.count(index))
cloudInliers->points.push_back(point);
else
cloudOutliers->points.push_back(point);
}
// Render 2D point cloud with inliers and outliers
if (inliers.size()) {
renderPointCloud(viewer, cloudInliers, "inliers", Color{0.831, 0.812, 0.788});
renderPointCloud(viewer, cloudOutliers, "outliers", Color{0.831, 0.241, 0.312});
} else {
renderPointCloud(viewer, cloud, "data");
}
while (!viewer->wasStopped()) {
viewer->spinOnce();
}
}
|
a751343270baa5004298524d1db450f10b31c4b4 | c3bbdbbbc5f47577e332a280f81bd905617423c9 | /Source/AllProjects/GraphicUtils/CIDImage/Win32/CIDImage_PixelArray_Win32.cpp | 2e0324e76a06416af31c1f6228f9fe3cf8f3e1c1 | [
"MIT"
] | permissive | DeanRoddey/CIDLib | 65850f56cb60b16a63bbe7d6d67e4fddd3ecce57 | 82014e064eef51cad998bf2c694ed9c1c8cceac6 | refs/heads/develop | 2023-03-11T03:08:59.207530 | 2021-11-06T16:40:44 | 2021-11-06T16:40:44 | 174,652,391 | 227 | 33 | MIT | 2020-09-16T11:33:26 | 2019-03-09T05:26:26 | C++ | UTF-8 | C++ | false | false | 2,153 | cpp | CIDImage_PixelArray_Win32.cpp | //
// FILE NAME: CIDImage_PixelArray_Win32.cpp
//
// AUTHOR: Dean Roddey
//
// CREATED: 02/28/1998
//
// COPYRIGHT: Charmed Quark Systems, Ltd @ 2019
//
// This software is copyrighted by 'Charmed Quark Systems, Ltd' and
// the author (Dean Roddey.) It is licensed under the MIT Open Source
// license:
//
// https://opensource.org/licenses/MIT
//
// DESCRIPTION:
//
// This file implements the Win32 specific parts of the pixel array class.
//
// CAVEATS/GOTCHAS:
//
// LOG:
//
// $_CIDLib_Log_$
//
// ---------------------------------------------------------------------------
// Facility specific includes
// ---------------------------------------------------------------------------
#include "CIDImage_.hpp"
// ---------------------------------------------------------------------------
// TPixelArray: Private, non-virtual methods
// ---------------------------------------------------------------------------
//
// For now we just return one of the default implementation objects. Once we've split
// out the Win32 optimized one, we'll return one of those.
//
TPixelArrayImpl* TPixelArray::ppixaiMakeNew()
{
return new TPixelArrayImpl();
}
TPixelArrayImpl*
TPixelArray::ppixaiMakeNew( const tCIDImage::EPixFmts eFmt
, const tCIDImage::EBitDepths eBitDepth
, const tCIDImage::ERowOrders eRowOrder
, const TSize& szImage)
{
return new TPixelArrayImpl(eFmt, eBitDepth, eRowOrder, szImage);
}
TPixelArrayImpl*
TPixelArray::ppixaiMakeNew( const tCIDImage::EPixFmts eFmt
, const tCIDImage::EBitDepths eBitDepth
, const tCIDImage::ERowOrders eRowOrder
, const TSize& szImage
, tCIDLib::TCard1* const pc1Buf
, const tCIDLib::TCard4 c4BufSz
, const tCIDLib::EAdoptOpts eAdoptOpt)
{
return new TPixelArrayImpl
(
eFmt, eBitDepth, eRowOrder, szImage, pc1Buf, c4BufSz, eAdoptOpt
);
}
|
09d04cfee596e66231c4ef012869586b38261790 | e48b2ede55e28c6142d6452d8fbe68686134b141 | /examples/AIC_Shield/Tympan_Earpieces_wApp/State.h | 721868df7e87a1ee07877d33b2635aeeacbf8dc0 | [
"MIT"
] | permissive | kxm-creare/Tympan_Library | b33c0f53c6cf105f1a3bac1d41dbee24ee680a29 | 4fc9206b5040cf934d2cdbdc37dc5872814546f2 | refs/heads/master | 2021-06-29T16:10:46.589723 | 2021-06-11T17:50:52 | 2021-06-11T17:50:52 | 130,901,324 | 0 | 0 | MIT | 2021-06-11T17:56:19 | 2018-04-24T19:02:44 | HTML | UTF-8 | C++ | false | false | 2,609 | h | State.h |
#ifndef State_h
#define State_h
// define structure for tracking state of system (for GUI)
extern "C" char* sbrk(int incr);
class State {
public:
//State(void) {};
State(AudioSettings_F32 *given_settings, Print *given_serial) {
local_audio_settings = given_settings;
local_serial = given_serial;
}
enum INPUTS {NO_STATE, INPUT_PCBMICS, INPUT_MICJACK_MIC, INPUT_MICJACK_LINEIN, INPUT_LINEIN_SE, INPUT_PDMMICS};
//enum GAIN_TYPE {INPUT_GAIN_ID, OUTPUT_GAIN_ID};
enum MIC_CONFIG_TYPE {MIC_FRONT, MIC_REAR, MIC_BOTH_INPHASE, MIC_BOTH_INVERTED, MIC_AIC0_LR, MIC_AIC1_LR, MIC_BOTHAIC_LR};
int input_source = NO_STATE;
int digital_mic_config = MIC_FRONT;
int analog_mic_config = MIC_AIC0_LR; //what state for the mic configuration when using analog inputs
float inputGain_dB = 0.0;
float volKnobGain_dB = 0.0;
bool flag_printCPUandMemory = false;
void printCPUandMemory(unsigned long curTime_millis = 0, unsigned long updatePeriod_millis = 0) {
static unsigned long lastUpdate_millis = 0;
//has enough time passed to update everything?
if (curTime_millis < lastUpdate_millis) lastUpdate_millis = 0; //handle wrap-around of the clock
if ((curTime_millis - lastUpdate_millis) > updatePeriod_millis) { //is it time to update the user interface?
printCPUandMemoryMessage();
lastUpdate_millis = curTime_millis; //we will use this value the next time around.
}
}
int FreeRam() {
char top; //this new variable is, in effect, the mem location of the edge of the heap
return &top - reinterpret_cast<char*>(sbrk(0));
}
void printCPUandMemoryMessage(void) {
local_serial->print("CPU Cur/Pk: ");
local_serial->print(local_audio_settings->processorUsage(), 1);
local_serial->print("%/");
local_serial->print(local_audio_settings->processorUsageMax(), 1);
local_serial->print("%, ");
local_serial->print("MEM Cur/Pk: ");
local_serial->print(AudioMemoryUsage_F32());
local_serial->print("/");
local_serial->print(AudioMemoryUsageMax_F32());
local_serial->print(", FreeRAM(B) ");
local_serial->print(FreeRam());
local_serial->println();
}
void printGainSettings(void) {
local_serial->print("Gains (dB): ");
local_serial->print("In "); local_serial->print(inputGain_dB,1);
local_serial->print(", Out "); local_serial->print(volKnobGain_dB,1);
local_serial->println();
}
private:
Print *local_serial;
AudioSettings_F32 *local_audio_settings;
};
#endif
|
d1a757cbd61fab94279eea34744eae1e24c16c68 | 19b4aea6c829b272ae29692ccc51f9ab8dcf573f | /src/winrt/impl/Windows.Devices.SerialCommunication.2.h | c125905c79e1ebc085482d79e9f89ef0182f7d44 | [
"MIT"
] | permissive | liquidboy/X | 9665573b6e30dff8912ab64a8daf08f9f3176628 | bf94a0af4dd06ab6c66027afdcda88eda0b4ae47 | refs/heads/master | 2022-12-10T17:41:15.490231 | 2021-12-07T01:31:38 | 2021-12-07T01:31:38 | 51,222,325 | 29 | 9 | null | 2021-08-04T21:30:44 | 2016-02-06T21:16:04 | C++ | UTF-8 | C++ | false | false | 1,260 | h | Windows.Devices.SerialCommunication.2.h | // C++/WinRT v1.0.170906.1
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
#pragma once
#include "winrt/impl/Windows.Storage.Streams.1.h"
#include "winrt/impl/Windows.Foundation.1.h"
#include "winrt/impl/Windows.Devices.SerialCommunication.1.h"
WINRT_EXPORT namespace winrt::Windows::Devices::SerialCommunication {
}
namespace winrt::impl {
}
WINRT_EXPORT namespace winrt::Windows::Devices::SerialCommunication {
struct WINRT_EBO ErrorReceivedEventArgs :
Windows::Devices::SerialCommunication::IErrorReceivedEventArgs
{
ErrorReceivedEventArgs(std::nullptr_t) noexcept {}
};
struct WINRT_EBO PinChangedEventArgs :
Windows::Devices::SerialCommunication::IPinChangedEventArgs
{
PinChangedEventArgs(std::nullptr_t) noexcept {}
};
struct WINRT_EBO SerialDevice :
Windows::Devices::SerialCommunication::ISerialDevice
{
SerialDevice(std::nullptr_t) noexcept {}
static hstring GetDeviceSelector();
static hstring GetDeviceSelector(param::hstring const& portName);
static hstring GetDeviceSelectorFromUsbVidPid(uint16_t vendorId, uint16_t productId);
static Windows::Foundation::IAsyncOperation<Windows::Devices::SerialCommunication::SerialDevice> FromIdAsync(param::hstring const& deviceId);
};
}
|
b7a191447de3a81720ed9286adb045deb5820162 | c09c69f923446bbea1237eac41602d7839debd0c | /Assignment5/spoutput.hpp | e5a6d367ac8a7335338f67391f3685a61a96e573 | [] | no_license | yy757/Sparse-Matrix | 7496abc1c973e7cde54ed58e8fda1c5da29e8905 | de4e3675a983d85681bb1e57a31285f61a0d5507 | refs/heads/master | 2020-03-17T23:02:00.912181 | 2018-05-19T04:17:10 | 2018-05-19T04:17:10 | 134,028,836 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,407 | hpp | spoutput.hpp | // MATRIX OUTPUT MODULE
//
// spoutput.hpp
// Assignment5
//
// Created by Leslie Yu on 5/15/18.
// Copyright © 2018 Leslie Yu. All rights reserved.
// Description : This file contains the output-to-file and output-toscreen routines for the matrix package
/*
* >>> User accessible functions :
* spPrintVector
* spPrintMatrix
*/
/*
* IMPORTS
*
* >>> Import descriptions:
* spdefs.hpp
* Data structure used for sparse matrix and macros for the sparse matrix routines.
* spbuild.hpp
* Routines associated with initialization, loading and processing the matrix for the sparse matrix
* routines.
*/
#ifndef spoutput_hpp
#define spoutput_hpp
#include <stdio.h>
#include "spdefs.h"
/*
* PRINT MATRIX
*
* Formats and send the matrix to standard output.
* Some elementary statistics are also output.
* Provide two display format of the matrix:
* 1. Full matrix is displayed for the users.
* 2. Matrix pointers are also displayer for debugging
*
* >>> Arguments:
* Matrix <input> (char *)
* Pointer to matrix.
*
*
* >>> Local variables:
* width (int)
* manipulate the output form by the macros defined in spdefs.h
*/
/* Full matrix is displayed for the users */
void spPrintVector(SparseMatrix Matrix);
/* Matrix pointers are also displayer for debugging */
void spPrintMatrix(SparseMatrix Matrix);
#endif /* spoutput_hpp */
|
51d0b03a2914e3569099738b6e2e995d1610ba56 | 9b5acc90f8d4bad27bf618bf8605ed68d8e907f9 | /win/ctrl/tooltip.cpp | 1f068d041eef493c0d266d6d1e46561183003337 | [
"MIT"
] | permissive | BluTree/windows | 2847495ac58ed4fd1b703ada50d400045d8cad52 | 01dbb9cd5098f036771d79c2ed1ea5921f69f759 | refs/heads/master | 2023-03-10T07:41:42.467743 | 2021-02-17T16:09:06 | 2021-02-17T16:09:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,503 | cpp | tooltip.cpp | /*
MIT License
Copyright (c) 2010-2016 Eren Okka
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 "../common_controls.h"
namespace win {
Tooltip::Tooltip(HWND hwnd) {
SetWindowHandle(hwnd);
}
void Tooltip::PreCreate(CREATESTRUCT &cs) {
cs.dwExStyle = 0;
cs.lpszClass = TOOLTIPS_CLASS;
cs.style = WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP;
}
void Tooltip::OnCreate(HWND hwnd, LPCREATESTRUCT create_struct) {
::SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0,
SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
Window::OnCreate(hwnd, create_struct);
}
////////////////////////////////////////////////////////////////////////////////
BOOL Tooltip::AddTip(UINT id, LPCWSTR text, LPCWSTR title, LPRECT rect,
bool window_id) {
TOOLINFO ti = {0};
ti.cbSize = sizeof(TOOLINFO);
ti.hwnd = parent_;
ti.hinst = instance_;
ti.lpszText = const_cast<LPWSTR>(text);
ti.uFlags = TTF_SUBCLASS | (window_id ? TTF_IDISHWND : 0);
ti.uId = static_cast<UINT_PTR>(id);
if (rect)
ti.rect = *rect;
BOOL result = SendMessage(TTM_ADDTOOL, 0, reinterpret_cast<LPARAM>(&ti));
if (result && title)
result = SendMessage(TTM_SETTITLE, TTI_INFO,
reinterpret_cast<LPARAM>(title));
return result;
}
void Tooltip::DeleteTip(UINT id) {
TOOLINFO ti = {0};
ti.cbSize = sizeof(TOOLINFO);
ti.hwnd = parent_;
ti.uId = static_cast<UINT_PTR>(id);
SendMessage(TTM_DELTOOL, 0, reinterpret_cast<LPARAM>(&ti));
}
void Tooltip::NewToolRect(UINT id, LPRECT rect) {
TOOLINFO ti = {0};
ti.cbSize = sizeof(TOOLINFO);
ti.hwnd = parent_;
ti.uId = static_cast<UINT_PTR>(id);
if (rect)
ti.rect = *rect;
SendMessage(TTM_NEWTOOLRECT, 0, reinterpret_cast<LPARAM>(&ti));
}
void Tooltip::SetDelayTime(long autopop, long initial, long reshow) {
SendMessage(TTM_SETDELAYTIME, TTDT_AUTOPOP, autopop);
SendMessage(TTM_SETDELAYTIME, TTDT_INITIAL, initial);
SendMessage(TTM_SETDELAYTIME, TTDT_RESHOW, reshow);
}
void Tooltip::SetMaxWidth(long width) {
SendMessage(TTM_SETMAXTIPWIDTH, 0, width);
}
void Tooltip::UpdateText(UINT id, LPCWSTR text) {
TOOLINFO ti = {0};
ti.cbSize = sizeof(TOOLINFO);
ti.hinst = instance_;
ti.hwnd = parent_;
ti.lpszText = const_cast<LPWSTR>(text);
ti.uId = static_cast<UINT_PTR>(id);
SendMessage(TTM_UPDATETIPTEXT, 0, reinterpret_cast<LPARAM>(&ti));
}
void Tooltip::UpdateTitle(LPCWSTR title) {
SendMessage(TTM_SETTITLE, title ? 0 : 1, reinterpret_cast<LPARAM>(title));
}
} // namespace win |
333908433a27fca68005c5c9ddcebfad7830340a | 684c9beb8bd972daeabe5278583195b9e652c0c5 | /src/starboard/shared/starboard/player/input_buffer_internal.h | 9c099d36b2ab48489d807040abbf14206fccc18d | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | elgamar/cobalt-clone | a7d4e62630218f0d593fa74208456dd376059304 | 8a7c8792318a721e24f358c0403229570da8402b | refs/heads/master | 2022-11-27T11:30:31.314891 | 2018-10-26T15:54:41 | 2018-10-26T15:55:22 | 159,339,577 | 2 | 4 | null | 2022-11-17T01:03:37 | 2018-11-27T13:27:44 | C++ | UTF-8 | C++ | false | false | 3,432 | h | input_buffer_internal.h | // Copyright 2016 The Cobalt Authors. All Rights Reserved.
//
// 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 STARBOARD_SHARED_STARBOARD_PLAYER_INPUT_BUFFER_INTERNAL_H_
#define STARBOARD_SHARED_STARBOARD_PLAYER_INPUT_BUFFER_INTERNAL_H_
#include <string>
#include <vector>
#include "starboard/common/ref_counted.h"
#include "starboard/drm.h"
#include "starboard/media.h"
#include "starboard/player.h"
#include "starboard/shared/internal_only.h"
namespace starboard {
namespace shared {
namespace starboard {
namespace player {
// This class encapsulate a media buffer.
class InputBuffer : public RefCountedThreadSafe<InputBuffer> {
public:
InputBuffer(SbMediaType sample_type,
SbPlayerDeallocateSampleFunc deallocate_sample_func,
SbPlayer player,
void* context,
const void* sample_buffer,
int sample_buffer_size,
SbTime sample_timestamp,
const SbMediaVideoSampleInfo* video_sample_info,
const SbDrmSampleInfo* sample_drm_info);
InputBuffer(SbMediaType sample_type,
SbPlayerDeallocateSampleFunc deallocate_sample_func,
SbPlayer player,
void* context,
const void* const* sample_buffers,
const int* sample_buffer_sizes,
int number_of_sample_buffers,
SbTime sample_timestamp,
const SbMediaVideoSampleInfo* video_sample_info,
const SbDrmSampleInfo* sample_drm_info);
~InputBuffer();
SbMediaType sample_type() const { return sample_type_; }
const uint8_t* data() const { return data_; }
int size() const { return size_; }
SbTime timestamp() const { return timestamp_; }
const SbMediaVideoSampleInfo* video_sample_info() const {
return has_video_sample_info_ ? &video_sample_info_ : NULL;
}
const SbDrmSampleInfo* drm_info() const {
return has_drm_info_ ? &drm_info_ : NULL;
}
void SetDecryptedContent(const void* buffer, int size);
std::string ToString() const;
private:
void TryToAssignVideoSampleInfo(
const SbMediaVideoSampleInfo* video_sample_info);
void TryToAssignDrmSampleInfo(const SbDrmSampleInfo* sample_drm_info);
void DeallocateSampleBuffer(const void* buffer);
SbMediaType sample_type_;
SbPlayerDeallocateSampleFunc deallocate_sample_func_;
SbPlayer player_;
void* context_;
const uint8_t* data_;
int size_;
SbTime timestamp_;
bool has_video_sample_info_;
SbMediaColorMetadata color_metadata_;
SbMediaVideoSampleInfo video_sample_info_;
bool has_drm_info_;
SbDrmSampleInfo drm_info_;
std::vector<uint8_t> flattened_data_;
std::vector<SbDrmSubSampleMapping> subsamples_;
SB_DISALLOW_COPY_AND_ASSIGN(InputBuffer);
};
} // namespace player
} // namespace starboard
} // namespace shared
} // namespace starboard
#endif // STARBOARD_SHARED_STARBOARD_PLAYER_INPUT_BUFFER_INTERNAL_H_
|
d8a5dcc646721554f141d96c0ebf26f193f36841 | a7764174fb0351ea666faa9f3b5dfe304390a011 | /inc/HLRBRep_InterCSurf.hxx | afa33260aa0eb2bac37ca3f8789a51204b317b45 | [] | no_license | uel-dataexchange/Opencascade_uel | f7123943e9d8124f4fa67579e3cd3f85cfe52d91 | 06ec93d238d3e3ea2881ff44ba8c21cf870435cd | refs/heads/master | 2022-11-16T07:40:30.837854 | 2020-07-08T01:56:37 | 2020-07-08T01:56:37 | 276,290,778 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,034 | hxx | HLRBRep_InterCSurf.hxx | // This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _HLRBRep_InterCSurf_HeaderFile
#define _HLRBRep_InterCSurf_HeaderFile
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_Macro_HeaderFile
#include <Standard_Macro.hxx>
#endif
#ifndef _IntCurveSurface_Intersection_HeaderFile
#include <IntCurveSurface_Intersection.hxx>
#endif
#ifndef _Standard_Address_HeaderFile
#include <Standard_Address.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
class gp_Lin;
class HLRBRep_LineTool;
class HLRBRep_SurfaceTool;
class HLRBRep_ThePolygonOfInterCSurf;
class HLRBRep_ThePolygonToolOfInterCSurf;
class HLRBRep_ThePolyhedronOfInterCSurf;
class HLRBRep_ThePolyhedronToolOfInterCSurf;
class HLRBRep_TheInterferenceOfInterCSurf;
class HLRBRep_TheCSFunctionOfInterCSurf;
class HLRBRep_TheExactInterCSurf;
class HLRBRep_TheQuadCurvExactInterCSurf;
class HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf;
class Bnd_BoundSortBox;
class gp_Circ;
class gp_Elips;
class gp_Parab;
class gp_Hypr;
class IntAna_IntConicQuad;
class TColgp_Array2OfPnt;
class Bnd_Box;
class TColStd_Array1OfReal;
class HLRBRep_InterCSurf : public IntCurveSurface_Intersection {
public:
void* operator new(size_t,void* anAddress)
{
return anAddress;
}
void* operator new(size_t size)
{
return Standard::Allocate(size);
}
void operator delete(void *anAddress)
{
if (anAddress) Standard::Free((Standard_Address&)anAddress);
}
Standard_EXPORT HLRBRep_InterCSurf();
Standard_EXPORT void Perform(const gp_Lin& Curve,const Standard_Address& Surface) ;
Standard_EXPORT void Perform(const gp_Lin& Curve,const HLRBRep_ThePolygonOfInterCSurf& Polygon,const Standard_Address& Surface) ;
Standard_EXPORT void Perform(const gp_Lin& Curve,const HLRBRep_ThePolygonOfInterCSurf& ThePolygon,const Standard_Address& Surface,const HLRBRep_ThePolyhedronOfInterCSurf& Polyhedron) ;
Standard_EXPORT void Perform(const gp_Lin& Curve,const HLRBRep_ThePolygonOfInterCSurf& ThePolygon,const Standard_Address& Surface,const HLRBRep_ThePolyhedronOfInterCSurf& Polyhedron,Bnd_BoundSortBox& BndBSB) ;
Standard_EXPORT void Perform(const gp_Lin& Curve,const Standard_Address& Surface,const HLRBRep_ThePolyhedronOfInterCSurf& Polyhedron) ;
protected:
Standard_EXPORT void Perform(const gp_Lin& Curve,const Standard_Address& Surface,const Standard_Real U0,const Standard_Real V0,const Standard_Real U1,const Standard_Real V1) ;
Standard_EXPORT void InternalPerformCurveQuadric(const gp_Lin& Curve,const Standard_Address& Surface) ;
Standard_EXPORT void InternalPerform(const gp_Lin& Curve,const HLRBRep_ThePolygonOfInterCSurf& Polygon,const Standard_Address& Surface,const HLRBRep_ThePolyhedronOfInterCSurf& Polyhedron,const Standard_Real U1,const Standard_Real V1,const Standard_Real U2,const Standard_Real V2) ;
Standard_EXPORT void InternalPerform(const gp_Lin& Curve,const HLRBRep_ThePolygonOfInterCSurf& Polygon,const Standard_Address& Surface,const HLRBRep_ThePolyhedronOfInterCSurf& Polyhedron,const Standard_Real U1,const Standard_Real V1,const Standard_Real U2,const Standard_Real V2,Bnd_BoundSortBox& BSB) ;
Standard_EXPORT void InternalPerform(const gp_Lin& Curve,const HLRBRep_ThePolygonOfInterCSurf& Polygon,const Standard_Address& Surface,const Standard_Real U1,const Standard_Real V1,const Standard_Real U2,const Standard_Real V2) ;
Standard_EXPORT void PerformConicSurf(const gp_Lin& Line,const gp_Lin& Curve,const Standard_Address& Surface,const Standard_Real U1,const Standard_Real V1,const Standard_Real U2,const Standard_Real V2) ;
Standard_EXPORT void PerformConicSurf(const gp_Circ& Circle,const gp_Lin& Curve,const Standard_Address& Surface,const Standard_Real U1,const Standard_Real V1,const Standard_Real U2,const Standard_Real V2) ;
Standard_EXPORT void PerformConicSurf(const gp_Elips& Ellipse,const gp_Lin& Curve,const Standard_Address& Surface,const Standard_Real U1,const Standard_Real V1,const Standard_Real U2,const Standard_Real V2) ;
Standard_EXPORT void PerformConicSurf(const gp_Parab& Parab,const gp_Lin& Curve,const Standard_Address& Surface,const Standard_Real U1,const Standard_Real V1,const Standard_Real U2,const Standard_Real V2) ;
Standard_EXPORT void PerformConicSurf(const gp_Hypr& Hyper,const gp_Lin& Curve,const Standard_Address& Surface,const Standard_Real U1,const Standard_Real V1,const Standard_Real U2,const Standard_Real V2) ;
Standard_EXPORT void AppendIntAna(const gp_Lin& Curve,const Standard_Address& Surface,const IntAna_IntConicQuad& InterAna) ;
Standard_EXPORT void AppendPoint(const gp_Lin& Curve,const Standard_Real w,const Standard_Address& Surface,const Standard_Real u,const Standard_Real v) ;
Standard_EXPORT void AppendSegment(const gp_Lin& Curve,const Standard_Real u0,const Standard_Real u1,const Standard_Address& Surface) ;
private:
Standard_EXPORT void DoSurface(const Standard_Address& surface,const Standard_Real u0,const Standard_Real u1,const Standard_Real v0,const Standard_Real v1,TColgp_Array2OfPnt& pntsOnSurface,Bnd_Box& boxSurface,Standard_Real& gap) ;
Standard_EXPORT void DoNewBounds(const Standard_Address& surface,const Standard_Real u0,const Standard_Real u1,const Standard_Real v0,const Standard_Real v1,const TColgp_Array2OfPnt& pntsOnSurface,const TColStd_Array1OfReal& X,const TColStd_Array1OfReal& Y,const TColStd_Array1OfReal& Z,TColStd_Array1OfReal& Bounds) ;
};
// other Inline functions and methods (like "C++: function call" methods)
#endif
|
a9aec667be887f1b6a026ddddee79ead0371cabd | ab8d501d9e00a9dd1e23e53942b7fa9df8522493 | /tools/booster/ipcserver.cpp | 2a4b71dfc298d5ea4365872c981d2f6af810ac08 | [
"Apache-2.0"
] | permissive | webosce/qml-webos-framework | fd960694577dcc603ed7ffdc008a6f1253462d8c | dbf1f8608ae88b189dedd358acc97d9504425996 | refs/heads/webosce | 2023-02-19T17:34:22.803845 | 2018-07-09T14:42:20 | 2018-07-11T07:38:06 | 145,512,751 | 0 | 1 | Apache-2.0 | 2023-02-17T09:32:38 | 2018-08-21T05:46:35 | QML | UTF-8 | C++ | false | false | 8,052 | cpp | ipcserver.cpp | // Copyright (c) 2014-2018 LG Electronics, Inc.
//
// 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.
//
// SPDX-License-Identifier: Apache-2.0
#include <QtCore/QDateTime>
#include <QtNetwork/QLocalSocket>
#include <QtCore/QJsonDocument>
#include <QtCore/QJsonObject>
#include <QtCore/QDataStream>
#include "../common/ipccommon.h"
#include "ipcserver.h"
IpcServer::IpcServer (QObject *parent) :
QObject (parent)
{
QLocalServer::removeServer(QStringLiteral("EosBooster"));
m_server.listen(QStringLiteral("EosBooster"));
connect(&m_server, &QLocalServer::newConnection, this, &IpcServer::setupConnection);
}
IpcServer::~IpcServer()
{
qDeleteAll(m_runningSockets.values());
m_server.close();
}
bool IpcServer::isListening() const
{
return m_server.isListening();
}
int IpcServer::connectedRunnersCount() const
{
return m_runnerClients.count();
}
void IpcServer::setupConnection()
{
while (m_server.hasPendingConnections()) {
QLocalSocket *socket = m_server.nextPendingConnection();
QObject::connect(socket, &QLocalSocket::readyRead, this , &IpcServer::readSocket);
QObject::connect(socket, &QLocalSocket::disconnected, this, &IpcServer::onDisconnected);
}
}
void IpcServer::onDisconnected()
{
QLocalSocket *socket = qobject_cast<QLocalSocket*>(sender());
Q_ASSERT (socket);
if (m_runnerClients.removeOne(socket)) {
// TODO: measure rate of failures like this and go to an error state
qWarning("A runner was dropped from the pool");
emit connectedRunnersCountChanged(m_runnerClients.count());
}
for (auto it = m_runningSockets.begin(); it != m_runningSockets.end(); ++it) {
if (it.value() == socket) {
m_runningSockets.erase(it);
break;
}
}
socket->deleteLater();
}
void IpcServer::readSocket()
{
QLocalSocket *socket = qobject_cast<QLocalSocket*>(sender());
Q_ASSERT (socket);
QByteArray raw_json;
{
QByteArray block = socket->readAll();
QDataStream in (&block, QIODevice::ReadOnly);
if (in.atEnd()) {
qWarning("Nothing read from socket. Disconnecting client.");
socket->disconnectFromServer();
return;
}
in >> raw_json;
}
const QJsonDocument &json = QJsonDocument::fromBinaryData(raw_json);
qDebug() << "received message:" << json.toJson(QJsonDocument::Compact);
const QJsonObject &message = json.object();
if (message.isEmpty()) {
qWarning("Cannot parse message. Disconnecting client.");
socket->disconnectFromServer();
return;
}
int header = message.value(QStringLiteral("header")).toInt(-1);
switch (header) {
case REGISTER_REQUEST: {
qint64 processId = static_cast<qint64>(message.value(QStringLiteral("pid")).toDouble());
if (processId == 0) {
qWarning("Cannot read PID from socket. Disconnecting client.");
socket->disconnectFromServer();
return;
}
m_runnerClients.append(socket);
socket->setProperty("pid", processId);
emit runnerRegistered(processId);
emit connectedRunnersCountChanged(m_runnerClients.count());
if (!m_deferredMessages.isEmpty()) {
auto message = m_deferredMessages.takeFirst();
launch(message->appId, message->mainQml, message->params, message->callback);
}
} break;
case LAUNCH_REPLY: {
const qint64 processId = socket->property("pid").value<qint64>();
const QString appId = socket->property("appId").toString();
Callback callback = m_launchCallbacks.take(processId);
int errorCode = message.value(QStringLiteral("errorCode")).toInt(0);
if (errorCode != 0) {
const QString &errorText = message.value(QStringLiteral("errorText")).toString();
qWarning("QML application launch failed: %s", qPrintable(errorText));
if (callback)
callback(0);
return;
}
m_runningApps.insert(appId, processId);
m_runningProcesses.insert(processId, appId);
emit runnerLaunched(processId, appId);
if (callback)
callback(processId);
} break;
case RELAUNCH_REPLY: {
const qint64 processId = socket->property("pid").value<qint64>();
Callback callback = m_launchCallbacks.take(processId);
int errorCode = message.value(QStringLiteral("errorCode")).toInt(0);
if (errorCode != 0) {
const QString &errorText = message.value(QStringLiteral("errorText")).toString();
qWarning("QML application relaunch failed: %s", qPrintable(errorText));
if (callback)
callback(0);
return;
}
if (callback)
callback(processId);
} break;
default:
break;
}
}
bool IpcServer::relaunch(const QString &appId, const QJsonDocument ¶ms, const Callback &callback)
{
QPointer<QLocalSocket> socket = m_runningSockets.value(appId);
if(socket && socket->isOpen()) {
const qint64 processId = socket->property("pid").value<qint64>();
Q_ASSERT (processId);
qDebug("Got relaunch msg, appId: %s", qPrintable(appId));
QByteArray block;
QDataStream out {&block, QIODevice::WriteOnly};
QJsonObject message;
message.insert(QStringLiteral("header"), RELAUNCH_REQUEST);
message.insert(QStringLiteral("params"), params.object());
message.insert(QStringLiteral("callTime"), QDateTime::currentMSecsSinceEpoch());
out << QJsonDocument(message).toBinaryData();
socket->write(block);
socket->flush();
m_launchCallbacks[processId] = callback;
return true;
}
return false;
}
void IpcServer::launch(const QString &appId, const QString &mainQml, const QJsonDocument ¶ms, const Callback &callback)
{
while (!m_runnerClients.isEmpty()) {
// socket instance will be deleted on disconnect
QLocalSocket *socket = m_runnerClients.takeFirst();
emit connectedRunnersCountChanged(m_runnerClients.count());
if (socket && socket->isOpen()) {
m_runningSockets.insert(appId, socket);
const qint64 processId = socket->property("pid").value<qint64>();
socket->setProperty("appId", appId);
Q_ASSERT (processId);
qDebug("Launching using runner from the pool. appId: %s main: %s",
qPrintable(appId), qPrintable(mainQml));
QByteArray block;
QDataStream out {&block, QIODevice::WriteOnly};
QJsonObject message;
message.insert(QStringLiteral("header"), LAUNCH_REQUEST);
message.insert(QStringLiteral("appId"), appId);
message.insert(QStringLiteral("mainQml"), mainQml);
message.insert(QStringLiteral("params"), params.object());
message.insert(QStringLiteral("callTime"), QDateTime::currentMSecsSinceEpoch());
out << QJsonDocument(message).toBinaryData();
socket->write(block);
socket->flush();
m_launchCallbacks[processId] = callback;
return;
}
}
qWarning("ran out of qml-runners! Deferring %s %s", qPrintable(appId), qPrintable(mainQml));
m_deferredMessages << QSharedPointer<Message>(new Message {appId, mainQml, params, callback});
emit connectedRunnersCountChanged(m_runnerClients.count());
return;
}
|
a86287d7c72b39a13e572e3c837ab01259d66261 | 38ac53bd8db9f340cb2104abd6dade38db7f4913 | /newbase/NFmiSvgTools.h | 4131735c6e5c50d9f381f07258587664810b0291 | [
"MIT"
] | permissive | fmidev/smartmet-library-newbase | ac56d2fb6bad5378c405dbba84f010de7303f148 | b26e2052bac7c114a1d41068fca48828bad4ad8f | refs/heads/master | 2023-09-06T05:46:05.215973 | 2023-08-30T07:05:41 | 2023-08-30T07:05:41 | 75,052,919 | 0 | 2 | MIT | 2021-06-16T12:15:06 | 2016-11-29T07:00:13 | C++ | UTF-8 | C++ | false | false | 963 | h | NFmiSvgTools.h | // ======================================================================
/*!
* \file
* \brief Interface of namespace NFmiSvgTools
*/
// ======================================================================
#pragma once
class NFmiArea;
class NFmiPoint;
class NFmiSvgPath;
namespace NFmiSvgTools
{
bool IsInside(const NFmiSvgPath& thePath, const NFmiPoint& thePoint);
double Distance(const NFmiSvgPath& thePath, const NFmiPoint& thePoint);
double GeoDistance(const NFmiSvgPath& thePath, const NFmiPoint& thePoint);
void BoundingBox(
const NFmiSvgPath& thePath, double& theXmin, double& theYmin, double& theXmax, double& theYmax);
void LatLonToWorldXY(NFmiSvgPath& thePath, const NFmiArea& theArea);
void PointToSvgPath(NFmiSvgPath& thePath, double x, double y);
void BBoxToSvgPath(NFmiSvgPath& thePath, double x1, double y1, double x2, double y2);
} // namespace NFmiSvgTools
// ======================================================================
|
081c372c02a1138b1277dc3152058740d447309f | 46c52d8c945119d41a421a3631a8d87ff6a7bb09 | /prog3/List.cpp | fd65a45ce6efee35184d9fd064a364157b32b91f | [] | no_license | johntalton/cs330 | ca6f00ec81ea3edc54d39881bdef819a706d3eda | 2dc263381b5c7c243470df26115bbdf82b845f03 | refs/heads/master | 2021-01-22T18:07:05.182508 | 1999-05-25T09:38:00 | 2017-08-19T00:37:12 | 100,738,839 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 416 | cpp | List.cpp | #include "List.h"
#include <iostream.h>
/****************
* John Talton
* prog 3
****************/
void main () {
SortedListAsLinked a;
SortedListAsArray b;
OrderedAsArray c;
OrderedAsLinked d;
a.Insert(1);
b.Insert(2);
c.Insert(3);
d.Insert(4);
cout << a[0];
cout << b[0];
cout << c[0];
cout << d[0];
}
|
b2b43b6bb8b46bb98555f25823a7f4c422839aba | 84257c31661e43bc54de8ea33128cd4967ecf08f | /ppc_85xx/usr/include/c++/4.2.2/gnu/javax/print/ipp/attribute/defaults/NumberUpDefault.h | 617bffae1142908e6de77ef2d37965fd7e4aba98 | [] | no_license | nateurope/eldk | 9c334a64d1231364980cbd7bd021d269d7058240 | 8895f914d192b83ab204ca9e62b61c3ce30bb212 | refs/heads/master | 2022-11-15T01:29:01.991476 | 2020-07-10T14:31:34 | 2020-07-10T14:31:34 | 278,655,691 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,183 | h | NumberUpDefault.h | // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __gnu_javax_print_ipp_attribute_defaults_NumberUpDefault__
#define __gnu_javax_print_ipp_attribute_defaults_NumberUpDefault__
#pragma interface
#include <javax/print/attribute/IntegerSyntax.h>
extern "Java"
{
namespace gnu
{
namespace javax
{
namespace print
{
namespace ipp
{
namespace attribute
{
namespace defaults
{
class NumberUpDefault;
}
}
}
}
}
}
namespace javax
{
namespace print
{
namespace attribute
{
class Attribute;
}
}
}
}
class gnu::javax::print::ipp::attribute::defaults::NumberUpDefault : public ::javax::print::attribute::IntegerSyntax
{
public:
NumberUpDefault (jint);
virtual jboolean equals (::java::lang::Object *);
virtual ::java::lang::Class *getCategory ();
virtual ::java::lang::String *getName ();
virtual ::javax::print::attribute::Attribute *getAssociatedAttribute ();
static ::java::lang::Class class$;
};
#endif /* __gnu_javax_print_ipp_attribute_defaults_NumberUpDefault__ */
|
d789cd61e7e12852f0b1c4e96c94ecbcba988ecf | fcd71825d0b470e8bd2a4998e111161b2f8a98bb | /models/board.cpp | 2b0abe031fb067135afa1defd5de7ad730703081 | [] | no_license | rietta/minesweeper-for-wasm | ff8b3fbdd41724ec914884f3dcfb8ca4b0573add | dd129f622241c4a0350c69960042372fc2f0462f | refs/heads/master | 2020-04-14T04:12:12.155750 | 2018-12-31T04:52:27 | 2018-12-31T04:52:27 | 163,628,514 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 954 | cpp | board.cpp | #include "board.h"
#include <random>
using namespace std;
Board::Board(int width, int height, int mineCount) {
this->width = width;
this->height = height;
this->mineCount = mineCount;
initializeBoard();
}
bool Board::ready() {
return false;
}
int Board::getWidth() {
return width;
}
int Board::getHeight() {
return height;
}
int Board::getMineCount() {
return mineCount;
}
Piece* Board::getPiece(int x, int y) {
return &matrix[x][y];
}
void Board::initializeBoard() {
// This is not secure, but just to do dice rolls
srand(time(NULL));
matrix = new Piece*[width];
int mines_remaining = mineCount;
for(int x = 0; x < width; x++) {
matrix[x] = new Piece[height];
for(int y = 0; y < height; y++) {
bool place_mine = false;
if (mines_remaining > 0 && (rand() % 2 + 1) == 1) {
place_mine = true;
mines_remaining--;
}
matrix[x][y].initialize(x, y, place_mine);
}
}
}
|
7a5a02342216c971cfebe50bad6a162b64f5f8d5 | 47b01ee31a11772bff7b38b91b626306ba3d5922 | /src/sonde_plante.ino | 7607994a83baa529b713829d4c456495839a5cba | [] | no_license | domohack/domo_plante | c9d397f631b4a21aa90a0c6036c255d77ec02eba | 053579eed332b29c8bc20beef2ab0ccfe968df36 | refs/heads/master | 2021-01-09T21:45:40.853075 | 2016-02-24T12:59:58 | 2016-02-24T12:59:58 | 51,296,282 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,154 | ino | sonde_plante.ino | #include <SoftwareSerial.h>
SoftwareSerial ESP8266(10, 11);
String NomduReseauWifi = "{{id_reseau}}"; // Garder les guillements
String MotDePasse = "{{pass_reseau}}"; // Garder les guillements
String request = "";
const int capteurHygro = 0;
int valeurHygro = 0;
int capteurHygro_D = 7;
int sendAlert = 1;
String pushToken = "{{push_token}}";
String pushUserKey = "{{push_user_key}}";
String pushDevice = "{{push_device}}";
/****************************************************************/
/* INIT */
/****************************************************************/
void setup()
{
Serial.begin(115200);
ESP8266.begin(115200);
initESP8266();
pinMode(capteurHygro_D,INPUT);
}
/****************************************************************/
/* BOUCLE INFINIE */
/****************************************************************/
void loop()
{
while(ESP8266.available())
{
request = ESP8266.readString();
}
if(ESP8266.find("+IPD,"))
{
// char gauge[] PROGMEM = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">"
// "<g name=\"gauge\" width=\"122px\" height=\"127px\">"
// "<g inkscape:label=\"Calque 1\" inkscape:groupmode=\"layer\" id=\"layer1\" transform=\"translate(0,-925.36216)\">"
// "<path"
// " style=\"opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:#3eff11;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\""
// " id=\"path4136\""
// " sodipodi:type=\"arc\""
// " sodipodi:cx=\"657.70258\""
// " sodipodi:cy=\"-743.77502\""
// " sodipodi:rx=\"49.750011\""
// " sodipodi:ry=\"49.750011\""
// " sodipodi:start=\"0\""
// " sodipodi:end=\"4.7220057\""
// " sodipodi:open=\"true\""
// " d=\"m 707.45259,-743.77502 a 49.750011,49.750011 0 0 1 -30.82207,46.00865 49.750011,49.750011 0 0 1 -54.27526,-10.99964 49.750011,49.750011 0 0 1 -10.47719,-54.37853 49.750011,49.750011 0 0 1 46.30293,-30.3782\""
// " transform=\"matrix(-0.70710678,0.70710678,-0.70710678,-0.70710678,0,0)\" />"
// " </g>"
// " <circle id=\"led\" cx=\"39\" cy=\"76\" r=\"5\" style=\"fill: #999; stroke: none\">"
// " <animateColor id=\"ledAnimation\" attributeName=\"fill\" attributeType=\"css\" begin=\"0s\" dur=\"1s\""
// " values=\"none;#f88;#f00;#f88;none;\" repeatCount=\"0\"/>"
// " </circle>"
// " <g id=\"needle\" transform=\"rotate(0,62,62)\">"
// " <circle cx=\"62\" cy=\"62\" r=\"4\" style=\"fill: #c00; stroke: none\"/>"
// " <rect transform=\"rotate(-130,62,62)\" name=\"arrow\" x=\"58\" y=\"38\" width=\"8\" height=\"24\" style=\"fill: #c00; stroke: none\"/>"
// " <polygon transform=\"rotate(-130,62,62)\" points=\"58,39,66,39,62,30,58,39\" style=\"fill: #c00; stroke: none\"/>"
// " </g>"
// " <text id=\"value\" x=\"51\" y=\"98\" focusable=\"false\" editable=\"no\" style=\"stroke:none; fill:#fff; font-family: monospace; font-size: 12px\"></text>"
// " </g>"
//
// " <script type=\"text/javascript\">"
// " var scale=100;"
// " var value;"
// " var value1 = 69;"
//
// " var needle_el = document.getElementById('needle');"
// " value = parseInt(value1);"
// " scale = parseInt(scale);"
// " if (value > scale) value = scale;"
// " var angle = value / scale * 260;"
// " needle_el.setAttribute('transform','rotate('+angle+',62,62)');"
//
// " </script>"
// "</svg>";
//
// unsigned int gauge_length = sizeof(gauge);
String Header;
valeurHygro = analogRead(capteurHygro);
Serial.println(valeurHygro);
Header = "HTTP/1.1 200 OK\r\n";
Header += "Content-Type: text/html\r\n";
Header += "Connection: close\r\n";
Header += "Refresh: 5\r\n";
String HeaderPage = "<html><body>Valeur du capteur : "+String(valeurHygro);
HeaderPage += "<br>Seuil : "+String(digitalRead(capteurHygro_D));
String FooterPage = "</body></html>";
Header += "Content-Length: ";
// Header += (int)(HeaderPage.length()+gauge_length+FooterPage.length());
Header += (int)(HeaderPage.length()+FooterPage.length());
Header += "\r\n\r\n";
delay(1000);
Serial.println(request);
int connectionId = ESP8266.read()-48;
Serial.println(connectionId);
String cipSend = "AT+CIPSEND=";
cipSend += connectionId;
cipSend += ",";
//cipSend +=(Header.length()+HeaderPage.length()+gauge_length+FooterPage.length());
cipSend +=(Header.length()+HeaderPage.length()+FooterPage.length());
cipSend +="\r\n";
envoieAuESP8266(cipSend);
delay(10);
envoieAuESP8266(Header);
envoieAuESP8266(HeaderPage);
// sendProgStr( &gauge);
envoieAuESP8266(FooterPage);
delay(10);
String closeCommand = "AT+CIPCLOSE=";
closeCommand+=connectionId; // append connection id
closeCommand+="\r\n";
envoieAuESP8266(closeCommand);
// if(sendAlert != digitalRead(capteurHygro_D))
// {
// Serial.println('Send Alerte');
// String Msg = "token="+pushToken+"&user="+pushUserKey+"&device="+pushDevice+"&title=Allerte+arrosage&message=Il+serait+sympa+de+me+donner+a+boire.";
// String PostMsg = "POST /1/messages.json";
// PostMsg += "Host: api.pushover.net";
// PostMsg += "Content-Type: application/x-www-form-urlencoded";
// PostMsg += "Content-Length: "+Msg.length();
// String cipPost = "AT+CIPSEND=";
//// cipPost += connectionId;
//// cipPost += ",";
// cipPost +=(PostMsg.length()+Msg.length());
// cipPost +="\r\n";
// envoieAuESP8266(cipPost);
// envoieAuESP8266(PostMsg);
// envoieAuESP8266(Msg);
//
// }
}
//Serial.println(valeurHygro);
}
// void sendProgStr(const char* str)
// {
// char c;
// if(!str) return;
// while((c = pgm_read_byte(str++)))
// ESP8266.print(c);
// }
/****************************************************************/
/* Fonction qui initialise l'ESP8266 */
/****************************************************************/
void initESP8266()
{
Serial.println("**********************************************************");
Serial.println("**************** DEBUT DE L'INITIALISATION ***************");
Serial.println("-------------------- Restart Module ----------------------");
envoieAuESP8266("AT+RST");
recoitDuESP8266(2000);
Serial.println("------------------ Wifi Mode STA + AP --------------------");
envoieAuESP8266("AT+CWMODE=3");
recoitDuESP8266(5000);
Serial.println("-------------- Connexion au réseau Wifi ------------------");
envoieAuESP8266("AT+CWJAP=\""+ NomduReseauWifi + "\",\"" + MotDePasse +"\"");
recoitDuESP8266(10000);
Serial.println("------------------ Check Adresse IP ----------------------");
envoieAuESP8266("AT+CIFSR");
recoitDuESP8266(1000);
Serial.println("----------------- Connexions multiples -------------------");
envoieAuESP8266("AT+CIPMUX=1");
recoitDuESP8266(1000);
Serial.println("------------ Ouverture du server sur le port 80 ----------");
envoieAuESP8266("AT+CIPSERVER=1,80");
recoitDuESP8266(1000);
Serial.println("***************** INITIALISATION TERMINEE ****************");
Serial.println("**********************************************************");
Serial.println("");
}
/****************************************************************/
/* Fonction qui envoie une commande à l'ESP8266 */
/****************************************************************/
void envoieAuESP8266(String commande)
{
ESP8266.println(commande);
}
/****************************************************************/
/*Fonction qui lit et affiche les messages envoyés par l'ESP8266*/
/****************************************************************/
void recoitDuESP8266(const int timeout)
{
String reponse = "";
long int time = millis();
while( (time+timeout) > millis())
{
while(ESP8266.available())
{
char c = ESP8266.read();
reponse+=c;
}
}
Serial.print(reponse);
}
|
97722503187a0c79f9a43598c9f4877323b55cb0 | 1231b1eca98856ed78ac5256f366a8cbf79864ae | /1077.cpp | b1ac4c25bcca1a3e50c59d5903145eec94b7e43e | [] | no_license | KawshikBanerjee/LightOJ-Solutions | cde58ec11e623631712e86a85a73ff8a74b0cfc9 | 8bfade995be3a46d6497fe075d7293fb3e5bd9b5 | refs/heads/master | 2020-08-12T19:34:20.384768 | 2017-09-27T00:57:05 | 2017-09-27T00:57:05 | 214,830,199 | 1 | 0 | null | 2019-10-13T14:00:29 | 2019-10-13T14:00:29 | null | UTF-8 | C++ | false | false | 581 | cpp | 1077.cpp | #include <bits/stdc++.h>
#define ll long long int
using namespace std;
ll gcd(ll a, ll b)
{
if(a%b==0)
return b;
return gcd(b, a%b);
}
int main()
{
ll x1, y1, x2, y2, i, t, a, b, ans;
scanf("%lld", &t);
for(i=1; i<=t; i++)
{
scanf("%lld %lld %lld %lld", &x1, &y1, &x2, &y2);
a=abs(x2-x1);
b=abs(y2-y1);
if(a==0)
ans=b+1;
else if(b==0)
ans=a+1;
else
ans=gcd(a, b)+1;
printf("Case %lld: %lld\n", i, ans);
}
return 0;
}
|
b9ab196197a26c58de0788cfdd9ea801ef6f822e | cc77344cd2748e7cbbd71348d473b99abaa5ab7f | /src/Game/Actions/MoveAction.h | ef3b7ceabca9b47be7813b4f69d3c9d43a72eb58 | [] | no_license | Niblitlvl50/Fight | f2f303b5dd53382c0f19df4b6140e03e78b2babb | 4e4f09af36f1921b700359e48406aabf63fa93c1 | refs/heads/master | 2021-01-25T06:24:28.047031 | 2017-06-18T13:50:29 | 2017-06-18T13:50:29 | 93,559,223 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 569 | h | MoveAction.h |
#pragma once
#include "IAction.h"
#include "Math/Vector.h"
#include <functional>
class MoveAction : public mono::IAction
{
public:
MoveAction(math::Vector& source, const math::Vector& target, unsigned int duration);
private:
virtual void Prepare();
virtual void Update(unsigned int delta);
virtual bool Finished() const;
math::Vector& m_source;
const math::Vector m_target;
const unsigned int m_duration;
math::Vector m_start;
math::Vector m_vector;
unsigned int m_counter = 0;
bool m_prepared = false;
};
|
305b8ec13da9686cb381e365f22f7551ad4750b5 | 4b4da67be1d6fadf13c2198db14df93645b45745 | /qt/tutorial/CannonField.h | 51bb8b703da169b546503f5dc7649aa1f712b71d | [] | no_license | glennychen/HappyHacking | 34cbd7b8def4458cda0768d81de2dfd1e3ea96e8 | e3c3f24db3da5cf577bb5902c8ec99c1a168acdc | refs/heads/master | 2020-04-14T18:59:00.887875 | 2016-04-18T04:01:38 | 2016-04-18T04:01:38 | 3,308,404 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 437 | h | CannonField.h | #ifndef CANNONFIELD_H
#define CANNONFIELD_H
#include <QWidget>
//#include <QObject>
class CannonField : public QWidget
{
//Q_Object; wrong
Q_OBJECT
public:
CannonField(QWidget *parent=0);
int angle() { return currentAngle;}
~CannonField() {}
public slots:
void setAngle(int newAngle);
signals:
void angleChanged(int angle);
protected:
void paintEvent(QPaintEvent *event);
private:
int currentAngle;
};
#endif
|
4f2dd4649b40fec8bf4f8d8069e4faf42e9f3541 | ad57ffe2372cf614796e316b4865ba02a760acab | /test/shared_test/lib_windwatts_test.cpp | 54889d6a219343f58b873b169d8a5f6dbbf89abe | [
"LGPL-2.0-or-later",
"LGPL-2.1-only",
"BSD-3-Clause"
] | permissive | NREL/ssc | 6208c26a9bbab21d7beca630d61b8640fe073f49 | 38860345e14a14357cf2ad4f1918729a0c7ac0c6 | refs/heads/develop | 2023-08-30T10:09:17.654286 | 2023-08-16T20:27:59 | 2023-08-16T20:27:59 | 94,245,800 | 74 | 84 | BSD-3-Clause | 2023-09-14T20:03:50 | 2017-06-13T18:40:17 | C++ | UTF-8 | C++ | false | false | 5,955 | cpp | lib_windwatts_test.cpp | /*
BSD 3-Clause License
Copyright (c) Alliance for Sustainable Energy, LLC. See also https://github.com/NREL/ssc/blob/develop/LICENSE
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.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
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 <gtest/gtest.h>
#include <iostream>
#include <vector>
#include <lib_windwatts.h>
#include <lib_windwakemodel.h>
#include "lib_windwakemodel_test.h"
/**
* windPowerCalculatorTest requires an initialized windTurbine and wakeModel, and XCoords & YCoords.
* SetUp() allocates the vectors for input and output variables for windPowerUsingResource.
*/
class windPowerCalculatorTest : public ::testing::Test{
protected:
windPowerCalculator wpc;
windTurbine wt;
int nTurbines;
// weather data
double windSpeedData, windDirData, pressureData, tempData;
//farm data
double farmPower, farmPowerGross;
std::vector<double> power, thrust, eff, windSpeed;
std::vector<double> turbulenceCoeff, distX, distY, distDownwind, distCrosswind;
public:
double e = 1000;
void SetUp(){
// allocate arrays
nTurbines = 3;
distDownwind.resize(nTurbines);
distCrosswind.resize(nTurbines);
thrust.resize(nTurbines, 0.47669);
power.resize(nTurbines, 1190);
eff.resize(nTurbines, 0);
windSpeed.resize(nTurbines);
turbulenceCoeff.resize(nTurbines);
distX = { 0, 5, 10 };
distY = { 0, 5, 10 };
distDownwind.resize(nTurbines);
distCrosswind.resize(nTurbines);
// initialize values & classes
for (int i = 0; i < nTurbines; i++){
windSpeed[i] = 10.;
}
createDefaultTurbine(&wt);
wpc.nTurbines = nTurbines;
wpc.turbulenceIntensity = 1.0 / 7.0;
wpc.windTurb = &wt;
wpc.XCoords = distX;
wpc.YCoords = distY;
}
};
TEST_F(windPowerCalculatorTest, windPowerUsingResource_lib_windwatts){
// weather inputs
windSpeedData = 10.;
windDirData = 180;
tempData = 25;
pressureData = 1.0;
std::shared_ptr<fakeWakeModel> fakeWM(new fakeWakeModel());
wpc.InitializeModel(fakeWM);
int run = wpc.windPowerUsingResource(windSpeedData, windDirData, pressureData, tempData, &farmPower,
&farmPowerGross, &power[0], &thrust[0],
&eff[0], &windSpeed[0], &turbulenceCoeff[0], &distDownwind[0],
&distCrosswind[0]); // runs method we want to test
EXPECT_EQ(run, 3);
}
TEST_F(windPowerCalculatorTest, windPowerUsingWeibull_lib_windwatts){
// weather inputs
windSpeedData = 10.;
windDirData = 180;
tempData = 25;
pressureData = 1.0;
// weibull data
double weibullK = 2.;
double avgSpeed = 7.25;
double refHeight = 50.;
std::vector<double> energy(wpc.windTurb->powerCurveArrayLength);
double energyTotal = wpc.windPowerUsingWeibull(weibullK, avgSpeed, refHeight, &energy[0]); // runs method we want to test
EXPECT_NEAR(energyTotal, 5639180, e);
}
TEST_F(windPowerCalculatorTest, windPowerUsingDistribution_lib_windwatts){
// mimic a weibull with k factor 2 and avg speed 7.25 for comparison -> scale param : 8.181
std::vector<std::vector<double>> dst = {{1.5, 180, .12583},
{5, 180, .3933},
{8, 180, .18276},
{10, 180, .1341},
{13.5, 180, .14217},
{19, 180, .0211}};
std::shared_ptr<wakeModelBase> wakeModel = std::make_shared<fakeWakeModel>();
wpc.InitializeModel(wakeModel);
wpc.windPowerUsingDistribution(dst, &farmPower, &farmPowerGross);
EXPECT_NEAR(farmPower, 15075000, e);
EXPECT_NEAR(farmPowerGross, 15075000, e);
}
TEST_F(windPowerCalculatorTest, windPowerUsingDistribution_1turbine_lib_windwatts){
// mimic a weibull with k factor 2 and avg speed 7.25 for comparison -> scale param : 8.181
std::vector<std::vector<double>> dst = {{1.5, 180, .12583},
{5, 180, .3933},
{8, 180, .18276},
{10, 180, .1341},
{13.5, 180, .14217},
{19, 180, .0211}};
std::shared_ptr<wakeModelBase> wakeModel = std::make_shared<fakeWakeModel>();
wpc.nTurbines = 1;
wpc.XCoords = {0.};
wpc.YCoords = {0.};
wpc.InitializeModel(wakeModel);
wpc.windPowerUsingDistribution(dst, &farmPower, &farmPowerGross);
EXPECT_NEAR(farmPower, 15075000. / 3, e);
EXPECT_NEAR(farmPowerGross, 15075000. / 3, e);
}
|
9a696ef937525bc6573f58aa9c2f957aaf7855c2 | 8ba20f5826a76d274ee44cfc42017c264f943d05 | /McSim/PTSComponent.h | c809aa2a017a8ddeeedee0f4b9eb57a62bce4079 | [] | no_license | lidonggit/McSimA-_NVM | a1ddbb85ce0e556f9c843ffc6e88b748af02ce3f | 5d8d7976819a983a03410fbb6feeb8106128f1d9 | refs/heads/master | 2021-01-01T16:19:11.372070 | 2013-09-24T15:44:16 | 2013-09-24T15:44:16 | 12,116,819 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,941 | h | PTSComponent.h | /*
* Copyright (c) 2010 The Hewlett-Packard Development Company
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met: redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer;
* 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;
* neither the name of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* 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
* OWNER 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.
*
* Authors: Jung Ho Ahn
*/
#ifndef __PTSCOMPONENT_H__
#define __PTSCOMPONENT_H__
#include "PTS.h"
#include <set>
#include <iostream>
using namespace std;
namespace PinPthread
{
class Component;
class GlobalEventQueue;
enum component_type
{
ct_core,
ct_lsu,
ct_o3core,
ct_o3core_t1,
ct_o3core_t2,
ct_cachel1d,
ct_cachel1d_t1,
ct_cachel1d_t2,
ct_cachel1i,
ct_cachel1i_t1,
ct_cachel1i_t2,
ct_cachel2,
ct_cachel2_t1,
ct_cachel2_t2,
ct_directory,
ct_crossbar,
ct_rbol,
ct_memory_controller,
ct_tlbl1d,
ct_tlbl1i,
ct_tlbl2,
ct_mesh,
ct_ring,
};
enum event_type
{
et_read,
et_write,
et_write_nd,
et_evict,
et_evict_nd,
et_dir_evict,
et_e_to_m,
et_e_to_i,
et_e_to_s,
et_e_to_s_nd,
et_m_to_s,
et_m_to_m,
et_m_to_i,
et_s_to_s,
et_s_to_s_nd,
et_m_to_e,
et_dir_rd, // read request originated from a directory
et_dir_rd_nd,
et_e_rd,
et_s_rd,
et_nack,
et_invalidate, // originated from a directory
et_invalidate_nd,
et_s_rd_wr, // when a directory state changes from modified to shared, data must be written
et_rd_bypass, // this read is older than what is in the cache
et_tlb_rd,
et_i_to_e,
et_rd_dir_info_req,
et_rd_dir_info_rep,
et_nop,
};
struct LocalQueueElement
{
std::stack<Component *> from; // where it is from
event_type type;
uint64_t address;
uint32_t th_id;
bool dummy;
int32_t rob_entry;
LocalQueueElement() : from(), th_id(0), dummy(false), rob_entry(-1) { }
LocalQueueElement(Component * comp, event_type type_, uint64_t address_)
: from(), type(type_), address(address_), th_id(0), dummy(false), rob_entry(-1) { from.push(comp); }
void display();
};
#ifdef MALLOC_INTERCEPT
class NVMData //heap data placed in NVM
{
public:
NVMData(McSim * mcsim_):mcsim(mcsim_){};
~NVMData();
list<HeapMemRec *> nvmdata_l;
McSim * mcsim;
uint32_t dummy; //saved for the future
};
#endif //MALLOC_INTERCEPT
class Component // meta-class
{
public:
Component(component_type type_, uint32_t num_, McSim * mcsim_);
virtual ~Component() { }
uint32_t process_interval;
component_type type;
uint32_t num;
McSim * mcsim;
GlobalEventQueue * geq; // global event queue
#ifdef MALLOC_INTERCEPT
NVMData * nvmdata;
#endif
virtual void add_req_event(uint64_t, LocalQueueElement *, Component * from) { ASSERTX(0); }
virtual void add_rep_event(uint64_t, LocalQueueElement *, Component * from) { ASSERTX(0); }
virtual void add_req_event(uint64_t a, LocalQueueElement * b) { add_req_event(a, b, NULL); }
virtual void add_rep_event(uint64_t a, LocalQueueElement * b) { add_rep_event(a, b, NULL); }
virtual uint32_t process_event(uint64_t curr_time) = 0;
virtual void show_state(uint64_t address) { }
virtual void display();
std::multimap<uint64_t, LocalQueueElement *> req_event;
std::multimap<uint64_t, LocalQueueElement *> rep_event;
std::queue<LocalQueueElement *> req_q;
std::queue<LocalQueueElement *> rep_q;
protected:
const char * prefix_str() const;
uint32_t get_param_uint64(const string & param, uint32_t def = 0) const ;
uint32_t get_param_uint64(const string & param, const string & prefix, uint32_t def = 0) const;
string get_param_str(const string & param) const;
uint32_t log2(uint64_t num);
};
typedef std::map<uint64_t, std::set<Component *> > event_queue_t;
class GlobalEventQueue
{
public:
//private:
event_queue_t event_queue;
uint64_t curr_time;
McSim * mcsim;
public:
GlobalEventQueue(McSim * mcsim_);
~GlobalEventQueue();
void add_event(uint64_t event_time, Component *);
uint32_t process_event();
void display();
uint32_t num_hthreads;
uint32_t num_mcs;
uint32_t interleave_base_bit;
uint32_t interleave_xor_base_bit;
uint32_t page_sz_base_bit;
bool is_asymmetric;
uint32_t which_mc(uint64_t); // which mc does an address belong to?
};
}
#endif
|
9cfe55778f5e1b3eb1dfdd6bf457d5ecfe9ea0a5 | 39810ef0668920093c2f12a45b6b1243eafe8f58 | /FirstOpenGL/Camera.h | a696615ba13bbda06a5da7134d5940425d52860c | [] | no_license | albert51299/3DApp | e33e50ae8e2bbdc0ba9ee2c353c4a29b44d438bd | 43ee0432a5e9fa8111514998a027053e26578089 | refs/heads/master | 2020-06-17T18:37:43.769631 | 2019-07-09T13:03:56 | 2019-07-09T13:03:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,791 | h | Camera.h | #pragma once
#include <vector>
#include <glew.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtx/transform.hpp>
#include <glm/gtx/rotate_vector.hpp>
const GLfloat YAW = -90.0f;
const GLfloat PITCH = 0.0f;
const GLfloat SENSITIVTY = 0.1f;
const GLfloat ZOOM = 45.0f;
class Camera {
public:
glm::vec3 cameraUp;
glm::vec3 worldUp;
glm::vec3 tankPos;
glm::vec3 cameraPos;
glm::vec3 startCameraPos;
glm::vec3 startTankPos;
GLfloat yaw;
GLfloat pitch;
GLfloat mouseSensitivity;
GLfloat zoom;
Camera(glm::vec3 cameraPos, glm::vec3 cameraTarget, glm::vec3 up){
startCameraPos = cameraPos;
startTankPos = cameraTarget; // in this case we suppose that cameraTarger is a tank position
this->cameraPos = cameraPos;
this->tankPos = cameraTarget;
worldUp = up;
yaw = YAW;
pitch = PITCH;
mouseSensitivity = SENSITIVTY;
zoom = ZOOM;
UpdateCameraUp();
}
void UpdateCameraUp() {
glm::vec3 cameraFront = tankPos - cameraPos;
glm::vec3 cameraRight = glm::cross(worldUp, cameraFront);
cameraUp = glm::cross(cameraFront, cameraRight);
cameraUp = glm::normalize(cameraUp);
}
glm::mat4 GetViewMatrix() {
return glm::lookAt(this->cameraPos, this->tankPos, this->cameraUp);
}
void GoToFreeCamera() {
UpdateCameraUp();
}
void GoToFixedCamera(GLfloat towerAngle, glm::vec3 tankMoved) {
yaw = YAW;
pitch = PITCH;
// it will be used in computing camera position
GLfloat length = glm::distance(cameraPos, tankPos);
// rotate gun front which equaled 0 0 -1 at the begin
glm::vec3 gun = startTankPos - startCameraPos;
gun = glm::rotateY(gun, towerAngle);
gun = glm::normalize(gun);
gun = gun * length;
// move camera position
glm::mat4 translateMat;
translateMat = glm::translate(translateMat, tankMoved);
glm::vec4 localVec = glm::vec4(startTankPos.x, startTankPos.y, startTankPos.z, 1.0f);
glm::vec4 result = translateMat * localVec;
cameraPos.x = result.x - gun.x;
cameraPos.y = result.y - gun.y;
cameraPos.z = result.z - gun.z;
UpdateCameraUp();
}
void UpdateCamera(glm::vec3 delta) {
glm::mat4 translateMat;
translateMat = glm::translate(translateMat, delta);
glm::vec4 localVec = glm::vec4(cameraPos.x, cameraPos.y, cameraPos.z, 1.0f);
glm::vec4 result = translateMat * localVec;
cameraPos.x = result.x;
cameraPos.y = result.y;
cameraPos.z = result.z;
localVec = glm::vec4(tankPos.x, tankPos.y, tankPos.z, 1.0f);
result = translateMat * localVec;
tankPos.x = result.x;
tankPos.y = result.y;
tankPos.z = result.z;
UpdateCameraUp();
}
void TankRotate(GLfloat angle) {
glm::vec3 cameraFront = tankPos - cameraPos;
cameraFront = glm::rotateY(cameraFront, angle);
cameraPos = tankPos - cameraFront;
UpdateCameraUp();
}
void MouseMove(GLfloat xOffset, GLfloat yOffset) {
xOffset *= this->mouseSensitivity;
yOffset *= this->mouseSensitivity;
yaw += xOffset;
pitch += yOffset;
if (this->pitch > 89.0f)
this->pitch = 89.0f;
if (this->pitch < -89.0f)
this->pitch = -89.0f;
glm::vec3 front;
front.x = cos(glm::radians(this->yaw)) * cos(glm::radians(this->pitch));
front.y = sin(glm::radians(this->pitch));
front.z = sin(glm::radians(this->yaw)) * cos(glm::radians(this->pitch));
GLfloat length = glm::distance(tankPos, cameraPos);
front = glm::normalize(front) * length;
if (front.y > (tankPos.y - 0.05f)) {
front.y = tankPos.y - 0.05f;
pitch -= yOffset;
}
front = glm::normalize(front) * length;
cameraPos = tankPos - front;
UpdateCameraUp();
}
void ProcessMouseScroll(GLfloat yoffset) {
if (this->zoom >= 1.0f && this->zoom <= 45.0f)
this->zoom -= yoffset;
if (this->zoom <= 1.0f)
this->zoom = 1.0f;
if (this->zoom >= 45.0f)
this->zoom = 45.0f;
}
};
|
949fc76c54c983de25cc6fd3f5af3b85a2347190 | ae8005cd72fa40e366612005b7e5ff608b5b840f | /practice/cpp/tree-lowest-common-ancestor.cpp | fe7c0563015e10a40181460beced7ed2fb9152aa | [] | no_license | lntutor/cp | ab5d0d76d542a55cffb33f10952d51d9c218e6ee | d2d46d32873b89fa9bdc32e720d09af7a379deab | refs/heads/master | 2021-01-17T03:23:19.258463 | 2018-08-30T18:03:10 | 2018-08-30T18:03:10 | 25,669,420 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 486 | cpp | tree-lowest-common-ancestor.cpp | /*
Node is defined as
typedef struct node
{
int data;
node * left;
node * right;
}node;
*/
int my_max(int a, int b) {
return a > b ? a : b;
}
int my_min(int a, int b) {
return a < b ? a : b;
}
node * lca(node * root, int v1,int v2)
{
int max = my_max(v1, v2);
int min = my_min(v1, v2);
if (root->data > max) {
return lca(root->left, v1, v2);
} else if (root->data < min) {
return lca(root->right, v1, v2);
}
return root;
}
|
41392f47caa0d13de4c833e9a05aacd7ddd871e2 | b367fe5f0c2c50846b002b59472c50453e1629bc | /xbox_leak_may_2020/xbox trunk/xbox/private/test/USB/cpx/dukeprod2/Controls.cpp | 05c462a9a9bbf1e68e20c53a05f7313cc6815f18 | [] | no_license | sgzwiz/xbox_leak_may_2020 | 11b441502a659c8da8a1aa199f89f6236dd59325 | fd00b4b3b2abb1ea6ef9ac64b755419741a3af00 | refs/heads/master | 2022-12-23T16:14:54.706755 | 2020-09-27T18:24:48 | 2020-09-27T18:24:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,295 | cpp | Controls.cpp | //-----------------------------------------------------------------------------
// File: Controls.cpp
//
// Desc: Implementation of CController and CControl Classes
//
// Hist: Oct 01 2001 - Created
//
//
// Author: Dennis Krueger <a-denkru>
//
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
#include "controls.h"
#include "testcontrols.h"
#ifdef __cplusplus
extern "C" {
#endif
int DebugPrint(char* format, ...);
#ifdef __cplusplus
}
#endif
WORD DPadButtonID[4] = {
XINPUT_GAMEPAD_DPAD_UP,
XINPUT_GAMEPAD_DPAD_DOWN,
XINPUT_GAMEPAD_DPAD_LEFT,
XINPUT_GAMEPAD_DPAD_RIGHT
};
// CDPad methods
CDPad::CDPad(CController * pController) : CControl(pController)
{
WORD wMask = 1;
for(int i = 0; i < 4; i++)
{
if(pController->m_InputCaps.In.Gamepad.wButtons & wMask)
{
m_pButton[i] = new CDigitalButton(pController,DPadButtonID[i]);
}
wMask <<= 1;
}
}
CDPad::~CDPad()
{
for(int i = 0; i<4; i++)
{
if(m_pButton[i]) delete m_pButton[i];
}
}
BOOL
CDPad::GetUp()
{
if(m_pButton[0]
return m_pButton[0]->GetState();
else
return FALSE;
}
BOOL
CDPad::GetDown()
{
if(m_pButton[1]
return m_pButton[1]->GetState();
else
return FALSE;
}
BOOL
CDPad::GetLeft()
{
if(m_pButton[2]
return m_pButton[2]->GetState();
else
return FALSE;
}
BOOL
CDPad::GetRight()
{
if(m_pButton[3]
return m_pButton[3]->GetState();
else
return FALSE;
}
//CDigitalButton methods
CDigitalButton::CDigitalButton(CController * pController, WORD wType)
:CControl(pController)
{
m_wType = wType;
m_pController = pController;
}
BOOL
CDigitalButton::GetState()
{
return m_pController->m_InputState.Gamepad.wButtons & m_wType ? TRUE : FALSE;
}
// CAnalogButton methods
CAnalogButton::CAnalogButton(CController * pController, int index) : CControl(pController)
{
m_Resolution = pController->m_InputCaps.In.Gamepad.bAnalogButtons[index];
m_Type = index;
}
BYTE
CAnalogButton::GetState()
{
return m_pController->m_InputState.Gamepad.bAnalogButtons[m_Type];
}
// CThumbstick methods
CThumbstick::CThumbstick(CController * pController,WORD wThumbType) : CControl(pController)
{
m_wThumbType = wThumbType;
if(XINPUT_GAMEPAD_LEFT_THUMB == wThumbType)
{
m_Axis[0].SetResolution(pController->m_InputCaps.In.Gamepad.sThumbLX);
m_Axis[1].SetResolution(pController->m_InputCaps.In.Gamepad.sThumbLY);
} else
{
m_Axis[0].SetResolution(pController->m_InputCaps.In.Gamepad.sThumbRX);
m_Axis[1].SetResolution(pController->m_InputCaps.In.Gamepad.sThumbRY);
}
if(pController->m_InputCaps.In.Gamepad.wButtons & wThumbType)
{
m_pButton = new CDigitalButton(pController, wThumbType);
} else
{
m_pButton = NULL;
}
}
CThumbstick::~CThumbstick()
{
if(m_pButton) delete m_pButton;
}
SHORT
CThumbstick::GetX()
{
SHORT sState;
if(XINPUT_GAMEPAD_LEFT_THUMB == m_wThumbType)
{
sState = m_pController->m_InputState.Gamepad.sThumbLX;
} else
{
sState = m_pController->m_InputState.Gamepad.sThumbRX;
}
return sState;
}
SHORT
CThumbstick::GetY()
{
SHORT sState;
if(XINPUT_GAMEPAD_LEFT_THUMB == m_wThumbType)
{
sState = m_pController->m_InputState.Gamepad.sThumbLY;
} else
{
sState = m_pController->m_InputState.Gamepad.sThumbRY;
}
return sState;
}
BOOL
CThumbstick::GetButtonState()
{
return m_pController->m_InputState.Gamepad.wButtons & m_wThumbType ? TRUE : FALSE;
}
// Controller Class Methods
CController::CController()
{
m_dwPacketNumber = 0;
// set handles and pointers to NULL
m_Handle = NULL;
m_pDPad = NULL;
for(int i = 0; i < 8; i++)
{
m_pAnalogButton[i] = NULL;
}
m_pThumbStick[0] = m_pThumbStick[1] = NULL;
m_pStartButton = NULL;
m_pBackButton = NULL;
}
CController::~CController()
{
if(m_pDPad) delete m_pDPad;
for(int i = 0; i<8; i++)
{
if(m_pAnalogButton[i]) delete m_pAnalogButton[i];
}
if(m_pThumbStick[0]) delete m_pThumbStick[0];
if(m_pThumbStick[1]) delete m_pThumbStick[1];
if(m_pStartButton) delete m_pStartButton;
if(m_pBackButton) delete m_pBackButton;
if(m_Handle) XInputClose(m_Handle);
}
DWORD
CController::Init(DWORD dwPort)
{
DWORD dwResult;
WORD wMask;
// first open a handle to this controller
m_Handle = XInputOpen(XDEVICE_TYPE_GAMEPAD,dwPort,XDEVICE_NO_SLOT,NULL);
if(NULL == m_Handle)
return GetLastError(); // failed
// have open controller, populate controls
m_dwPort = dwPort; // stash active port for this controller
dwResult = XInputGetCapabilities(m_Handle, &m_InputCaps);
if(ERROR_SUCCESS != dwResult)
{
XInputClose(m_Handle);
m_Handle = NULL;
return dwResult;
}
// got caps, now set existence flags for supported controls
// DPAD
if(m_InputCaps.In.Gamepad.wButtons & 0x000f) // test for any portion of dpad
{
m_pDPad = new CDPad(this);
}
// Start Button
if(m_InputCaps.In.Gamepad.wButtons & XINPUT_GAMEPAD_START)
{
m_pStartButton = new CDigitalButton(this, XINPUT_GAMEPAD_START);
}
// Back Button
if(m_InputCaps.In.Gamepad.wButtons & XINPUT_GAMEPAD_BACK)
{
m_pBackButton = new CDigitalButton(this,XINPUT_GAMEPAD_BACK);
}
// All Analog buttons
for(int i = 0; i < 8 ; i++)
{
if(m_InputCaps.In.Gamepad.bAnalogButtons[i])
{
m_pAnalogButton[i] = new CAnalogButton(this,i);
}
}
// Left Thumbstick
if(m_InputCaps.In.Gamepad.sThumbLX ||
m_InputCaps.In.Gamepad.sThumbLY ||
(m_InputCaps.In.Gamepad.wButtons & XINPUT_GAMEPAD_LEFT_THUMB))
{
m_pThumbStick[0] = new CThumbstick(this,XINPUT_GAMEPAD_LEFT_THUMB);
}
// Right Thumbstick
if(m_InputCaps.In.Gamepad.sThumbRX ||
m_InputCaps.In.Gamepad.sThumbRY ||
(m_InputCaps.In.Gamepad.wButtons & XINPUT_GAMEPAD_RIGHT_THUMB))
{
m_pThumbStick[1] = new CThumbstick(this,XINPUT_GAMEPAD_RIGHT_THUMB);
}
return S_OK;
}
void CController::Refresh()
{
DWORD dwResult;
dwResult = XInputGetState(m_Handle,&m_InputState);
if(ERROR_SUCCESS != dwResult)
return;
if(m_InputState.dwPacketNumber == m_dwPacketNumber)
return; // nothing new
}
|
68685368c96e837481477b6137d6f311c943dc77 | 227d0fd3d0466f523dd0a471580f42d5278a2b55 | /POC/colourScanner/colourScanner/colourScanner.ino | cc863e8776f04daff7d76aea5ea2cd1f1bb5e4f9 | [] | no_license | JasonThomasData/RL-arduino-bot | 41961901dbef67c1fafa44b076cdd1a12d0531d6 | 7e16b9bde1837f3bc666c51682a760d7fe28a721 | refs/heads/master | 2021-07-06T00:49:18.821067 | 2019-09-06T07:26:54 | 2019-09-06T07:26:54 | 141,133,134 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,771 | ino | colourScanner.ino | //The robot will live in a world where there is only white black and red.
//The numbers are the D* numbers on the board itself. S0 is D5, etc.
//The ratios here were set with 5V going to the TCS230
//THESE UNITS ARE UNRELIABLE AT 3.3V. USE 5V
//THIS TEST IS FOR A SINGLE SENSOR ONLY
//Note - not using S0 or S1 pins, because, need to use pins for servos also... not enough pins
/*
//LEFT
#define S2 5
#define S3 6
#define sensorOut 7
//MIDDLE
#define S2 8
#define S3 9
#define sensorOut 10
*/
//RIGHT
#define S2 8
#define S3 9
#define sensorOut 10
int redFrequency = 0;
int greenFrequency = 0;
int blueFrequency = 0;
//Seems that Red and black have good contrast, anything not red or black can be white (AKA other)
String determineColour(int redFrequency, int greenFrequency, int blueFrequency)
{
if (redFrequency <= 20 && (greenFrequency >= 20 || blueFrequency >= 20))
{
return "red";
}
else if (redFrequency >= 30 && (greenFrequency >= 30 || blueFrequency >= 30))
{
return "black";
}
return "white";
}
void setup() {
pinMode(S2, OUTPUT);
pinMode(S3, OUTPUT);
pinMode(sensorOut, INPUT);
Serial.begin(9600);
}
void loop() {
digitalWrite(S2,LOW);
digitalWrite(S3,LOW);
redFrequency = pulseIn(sensorOut, LOW);
digitalWrite(S2,HIGH);
digitalWrite(S3,HIGH);
greenFrequency = pulseIn(sensorOut, LOW);
digitalWrite(S2,LOW);
digitalWrite(S3,HIGH);
blueFrequency = pulseIn(sensorOut, LOW);
String colour = determineColour(redFrequency, greenFrequency, blueFrequency);
Serial.print(" R = ");
Serial.print(redFrequency);
Serial.print(" G = ");
Serial.print(greenFrequency);
Serial.print(" B = ");
Serial.print(blueFrequency);
Serial.print(" colour = ");
Serial.println(colour);
delay(2000);
}
|
d2fa020b1510892c9e6d8c801b20396a30069e3c | 671108efbc06a6876ddf3d49622ec2af9d2d82cf | /include/pearl/Otf2Writer.h | c42ec150d7e134b9f0f0d07c8ebabf9e71c968df | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | chrispbradley/scalasca | d545e2ef7c5b22963b8a554ecb5c8ba63f648f66 | 0f2cfe259ca452cd7e4c0968cfcd9ee3ade9c769 | refs/heads/master | 2022-02-07T07:51:09.725785 | 2022-02-04T03:54:56 | 2022-02-04T03:54:56 | 68,554,738 | 0 | 0 | null | 2016-09-19T00:16:28 | 2016-09-19T00:16:27 | null | UTF-8 | C++ | false | false | 11,326 | h | Otf2Writer.h | /****************************************************************************
** SCALASCA http://www.scalasca.org/ **
*****************************************************************************
** Copyright (c) 1998-2019 **
** Forschungszentrum Juelich GmbH, Juelich Supercomputing Centre **
** **
** Copyright (c) 2009-2013 **
** German Research School for Simulation Sciences GmbH, **
** Laboratory for Parallel Programming **
** **
** This software may be modified and distributed under the terms of **
** a BSD-style license. See the COPYING file in the package base **
** directory for details. **
****************************************************************************/
/*-------------------------------------------------------------------------*/
/**
* @file
* @ingroup PEARL_writer
* @brief Declaration of the class Otf2Writer.
*
* This header file provides the declaration of the class Otf2Writer.
*/
/*-------------------------------------------------------------------------*/
#ifndef PEARL_OTF2WRITER_H
#define PEARL_OTF2WRITER_H
#include <map>
#include <string>
#include <otf2/OTF2_Archive.h>
#include <otf2/OTF2_GlobalDefWriter.h>
#include <pearl/pearl_types.h>
namespace pearl
{
// --- Forward declarations -------------------------------------------------
class CallbackData;
class CallbackManager;
class Event;
class GlobalDefs;
class LocalTrace;
class String;
/*-------------------------------------------------------------------------*/
/**
* @class Otf2Writer
* @ingroup PEARL_writer
* @brief Provides a writer class to generate OTF2 traces.
*
* The Otf2Writer class can be used to write in-memory trace data to an OTF2
* archive on disk.
*
* @todo Hide references to OTF2 data types so that PEARL users don't need
* to care about providing the OTF2 include path.
*/
/*-------------------------------------------------------------------------*/
class Otf2Writer
{
public:
/// @name Constructors & destructor
/// @{
Otf2Writer(const std::string& creator);
~Otf2Writer();
/// @}
/// @name Writing experiment data
/// @{
void
write(const std::string& archive_name,
const LocalTrace& trace,
const GlobalDefs& defs);
/// @}
private:
/// Creator string
std::string mCreator;
/// OTF2 archive handle
OTF2_Archive* mArchive;
/// Identifier of the next string definition record
uint32_t mNextStringId;
/// Global MPI rank
int mRank;
/// Lookup table string definition |-@> string ID
std::map< std::string, uint32_t > mStringMap;
/// %Callback manager instance for the replay
CallbackManager* mCbManager;
/// @name Replay callback routines
/// @{
void
enter(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
enterProgram(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
leave(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
leaveProgram(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
mpisend(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
mpirecv(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
mpisendreq(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
mpisendcomp(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
mpirecvreq(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
mpirecvcomp(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
mpireqtested(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
mpicancelled(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
mpicollexit(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
mpicollbegin(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
mpicollend(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadBegin(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadEnd(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadWait(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadCreate(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadTeamBegin(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadTeamEnd(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadFork(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadJoin(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadAcquireLock(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadReleaseLock(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadTaskCreate(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadTaskComplete(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
void
threadTaskSwitch(const CallbackManager& cbmanager,
int user_event,
const Event& event,
CallbackData* cdata);
/// @}
/// @name Internal I/O routines
/// @{
void
writeStrings(OTF2_GlobalDefWriter* writer,
const GlobalDefs& defs);
void
writeSystemTree(OTF2_GlobalDefWriter* writer,
const GlobalDefs& defs);
void
writeLocationGroups(OTF2_GlobalDefWriter* writer,
const GlobalDefs& defs);
void
writeLocations(OTF2_GlobalDefWriter* writer,
const GlobalDefs& defs);
void
writeRegions(OTF2_GlobalDefWriter* writer,
const GlobalDefs& defs);
void
writeGroups(OTF2_GlobalDefWriter* writer,
const GlobalDefs& defs);
void
writeMetrics(OTF2_GlobalDefWriter* writer,
const GlobalDefs& defs);
void
writeCallpaths(OTF2_GlobalDefWriter* writer,
const GlobalDefs& defs);
void
writeCommunicators(OTF2_GlobalDefWriter* writer,
const GlobalDefs& defs);
void
writeTopologies(OTF2_GlobalDefWriter* writer,
const GlobalDefs& defs);
uint32_t
writeString(OTF2_GlobalDefWriter* writer,
const String& str);
uint32_t
writeString(OTF2_GlobalDefWriter* writer,
const std::string& str);
void
writeMetricValues(OTF2_EvtWriter* writer,
const GlobalDefs& defs,
const Event& event);
/// @}
};
} // namespace pearl
#endif // !PEARL_OTF2WRITER_H
|
fbedfbfcf19cedd695735c7719e8ef935b1de542 | dbd0a1fe2abe5bbe5e0a7e11db68693c967f0580 | /c++/test_complexity.cpp | b015e2897333a008299abda4941f8a685bb19398 | [
"MIT"
] | permissive | ikim-quantum/DecodeInterior | 1163dbb4edcff4f2d3d7b4c0acc057a4568185c9 | c07649e8728c784dc1bd2a25602fec14a344a234 | refs/heads/master | 2023-01-23T11:37:49.990905 | 2020-11-13T22:50:00 | 2020-11-13T22:50:00 | 297,185,531 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 418 | cpp | test_complexity.cpp | #include "complexity.cpp"
int main()
{
int n_q = 4;
int d_max= 100;
int k = 4;
int samples = 100;
double eps = 0.1;
for (int d=1; d<d_max; d++)
{
// cout << "Random circuit" << endl;
cout <<complexity_rand_1d(n_q, d, k, eps, samples) << ", " <<endl;
// cout << "Haar" << endl;
// cout <<complexity_haar(n_q, k, eps, samples) << ", " <<endl;
}
return 0;
}
|
801623e6ed187c6a3756ff27febf56e65f67d6b3 | f25e9e8fd224f81cefd6d900f6ce64ce77abb0ae | /Exercises/OpenGL6/DDEngine/SceneNode.cpp | 6db33531a44c7bbb8132c02864e27ef6007b2841 | [] | no_license | giacomof/gameengines2010itu | 8407be66d1aff07866d3574a03804f2f5bcdfab1 | bc664529a429394fe5743d5a76a3d3bf5395546b | refs/heads/master | 2016-09-06T05:02:13.209432 | 2010-12-12T22:18:19 | 2010-12-12T22:18:19 | 35,165,366 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,171 | cpp | SceneNode.cpp | #include "sceneNode.h"
static int nodeCount = 0;
// Constructor that take a pointer to the parant node, the name of the node
// the initial position of the node
// the initial orientation of the node
SceneNode::SceneNode( SceneNode * parentNode, char * str, SceneObject * g,
Vector v,
Vector p_axis, float p_angle,
btRigidBody * rigidBody )
{
// variables inizialization
nodeNameString = str;
parentNode = parentNode;
parentNode->addChild(this);
geometry = g;
physicsGeometry = rigidBody;
visible = true;
shadingIsActive = false;
tranM = new float[16];
btTransform trans = btTransform();
mutex_node = SDL_CreateMutex();
// Initialise the member transformation with the position and orientation parameters
nodeTransformation = Transformation(v, p_axis, p_angle);
// Define the unique identifier of the node
id = nodeCount;
nodeCount++;
}
// If the geometry is a MD2 model than update his animation status
// and do so for all his childs
void SceneNode::update(float dt)
{
geometry->update(dt);
if (childList.size() != 0) {
list<SceneNode*>::iterator itS(childList.begin());
for(itS = childList.begin(); itS != childList.end(); itS++) {
(*itS)->update(dt);
}
}
}
void SceneNode::destroy(void)
{
list<SceneNode*>::iterator i(childList.begin());
for(i=childList.begin(); i != childList.end(); ++i)
{
(*i)->destroy();
}
this->release();
}
// Add a new child to the node
void SceneNode::addChild( SceneNode * cNode )
{
cNode->setParent(this);
childList.push_front(cNode);
}
// Set a new parent for the node
void SceneNode::setParent( SceneNode * cNode )
{
parentNode = cNode;
if(parentNode->getName() == "root") {
Root::childOfRootList.push_front(this);
}
}
// Return the parent of the node
SceneNode* SceneNode::getParent(void)
{
return parentNode;
}
// Change the name of the node
void SceneNode::setName(char * name)
{
nodeNameString = name;
}
// Return the name of the node
std::string SceneNode::getName(void)
{
if(nodeNameString == "") return "No Name";
return nodeNameString;
}
// Add a geometry to the Scene Node
void SceneNode::addSceneObject(SceneObject * g)
{
geometry = g;
}
// Return the Geometry of the Scene Node
SceneObject * SceneNode::getSceneObject()
{
return geometry;
}
// Apply a rotation about an arbitrary axis to the node
void SceneNode::rotateAboutAxis(Vector p_Axis, float p_Degree)
{
if (physicsGeometry != 0)
{
if (this->getParent()->getName() == "root")
{
btTransform trans = btTransform();
physicsGeometry->getMotionState()->getWorldTransform(trans);
btVector3 btActualPosition = physicsGeometry->getWorldTransform().getOrigin();
Vector actualPosition = Vector(btActualPosition.getX(), btActualPosition.getY(), btActualPosition.getZ());
Vector newPosition = Matrix::generateAxisRotationMatrix(p_Axis, p_Degree) * actualPosition;
physicsGeometry->getWorldTransform().setOrigin(btVector3(newPosition.getX(), newPosition.getY(), newPosition.getZ()));
btQuaternion actualRotation = trans.getRotation();
btQuaternion newRotation = btQuaternion(btVector3(p_Axis.getX(), p_Axis.getY(), p_Axis.getZ()), p_Degree);
physicsGeometry->getWorldTransform().setRotation(newRotation * actualRotation);
}
}
nodeTransformation.addQuaternionRotation(Quaternion(p_Axis, p_Degree));
}
// Translate the node
void SceneNode::translate(Vector translateVector)
{
if (physicsGeometry != 0)
{
if (this->getParent()->getName() == "root")
{
physicsGeometry->getMotionState()->getWorldTransform(trans);
btVector3 final = trans.getOrigin() + btVector3(translateVector.getX(), translateVector.getY(), translateVector.getZ());
physicsGeometry->getWorldTransform().setOrigin(final);
}
}
nodeTransformation.addTranslation(translateVector);
}
void SceneNode::updateRigidBody(void)
{
Vector worldPosition = this->getWorldPosition();
Quaternion worldOrientation = this->getWorldOrientation();
physicsGeometry->getWorldTransform().setOrigin(btVector3(worldPosition.getX(), worldPosition.getY(), worldPosition.getZ()));
physicsGeometry->getWorldTransform().setRotation(btQuaternion(worldOrientation.getX(), worldOrientation.getY(), worldOrientation.getZ(), worldOrientation.getW()));
}
// Scale the node
void SceneNode::scale(float p_sX, float p_sY, float p_sZ)
{
/* SCALING NOT CONSISTENT BETWEEN PHYSICS AND GRAPHICS
NEED TO BE FIXED*/
//if (physicsGeometry != 0) {
// btVector3 oldScale = physicsGeometry->getCollisionShape()->getLocalScaling();
// physicsGeometry->getCollisionShape()->setLocalScaling(btVector3(oldScale.getX()*p_sX, oldScale.getY()*p_sY, oldScale.getX()*p_sZ));
// oldScale = physicsGeometry->getCollisionShape()->getLocalScaling();
//}
nodeTransformation.addScaling(p_sX, p_sY, p_sZ);
}
// Apply a shearing to the node
void SceneNode::shear(float p_shXY, float p_shXZ, float p_shYX, float p_shYZ, float p_shZX, float p_shZY)
{
nodeTransformation.addShearing(p_shXY, p_shXZ, p_shYX, p_shYZ, p_shZX, p_shZY);
}
Vector SceneNode::getWorldPosition(void)
{
SceneNode * nodePointer = this;
Vector worldPosition = Vector();
Vector temp = Vector();
while(true)
{
temp = nodePointer->getTransformation()->getTranslation();
if(nodePointer->getParent()->getName() == "root")
{
worldPosition = worldPosition + temp;
break;
}
else
{
nodePointer = nodePointer->getParent();
worldPosition = worldPosition + temp;
worldPosition = Matrix::generateQuaternionRotationMatrix(nodePointer->getTransformation()->getOrientation()) * worldPosition;
}
}
return worldPosition;
}
Quaternion SceneNode::getWorldOrientation(void)
{
SceneNode * nodePointer = this;
Quaternion worldOrientation = Quaternion(0,0,0,1);
Quaternion temp = Quaternion();
worldOrientation = this->getTransformation()->getOrientation() * worldOrientation;
while(nodePointer->getParent()->getName() != "root")
{
temp = nodePointer->getTransformation()->getOrientation();
nodePointer = nodePointer->getParent();
temp = nodePointer->getTransformation()->getOrientation();
worldOrientation = temp * worldOrientation;
}
return worldOrientation;
}
Transformation * SceneNode::getTransformation()
{
return &nodeTransformation;
}
// Apply the transformation of the node and then draw it
void SceneNode::drawGeometry()
{
if (physicsGeometry != 0) {
if (this->getParent()->getName() == "root")
{
physicsGeometry->getMotionState()->getWorldTransform(trans);
Vector localPosition = nodeTransformation.getBBTranslation();
Vector physicPosition = Vector(trans.getOrigin().getX(), trans.getOrigin().getY(), trans.getOrigin().getZ());
Quaternion orientation = Quaternion(trans.getRotation().getX(), trans.getRotation().getY(), trans.getRotation().getZ(), trans.getRotation().getW());
localPosition = Matrix::generateQuaternionRotationMatrix(orientation) * localPosition;
Vector finalPosition = localPosition + physicPosition;
nodeTransformation.setTranslation(finalPosition);
nodeTransformation.setOrientation(Quaternion(trans.getRotation().getX(), trans.getRotation().getY(), trans.getRotation().getZ(), trans.getRotation().getW()));
}
else
{
physicsGeometry->getMotionState()->getWorldTransform(trans);
Vector localPosition = nodeTransformation.getBBTranslation();
Quaternion orientation = Quaternion(trans.getRotation().getX(), trans.getRotation().getY(), trans.getRotation().getZ(), trans.getRotation().getW());
localPosition = Matrix::generateQuaternionRotationMatrix(orientation) * localPosition;
Vector physicPosition = Vector(trans.getOrigin().getX(), trans.getOrigin().getY(), trans.getOrigin().getZ());
Vector finalPosition = localPosition + physicPosition;
nodeTransformation.setTranslation(finalPosition);
this->updateRigidBody();
}
}
applyTransformation();
if(isVisible()) {
if(nodeNameString != "Camera Node")
{
if(shadingIsActive)
{
AssetManager::activateShadingProgram(shadingProgramName);
geometry->drawGeometry();
AssetManager::deactivateShadingProgram();
}
else
geometry->drawGeometry();
}
// draw the name of the SceneNode
if(Globals::drawDebug) drawName();
}
if(childList.size() != 0) {
list<SceneNode*>::iterator itS (childList.begin());
for(itS = childList.begin(); itS != childList.end(); itS++) {
(*itS)->drawGeometry();
}
}
glPopMatrix();
}
// Apply the transformation of the node
void SceneNode::applyTransformation()
{
nodeTransformation.getTransformation().getMatrix(&tranM[0]);
glPushMatrix();
glMultMatrixf(&tranM[0]);
}
// Apply the inverse transformation of the node
void SceneNode::removeTransformation()
{
nodeTransformation.getInverseTransformation().getMatrix(&tranM[0]);
glPushMatrix();
glMultMatrixf(&tranM[0]);
}
// Return the visibility status of the Scene Node
bool SceneNode::isVisible(void)
{
return visible;
}
// Change the visibility status of the Scene Node
void SceneNode::setVisible(bool b)
{
visible = b;
}
unsigned int SceneNode::getNodeCount(void)
{
return nodeCount;
}
void SceneNode::drawName(void)
{
AssetManager::setShaderFlag(Globals::GREEN);
glDisable(GL_LIGHTING); // need to disable lighting for proper text color
glColor4f(0.0f, 1.0f, 0.0f, 1.0f); // set text color
float * pos = new float[3];
pos[1] = 0;
pos[2] = 0;
char * tempName = (char *)nodeNameString.c_str();
int i = 0;
// loop all characters in the string
while(*tempName)
{
pos[0] = i;
glRasterPos3fv(pos); // place text position
glutBitmapCharacter(GLUT_BITMAP_HELVETICA_12, *tempName);
++tempName;
i+=6;
}
glEnable(GL_LIGHTING);
}
void SceneNode::setShadingProgram(char * programName)
{
shadingProgramName = programName;
shadingIsActive = true;
}
void SceneNode::activateShadingProgram(bool active)
{
shadingIsActive = active;
}
SceneNode * SceneNode::findSceneNodeByName(string name)
{
if( name == nodeNameString )
return this;
list<SceneNode*>::iterator itS(childList.begin());
for(itS = childList.begin(); itS != childList.end(); itS++) {
string tempName = (*itS)->getName();
if(tempName == name)
return (*itS);
SceneNode * child = (*itS)->findSceneNodeByName(name);
if(child != NULL)
return child;
}
return NULL;
}
// Static member initialization.
Root Root::_instance;
list<SceneNode*> Root::childOfRootList;
SDL_mutex * Root::rootMutex;
unsigned int Root::id;
Root &Root::getInstance()
{
return _instance;
}
// Method for drawing the entire world moving along the scene graph
void Root::drawGeometry()
{
list<SceneNode*>::iterator itS(childOfRootList.begin());
for(itS = childOfRootList.begin(); itS != childOfRootList.end(); itS++) {
(*itS)->drawGeometry();
}
glPopMatrix();
}
// Update the transformation status of all the child nodes of root
void Root::update(float dt)
{
if(!Globals::isStopped) {
list<SceneNode*>::iterator itS(childOfRootList.begin());
for(itS = childOfRootList.begin(); itS != childOfRootList.end(); itS++) {
(*itS)->update(dt);
}
}
}
// Add a new child to the node
void Root::addChild( SceneNode * cNode )
{
cNode->setParent(this);
childOfRootList.push_front(cNode);
}
SceneNode * Root::findSceneNodeByName(string name)
{
if( name == "root" )
return this;
list<SceneNode*>::iterator itS(childOfRootList.begin());
for(itS = childOfRootList.begin(); itS != childOfRootList.end(); itS++) {
string tempName = (*itS)->getName();
if(tempName == name)
return (*itS);
SceneNode * child = (*itS)->findSceneNodeByName(name);
if(child != NULL)
return child;
}
cout << "I cannot find a sceneNode with that name" << endl;
return NULL;
}
|
412e2c393d8bae7aa4528b0aa9cb3afa9756da43 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/curl/gumtree/curl_repos_function_2169_curl-7.41.0.cpp | b00ad3749fe35a5b33a8dbf097c846134a9b8139 | [] | 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 | 288 | cpp | curl_repos_function_2169_curl-7.41.0.cpp | void Curl_schannel_session_free(void *ptr)
{
struct curl_schannel_cred *cred = ptr;
if(cred && cred->cached) {
if(cred->refcount == 0) {
s_pSecFn->FreeCredentialsHandle(&cred->cred_handle);
Curl_safefree(cred);
}
else {
cred->cached = FALSE;
}
}
} |
d9a439dd06cfae383f09aaceb96725b67782b704 | f3c8d78b4f8af9a5a0d047fbae32a5c2fca0edab | /Qt/lib2/Trash/sendbox5/sendbox5.cpp | d5e2a18a0cf98fcd5e007c82cb0e44ca70d4b35c | [] | no_license | RinatB2017/mega_GIT | 7ddaa3ff258afee1a89503e42b6719fb57a3cc32 | f322e460a1a5029385843646ead7d6874479861e | refs/heads/master | 2023-09-02T03:44:33.869767 | 2023-08-21T08:20:14 | 2023-08-21T08:20:14 | 97,226,298 | 5 | 2 | null | 2022-12-09T10:31:43 | 2017-07-14T11:17:39 | C++ | UTF-8 | C++ | false | false | 8,903 | cpp | sendbox5.cpp | /*********************************************************************************
** **
** Copyright (C) 2012 **
** **
** This program is free software: you can redistribute it and/or modify **
** it under the terms of the GNU General Public License as published by **
** the Free Software Foundation, either version 3 of the License, or **
** (at your option) any later version. **
** **
** This program 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 this program. If not, see http://www.gnu.org/licenses/. **
** **
**********************************************************************************
** Author: Bikbao Rinat Zinorovich **
**********************************************************************************/
#ifdef QT_DEBUG
# include <QDebug>
#endif
//--------------------------------------------------------------------------------
#include "ui_sendbox5.h"
//--------------------------------------------------------------------------------
#include "sendbox5.hpp"
#include "mywidget.hpp"
#include "defines.hpp"
//--------------------------------------------------------------------------------
SendBox5::SendBox5(QWidget *parent) :
QFrame(parent),
ui(new Ui::SendBox5)
{
ui->setupUi(this);
if(parent)
{
connect(this, SIGNAL(info(QString)), parent, SIGNAL(info(QString)));
connect(this, SIGNAL(debug(QString)), parent, SIGNAL(debug(QString)));
connect(this, SIGNAL(error(QString)), parent, SIGNAL(error(QString)));
connect(this, SIGNAL(trace(QString)), parent, SIGNAL(trace(QString)));
}
ui->btn_send_text->setIcon(qApp->style()->standardIcon(QStyle::SP_MediaPlay));
ui->btn_send_text->setObjectName("btn_send_text");
ui->btn_send_bin->setIcon(qApp->style()->standardIcon(QStyle::SP_MediaPlay));
ui->btn_send_bin->setObjectName("btn_send_bin");
ui->btn_send_bin_remove->setIcon(qApp->style()->standardIcon(QStyle::SP_TrashIcon));
ui->btn_send_text_remove->setIcon(qApp->style()->standardIcon(QStyle::SP_TrashIcon));
ui->cb_send_text->setEditable(true);
ui->cb_send_text->setObjectName("cb_send_text");
ui->cb_send_bin->setEditable(true);
ui->cb_send_bin->setObjectName("le_send_bin");
ui->cb_append->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Preferred);
ui->cb_append->setProperty(NO_SAVE, true);
connect(ui->btn_send_text, &QToolButton::clicked, this, &SendBox5::send_text);
connect(ui->btn_send_bin, &QToolButton::clicked, this, &SendBox5::send_bin);
connect(ui->btn_send_text_remove, &QToolButton::clicked, this, &SendBox5::send_text_remove);
connect(ui->btn_send_bin_remove, &QToolButton::clicked, this, &SendBox5::send_bin_remove);
connect(ui->cb_send_text->lineEdit(), &QLineEdit::returnPressed, this, &SendBox5::send_text);
connect(ui->cb_send_bin->lineEdit(), &QLineEdit::returnPressed, this, &SendBox5::send_bin);
connect(ui->btn_text_commands, &QPushButton::clicked, this, &SendBox5::send_text_command);
connect(ui->btn_bin_commands, &QPushButton::clicked, this, &SendBox5::send_bin_command);
#ifndef QT_DEBUG
ui->btn_send_text_remove->setVisible(false);
ui->btn_send_bin_remove->setVisible(false);
ui->cb_send_text->setVisible(false);
ui->cb_send_bin->setVisible(false);
ui->cb_append->setVisible(false);
ui->btn_send_text->setVisible(false);
ui->btn_send_bin->setVisible(false);
#endif
setFrameStyle(QFrame::StyledPanel | QFrame::Raised);
}
//--------------------------------------------------------------------------------
SendBox5::~SendBox5()
{
delete ui;
}
//--------------------------------------------------------------------------------
void SendBox5::send_text(void)
{
QString data = ui->cb_send_text->currentText();
if(data.isEmpty())
{
QMessageBox msgBox;
msgBox.setWindowTitle(tr("send data"));
msgBox.setIcon(QMessageBox::Warning);
msgBox.setText(tr("nothing send"));
msgBox.exec();
return;
}
QByteArray ba = data.toLatin1();
switch(ui->cb_append->currentIndex())
{
case 0: // "no add"
break;
case 1: // << "0x00"
ba.append(static_cast<char>(0x00));
break;
case 2: // << "0x0D"
ba.append(static_cast<char>(0x0D));
break;
case 3: // << "0x0A"
ba.append(static_cast<char>(0x0A));
break;
case 4: // << "0x0D 0x0A"
ba.append(static_cast<char>(0x0D));
ba.append(static_cast<char>(0x0A));
break;
}
emit sendData(ba);
}
//--------------------------------------------------------------------------------
void SendBox5::send_bin(void)
{
QByteArray output_data;
QByteArray input_data = ui->cb_send_bin->currentText().toLatin1();
if(input_data.isEmpty())
{
QMessageBox msgBox;
msgBox.setWindowTitle(tr("send data"));
msgBox.setIcon(QMessageBox::Warning);
msgBox.setText(tr("nothing send"));
msgBox.exec();
return;
}
output_data.clear();
output_data.append(QByteArray::fromHex(input_data));
if(input_data.toUpper() != output_data.toHex().toUpper())
{
QMessageBox msgBox;
msgBox.setWindowTitle(tr("send data"));
msgBox.setIcon(QMessageBox::Warning);
msgBox.setText(tr("invalid HEX-data"));
msgBox.exec();
return;
}
emit sendData(output_data);
}
//--------------------------------------------------------------------------------
void SendBox5::send_text_command(void)
{
Text_widget *tw = new Text_widget();
connect(tw, &Text_widget::info, this, &SendBox5::info);
connect(tw, &Text_widget::debug, this, &SendBox5::debug);
connect(tw, &Text_widget::error, this, &SendBox5::error);
connect(tw, &Text_widget::trace, this, &SendBox5::trace);
connect(tw, &Text_widget::send_command, this, &SendBox5::sendData);
tw->exec();
}
//--------------------------------------------------------------------------------
void SendBox5::send_bin_command(void)
{
Bin_widget *hw = new Bin_widget();
connect(hw, &Bin_widget::info, this, &SendBox5::info);
connect(hw, &Bin_widget::debug, this, &SendBox5::debug);
connect(hw, &Bin_widget::error, this, &SendBox5::error);
connect(hw, &Bin_widget::trace, this, &SendBox5::trace);
connect(hw, &Bin_widget::send_command, this, &SendBox5::sendData);
hw->exec();
}
//--------------------------------------------------------------------------------
void SendBox5::send_text_remove(void)
{
ui->cb_send_text->removeItem(ui->cb_send_text->currentIndex());
}
//--------------------------------------------------------------------------------
void SendBox5::send_bin_remove(void)
{
ui->cb_send_bin->removeItem(ui->cb_send_bin->currentIndex());
}
//--------------------------------------------------------------------------------
void SendBox5::block_interface(bool state)
{
ui->cb_send_text->setDisabled(state);
ui->cb_send_bin->setDisabled(state);
ui->cb_append->setDisabled(state);
ui->btn_send_text->setDisabled(state);
ui->btn_send_bin->setDisabled(state);
ui->btn_send_bin_remove->setDisabled(state);
ui->btn_send_text_remove->setDisabled(state);
ui->btn_text_commands->setDisabled(state);
ui->btn_bin_commands->setDisabled(state);
}
//--------------------------------------------------------------------------------
void SendBox5::updateText(void)
{
ui->btn_send_text->setText(tr("send"));
ui->btn_send_bin->setText(tr("send"));
ui->cb_append->clear();
ui->cb_append->addItems(QStringList()
<< "no add"
<< "0x00"
<< "0x0D"
<< "0x0A"
<< "0x0D 0x0A" );
}
//--------------------------------------------------------------------------------
|
e4827eab8b50ad692f906c938f15b8f662e89b26 | 3faf84b52c9dac137aa8e72c4a42dfd79c9f8e97 | /examples/CBuildr3/ExEdSrcU.h | d5ee5ed87e643ec60f624a6f27d7aabe0908317b | [] | no_license | lynxnake/TurboPower-Orpheus | e3d9b7c03d946ea0d7c6c663d8cf3649e1deb48a | 18748d4a79a0a82503796d40a019e243704e866e | refs/heads/master | 2021-07-14T07:26:01.044028 | 2019-01-11T12:35:45 | 2019-01-11T12:35:45 | 144,685,117 | 4 | 4 | null | 2020-05-20T19:01:57 | 2018-08-14T07:33:47 | Pascal | UTF-8 | C++ | false | false | 1,203 | h | ExEdSrcU.h | //---------------------------------------------------------------------------
#ifndef ExEdSrcUH
#define ExEdSrcUH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include "OvcEdit.hpp"
#include "OvcEditU.hpp"
#include "OvcBase.hpp"
#include "OvcSF.hpp"
#include "OvcEF.hpp"
#include <vcl\Buttons.hpp>
//---------------------------------------------------------------------------
class TfrmSearch : public TForm
{
__published: // IDE-managed Components
TOvcTextFileEditor *ED1;
TOvcSimpleField *SF1;
TButton *btnSearch;
TBitBtn *BitBtn1;
TOvcController *DefaultController;
void __fastcall FormCreate(TObject *Sender);
void __fastcall btnSearchClick(TObject *Sender);
void __fastcall BitBtn1Click(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TfrmSearch(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TfrmSearch *frmSearch;
//---------------------------------------------------------------------------
#endif
|
3acf733eb498827a7d3db6d15350e575bf5177b1 | e0aad33fd4b52fe7066feff4ddf4d849c5e38f90 | /FractalX/include/core/systems/Logic.h | f24dc539a2b98ebf8fe783c9b27713991bf345c4 | [
"MIT"
] | permissive | talislincoln/FractalX | f22d4a1852df0e956ea7b8271c2044342aa5e709 | 8627385ab703d8311ced20ae07b088bfca4bcec9 | refs/heads/master | 2021-01-18T19:15:51.763073 | 2018-01-19T15:50:42 | 2018-01-19T15:50:42 | 100,529,352 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 475 | h | Logic.h | #pragma once
#ifndef _LOGIC_H
#define _LOGIC_H
#include "System.h"
#include <core\interfaces\IDrawable.h>
namespace fractal
{
namespace fcore
{
class Logic : public System, public IDrawable
{
private:
class AbstractGame* m_game;
public:
Logic ();
~Logic ();
bool Init () override;
void Update () override;
bool Shutdown () override;
void Draw () const override;
void SetGame (class AbstractGame* game);
};
}
}
#endif // !_LOGIC_H
|
f182cca5d5b395fa3c4a940714370b2a87e89df7 | 7c4d17bd00d4c779c63f9e68cd029783d74fabeb | /main.cpp | a727612585d5c95f981c17fbd658a29ce5c47ea4 | [] | no_license | IntheGrass/Class | 877c30e0558844cd88ae6042c4e1f5139ec5efd5 | 653247a2ee9eacd53d62325937fb11bf29d50666 | refs/heads/master | 2020-03-21T04:54:59.612827 | 2018-06-22T09:00:43 | 2018-06-22T09:00:43 | 138,133,962 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 526 | cpp | main.cpp | #include "number.h"
#include <iostream>
using namespace std;
int main()
{
RealNumber rtext1(5.0);
RealNumber rtext2(4.0);
rtext1.add(rtext2).print();
rtext1.mul(rtext2).print();
IntegerNumber Itext1(5);
IntegerNumber Itext2(4);
Itext1.add(Itext2).print();
Itext1.mul(Itext2).print();
ComplexNumber Ctext1(1.0,2.0);
ComplexNumber Ctext2(1.0,2.0);
Ctext1.add(Ctext2).print();
Ctext1.mul(Ctext2).print();
Number* text1;
Number* text2;
text1 = &rtext1;
text2 = &rtext2;
text1->add(*text2).print();
return 0;
}
|
eabf5a65aacbfa2437178455f3cfb8c40046b547 | d4d7e2e7457939a05dded5e6bc841d1304fb5a84 | /unit/Unit.cpp | 13436837d27ef41538e2df083c839782de60017c | [] | no_license | vlaspet/army | bef3ca56065394c83a210b4ce7e1914b1180508f | 006bcf87197032c85d7ef5f69f1d68cb730bdd69 | refs/heads/master | 2022-02-19T03:29:16.373712 | 2019-09-04T13:54:32 | 2019-09-04T13:54:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,327 | cpp | Unit.cpp | #include "Unit.hpp"
Unit::Unit(const char* title, int hitPoints, int damage)
: state(new State(title, hitPoints, damage)) {
this->undead = false;
this->vampire = false;
this->werewolf = false;
this->magicMan = false;
this->wolf = false;
}
Unit::~Unit() {
delete(this->state);
delete(this->ability);
}
void Unit::ensureIsAlive() {
this->state->ensureIsAlive();
}
bool Unit::isUndead() const {
return this->undead;
}
bool Unit::isVampire() const {
return this->vampire;
}
bool Unit::isWerewolf() const {
return this->werewolf;
}
bool Unit::isMagicMan() const {
return this->magicMan;
}
bool Unit::isWolf() const {
return this->wolf;
}
void Unit::setUndead(Unit* unit, bool flag) {
unit->undead = flag;
}
void Unit::setVampire(Unit* unit, bool flag) {
unit->vampire = flag;
}
void Unit::setWerewolf(Unit* unit, bool flag) {
unit->werewolf = flag;
}
void Unit::setWolf(Unit* unit, bool flag) {
unit->wolf = flag;
}
void Unit::setAbility(Ability* ability) {
this->ability = ability;
}
void Unit::setState(State* state) {
this->state = state;
}
const char* Unit::getTitle() const {
return this->state->getTitle();
}
int Unit::getHitPoints() const {
return this->state->getHitPoints();
}
int Unit::getHitPointsLimit() const {
return this->state->getHitPointsLimit();
}
int Unit::getDamage() const {
return this->state->getDamage();
}
void Unit::addHitPoints(int hp) {
this->state->addHitPoints(hp);
}
void Unit::takeDamage(int dmg) {
this->state->takeDamage(dmg);
if ( this->state->getHitPoints() == 0 ) {
this->notify();
}
}
void Unit::takeMagicDamage(int dmg) {
this->state->takeMagicDamage(dmg);
if ( this->state->getHitPoints() == 0 ) {
this->notify();
}
}
void Unit::attack(Unit* enemy) {
this->ability->attack(enemy);
}
void Unit::counterAttack(Unit* enemy) {
this->ability->counterAttack(enemy);
}
void Unit::turn(Unit* unit) {
this->ability->turn(unit);
}
void Unit::turnMyself() {
this->ability->turnMyself();
}
void Unit::showMyself() {
std::cout << "Name: " << this->getTitle() << "\nHit points: " << this->getHitPoints()
<< '/' << this->getHitPointsLimit() << "\nDamage: " << this->getDamage()
<< std::endl;
} |
42be677d04a814e78e1be5ce6ae125680c15c9e7 | 659583f437d136cdc396162683011f7185e3d529 | /compator/road/plaingnn.cc | bdf950e3dd855fb542ba8822b72beaab0b61b944 | [
"MIT"
] | permissive | yuchen-ecnu/VTree | db4c0a0fb4e6cfabeaea7e1651e52f49b23c5fc7 | 32f98206b85cc9ac96f352c346c6316cf81efdca | refs/heads/master | 2022-12-11T19:58:53.693872 | 2020-05-06T06:59:44 | 2020-05-06T06:59:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,615 | cc | plaingnn.cc | /* ----------------------------------------------------------------------------
Author: Ken C. K. Lee
Email: cklee@cse.psu.edu
Web: http://www.cse.psu.edu/~cklee
Date: Jan, 2008
Copyright(c) Ken C. K. Lee 2008
This program is for non-commerical use only.
This program performs kNN search on objects.
Suggested arguments:
> (prog name) -i graph.idx -o object.dat -q #queries -s #srcs -k k -v
explanations:
-i: graph index file (input)
-o: object file
-s: number of source nodes
-q: number of queries
-k: number of NNs
-v: turn verbose mode on (default: off)
---------------------------------------------------------------------------- */
#include "graph.h"
#include "segfmem.h"
#include "param.h"
#include "nodemap.h"
#include "graphsearch.h"
#include "objectsearch.h"
#include "access.h"
#include "iomeasure.h"
#include "collection.h"
#include <sys/types.h>
#include <sys/timeb.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <iostream>
#include <fstream>
using namespace std;
#define PAGESIZE 4096
void helpmsg(const char* pgm)
{
cerr << "Suggested arguments:" << endl;
cerr << "> " << pgm << " ";
cerr << "-i graph.idx -o object.dat -r distance -v" << endl;
cerr << "explanations:" << endl;
cerr << "-i: graph index file" << endl;
cerr << "-o: object file" << endl;
cerr << "-s: #sources" << endl;
cerr << "-q: #queries" << endl;
cerr << "-k: #NNs" << endl;
cerr << "-v: turn verbose mode on (default: off)" << endl;
}
int main(const int a_argc, const char** a_argv)
{
if (a_argc == 1)
{
helpmsg(a_argv[0]);
return -1;
}
cerr << "object search on plain graph" << endl;
//-------------------------------------------------------------------------
// initialization
//-------------------------------------------------------------------------
const char* idxflname = Param::read(a_argc, a_argv, "-i", "");
const char* objflname = Param::read(a_argc, a_argv, "-o", "");
const char* source = Param::read(a_argc, a_argv, "-s", "");
const char* cnumquery = Param::read(a_argc, a_argv, "-q", "");
const char* ck = Param::read(a_argc, a_argv, "-k", "");
const char* vrbs = Param::read(a_argc, a_argv, "-v", "null");
bool verbose = strcmp(vrbs,"null") != 0;
//-------------------------------------------------------------------------
// access graph index file
//-------------------------------------------------------------------------
cerr << "loading a graph index ... ";
SegFMemory segmem(idxflname, PAGESIZE*10, PAGESIZE, 32, false);
Graph graph(segmem);
int graphsize = segmem.size();
cerr << "[DONE]" << endl;
//-------------------------------------------------------------------------
// access object file
//-------------------------------------------------------------------------
cerr << "loading objects ... ";
struct timeb starttime, endtime;
float idxtime=0;
int objsize = 0;
NodeMapping map;
fstream fobj;
fobj.open(objflname, ios::in);
ftime(&starttime); // time the the object index creation
while (true)
{
int nodeid, objid;
fobj >> nodeid;
if (fobj.eof())
break;
fobj >> objid;
map.addObject(nodeid, objid);
objsize += sizeof(int)*2;
}
ftime(&endtime); // time the the object index creation
idxtime =
((endtime.time*1000 + endtime.millitm) -
(starttime.time*1000 + starttime.millitm)) / 1000.0f;
cerr << "[DONE]" << endl;
//-------------------------------------------------------------------------
// performance statistics
//-------------------------------------------------------------------------
float totaltime = 0;
int resultsize = 0;
int totallru1=0;
int totallru10=0;
int totallru20=0;
int totallru30=0;
int totallru40=0;
int totallru50=0;
int totalnodeaccess=0;
int totaledgeaccess=0;
//-------------------------------------------------------------------------
// search
//-------------------------------------------------------------------------
cerr << "search ... ";
int na=0, ea=0;
float diameter = GraphSearch::diameter(graph,0,na,ea);
int nodecnt = graph.m_nodes.size();
int numsrc = atol(source);
int numquery = atol(cnumquery);
int k = (int)atol(ck);
for (int i=0; i<numquery; i++)
{
Array result;
int nodeaccess=0;
int edgeaccess=0;
int rescnt=0;
struct timeb starttime, endtime;
segmem.m_history.clean();
int src[MAXQUERY];
for (int j=0; j<numsrc; j++)
{
//----------------------------------------------------------------------
// find query point
//----------------------------------------------------------------------
while ((src[j] = (int)((rand()%1000 / 1000.0f)*nodecnt)) > nodecnt);
}
//----------------------------------------------------------------------
// object search here
//----------------------------------------------------------------------
ftime(&starttime); // time the algorithm
ObjectSearch::groupKNNSearch(
graph,map,
src,numsrc,k,
result,nodeaccess,edgeaccess);
ftime(&endtime);
float qtime =
((endtime.time*1000 + endtime.millitm) -
(starttime.time*1000 + starttime.millitm)) / 1000.0f;
//----------------------------------------------------------------------
// debug use
//----------------------------------------------------------------------
if (verbose)
{
for (int i=0; i<result.size(); i++)
{
GroupObjectSearchResult* r =
(GroupObjectSearchResult*)result.get(i);
cerr << r->m_nid << "," << r->m_oid << ",";
cerr << r->sumcost() << endl;
}
cerr << "---- time: " << qtime;
cerr << " -- result size: " << result.size();
cerr << " ----" << endl;
}
//----------------------------------------------------------------------
// result clean up
//----------------------------------------------------------------------
for (int i=0; i<result.size(); i++)
{
GroupObjectSearchResult* r = (GroupObjectSearchResult*)result.get(i);
rescnt++;
delete r;
}
//----------------------------------------------------------------------
// performance evaluation
//----------------------------------------------------------------------
int lru1 = IOMeasure::pagelru(segmem.m_history, PAGESIZE, 1);
int lru10= IOMeasure::pagelru(segmem.m_history, PAGESIZE, 10);
int lru20= IOMeasure::pagelru(segmem.m_history, PAGESIZE, 20);
int lru30= IOMeasure::pagelru(segmem.m_history, PAGESIZE, 30);
int lru40= IOMeasure::pagelru(segmem.m_history, PAGESIZE, 40);
int lru50= IOMeasure::pagelru(segmem.m_history, PAGESIZE, 50);
totaltime += qtime;
resultsize += rescnt;
totalnodeaccess += nodeaccess;
totaledgeaccess += edgeaccess;
totallru1 += lru1;
totallru10 += lru10;
totallru20 += lru20;
totallru30 += lru30;
totallru40 += lru40;
totallru50 += lru50;
}
cerr << "[DONE]" << endl;
//-------------------------------------------------------------------------
// report
//-------------------------------------------------------------------------
cout << "idxtime:," << idxtime;
cout << ",graphsize:," << graphsize;
cout << ",objsize:," << objsize;
cout << ",#query:," << numquery;
cout << ",qtime:," << totaltime/numquery;
cout << ",#res:," << resultsize*1.0/numquery;
cout << ",node:," << totalnodeaccess*1.0/numquery;
cout << ",edge:," << totaledgeaccess*1.0/numquery;
cout << ",lru1:," << totallru1/numquery;
cout << ",lru10:," << totallru10/numquery;
cout << ",lru20:," << totallru20/numquery;
cout << ",lru30:," << totallru30/numquery;
cout << ",lru40:," << totallru40/numquery;
cout << ",lru50:," << totallru50/numquery;
cout << endl;
//-------------------------------------------------------------------------
// all done
//-------------------------------------------------------------------------
return 0;
}
|
967b4e4e2d41f0dc8d7589816db7a01412c976e3 | 558edffa495110cb84baa73701b4b4a3509af635 | /src/memorystat.h | 745d218f6b349caea05d8d6ada505f5507b05d3a | [
"MIT"
] | permissive | mity/nativejson-benchmark | 2f0a0fa6e6ac6feb61113f5b8bbd610e889ceec6 | 9b0869278dec5e901edc984954f5c7d761db09c4 | refs/heads/master | 2020-12-13T05:36:51.802889 | 2020-01-16T13:26:19 | 2020-01-19T17:46:34 | 234,326,207 | 1 | 0 | null | 2020-01-16T13:29:09 | 2020-01-16T13:29:08 | null | UTF-8 | C++ | false | false | 4,026 | h | memorystat.h | #pragma once
#include "config.h"
#if USE_MEMORYSTAT
#ifdef __cplusplus
#include <new>
#include <cstdlib>
#include <cstring>
#if defined(__APPLE__)
#include <malloc/malloc.h>
#elif defined(__GNUC__)
#include <malloc.h>
#endif
struct MemoryStat {
size_t mallocCount;
size_t reallocCount;
size_t freeCount;
size_t currentSize;
size_t peakSize;
};
class Memory {
public:
static Memory& Instance() {
static Memory memory;
return memory;
}
void* Malloc(size_t size) {
void* p = malloc(size);
MallocStat(GetMallocSize(p));
return p;
}
void* Realloc(void* ptr, size_t size) {
if (ptr)
FreeStat(GetMallocSize(ptr));
void *p = realloc(ptr, size);
ReallocStat(GetMallocSize(p));
return p;
}
void Free(void* ptr) {
if (ptr) {
FreeStat(GetMallocSize(ptr));
free(ptr);
}
}
const MemoryStat& GetStat() { return *stat_; }
MemoryStat* SetStat(MemoryStat* stat) {
MemoryStat* old = stat_;
stat_ = stat;
return old;
}
void MallocStat(size_t size) {
stat_->currentSize += size;
if (stat_->peakSize < stat_->currentSize)
stat_->peakSize = stat_->currentSize;
stat_->mallocCount++;
}
void ReallocStat(size_t size) {
stat_->currentSize += size;
if (stat_->peakSize < stat_->currentSize)
stat_->peakSize = stat_->currentSize;
stat_->reallocCount++;
}
void FreeStat(size_t size) {
stat_->currentSize -= size;
stat_->freeCount++;
}
private:
size_t GetMallocSize(void* ptr) {
#if defined(_MSC_VER)
return _msize(ptr);
#elif defined(__APPLE__)
return malloc_size(ptr);
#elif defined(__GNUC__)
return malloc_usable_size(ptr);
#else
#error Must implement Memory::GetMallocSize() in memorystat.h
#endif
}
Memory() : stat_(&global_) { memset(&global_, 0, sizeof(global_)); }
MemoryStat global_;
MemoryStat* stat_;
};
class MemoryStatScope {
public:
MemoryStatScope() : old_(Memory::Instance().SetStat(&local_)) {
memset(&local_, 0, sizeof(local_));
}
~MemoryStatScope() {
old_->mallocCount += local_.mallocCount;
old_->reallocCount += local_.reallocCount;
old_->freeCount += local_.freeCount;
old_->peakSize += local_.peakSize;
old_->currentSize += local_.currentSize;
Memory::Instance().SetStat(old_);
}
private:
MemoryStat local_;
MemoryStat* old_;
};
#define MEMORYSTAT_SCOPE() MemoryStatScope scope##__LINE__
#endif // __cplusplus
#ifdef __cplusplus
extern "C" {
#else
#include <stdlib.h>
#endif
extern void* MemoryStatMalloc(size_t size);
extern void* MemoryStatCalloc(size_t num, size_t size);
extern void* MemoryStatRealloc(void* ptr, size_t size);
extern void MemoryStatFree(void* ptr);
#ifdef __cplusplus
}
#endif
#ifdef __cplusplus
namespace std {
inline void* StdMemoryStatMalloc(size_t size) {
return ::MemoryStatMalloc(size);
}
inline void* StdMemoryStatCalloc(size_t num, size_t size) {
return ::MemoryStatCalloc(num, size);
}
inline void* StdMemoryStatRealloc(void* ptr, size_t size) {
return ::MemoryStatRealloc(ptr, size);
}
inline void StdMemoryStatFree(void* ptr) {
return ::MemoryStatFree(ptr);
}
#define malloc StdMemoryStatMalloc
#define calloc StdMemoryStatCalloc
#define realloc StdMemoryStatRealloc
#define free StdMemoryStatFree
};
#else
#define malloc MemoryStatMalloc
#define calloc MemoryStatCalloc
#define realloc MemoryStatRealloc
#define free MemoryStatFree
#endif
#else // USE_MEMORYSTAT
#define MEMORYSTAT_SCOPE()
#endif
// Override strdup
#include <string.h>
#include <stdlib.h>
#ifdef strdup
#undef strdup
#endif
#define strdup StrDup
#ifdef __cplusplus
extern "C" {
#endif
char* StrDup(const char* src);
#ifdef __cplusplus
}
#endif |
04b4685aa0cae1d13e618853e7005e7a50387825 | 661358ba98944b57dcc4b3d307161eb827634d2b | /ml2rule.cpp | 81d76b73a0bf6de00db61201b4e6a74d37efa37c | [] | no_license | olehs/MegaLight2 | d08d40568cc144c35348bea4c7d26099514e78e9 | c45191623e8113e4dcb2fac37d437b68ab5fc42f | refs/heads/master | 2021-01-19T03:01:31.658805 | 2019-02-01T19:54:07 | 2019-02-01T19:54:07 | 87,303,047 | 4 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 7,720 | cpp | ml2rule.cpp | #include "ml2classes.h"
#include <SDConfigFile.h>
extern EventManager outputEM;
extern OutputList outputList;
extern InputList inputList;
uint32_t parseTime(const char* v) {
String s = v;
s.trim();
if (!s.length())
return 0;
s.toUpperCase();
uint32_t r = 0;
byte i = 0;
do {
char c = s[i];
if (!c) {
break;
} else if (c >= '0' && c <= '9') {
++i;
} else {
if (c == 'D') {
r += strtoul(s.substring(0, i).c_str(), NULL, 10) * 24 * 60 * 60 * 1000;
} else if (c == 'H') {
r += strtoul(s.substring(0, i).c_str(), NULL, 10) * 60 * 60 * 1000;
} else if (c == 'M') {
r += strtoul(s.substring(0, i).c_str(), NULL, 10) * 60 * 1000;
} else if (c == 'S') {
r += strtoul(s.substring(0, i).c_str(), NULL, 10) * 1000;
}
s.remove(0, i + 1);
i = 0;
}
} while (true);
return r + strtoul(s.c_str(), NULL, 10);
}
int eval_token(char *expr)
{
String s = expr;
s.trim();
if (!s.length())
return 0;
s.toUpperCase();
char c = s[0];
if ((c == 'R') || (c == 'V'))
{
bool needValue = (c == 'V');
s.remove(0, 1);
c = s[0];
int i = 0;
while (c && ExpressionEvaluator::istoken_char(c))
c = s[++i];
s.remove(i);
ML2Output *output = outputList.find(s.c_str());
if (output)
return needValue ? output->value() : (output->on() ? 1 : 0);
}
else if (c == 'B')
{
s.remove(0, 1);
ButtonState::State state;
c = s[0];
switch (c) {
case 'U' :
state = ButtonState::Up;
s.remove(0, 1);
c = s[0];
break;
case 'H' :
state = ButtonState::HoldState;
s.remove(0, 1);
c = s[0];
break;
default:
state = ButtonState::Down;
}
int i = 0;
while (c && ExpressionEvaluator::istoken_char(c))
c = s[++i];
s.remove(i);
ML2Input *input = inputList.find(s.c_str());
if (input)
return input->state() == state ? 1 : 0;
}
else
{
return s.toInt();
}
return 0;
}
GenericTokenEvaluator<int(char*)> tokenEvaluator(&eval_token);
ExpressionEvaluator evaluator(&tokenEvaluator);
bool evalRuleExpr(const String &expr)
{
int r = evaluator.eval(expr.c_str());
if (r == EVAL_FAILURE)
{
Serialprint("Error evaluating expression: %s", expr.c_str());
return false;
}
return r != 0;
}
ML2Rule::ML2Rule(const String &id)
: ID(id)
, final(false)
{
for (int i = 0; i < ButtonEvent::EventsCount; i++)
{
eventActions[i].action = OutputAction::Unassigned;
eventActions[i].param = 0;
eventActions[i].timeout = 0;
eventActions[i].condition = "";
}
}
ML2Rule::~ML2Rule()
{
clearOutputs();
}
bool ML2Rule::addInput(const char *id)
{
ML2Input *input = inputList.find(id);
if (!input)
return false;
return inputlist.addInput(input);
}
bool ML2Rule::hasOutput(ML2Output *output)
{
for (OutputList::iterator itr = outputlist.begin(); itr != outputlist.end(); ++itr)
{
if ((*itr) == output)
return true;
}
return false;
}
bool ML2Rule::addOutput(const char *id)
{
ML2Output *output = outputList.find(id);
if (!output)
return false;
return outputlist.addOutput(output);
}
bool ML2Rule::removeOutput(const char *id)
{
ML2Output *output = outputList.find(id);
if (!output)
return false;
for (OutputList::iterator itr = outputlist.begin(); itr != outputlist.end(); ++itr)
{
if ((*itr) == output)
{
outputlist.erase(itr);
return true;
}
}
return false;
}
bool ML2Rule::hasOutput(const char *id)
{
ML2Output *output = outputList.find(id);
if (!output)
return false;
return hasOutput(output);
}
int ML2Rule::outputCount()
{
return outputlist.size();
}
void ML2Rule::clearOutputs()
{
outputlist.clear();
}
void ML2Rule::setAction(ButtonEvent::Type event, OutputAction::Action action, int param, uint32_t timeout)
{
eventActions[event].action = action;
eventActions[event].param = param;
eventActions[event].timeout = timeout;
}
void ML2Rule::unsetAction(ButtonEvent::Type event)
{
eventActions[event].action = OutputAction::Unassigned;
}
void ML2Rule::setCondition(ButtonEvent::Type event, const char *condition)
{
eventActions[event].condition = condition;
}
bool ML2Rule::processButtonEvent(int event, ML2Input *input)
{
OutputAction::Action action = eventActions[event].action;
if (action == OutputAction::Unassigned)
return false;
if (eventActions[event].condition.length() && !evalRuleExpr(eventActions[event].condition))
return false;
for (OutputList::iterator itr = outputlist.begin(); itr != outputlist.end(); ++itr)
outputEM.queueEvent(action, new OutputEventParam((*itr), eventActions[event].param, eventActions[event].timeout));
return true;
}
ML2Rule *ML2Rule::fromFile(const String &path) {
const uint8_t CONFIG_LINE_LENGTH = 127;
SDConfigFile cfg;
String fullPath = String(RULES_PATH) + path;
if (!cfg.begin(fullPath.c_str(), CONFIG_LINE_LENGTH)) {
Serialprint("Failed to open rule file: %s", path.c_str());
return 0;
}
ML2Rule *rule = new ML2Rule(path);
ButtonEvent::Type currEvent = ButtonEvent::EventsCount;
// Read each setting from the file.
while (cfg.readNextSetting()) {
if (cfg.nameIs("final")) {
rule->final = cfg.getBooleanValue();
} else if (cfg.nameIs("input")) {
String inputId = cfg.getValue();
inputId.toUpperCase();
if (!rule->addInput(inputId.c_str()))
Serialprint("Could not add input %s to rule %s\r\n", inputId.c_str(), path.c_str());
} else if (cfg.nameIs("output")) {
String outputId = cfg.getValue();
outputId.toUpperCase();
if (!rule->addOutput(outputId.c_str()))
Serialprint("Could not add output %s to rule %s\r\n", outputId.c_str(), path.c_str());
} else if (cfg.nameIs("event")) {
String pu = cfg.getValue();
if (pu == "change")
currEvent = ButtonEvent::StateChanged;
else if (pu == "press")
currEvent = ButtonEvent::Pressed;
else if (pu == "release")
currEvent = ButtonEvent::Released;
else if (pu == "repeat")
currEvent = ButtonEvent::Repeat;
else if (pu == "hold")
currEvent = ButtonEvent::Hold;
else if (pu == "lclick")
currEvent = ButtonEvent::LongClick;
else if (pu == "click")
currEvent = ButtonEvent::Click;
else if (pu == "dclick")
currEvent = ButtonEvent::DoubleClick;
} else if (cfg.nameIs("action") && (currEvent != ButtonEvent::EventsCount)) {
String pu = cfg.getValue();
if (pu == "no")
rule->eventAction(currEvent).action = OutputAction::NoAction;
else if (pu == "on")
rule->eventAction(currEvent).action = OutputAction::On;
else if (pu == "off")
rule->eventAction(currEvent).action = OutputAction::Off;
else if (pu == "toggle")
rule->eventAction(currEvent).action = OutputAction::Toggle;
else if (pu == "value")
rule->eventAction(currEvent).action = OutputAction::Value;
else if (pu == "incvalue")
rule->eventAction(currEvent).action = OutputAction::IncValue;
} else if (cfg.nameIs("param") && (currEvent != ButtonEvent::EventsCount)) {
rule->eventAction(currEvent).param = cfg.getIntValue();
} else if (cfg.nameIs("timeout") && (currEvent != ButtonEvent::EventsCount)) {
rule->eventAction(currEvent).timeout = parseTime(cfg.getValue());
} else if (cfg.nameIs("condition") && (currEvent != ButtonEvent::EventsCount)) {
rule->eventAction(currEvent).condition = cfg.getValue();
}
}
// clean up
cfg.end();
return rule;
}
|
c03e469f12b7f107c195a9e9f2a2014b906dc960 | 5bc47dcf9ab0843b9d06bc25012bcb2f78874216 | /217A.cpp | 20b6cc77eef3d88f3cffdb570dbfd91ff44ed6bc | [] | no_license | MijaTola/Codeforce | 428f466248a4e9d42ac457aa971f681320dc5018 | 9e85803464ed192c6c643bd0f920f345503ac967 | refs/heads/master | 2021-01-10T16:27:12.479907 | 2020-10-14T15:00:14 | 2020-10-14T15:00:14 | 45,284,776 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,145 | cpp | 217A.cpp | #include <iostream>
#include <algorithm>
#include <queue>
#include <stack>
#include <vector>
#include <climits>
#include <map>
#include <set>
#include <cassert>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <deque>
#include <string>
#include <sstream>
#include <cstdlib>
#include <unordered_set>
#include <unordered_map>
using namespace std;
int parent[1010];
int find(int x){
if(parent[x] == x) return x;
return parent[x] = find(parent[x]);
}
void init(){
for (int i = 0; i < 1010; ++i) parent[i] = i;
}
void Union(int x,int y){
int dx = find(x);
int dy = find(y);
parent[dx] = dy;
}
vector<pair<int,int> > v;
set<int> s;
int main(){
int n; scanf("%d",&n);
int total = 0;
for (int i = 0; i < n; ++i){
int x,y;
scanf("%d %d",&x,&y);
v.push_back(make_pair(x,y));
}
init();
for (int i = 0; i < n; ++i)
for (int j = 0; j < n; ++j)
if(v[i].first == v[j].first or v[i].second == v[j].second)
Union(i,j);
for (int i = 0; i < n; ++i)
s.insert(find(i));
printf("%d\n",(int)s.size() - 1);
return 0;
}
|
ef3e30f092bd102a0fa5a7485072a308e334c8ad | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5658282861527040_1/C++/kmxyvb/b.cpp | 104d0586f2518cc3442d3a86796208083c61ddfc | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 997 | cpp | b.cpp | #include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;
long long f[40][3][3][3];
int TestCase,Case,i,j,k,l,_j,_k,_l,_A,_B,__A,__B,__K,A,B,K;
int main()
{
// freopen("b.in","rb",stdin);
// freopen("b.out","wb",stdout);
scanf("%d",&TestCase);
for(Case=1;Case<=TestCase;Case++)
{
scanf("%d%d%d",&A,&B,&K);
A--;B--;K--;
memset(f,0,sizeof f);
for(j=0;j<2;j++)
for(k=0;k<2;k++)
for(l=0;l<2;l++)
f[0][j][k][l]=1;
for(i=0;i<31;i++)
for(j=0;j<2;j++)
for(k=0;k<2;k++)
for(l=0;l<2;l++)
for(_A=0;_A<2;_A++)
for(_B=0;_B<2;_B++)
{
__A=((A>>i)&1);
__B=((B>>i)&1);
__K=((K>>i)&1);
if(j==0&&_A>__A)continue;
if(k==0&&_B>__B)continue;
if(l==0&&(_A&_B)>__K)continue;
_j=j;
_k=k;
_l=l;
if(_A<__A)_j=1;
if(_B<__B)_k=1;
if((_A&_B)<__K)_l=1;
f[i+1][j][k][l]+=f[i][_j][_k][_l];
}
cout<<"Case #"<<Case<<": "<<f[31][0][0][0]<<endl;
}
return 0;
}
|
cd1970c3f45c4a02b3558711475dc86fd50b19b8 | 832c45ae5979dbcf4e07bc3b096e076d4d2d83e7 | /20130916/PRAVOKUTNI.cpp | 89107feb14f4250914a67be340c4687e3c57fd2c | [] | no_license | personaluser01/Algorithm-problems | 9e62da04724a6f4a71c10d0d3f0459bc926da594 | 9e2ad4571660711cdbed0402969d0cb74d6e4792 | refs/heads/master | 2021-01-03T12:08:55.749408 | 2018-10-13T10:59:02 | 2018-10-13T10:59:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,240 | cpp | PRAVOKUTNI.cpp | #include <bits/stdc++.h>
#define elif else if
using namespace std;
int ucln(int u,int v) {
if(u>v) swap(u,v);
if(!u) return v;
return ucln(v%u,u);
}
typedef pair<int,int> point;
#define X first
#define Y second
const int Maxn=1511;
map<point,int> d[Maxn];
point a[Maxn];
main() {
ios_base::sync_with_stdio(false);
int n;
cin>>n;
int cnt1=0,cnt2=0;
int ans=0;
for(int i=1; i<=n; i++)
cin>>a[i].X>>a[i].Y;
for(int i=1; i<=n; i++,cnt1=0,cnt2=0)
for(int j=1; j<=n; j++)
if(i!=j) {
if(a[i].X==a[j].X) cnt1++,ans+=cnt2;
elif(a[i].Y==a[j].Y) cnt2++,ans+=cnt1;
else {
point t=point(a[j].X-a[i].X,a[j].Y-a[i].Y);
int k=ucln(abs(t.X),abs(t.Y));
t.X/=k;
t.Y/=k;
if(t.Y>0) {
t.X*=-1;
t.Y*=-1;
}
ans+=d[i][point(-t.Y,t.X)];
if(t.X<0) {
t.X*=-1;
t.Y*=-1;
}
d[i][t]++;
}
}
cout<<ans;
}
|
1e5429103a4398c5f413c68fca9cbb9087416c40 | 0064936a60abf577a8d055bf3a37452d19a734a5 | /algo/array/singleNumber.cc | d934e9887f08bc65494a0c6ed235907b22e6d64d | [
"MIT"
] | permissive | liuheng/recipes | 15a5ab66dbfa0be68c624d234470e37d8c1f5b42 | 6f3759ab4e4fa64d9fd83a60ee6b6846510d910b | refs/heads/master | 2021-01-02T08:51:49.166604 | 2015-09-17T17:00:21 | 2015-09-17T17:00:21 | 28,685,126 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 519 | cc | singleNumber.cc | #include <cstdio>
#include <unordered_map>
using namespace std;
int singleNumber(int A[], int n) {
unordered_map<int, int> M;
for (int i=0; i<n; ++i) {
auto it = M.find(A[i]);
if (it != M.end()) {
it->second += 1;
} else {
M[A[i]] = 1;
}
}
for (auto x: M) {
if (x.second == 1) {
return x.first;
}
}
return 0;
}
int main() {
int A[] = {2, 2, 3, 2};
printf("%d\n", singleNumber(A, 4));
return 0;
}
|
8b28d9025d4c45fadbca91ce07f2815e1e93074c | dc811f524e38761a02602bbdee788cd394893dbc | /src-lib/test2/test2.h | 0a31e169bd61d10fe6f8e1b78c15ecf6b70c0bd9 | [] | no_license | braboar/test2lib | 93b260420910df6a6b7600b225dbf1d23fddb74c | 0db8b0c755d6d11d22166fdecc03d8f3e58d1635 | refs/heads/main | 2023-08-02T04:33:09.607828 | 2021-09-26T17:40:28 | 2021-09-26T17:40:28 | 410,614,174 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 233 | h | test2.h | #pragma once
#include <QObject>
#include "../base/base.h"
class Test2: public Base
{
Q_OBJECT
public:
Test2(QObject* parent = nullptr);
~Test2();
public slots:
void slot_do_test();
void slot_stop_test();
};
|
89e15ca54708faeb3bb9db92a7738afd1acc5919 | 7a61321e123a2f89a59fa78d835f7dfbd1d7c643 | /iterator/counting/main.cpp | ba15626d71ed707cf5e41acd02f0aa5f5db71168 | [
"MIT"
] | permissive | dexpota/boost-api-examples | 8cd4d969b4277bc20e4077e6f480440891afc43a | e62ba87fdee3fcb4b8448074c15e12da715bc2cf | refs/heads/master | 2021-01-21T17:29:16.918437 | 2019-06-05T20:38:33 | 2019-06-05T20:38:33 | 91,955,075 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 694 | cpp | main.cpp | /*
* main.cpp
*
* Created on: 22/mag/2012
* Author: Fabrizio
*/
#include <boost/iterator/counting_iterator.hpp>
#include <iostream>
#include <algorithm>
#include <vector>
int main(int argc, char *argv[]) {
// This is a naive example of counting from 1 to 100.
{
std::cout << "Counting from 1 to 100." << std::endl;
boost::counting_iterator<int> begin(1), end(100);
std::copy(begin, end, std::ostream_iterator<int>(std::cout, " "));
std::cout << std::endl;
}
// It may be useful if you want to initialize a vector.
{
boost::counting_iterator<int> begin(0), end(10);
std::vector<int> v;
std::copy(begin, end, std::back_inserter(v));
}
return EXIT_SUCCESS;
}
|
6068597aa9ce2669a4feab7236e1d15c728ecebb | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5765824346324992_0/C++/mark03/haircut.cpp | 28b4108356828f6af436acc03d5f745935f3944c | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,209 | cpp | haircut.cpp | #include <iostream>
#include <cstdlib>
#include <algorithm>
#include <vector>
#include <map>
#include <stack>
#include <queue>
#include <limits>
#include <set>
#include <cmath>
#include <iomanip>
using namespace std;
#define pb push_back
#include <fstream>
ifstream fin("input.txt");
ofstream fout("output.txt");
#define MAXN 1010
int T,B,N;
long long M[MAXN];
bool calcola(long long tempo)
{
long long pos=0;
for(int i=0;i<B;++i)
{
pos+=(tempo+M[i]-1)/M[i];
}
return pos<N;
}
int calcolasol(long long tempo)
{
long long pos=0;
vector<int> ok;
for(int i=0;i<B;++i)
{
pos+=(tempo+M[i]-1)/M[i];
if(tempo%M[i]==0) ok.pb(i+1);
}
return ok[N-pos-1];
}
int main()
{
fin>>T;
for(int t=1;t<=T;++t)
{
fout<<"Case #"<<t<<": ";
fin>>B>>N;
for(int i=0;i<B;++i)
fin>>M[i];
if(N<=B) fout<<N<<"\n";
else
{
long long lo=0,hi=1LL*N*100001 + 1;
while(lo+1<hi)
{
long long mid=(lo+hi)/2;
if(calcola(mid)) lo=mid;
else hi=mid;
}
fout<<calcolasol(lo)<<"\n";
}
}
}
|
f4cc9eef9758d764a1730f2d05dd107faf85996e | 473a5ead344e27e4f1853553a963ed8e4983be42 | /Osgviewer/CXTreeCtrl.cpp | fbcb65140b2b7ce5bbb45b5f889fced0b7a16cbe | [] | no_license | liuxq/Osgviewer | 06ea0d8b8dc1667a7c33dfc030479ac62a5c63b2 | 621911e12533f22ef57721f2d064bc6d31569ee2 | HEAD | 2016-09-06T08:44:00.704407 | 2015-11-02T07:15:34 | 2015-11-02T07:15:34 | 27,765,080 | 3 | 4 | null | null | null | null | GB18030 | C++ | false | false | 2,606 | cpp | CXTreeCtrl.cpp | //////////////////////////////////////////////////////////// CXTreeCtrl
#include "stdafx.h"
//#include "DragTree.h"
#include "CXTreeCtrl.h"
#include "MainFrm.h"
#define DRAG_DELAY 60
CXTreeCtrl::CXTreeCtrl()
{
m_bDragging = false;
}
CXTreeCtrl::~CXTreeCtrl()
{}
BEGIN_MESSAGE_MAP(CXTreeCtrl, CTreeCtrl)
//{{AFX_MSG_MAP(CXTreeCtrl)
ON_NOTIFY_REFLECT(TVN_BEGINDRAG, OnBegindrag)
ON_WM_MOUSEMOVE()
ON_WM_LBUTTONUP()
ON_WM_LBUTTONDOWN()
ON_WM_LBUTTONDBLCLK()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
void CXTreeCtrl::OnBegindrag(NMHDR* pNMHDR, LRESULT* pResult)
{
NM_TREEVIEW* pNMTreeView = (NM_TREEVIEW*)pNMHDR;
*pResult = 0;
m_hItemDragS = pNMTreeView->itemNew.hItem;
//得到用于拖动时显示的图象列表
m_bDragging = true;
SetCapture();
::SetCursor((HCURSOR)::LoadCursor(NULL, IDC_HAND)); // 鼠标设置为手状表示可以移动窗口
}
void CXTreeCtrl::OnMouseMove(UINT nFlags, CPoint point)
{
//HTREEITEM hItem;
//UINT flags;
m_HoverPoint = point;
if( m_bDragging )
{
CPoint pt = point;
::SetCursor((HCURSOR)::LoadCursor(NULL, IDC_HAND)); // 鼠标设置为手状表示可以移动窗口
}
CTreeCtrl::OnMouseMove(nFlags, point);
}
void CXTreeCtrl::OnLButtonUp(UINT nFlags, CPoint point)
{
CTreeCtrl::OnLButtonUp(nFlags, point);
if( m_bDragging )
{
m_bDragging = FALSE;
ReleaseCapture();
SelectDropTarget( NULL );
::SetCursor((HCURSOR)::LoadCursor(NULL, IDC_ARROW));
CPoint tmp = point;
ClientToScreen(&tmp);
CMainFrame *pMain = (CMainFrame *)AfxGetApp()->m_pMainWnd;
RECT lineRect;
pMain->getOutPutWnd().GetWindowRect(&lineRect);
if(PtInRect(&lineRect,tmp))
{
HTREEITEM trItem = GetSelectedItem();
/*UINT uFlag = 0;
trItem = HitTest( point,&uFlag );*/
CString dataAttribute = GetItemText(trItem);
CString dataName = GetItemText(GetParentItem(trItem));
pMain->getOutPutWnd().updateDataName(tmp,dataName,dataAttribute);
}
}
}
void CXTreeCtrl::OnLButtonDown(UINT nFlags, CPoint point) //处理无意拖曳
{
m_dwDragStart = GetTickCount();
HTREEITEM trItem = 0;
UINT uFlag = 0;
trItem = HitTest( point,&uFlag );
if( trItem )
{
SelectItem( trItem );
//Expand( trItem,TVE_EXPAND );
}
CTreeCtrl::OnLButtonDown(nFlags, point);
}
void CXTreeCtrl::OnLButtonDblClk(UINT nFlags, CPoint point)
{
HTREEITEM trItem = 0;
UINT uFlag = 0;
trItem = HitTest( point,&uFlag );
CString dataAttribute = GetItemText(trItem);
CString dataName = GetItemText(GetParentItem(trItem));
CMainFrame *pMain = (CMainFrame *)AfxGetApp()->m_pMainWnd;
pMain->getOutPutWnd().getChar1()->updateDataName(dataName,dataAttribute);
} |
83fa6344e8675b54f1816292693a1a4288eaa9d6 | b168d70a22cc31fa1655daea86824e4a44809162 | /Merit/weatherimportdialog.cpp | 3ec2127aaeaa72e2cd44b0f4858cab98bfcaf9c4 | [] | no_license | shanipribadi/merit | 2e3cc744f3729c0ee2b7aa3533de130af7bf48f2 | fa5df9e0d078dc9369292732414b43f36708492f | refs/heads/master | 2021-01-18T05:47:04.271964 | 2013-08-13T18:33:40 | 2013-08-13T19:23:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,017 | cpp | weatherimportdialog.cpp | #include "weatherimportdialog.h"
#include <QLineEdit>
WeatherImportDialog::WeatherImportDialog( QWidget *parent ) : QDialog( parent )
{
//initialsations
m_strSiteName = "";
m_fLatitude = 0.0;
m_fLongitude = 0.0;
m_iYear = 0;
m_iStartDay = 0;
m_iEndDay = 0;
m_iStepsPerHour = 0;
ui.setupUi( this );
}
//setters
void WeatherImportDialog::setSiteName(const QString &siteName)
{
ui.siteNameEdit->clear();
ui.siteNameEdit->setText(siteName);
m_strSiteName = siteName;
}
void WeatherImportDialog::setLatitude(const float &latitude)
{
QString str;
str.sprintf("%4.1f", latitude);
ui.latitudeEdit->clear();
ui.latitudeEdit->setText(str);
m_fLatitude = latitude;
}
void WeatherImportDialog::setLongitude(const float &longitude)
{
QString str;
str.sprintf("%4.1f", longitude);
ui.longitudeEdit->clear();
ui.longitudeEdit->setText(str);
m_fLongitude = longitude;
}
void WeatherImportDialog::setYear(const int &year)
{
QString str;
str.sprintf("%d", year);
ui.yearEdit->clear();
ui.yearEdit->setText(str);
m_iYear = year;
}
void WeatherImportDialog::setStartDay(const int &startDay)
{
QString str;
str.sprintf("%d", startDay);
ui.startDayEdit->clear();
ui.startDayEdit->setText(str);
m_iStartDay = startDay;
}
void WeatherImportDialog::setEndDay(const int &endDay)
{
QString str;
str.sprintf("%d", endDay);
ui.endDayEdit->clear();
ui.endDayEdit->setText(str);
m_iEndDay = endDay;
}
void WeatherImportDialog::setStepsPerHour(const int &stepsPerHour)
{
QString str;
str.sprintf("%d", stepsPerHour);
ui.sphEdit->clear();
ui.sphEdit->setText(str);
m_iStepsPerHour = stepsPerHour;
}
//
void WeatherImportDialog::setWeatherDataTable(const QVector<float> &pTemp, const QVector<float> &pDirect, const QVector<float> &pDiffuse,
const QVector<float> &pWindSpeed, const QVector<float> &pWindDirection, const QVector<float> &pHumidity)
{
QStringList headerList;
headerList<<"T"<<"Qdir"<<"Qdif"<<"Vw"<<"D"<<"r";
ui.weatherDataTableWidget->setRowCount(pTemp.size());
ui.weatherDataTableWidget->setColumnCount(6);
ui.weatherDataTableWidget->setHorizontalHeaderLabels(headerList);
ui.weatherDataTableWidget->show();
for (int i= 0; i<pTemp.size(); i++)
{
stdItem1 = new QTableWidgetItem(QString("%1").arg(pTemp[i]));
stdItem2 = new QTableWidgetItem(QString("%1").arg(pDirect[i]));
stdItem3 = new QTableWidgetItem(QString("%1").arg(pDiffuse[i]));
stdItem4 = new QTableWidgetItem(QString("%1").arg(pWindSpeed[i]));
stdItem5 = new QTableWidgetItem(QString("%1").arg(pWindDirection[i]));
stdItem6 = new QTableWidgetItem(QString("%1").arg(pHumidity[i]));
ui.weatherDataTableWidget->setItem(i, 0, stdItem1);
stdItem1->setFlags(Qt::ItemIsSelectable|Qt::ItemIsEnabled);
ui.weatherDataTableWidget->setItem(i, 1, stdItem2);
stdItem2->setFlags(Qt::ItemIsSelectable|Qt::ItemIsEnabled);
ui.weatherDataTableWidget->setItem(i, 2, stdItem3);
stdItem3->setFlags(Qt::ItemIsSelectable|Qt::ItemIsEnabled);
ui.weatherDataTableWidget->setItem(i, 3, stdItem4);
stdItem4->setFlags(Qt::ItemIsSelectable|Qt::ItemIsEnabled);
ui.weatherDataTableWidget->setItem(i, 4, stdItem5);
stdItem5->setFlags(Qt::ItemIsSelectable|Qt::ItemIsEnabled);
ui.weatherDataTableWidget->setItem(i, 5, stdItem6);
stdItem6->setFlags(Qt::ItemIsSelectable|Qt::ItemIsEnabled);
}
// dp->stdProfilesTable->setEditable( false );
ui.weatherDataTableWidget->setSelectionBehavior( QAbstractItemView::SelectRows );
}
//getters
const QString WeatherImportDialog::siteName() const
{
return m_strSiteName;
}
const float WeatherImportDialog::latitude() const
{
return m_fLatitude;
}
const float WeatherImportDialog::longitude() const
{
return m_fLongitude;
}
const int WeatherImportDialog::year() const
{
return m_iYear;
}
const int WeatherImportDialog::startDay() const
{
return m_iStartDay;
}
const int WeatherImportDialog::endDay() const
{
return m_iEndDay;
}
const int WeatherImportDialog::stepsPerHour() const
{
return m_iStepsPerHour;
}
/*
*/ |
a851298dda627002ccb53aa757a1e01065af1502 | 0e6a4410bd27f93d0e2a1589f1dc6f6df54b5172 | /Radar_module/data_tablemodel.h | b162ec99501fadc674c8219d71eec59cf150105d | [] | no_license | supernova678/radar_module | d0b6d8817bdece548f50791e62d9676fd70fb324 | f3cf230187b0bb3a2f51d9a2fad81616810be06d | refs/heads/master | 2020-12-07T21:01:15.602979 | 2020-01-09T08:27:25 | 2020-01-09T08:27:25 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,475 | h | data_tablemodel.h | #pragma once
#include <QTableView>
#include <QStringList>
#include <QPainter>
#include <QHeaderView>
#include <QAbstractTableModel>
#include "can_thread.h"
#include "IDBCManager.h"
//QAbstractTableModel为模型提供了一个标准接口,这些模型将其数据表示为一个二维数组。它必须子类化。
//在子类化QAbstractTableModel时,必须实现rowCount()、columnCount()和data()。
//index()和parent()函数的默认实现由QAbstractTableModel提供。行为良好的模型还需要实现headerData()。
class Data_TableModel : public QAbstractTableModel
{
Q_OBJECT
public:
Data_TableModel(DBCHandle, QObject *parent = 0);
~Data_TableModel(void);
void setHorizontalHeaderList(QStringList horizontalHeaderList);
void setVerticalHeaderList(QStringList verticalHeaderList);
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index, int role) const override;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
Qt::ItemFlags flags(const QModelIndex &index) const;
void refresh_with_new_frame();
//void setModalData(QList< QStringList > *rowlist);
void refrushModel();
signals:
void updateCount(int count);
private:
QStringList horizontal_header_list;
QStringList vertical_header_list;
QList< QStringList > *arr_row_list;
DBCHandle m_hDBC;
};
|
71ca49c0c700c439d37c3a864a11d6705d0a9cb1 | ffab9b38126821248010478cd34288e1adb3fbc0 | /src/RenderEngine/Image.cpp | e596b2c694d4f13d966b59f7475bd74924c1acb5 | [] | no_license | VB6Hobbyst7/OpenGLPathTracer | df8f4e9460537a9efb43af05644f5f11ebf622cb | 745e323a0f14046d23921b4daf0385c719611b51 | refs/heads/master | 2021-09-12T01:56:44.239313 | 2018-04-13T12:47:48 | 2018-04-13T12:47:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,461 | cpp | Image.cpp | #include "Image.h"
#include <iostream>
#include <IL/il.h>
#include <vector>
/**
*
*RenderEngine Namespace
*
*/
namespace RenderEngine
{
/**
*
*Image Class
*
*/
bool Image::inited = false;
void Image::Init()
{
ilInit();
ilEnable(IL_ORIGIN_SET);
ilOriginFunc(IL_ORIGIN_UPPER_LEFT);
inited = true;
}
Image::Image()
{
data = NULL;
width = 0;
height = 0;
type = RGBA32F;
if(!inited) Init();
}
Image::Image(int w, int h, TYPE t)
{
Allocate(w, h, t);
if(!inited) Init();
}
Image::~Image()
{
Deallocate();
}
void Image::Allocate(int w, int h, TYPE t)
{
width = w;
height = h;
type = t;
if(type == RGBA8)
{
data = new uint8_t[w * h * 4];
}
else if(type == I16)
{
data = new uint8_t[w * h * 2];
}
else if(type == RGBA32F)
{
data = new uint8_t[w * h * 16];
}
else
{
data = new uint8_t[w * h * 4];
}
}
void Image::Deallocate()
{
if(width * height > 0)
{
delete[] (uint8_t*)data;
width = 0;
height = 0;
}
}
bool Image::ToFile(std::string fileName)
{
bool loadOK = false;
if(width > 0 && height > 0)
{
ILuint ilIm;
ilGenImages(1, &ilIm);
ilBindImage(ilIm);
ILboolean success = false;
if(type == RGBA8)
{
success = ilTexImage(width, height, 1, 4, IL_RGBA, IL_UNSIGNED_BYTE, data);
}
else if(type == I16)
{
success = ilTexImage(width, height, 1, 1, IL_LUMINANCE, IL_UNSIGNED_SHORT, data);
}
else if(type == RGBA32F)
{
std::vector<uint8_t> d(width * height * 4);
for(int i = 0; i < width * height; i++)
{
d[i * 4 + 0] = (uint8_t)(((float*)data)[i * 4 + 0] * 255);
d[i * 4 + 1] = (uint8_t)(((float*)data)[i * 4 + 1] * 255);
d[i * 4 + 2] = (uint8_t)(((float*)data)[i * 4 + 2] * 255);
d[i * 4 + 3] = (uint8_t)(((float*)data)[i * 4 + 3] * 255);
}
success = ilTexImage(width, height, 1, 4, IL_RGBA, IL_UNSIGNED_BYTE, &d[0]);
}
if(success != true)
{
std::cerr << "Image:" << "failed to copy image data for saving" << std::endl;
}
else
{
ilEnable(IL_FILE_OVERWRITE);
std::cout << "Image:Saving File:" << fileName.c_str() << std::endl;
ilSaveImage(fileName.c_str());
ilDisable(IL_FILE_OVERWRITE);
loadOK = true;
}
ilDeleteImages(1, &ilIm);
}
else
{
std::cerr << "Image:" << "no data in image" << std::endl;
}
return loadOK;
}
bool Image::FromFile(std::string fileName)
{
//make new deil image and load from file name
ILuint ilIm;
ilGenImages(1, &ilIm);
ilBindImage(ilIm);
bool loadedImageOK;
loadedImageOK = ilLoadImage(fileName.c_str());
if(loadedImageOK)
{
//get image info
int widthIL = ilGetInteger(IL_IMAGE_WIDTH);
int heightIL = ilGetInteger(IL_IMAGE_HEIGHT);
//convert data to B4 type and format
ilConvertImage(IL_RGBA, IL_UNSIGNED_BYTE);
Deallocate();
//copy data
uint8_t* dataPtr = ilGetData();
if(dataPtr == NULL)
{
loadedImageOK = false;
std::cerr << "Image:" << "No data for image:" << fileName << std::endl;
return false;
}
else
{
Allocate(widthIL, heightIL, RGBA8);
for(unsigned int i = 0; i < width * height * 4; i++)
{
((uint8_t*)data)[i] = dataPtr[i];
}
}
}
else
{
std::cerr << "Image:" << "Could not load image file:" << fileName << std::endl;
return false;
}
ilBindImage(0);
ilDeleteImages(1, &ilIm);
ilBindImage(ilIm);
return true;
}
void* Image::Data()
{
return data;
}
int Image::GetWidth()
{
return width;
}
int Image::GetHeight()
{
return height;
}
}//RenderEngine Namespace |
efe5cec6f206311623d23f444b42bfec540a5005 | fbe60fa0d8e888bfdcf20beb2ef062f0f24fbcbd | /Algorithms/longest-common-prefix.cpp | e8bc87c8fb43f67248618bc5ddbb1e802d8ee9d9 | [] | no_license | aman1228/LeetCode | 552e5feff8a67c05ba318efa3a8a2d121ab64636 | 76a3d6878719643cbca59643ff8e697498411498 | refs/heads/master | 2023-04-03T13:27:06.340091 | 2021-04-18T00:15:51 | 2021-04-18T00:20:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 815 | cpp | longest-common-prefix.cpp | 14. Longest Common Prefix
https://leetcode.com/problems/longest-common-prefix/
Write a function to find the longest common prefix string amongst an array of strings.
class Solution {
public:
string longestCommonPrefix(vector<string>& strs) {
return f1(strs, 0, strs.size());
}
private:
string f1(vector<string>& strs, int begin, int end) {
if (begin == end) {
return "";
}
if (begin + 1 == end) {
return strs[begin];
}
int mid = begin + (end - begin) / 2;
string a = f1(strs, begin, mid), b = f1(strs, mid, end);
string result;
int sz = min(a.size(), b.size()), i = 0;
while (i < sz and a[i] == b[i]) {
result.push_back(a[i]);
++i;
}
return result;
}
}; |
0bd5ae5c3ce699e035f948037f26c3d24ea195d0 | 5736bbbf62efa7ec2f5d4faa690d3092ec001f6e | /inc/configurations/linear_configuration.hpp | 01ca50120d041b7834818957e8c6494dfdade4d8 | [] | no_license | VeeronTen/Parameterized-radom-generator | 04c989e4aad4847e439a30bafcb7a5efb3ae3255 | 41a3bf83dc6b8193eed1f633e6e8b3562734e5a1 | refs/heads/master | 2020-03-12T02:26:55.015661 | 2018-05-09T09:53:14 | 2018-05-09T09:53:14 | 130,402,896 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 281 | hpp | linear_configuration.hpp | #pragma once
#include "configuration.hpp"
class LinearConfiguration : public Configuration {
public:
LinearConfiguration();
virtual ~LinearConfiguration();
LinearConfiguration* way_1(unsigned short firstCoeff, unsigned short lastCoeff, unsigned short coeffCount);
}; |
5c19cd1afd769fab18a8345fdc45562355022ac0 | 137946bff2f27e0dbc272daae448791eda536839 | /DirectX/Component/Light/PointLightComponent.cpp | 330ec40647b3fff478f1028fada841521d35ecc5 | [] | no_license | soelusoelu/20_10_kojin | 71d494330fa9b260d08fbd0c6b21f44158c2d505 | 051ee216288134e43f5f17f6505d9fccd8a53ef7 | refs/heads/master | 2023-01-30T20:25:10.147749 | 2020-12-07T01:29:18 | 2020-12-07T01:29:18 | 306,239,246 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,591 | cpp | PointLightComponent.cpp | #include "PointLightComponent.h"
#include "../Camera/Camera.h"
#include "../../DebugLayer/ImGuiWrapper.h"
#include "../../DirectX/DirectXInclude.h"
#include "../../Imgui/imgui.h"
#include "../../Light/LightManager.h"
#include "../../Light/PointLight.h"
#include "../../Mesh/IMeshLoader.h"
#include "../../Mesh/Material.h"
#include "../../System/Window.h"
#include "../../System/Shader/Shader.h"
#include "../../Transform/Transform3D.h"
#include "../../Utility/LevelLoader.h"
PointLightComponent::PointLightComponent(GameObject& gameObject) :
Component(gameObject),
mLightColor(ColorPalette::white),
mInnerRadius(0.5f),
mOuterRadius(1.f),
mIntensity(1.f) {
}
PointLightComponent::~PointLightComponent() = default;
void PointLightComponent::start() {
if (mLightManager) {
mLightManager->addPointLight(shared_from_this());
}
}
void PointLightComponent::finalize() {
if (mLightManager) {
mLightManager->removePointLight(shared_from_this());
}
}
void PointLightComponent::loadProperties(const rapidjson::Value& inObj) {
JsonHelper::getVector3(inObj, "color", &mLightColor);
JsonHelper::getFloat(inObj, "innerRadius", &mInnerRadius);
JsonHelper::getFloat(inObj, "outerRadius", &mOuterRadius);
JsonHelper::getFloat(inObj, "intensity", &mIntensity);
}
void PointLightComponent::drawInspector() {
ImGuiWrapper::colorEdit3("Color", mLightColor);
ImGui::SliderFloat("InnerRadius", &mInnerRadius, 0.01f, mOuterRadius);
ImGui::SliderFloat("OuterRadius", &mOuterRadius, mInnerRadius, 100.f);
ImGui::SliderFloat("Intensity", &mIntensity, 0.f, 10.f);
}
void PointLightComponent::draw(const Camera& camera, const PointLight& pointLight) const {
//auto scale = Matrix4::createScale(transform().getScale() * mOuterRadius / pointLight.radius);
//auto trans = Matrix4::createTranslation(transform().getPosition());
//auto world = scale * trans;
//auto shader = pointLight.shader;
////シェーダーのコンスタントバッファーに各種データを渡す
//PointLightConstantBuffer cb;
//cb.wvp = world * camera.getViewProjection();
//cb.worldPos = transform().getPosition();
//cb.cameraPos = camera.getPosition();
//cb.windowSize = Vector2(Window::width(), Window::height());
//cb.diffuseColor = mLightColor;
//cb.innerRadius = mInnerRadius;
//cb.outerRadius = mOuterRadius;
//cb.intensity = mIntensity;
////シェーダーにデータ転送
//shader->transferData(&cb, sizeof(cb));
//auto mesh = pointLight.mesh;
//auto mats = pointLight.materials;
////マテリアルの数だけ、それぞれのマテリアルのインデックスバッファ-を描画
//for (size_t i = 0; i < mats.size(); i++) {
// //使用されていないマテリアル対策
// if (mats[i]->numIndices == 0) {
// continue;
// }
// //インデックスバッファーをセット
// mesh->getVertexArray()->setIndexBuffer(i);
// //プリミティブをレンダリング
// DirectX::instance().drawIndexed(mats[i]->numIndices);
//}
}
void PointLightComponent::setLightColor(const Vector3& color) {
mLightColor = color;
}
void PointLightComponent::setInnerRadius(float radius) {
mInnerRadius = radius;
}
void PointLightComponent::setOuterRadius(float radius) {
mOuterRadius = radius;
}
void PointLightComponent::setIntensity(float value) {
mIntensity = value;
}
void PointLightComponent::setLightManager(LightManager* manager) {
mLightManager = manager;
}
|
076a44b1bbcec7354a493281850be6432ef6bba4 | 8c888adfee823b228e1686155e9d2fa483927637 | /Aniware/Aniware/Globals/Globals.cpp | f2f885f23f229eef3a0c00921052a509e2611ab8 | [] | no_license | younasiqw/Aniware | f9bb89073545217100b6a05f038c8ff483f93921 | bccc6c560d6d0cb4401dc8d7ec2e88d15cf3f9a7 | refs/heads/master | 2020-04-19T22:33:44.166523 | 2019-01-30T19:45:49 | 2019-01-30T19:45:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | cpp | Globals.cpp | #include "Globals.h"
namespace Aniware {
SDK::CUserCmd * g_pCmd;
SDK::CBaseEntity * g_pLoc;
SDK::CSettings * g_pSettings;
} |
4edafbfaf8e941037396a6fca549d184ba77dfde | 879fb3581f03b5c17dd90c68b45751712fbcd671 | /lib/slic/sift_keypoints.h | 2f531e9a416993577eb2e302138045eb04b5cf04 | [] | no_license | ivilab/kjb | 9f970e1ce16188f72f0edb34394e474ca83a9f2b | 238be8bc3c9018d4365741e56310067a52b715f9 | refs/heads/master | 2020-06-14T07:33:17.166805 | 2019-07-30T16:47:29 | 2019-07-30T16:47:29 | 194,946,614 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,183 | h | sift_keypoints.h | /* $Id: sift_keypoints.h 15688 2013-10-14 08:46:32Z predoehl $
*/
#ifndef SLIC_SIFT_KEYPOINTS_INCLUDED
#define SLIC_SIFT_KEYPOINTS_INCLUDED
#include "m/m_gen.h"
#include "i/i_type.h"
#include "i/i_float.h"
#ifdef __cplusplus
extern "C" {
#ifdef COMPILING_CPLUSPLUS_SOURCE
namespace kjb_c {
#endif
#endif
#include "i/i_type.h"
#include "i/i_float.h"
typedef struct SIFT_kp
{
int num_keypoints;
float row;
float col;
float scale;
float orientation;
Int_vector *elements;
}
SIFT_kp;
typedef struct SIFT_kp_list
{
int length;
SIFT_kp **elements;
}
SIFT_kp_list;
int get_target_SIFT_kp(SIFT_kp **kp,
float row,
float col,
float scale,
float orientation,
Int_vector* vp);
int get_target_SIFT_Kp_list(SIFT_kp_list **sift_kp_list_pp, int num_elements);
int read_SIFT_kp_list(SIFT_kp_list **sift_kp_list_pp, char *keypoint_filename);
int free_SIFT_kp_list(SIFT_kp_list *sift_kp_p);
int free_SIFT_kp(SIFT_kp *sift_kp);
int draw_keypoints_on_image(char *image_filename, char *keypoints_filename);
#ifdef __cplusplus
#ifdef COMPILING_CPLUSPLUS_SOURCE
}
#endif
}
#endif
#endif
|
1a10483ed9679975a4ca272fd9ad82487e1802fe | 17c87e23e01e074c684619ff0e56706b407f0b23 | /omi-1.0.8/samples/Providers/Color/stubs.cpp | 8480de795b73f4d365438c86136747dd28bfa1ff | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | HuaweiSwitch/OMI | 8856be28d0dbe22650dc70635e2749a908802c7d | bca42b3388f0e97d21fd1e872a949fa4032adbff | refs/heads/master | 2021-01-10T17:51:50.818745 | 2016-03-31T09:15:47 | 2016-03-31T09:16:07 | 55,116,218 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,750 | cpp | stubs.cpp | /*
**==============================================================================
**
** Open Management Infrastructure (OMI)
**
** Copyright (c) Microsoft 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
**
** THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
** KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
** WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
** MERCHANTABLITY OR NON-INFRINGEMENT.
**
** See the Apache 2 License for the specific language governing permissions
** and limitations under the License.
**
**==============================================================================
*/
/* @migen@ */
/*
**==============================================================================
**
** WARNING: THIS FILE WAS AUTOMATICALLY GENERATED. PLEASE DO NOT EDIT.
**
**==============================================================================
*/
#include <MI.h>
#include "module.h"
#include "ColorBase_Class_Provider.h"
#include "Color_Class_Provider.h"
using namespace mi;
MI_EXTERN_C void MI_CALL ColorBase_Load(
ColorBase_Self** self,
MI_Module_Self* selfModule,
MI_Context* context)
{
MI_Result r = MI_RESULT_OK;
Context ctx(context, &r);
ColorBase_Class_Provider* prov = new ColorBase_Class_Provider((Module*)selfModule);
prov->Load(ctx);
if (MI_RESULT_OK != r)
{
delete prov;
MI_PostResult(context, r);
return;
}
*self = (ColorBase_Self*)prov;
MI_PostResult(context, MI_RESULT_OK);
}
MI_EXTERN_C void MI_CALL ColorBase_Unload(
ColorBase_Self* self,
MI_Context* context)
{
MI_Result r = MI_RESULT_OK;
Context ctx(context, &r);
ColorBase_Class_Provider* prov = (ColorBase_Class_Provider*)self;
prov->Unload(ctx);
delete ((ColorBase_Class_Provider*)self);
MI_PostResult(context, r);
}
MI_EXTERN_C void MI_CALL ColorBase_EnumerateInstances(
ColorBase_Self* self,
MI_Context* context,
const MI_Char* nameSpace,
const MI_Char* className,
const MI_PropertySet* propertySet,
MI_Boolean keysOnly,
const MI_Filter* filter)
{
ColorBase_Class_Provider* cxxSelf =((ColorBase_Class_Provider*)self);
Context cxxContext(context);
cxxSelf->EnumerateInstances(
cxxContext,
nameSpace,
__PropertySet(propertySet),
__bool(keysOnly),
filter);
}
MI_EXTERN_C void MI_CALL ColorBase_GetInstance(
ColorBase_Self* self,
MI_Context* context,
const MI_Char* nameSpace,
const MI_Char* className,
const ColorBase* instanceName,
const MI_PropertySet* propertySet)
{
ColorBase_Class_Provider* cxxSelf =((ColorBase_Class_Provider*)self);
Context cxxContext(context);
ColorBase_Class cxxInstanceName(instanceName, true);
cxxSelf->GetInstance(
cxxContext,
nameSpace,
cxxInstanceName,
__PropertySet(propertySet));
}
MI_EXTERN_C void MI_CALL ColorBase_CreateInstance(
ColorBase_Self* self,
MI_Context* context,
const MI_Char* nameSpace,
const MI_Char* className,
const ColorBase* newInstance)
{
ColorBase_Class_Provider* cxxSelf =((ColorBase_Class_Provider*)self);
Context cxxContext(context);
ColorBase_Class cxxNewInstance(newInstance, false);
cxxSelf->CreateInstance(cxxContext, nameSpace, cxxNewInstance);
}
MI_EXTERN_C void MI_CALL ColorBase_ModifyInstance(
ColorBase_Self* self,
MI_Context* context,
const MI_Char* nameSpace,
const MI_Char* className,
const ColorBase* modifiedInstance,
const MI_PropertySet* propertySet)
{
ColorBase_Class_Provider* cxxSelf =((ColorBase_Class_Provider*)self);
Context cxxContext(context);
ColorBase_Class cxxModifiedInstance(modifiedInstance, false);
cxxSelf->ModifyInstance(
cxxContext,
nameSpace,
cxxModifiedInstance,
__PropertySet(propertySet));
}
MI_EXTERN_C void MI_CALL ColorBase_DeleteInstance(
ColorBase_Self* self,
MI_Context* context,
const MI_Char* nameSpace,
const MI_Char* className,
const ColorBase* instanceName)
{
ColorBase_Class_Provider* cxxSelf =((ColorBase_Class_Provider*)self);
Context cxxContext(context);
ColorBase_Class cxxInstanceName(instanceName, true);
cxxSelf->DeleteInstance(cxxContext, nameSpace, cxxInstanceName);
}
MI_EXTERN_C void MI_CALL Color_Load(
Color_Self** self,
MI_Module_Self* selfModule,
MI_Context* context)
{
MI_Result r = MI_RESULT_OK;
Context ctx(context, &r);
Color_Class_Provider* prov = new Color_Class_Provider((Module*)selfModule);
prov->Load(ctx);
if (MI_RESULT_OK != r)
{
delete prov;
MI_PostResult(context, r);
return;
}
*self = (Color_Self*)prov;
MI_PostResult(context, MI_RESULT_OK);
}
MI_EXTERN_C void MI_CALL Color_Unload(
Color_Self* self,
MI_Context* context)
{
MI_Result r = MI_RESULT_OK;
Context ctx(context, &r);
Color_Class_Provider* prov = (Color_Class_Provider*)self;
prov->Unload(ctx);
delete ((Color_Class_Provider*)self);
MI_PostResult(context, r);
}
MI_EXTERN_C void MI_CALL Color_EnumerateInstances(
Color_Self* self,
MI_Context* context,
const MI_Char* nameSpace,
const MI_Char* className,
const MI_PropertySet* propertySet,
MI_Boolean keysOnly,
const MI_Filter* filter)
{
Color_Class_Provider* cxxSelf =((Color_Class_Provider*)self);
Context cxxContext(context);
cxxSelf->EnumerateInstances(
cxxContext,
nameSpace,
__PropertySet(propertySet),
__bool(keysOnly),
filter);
}
MI_EXTERN_C void MI_CALL Color_GetInstance(
Color_Self* self,
MI_Context* context,
const MI_Char* nameSpace,
const MI_Char* className,
const Color* instanceName,
const MI_PropertySet* propertySet)
{
Color_Class_Provider* cxxSelf =((Color_Class_Provider*)self);
Context cxxContext(context);
Color_Class cxxInstanceName(instanceName, true);
cxxSelf->GetInstance(
cxxContext,
nameSpace,
cxxInstanceName,
__PropertySet(propertySet));
}
MI_EXTERN_C void MI_CALL Color_CreateInstance(
Color_Self* self,
MI_Context* context,
const MI_Char* nameSpace,
const MI_Char* className,
const Color* newInstance)
{
Color_Class_Provider* cxxSelf =((Color_Class_Provider*)self);
Context cxxContext(context);
Color_Class cxxNewInstance(newInstance, false);
cxxSelf->CreateInstance(cxxContext, nameSpace, cxxNewInstance);
}
MI_EXTERN_C void MI_CALL Color_ModifyInstance(
Color_Self* self,
MI_Context* context,
const MI_Char* nameSpace,
const MI_Char* className,
const Color* modifiedInstance,
const MI_PropertySet* propertySet)
{
Color_Class_Provider* cxxSelf =((Color_Class_Provider*)self);
Context cxxContext(context);
Color_Class cxxModifiedInstance(modifiedInstance, false);
cxxSelf->ModifyInstance(
cxxContext,
nameSpace,
cxxModifiedInstance,
__PropertySet(propertySet));
}
MI_EXTERN_C void MI_CALL Color_DeleteInstance(
Color_Self* self,
MI_Context* context,
const MI_Char* nameSpace,
const MI_Char* className,
const Color* instanceName)
{
Color_Class_Provider* cxxSelf =((Color_Class_Provider*)self);
Context cxxContext(context);
Color_Class cxxInstanceName(instanceName, true);
cxxSelf->DeleteInstance(cxxContext, nameSpace, cxxInstanceName);
}
MI_EXTERN_C MI_SchemaDecl schemaDecl;
void MI_CALL Load(MI_Module_Self** self, struct _MI_Context* context)
{
*self = (MI_Module_Self*)new Module;
MI_Context_PostResult(context, MI_RESULT_OK);
}
void MI_CALL Unload(MI_Module_Self* self, struct _MI_Context* context)
{
Module* module = (Module*)self;
delete module;
MI_Context_PostResult(context, MI_RESULT_OK);
}
MI_EXTERN_C MI_EXPORT MI_Module* MI_MAIN_CALL MI_Main(MI_Server* server)
{
/* WARNING: THIS FUNCTION AUTOMATICALLY GENERATED. PLEASE DO NOT EDIT. */
extern MI_Server* __mi_server;
static MI_Module module;
__mi_server = server;
module.flags |= MI_MODULE_FLAG_STANDARD_QUALIFIERS;
module.flags |= MI_MODULE_FLAG_CPLUSPLUS;
module.flags |= MI_MODULE_FLAG_FILTER_SUPPORT;
module.charSize = sizeof(MI_Char);
module.version = MI_VERSION;
module.generatorVersion = MI_MAKE_VERSION(1,0,0);
module.schemaDecl = &schemaDecl;
module.Load = Load;
module.Unload = Unload;
return &module;
}
|
fe4227e50e8d926bd872b85548192df7460d2da4 | f1bec5ba147bad6192a6dbaea4e3c68e5672b13d | /Qt飞机大战/planeWar/mainscene.h | d9b65c365238befdacf7799136c6d15191d5b6c7 | [] | no_license | lc168/myqt | 08bf8445812fe091a6a0af3161099a32505768e7 | 86a8c0e9daadb20034e7c49ab0881b5a2f2a811d | refs/heads/master | 2020-12-08T13:40:04.988508 | 2020-03-18T08:26:24 | 2020-03-18T08:26:24 | 232,995,482 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 906 | h | mainscene.h | #ifndef MAINSCENE_H
#define MAINSCENE_H
#include <QTimer>
#include "config.h"
#include <QWidget>
#include "map.h"
#include "heroplane.h"
#include "bullet.h"
#include "enemyplane.h"
#include "bomb.h"
class MainScene : public QWidget
{
Q_OBJECT
public:
MainScene(QWidget *parent = 0);
~MainScene();
void initScene();
QTimer m_Timer;
//启动游戏 用于启动定时器对象
void playGame();
//更新坐标
void updatePosition();
//绘图事件
void paintEvent(QPaintEvent *event);
//地图对象
Map m_map;
//飞机对象
HeroPlane m_hero;
//鼠标移动事件
void mouseMoveEvent(QMouseEvent *event);
//敌机出场
void enemyToScene();
//敌机数组
EnemyPlane m_enemys[ENEMY_NUM];
//敌机出场间隔记录
int m_recorder;
// //测试子弹代码
// Bullet temp_bullet;
void collisionDetection();
//爆炸数组
Bomb m_bombs[BOMB_NUM];
};
#endif // MAINSCENE_H
|
146eaba0150e827a9de53e37ad63ead61688dc9a | fc0a2a16b31e105c6a41e2f29e14feedabbb59e0 | /WaterPuzzleSolver/flask.h | 918028116d1c9d7580bfcd1d7c8358c87f4c0cee | [] | no_license | Apolerag/container | a42d4dfca7d6e025cfa0e94461e07089982f7198 | c789155841cd2a8e0014bb3c41e9ffc5442fdd80 | refs/heads/master | 2021-02-16T03:33:38.083989 | 2020-10-31T14:46:45 | 2020-10-31T14:46:45 | 244,962,435 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 267 | h | flask.h | #pragma once
#include<stack>
using namespace std;
template<class T>
class flask : public stack<T>
{
private:
int mMaxSize;
public:
flask(const int maxSize):mMaxSize(maxSize){}
~flask(){}
bool full()
{
return (mMaxSize == this->size()) ? true : false;
}
};
|
acc3639ec8cde9e4c36f0c4eeccbff037b9d4e6c | 6f33ccb9a69b7d42713d7b0f3cb6e940605c2ac8 | /modules/fsmem/include/fsmem/policies/extended_memory_tracking_policy.h | a429a158f28c79aee686b03fed478a2370d01a2a | [
"MIT"
] | permissive | hfarrow/Fissura | 336774f153cb154f0ac867fe8ef8a6e7349fae8a | 0ccc319b55f8dc99af712c95580342430444bc29 | refs/heads/master | 2021-01-25T10:16:44.526322 | 2018-10-16T15:05:26 | 2018-10-16T15:05:26 | 11,361,676 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,831 | h | extended_memory_tracking_policy.h | #ifndef FS_EXTENDED_MEMORY_TRACKING_POLICY_H
#define FS_EXTENDED_MEMORY_TRACKING_POLICY_H
#include "fsmem/debug/memory.h"
#include "fscore/types.h"
#include "fsmem/allocators/stl_allocator.h"
#include "fsmem/debug/memory_reporting.h"
#include "fsmem/debug/memory_logging.h"
#include "fsmem/allocation_info.h"
namespace fs
{
class MemoryProfileExtended : public MemoryProfileSimple
{
public:
SharedPtr<AllocationMap> pAllocationMap;
};
class ExtendedMemoryTracking
{
public:
ExtendedMemoryTracking();
void onAllocation(void* ptr, size_t size, size_t alignment, const SourceInfo& info);
void onDeallocation(void* ptr, size_t size);
inline size_t getNumAllocations() const { return _profile.numAllocations; }
inline size_t getAllocatedSize() const { return _profile.usedSize; }
inline SharedPtr<AllocationMap> getAllocationMap() const { return _profile.pAllocationMap; }
void reset();
template<typename Arena>
SharedPtr<ArenaReport> generateArenaReport(Arena& arena);
protected:
u32 _nextId;
MemoryProfileExtended _profile;
};
template<typename Arena>
SharedPtr<ArenaReport> ExtendedMemoryTracking::generateArenaReport(Arena& arena)
{
return memory::generateExtendedArenaReport(arena, *this);
}
class FullMemoryTracking : public ExtendedMemoryTracking
{
public:
void onAllocation(void* ptr, size_t size, size_t alignment, const SourceInfo& info);
template<typename Arena>
SharedPtr<ArenaReport> generateArenaReport(Arena& arena);
};
template<typename Arena>
SharedPtr<ArenaReport> FullMemoryTracking::generateArenaReport(Arena& arena)
{
return memory::generateFullArenaReport(arena, *this);
}
}
#endif
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.