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
6df3d9ed50bad1dcf3c725e3c8443513a03ea0d6
04055826bd19f255fe2c38f2dfec9d84b016b2aa
/com level/source/cppfiles/howtoplay.cpp
a87df1e4fba3bb0dd2cbf4ca6d9963099246312b
[]
no_license
feisabel/Labirinth
d2f2b4c7de511b86abf30b583e3acf38d400ba85
15ed752cf4539f4c35b65eb9584e84939ecbd5e1
refs/heads/master
2021-01-23T03:21:25.529224
2014-11-25T02:43:22
2014-11-25T02:43:22
86,070,522
0
0
null
null
null
null
UTF-8
C++
false
false
1,523
cpp
howtoplay.cpp
#include "../menu.h" #include "../classmain.h" #include "../scene_manager.h" howToPlay::howToPlay() //Construtor padrão { if (!background.loadFromFile("resources/images/how_to_play1.png")) // carrega imagem da textura { std::cout << "erro de textura" << std::endl; return; } spriteBackground.setTexture(background); } void howToPlay::redraw() { b_redraw = true; // alterei aqui if (b_redraw) { window.clear(sf::Color::Black); window.draw(spriteBackground); window.display(); b_redraw = false; } } void howToPlay::update() { // Checa todos os eventos da janela que foram ativados desde a última iteração do loop. sf::Event event; while(window.pollEvent(event)) { if (event.type == sf::Event::Closed) // fechar janela Main::quit = true; if (event.type == sf::Event::KeyPressed) // Fecha o jogo caso aperte ESC. { if (event.key.code == sf::Keyboard::Escape) { Main::quit = true; } } if (event.type == sf::Event::MouseButtonPressed) { if (event.mouseButton.button == sf::Mouse::Left) // caso tenha apertado o botão bach { if(event.mouseButton.x > 12 && event.mouseButton.x < 68 && event.mouseButton.y > 508 && event.mouseButton.y < 532) { SceneManager::change_scene(Main::menu); } } } } }
d90c2e3ce90cc2c2df724c77aaa686d5c15a0572
1c9d04a9352e6d86480f9e0947f930db042d8e80
/src/libs/config/qa/qa_config_change_handler.cpp
615c9b8fcb432a2161fac095cdf23d0d62fc0332
[]
no_license
fawkesrobotics/fawkes
2c9de0cdb1dfcc951806434fe08458de5a670c8a
ad8adc34f9c73ace1e6a6517624f7c7089f62832
refs/heads/master
2023-08-31T01:36:15.690865
2023-07-04T17:05:55
2023-07-04T17:05:55
1,030,824
62
26
null
2023-07-04T17:05:57
2010-10-28T04:22:55
C++
UTF-8
C++
false
false
5,390
cpp
qa_config_change_handler.cpp
/*************************************************************************** * qa_config_change_handler.cpp - QA for configuration change handlers * * Created: Mon Nov 12 19:11:06 2007 * Copyright 2006-2007 Tim Niemueller [www.niemueller.de] * ****************************************************************************/ /* 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 2 of the License, or * (at your option) any later version. A runtime exception applies to * this software (see LICENSE.GPL_WRE file mentioned below for details). * * 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 Library General Public License for more details. * * Read the full text in the LICENSE.GPL_WRE file in the doc directory. */ /// @cond QA #include <config/sqlite.h> #include <cstdio> #include <iostream> using namespace std; using namespace fawkes; class QAConfigChangeHandler : public ConfigurationChangeHandler { public: QAConfigChangeHandler() : ConfigurationChangeHandler("/testing") { } virtual void config_tag_changed(const char *new_tag) { printf("CCH: New tag '%s'\n", new_tag); } virtual void config_value_changed(const Configuration::ValueIterator *v) { if (v->is_string()) { printf("CCH: String '%s' changed to %s\n", v->path(), v->get_string().c_str()); } else if (v->is_bool()) { printf("CCH: Bool '%s' changed to %i\n", v->path(), v->get_bool()); } else if (v->is_int()) { printf("CCH: Integer '%s' changed to %i\n", v->path(), v->get_int()); } else if (v->is_uint()) { printf("CCH: Unsigned Integer '%s' changed to %u\n", v->path(), v->get_uint()); } else if (v->is_float()) { printf("CCH: Float '%s' changed to %f\n", v->path(), v->get_float()); } } virtual void config_comment_changed(const Configuration::ValueIterator *v) { printf("CCH: Comment of '%s' changed to %s\n", v->path(), v->get_comment().c_str()); } virtual void config_value_erased(const char *path) { printf("CCH: Value '%s' erased\n", path); } }; int main(int argc, char **argv) { SQLiteConfiguration *config = new SQLiteConfiguration(CONFDIR); QAConfigChangeHandler qach; config->add_change_handler(&qach); try { cout << "Loading configuration..." << flush; config->load("qa.db", "qa_defaults.db"); cout << "done" << endl; } catch (CouldNotOpenConfigException &e) { cout << "failed" << endl; e.print_trace(); } try { float of = 5.234; cout << "[FLOAT] set f=" << of << "..." << endl; config->set_float("/testing/float", of); cout << "[FLOAT] get..." << endl; float f = config->get_float("/testing/float"); printf("done, f=%f\n", f); } catch (ConfigurationException &e) { cout << "failed" << endl; e.print_trace(); } try { unsigned int ou = 6; cout << "[UINT] set u=" << ou << "..." << endl; config->set_uint("/testing/uint", ou); cout << "[UINT] get..." << endl; unsigned int u = config->get_uint("/testing/uint"); printf("done, u=%u\n", u); } catch (ConfigurationException &e) { cout << "failed" << endl; e.print_trace(); } try { int oi = -7; cout << "[INT] set i=" << oi << "..." << endl; config->set_int("/testing/int", oi); cout << "[INT] get..." << endl; int i = config->get_int("/testing/int"); printf("done, i=%i\n", i); } catch (ConfigurationException &e) { cout << "failed" << endl; e.print_trace(); } try { bool ob = true; cout << "[BOOL] set b=" << ob << "..." << endl; config->set_bool("/testing/bool", ob); cout << "[BOOL] get..." << endl; bool b = config->get_bool("/testing/bool"); printf("done, b=%s\n", (b ? "true" : "false")); } catch (ConfigurationException &e) { cout << "failed" << endl; e.print_trace(); } try { string os = "This ain't no paradoxon"; cout << "[STRING] set s='" << os << "'..." << endl; config->set_string("/testing/string", os); cout << "[STRING] get..." << endl; string s = config->get_string("/testing/string"); printf("done, s='%s'\n", s.c_str()); } catch (ConfigurationException &e) { cout << "failed" << endl; e.print_trace(); } try { cout << "[EXIST] Checking if test string exists..." << endl; if (config->exists("/testing/string")) { cout << "success"; } else { cout << "failed"; } cout << endl; } catch (ConfigurationException &e) { cout << "failed" << endl; e.print_trace(); } try { string os = "This ain't no paradoxon"; cout << "[LONGSTRING] set s='" << os << "'..." << endl; config->set_string("/testing/veryveryveryverylongstring", os); cout << "[LONGSTRING] get..." << endl; string s = config->get_string("/testing/veryveryveryverylongstring"); printf("done, s='%s'\n", s.c_str()); } catch (ConfigurationException &e) { cout << "failed" << endl; e.print_trace(); } cout << "[ERASE] erasing all values" << endl; config->erase("/testing/float"); config->erase("/testing/uint"); config->erase("/testing/int"); config->erase("/testing/bool"); config->erase("/testing/string"); config->erase("/testing/veryveryveryverylongstring"); config->rem_change_handler(&qach); delete config; return 0; } /// @endcond
1dce0beda52b9b2c6e19c7357f2b84b5b0bfebe5
27db716ae91a2ffb94d947b8bc1b87399a1ca333
/adamO.cpp
aae7983394b6af859f321fe4bc18253e536e7d3d
[]
no_license
nlarson2/F-TSW-KOD-R-2
41fb93c891d3a6e4874c629a6e058ebbc67d3ce5
46af6087f1fe296bd4673e9a9ac3c0021023175a
refs/heads/master
2020-04-22T20:02:46.087648
2019-05-09T08:29:57
2019-05-09T08:29:57
170,628,731
1
1
null
2019-05-09T01:58:44
2019-02-14T04:47:18
C++
UTF-8
C++
false
false
13,573
cpp
adamO.cpp
#ifndef ADAMO_CPP #define ADAMO_CPP // Adam Ostlund // This file is for displaying the User Interface. // Last Update: May 3, 2019 #include "adamO.h" #include "nicholasJo.h" #include "brandonH.h" #include <X11/Xlib.h> #include <X11/Xutil.h> #include <GL/gl.h> #include <GL/glu.h> #include <GL/glx.h> #include "fonts.h" #include <string> extern NJordGlobal njG; extern BHglobal bhg; AOglobal::AOglobal() { Boxes box[11] = { Boxes(BOX), Boxes(END_TURN), Boxes(BOX), Boxes(BOX), Boxes(BOX), Boxes(BOX), Boxes(BOX), Boxes(BOX), Boxes(BOX), Boxes(BOX), Boxes(BOX) }; (void)box; BattleBoxes bbox[3] = { BattleBoxes(BATTLE), BattleBoxes(BATTLE), BattleBoxes(BATTLE) }; (void)bbox; AllyBoxes abox[4] = { AllyBoxes(ALLY), AllyBoxes(ALLY), AllyBoxes(ALLY) }; (void)abox; } AOglobal aog; Boxes::Boxes() { } BattleBoxes::BattleBoxes() { } AllyBoxes::AllyBoxes() { } Boxes::Boxes(stateID sID) { ID = sID; } BattleBoxes::BattleBoxes(stateID sID) { ID = sID; } AllyBoxes::AllyBoxes(stateID sID) { ID = sID; } //================================// //--------- BOX POSITIONS --------// //================================// void uiboxes::posBoxes() { // Character Frame Box boxes[0].width = (xres*0.0625) + 35; boxes[0].height = (yres/6); boxes[0].center.x = ((xres*11)/120); boxes[0].center.y = (yres/6); // // Character Pane Box boxes[1].width = (xres*0.0625) + 30; boxes[1].height = (yres/6) - 5; boxes[1].center.x = (xres*11)/120; boxes[1].center.y = (yres/6); // // Character Image Box boxes[2].width = 75; boxes[2].height = 75; boxes[2].center.x = 110; boxes[2].center.y = 195; // // Character Info Background Box boxes[3].width = 75; boxes[3].height = 40; boxes[3].center.x = 110; boxes[3].center.y = 65; // // Character Name Box boxes[4].width = 70; boxes[4].height = 10; boxes[4].center.x = 110; boxes[4].center.y = 90; // // Character Health Bar Box boxes[5].width = 70; boxes[5].height = 10; boxes[5].center.x = 110; boxes[5].center.y = 65; // // Character Movements Left Box boxes[6].width = 70; boxes[6].height = 10; boxes[6].center.x = 110; boxes[6].center.y = 40; // // Character Gold Count Background boxes[7].width = 75; boxes[7].height = 27.5; boxes[7].center.x = xres-75; boxes[7].center.y = 27.5; // // Character GOLD boxes[8].width = 70; boxes[8].height = 10; boxes[8].center.x = xres-75; boxes[8].center.y = 40; // // Character Gold Count boxes[9].width = 70; boxes[9].height = 10; boxes[9].center.x = xres-75; boxes[9].center.y = 15; // } void battleboxes::posBattleBoxes(int x) { // Battle Mode Box btboxes[0].width = 75; btboxes[0].height = 27.5; btboxes[0].center.x = xres - x; btboxes[0].center.y = yres - 27.5; // // Enemy Name Box btboxes[1].width = 70; btboxes[1].height = 10; btboxes[1].center.x = xres - x; btboxes[1].center.y = yres - 15; // // Enemy Health Bar Box btboxes[2].width = 70; btboxes[2].height = 10; btboxes[2].center.x = xres - x; btboxes[2].center.y = yres - 40; // } void allyboxes::posAllyBoxes(int y) { // Ally Background Box alboxes[0].width = 75; alboxes[0].height = 40; alboxes[0].center.x = 75; alboxes[0].center.y = yres - y - 12.5; // // Ally Name Box alboxes[1].width = 70; alboxes[1].height = 10; alboxes[1].center.x = 75; alboxes[1].center.y = yres - y + 12.5; // // Ally Health Bar Box alboxes[2].width = 70; alboxes[2].height = 10; alboxes[2].center.x = 75; alboxes[2].center.y = yres - y - 12.5; // // Ally Turns Box alboxes[3].width = 70; alboxes[3].height = 10; alboxes[3].center.x = 75; alboxes[3].center.y = yres - y - 37.5; // } //================================// //-------- DRAW FUNCTIONS --------// //================================// void uiboxes::drawBoxes() { glPushMatrix(); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(0, xres, 0, yres, -1, 1); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); for (int i = 0; i < 10; i++) { Boxes *s; glColor3ub(90, 140, 90); if (i > 3 || i == 1) glColor3ub(40,40,40); if ( i == 2 || i == 3 || i == 0 || i == 7) glColor3ub(130,130,130); if (i == 4) glColor3ub(20, 20, 100); s = &boxes[i]; glPushMatrix(); glLoadIdentity(); glTranslatef(s->center.x, s->center.y, 0); float w, h; w = s->width; h = s->height; glBegin(GL_QUADS); glVertex2i(-w, -h); glVertex2i(-w, h); glVertex2i( w, h); glVertex2i( w, -h); glEnd(); glPopMatrix(); } Rect r; Player *player = Player::getInstance(); r.bot = 78; r.left = 110; const char* pname = njG.name.c_str(); ggprint16(&r, 16, 0xffffffff, pname); r.bot = 53; r.left = 90; string hc; hc = std::to_string((int)player->getCurrentHealth()); if (player->getCurrentHealth() <= player->getMaxHealth() / 2) ggprint16(&r, 16, 0xfff00000, hc.c_str()); else ggprint16(&r, 16, 0xffffffff, hc.c_str()); r.bot = 53; r.left = 130; string hm; hm = std::to_string((int)player->getMaxHealth()); if (player->getCurrentHealth() <= player->getMaxHealth() / 2) ggprint16(&r, 16, 0xfff00000, hm.c_str()); else ggprint16(&r, 16, 0xffffffff, hm.c_str()); r.bot = 53; r.left = 110; ggprint16(&r, 16, 0xffffffff, "/"); r.bot = 28; r.left = 110; string mv = to_string(player->moveRange); string mv2 = mv; ggprint16(&r, 16, 0xffffffff, mv2.c_str()); r.bot = 28; r.left = xres - 75; ggprint16(&r, 16, 0xffffffff, "Gold"); r.bot = 3; r.left = xres - 75; string gold = to_string(player->score); ggprint16(&r, 16, 0xffffff00, gold.c_str()); glPushMatrix(); glTranslatef(boxes[2].center.x, boxes[2].center.y, 0); glColor3ub(250,250,250); glBindTexture(GL_TEXTURE_2D, player->image); glBegin(GL_QUADS); glTexCoord2f(0.0f, 1.0f); glVertex2i(-boxes[2].width+5,-boxes[2].width+5); glTexCoord2f(0.0f, 0.0f); glVertex2i(-boxes[2].width+5, boxes[2].width-5); glTexCoord2f(1.0f, 0.0f); glVertex2i( boxes[2].width-5, boxes[2].width-5); glTexCoord2f(1.0f, 1.0f); glVertex2i( boxes[2].width-5,-boxes[2].width+5); glEnd(); glBindTexture(GL_TEXTURE_2D, 0); glPopMatrix(); glPopMatrix(); } void battleboxes::drawBattleBoxes(int enemy) { glPushMatrix(); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(0, xres, 0, yres, -1, 1); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); for (int j = 0; j < njG.enemyCount/njG.enemyArrayCount; j++) { posBattleBoxes(75 + (75*j*2)); if(1) { for (int i = 0; i < 3; i++) { BattleBoxes *s; glColor3ub(90, 140, 90); if (i == 0) glColor3ub(130,130,130); if (i == 1) glColor3ub(100, 20, 20); if (i == 2) glColor3ub(40,40,40); s = &btboxes[i]; glPushMatrix(); glLoadIdentity(); glTranslatef(s->center.x, s->center.y, 0); float w, h; w = s->width; h = s->height; glBegin(GL_QUADS); glVertex2i(-w, -h); glVertex2i(-w, h); glVertex2i( w, h); glVertex2i( w, -h); glEnd(); glPopMatrix(); } } glPopMatrix(); glPushMatrix(); glLoadIdentity(); glOrtho(0, xres, 0, yres, -1, 1); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); Rect r; r.bot = yres - 27; r.left = xres - 75 - (150*(j)); ggprint16(&r, 16, 0xffffffff, njG.enemies[enemy][j].combatType.c_str()); r.bot = yres - 52; r.left = xres - 95 - (150*(j)); string ehc; ehc = std::to_string((int)njG.enemies[enemy][j].getCurrentHealth()); if (njG.enemies[enemy][j].getCurrentHealth() <= njG.enemies[enemy][j].getMaxHealth() / 2) ggprint16(&r, 16, 0xfff00000, ehc.c_str()); else ggprint16(&r, 16, 0xffffffff, ehc.c_str()); r.bot = yres - 52; r.left = xres - 55 - (150*(j)); string ehm; ehm = std::to_string((int)njG.enemies[enemy][j].getMaxHealth()); if (njG.enemies[enemy][j].getCurrentHealth() <= njG.enemies[enemy][j].getMaxHealth() / 2) ggprint16(&r, 16, 0xfff00000, ehm.c_str()); else ggprint16(&r, 16, 0xffffffff, ehm.c_str()); r.bot = yres - 52; r.left = xres - 75 - (150*(j)); ggprint16(&r, 16, 0xffffffff, "/"); glPopMatrix(); } } void allyboxes::drawAllyBoxes() { glPushMatrix(); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(0, xres, 0, yres, -1, 1); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); for (int j = 0; j < njG.allies->count; j++) { posAllyBoxes(387.5 + (40*j*2)); if(1) { for (int i = 0; i < 4; i++) { AllyBoxes *s; glColor3ub(90, 140, 90); if (i == 0) glColor3ub(130,130,130); if (i == 1) glColor3ub(20, 100, 20); if (i >= 2) glColor3ub(40,40,40); s = &alboxes[i]; glPushMatrix(); glLoadIdentity(); glTranslatef(s->center.x, s->center.y, 0); float w, h; w = s->width; h = s->height; glBegin(GL_QUADS); glVertex2i(-w, -h); glVertex2i(-w, h); glVertex2i( w, h); glVertex2i( w, -h); glEnd(); glPopMatrix(); } } glPopMatrix(); glPushMatrix(); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(0, xres, 0, yres, -1, 1); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); Rect r; r.bot = alboxes[1].center.y - 12.5; r.left = 75; ggprint16(&r, 16, 0xffffffff, njG.allies[j].combatType.c_str()); r.bot = alboxes[2].center.y - 12.5; r.left = 55; string ahc; ahc = std::to_string((int)njG.allies[j].getCurrentHealth()); if (njG.allies[j].getCurrentHealth() <= njG.allies[j].getMaxHealth() / 2) ggprint16(&r, 16, 0xfff00000, ahc.c_str()); else ggprint16(&r, 16, 0xffffffff, ahc.c_str()); r.bot = alboxes[2].center.y - 12.5; r.left = 95; string ahm; ahm = std::to_string((int)njG.allies[j].getMaxHealth()); if (njG.allies[j].getCurrentHealth() <= njG.allies[j].getMaxHealth() / 2) ggprint16(&r, 16, 0xfff00000, ahm.c_str()); else ggprint16(&r, 16, 0xffffffff, ahm.c_str()); r.bot = alboxes[2].center.y - 12.5; r.left = 75; ggprint16(&r, 16, 0xffffffff, "/"); r.bot = alboxes[3].center.y - 12.5; r.left = 75; string amv = to_string(njG.allies[j].moveRange); string amv2 = amv; ggprint16(&r, 16, 0xffffffff, amv2.c_str()); glPopMatrix(); } } //=====================================// //------------- UI BOXES --------------// //=====================================// uiboxes::uiboxes(Boxes b[10], float xres, float yres) { size = 10; this->xres = xres; this->yres = yres; for(int i = 0; i < size; i++) boxes[i] = b[i]; posBoxes(); } //=====================================// //----------- BATTLE BOXES ------------// //=====================================// battleboxes::battleboxes(BattleBoxes bb[3], float xres, float yres) { size = 3; this->xres = xres; this->yres = yres; for(int i = 0; i < size; i++) btboxes[i] = bb[i]; posBattleBoxes(75); } //=====================================// //------------ ALLY BOXES -------------// //=====================================// allyboxes::allyboxes(AllyBoxes ab[4], float xres, float yres) { size = 4; this->xres = xres; this->yres = yres; for(int i = 0; i < size; i++) alboxes[i] = ab[i]; posAllyBoxes(75); } void showAdamPicture(int x, int y, GLuint textid) { glColor3ub(255,255,255); static int wid = 55; glPushMatrix(); glTranslatef(x,y,0); glBindTexture(GL_TEXTURE_2D, textid); glBegin(GL_QUADS); glTexCoord2f(0.0f, 1.0f); glVertex2i(-wid,-wid); glTexCoord2f(0.0f, 0.0f); glVertex2i(-wid, wid); glTexCoord2f(1.0f, 0.0f); glVertex2i( wid, wid); glTexCoord2f(1.0f, 1.0f); glVertex2i( wid,-wid); glEnd(); glTranslatef(wid,0,0); Rect r; r.bot = 0; r.left = 10; r.center = 0; ggprint8b (&r, 16, 0xffffffff, "Adam Ostlund"); glPopMatrix(); } #endif
1fc60a2731852edab5220c68a0843e2e1b9f0a7d
050c8a810d34fe125aecae582f9adfd0625356c6
/siruri1/siruri1.cpp
48389d73e07a6c14b66cdd27174ba5f48acb8428
[]
no_license
georgerapeanu/c-sources
adff7a268121ae8c314e846726267109ba1c62e6
af95d3ce726325dcd18b3d94fe99969006b8e138
refs/heads/master
2022-12-24T22:57:39.526205
2022-12-21T16:05:01
2022-12-21T16:05:01
144,864,608
11
0
null
null
null
null
UTF-8
C++
false
false
543
cpp
siruri1.cpp
#include<fstream> #include<algorithm> using namespace std; ifstream f("siruri1.in"); ofstream g("siruri1.out"); int n; int main() { f>>n; int x[n],y[n],i,j,d[n],mini=1; for(i=0;i<n;i++) { f>>x[i]; d[i]=x[i]; } sort(d,d+n); for(i=0;i<n;i++) { for(j=0;j<n;j++) { if(d[i]==x[j]) { y[j]=mini; mini++; } } } for(i=0;i<n;i++) { g<<y[i]<<" "; } f.close();g.close(); return 0; }
fd4ef01ab063b113dfa8b0bf7adb83093f148636
204b6773cc5c22a6362c39e6936983e7332482e5
/legend/legend/src/util/loader/texture_loader.h
c8f5b6db69ba2aeaf9307cd9f25e29355afa114c
[]
no_license
matsumoto0112/create_legend
d67632bd071c78d820499085974303a744c365da
1c84381cbb056bcce2525c67bd3e9de857c05c80
refs/heads/develop
2022-12-17T16:03:58.642327
2020-09-14T04:40:07
2020-09-14T04:40:07
274,089,531
1
0
null
2020-09-14T02:18:54
2020-06-22T09:03:26
C++
SHIFT_JIS
C++
false
false
1,264
h
texture_loader.h
#ifndef LEGEND_UTIL_LOADER_TEXTURE_LOADER_H_ #define LEGEND_UTIL_LOADER_TEXTURE_LOADER_H_ /** * @file texture_loader.h * @brief テクスチャ読み込みクラス定義 */ namespace legend { namespace util { namespace loader { namespace texture_loader { /** * @brief 読み込んだテクスチャデータ */ struct LoadedTextureData { //! テクスチャ名 std::wstring name; //! テクスチャ幅 u32 width; //! テクスチャ高さ u32 height; //! ピクセル配列 std::vector<u8> pixels; /** * @brief デフォルトコンストラクタ */ LoadedTextureData() : name(L""), width(0), height(0), pixels() {} }; /** * @brief テクスチャを読み込む * @param filename 読み込むファイル名 * @return 読み込んだテクスチャデータ */ LoadedTextureData Load(const std::filesystem::path& filename); /** * @brief メモリからテクスチャを読み込む * @param pixel_data テクスチャ元のピクセルデータ * @return 読み込んだテクスチャデータ */ LoadedTextureData LoadFromMemory(const std::vector<u8>& pixel_data); } // namespace texture_loader } // namespace loader } // namespace util } // namespace legend #endif //! LEGEND_UTIL_LOADER_TEXTURE_LOADER_H_
352e29d27d77e30a1913b12e7e15aee02cf26904
93697624e5bff8c25fec6c8e7ffad73da03e396e
/src/router/node.cpp
d59c6666659071848f20c1bd7a0c5a15778b0cc2
[]
no_license
alfanick/xbee868-routing
6b836af82f4334b29e1f467d6951ccfefc0310dd
0bee55e8a5775502daf6c46c08f168e1aee907fd
refs/heads/master
2021-01-19T11:35:52.839758
2015-02-03T20:31:47
2015-02-03T20:31:47
28,773,036
1
0
null
null
null
null
UTF-8
C++
false
false
164
cpp
node.cpp
#include "node.h" #include <stdlib.h> #include <string.h> namespace PUT { namespace CS { namespace XbeeRouting { Node::~Node() { } } } }
0658e8dced897338203bd88233bb30a61f07ee68
1a66c4e2a129411ed6825a8719885cea2f3be9bd
/Subsets-II.cpp
6e67e8ef2c25d734b48bb5ded812cd07b7649818
[]
no_license
fabregas4fan/leetcode
2fff5d4fb083c041371246ebd4b574aab61f9340
f6240b471d2c8996221f26377e4cf9998ce74c9b
refs/heads/master
2016-09-05T18:28:34.379584
2014-10-27T01:39:13
2014-10-27T01:39:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
805
cpp
Subsets-II.cpp
#include<iostream> #include<vector> #include<algorithm> using namespace std; class Solution { public: vector<vector<int> > subsetsWithDup(vector<int> &S); void dfs(vector<int> &S,int index,vector<vector<int> > &result,vector<int> &res); }; vector<vector<int> > Solution::subsetsWithDup(vector<int> &S){ vector<vector<int> > result; vector<int> res; sort(S.begin(),S.end()); if(S.size()!=0) dfs(S,0,result,res); return result; } void Solution::dfs(vector<int> &S, int index, vector<vector<int> > &result, vector<int> &res){ result.push_back(res); for(int i = index ; i < S.size(); ++i){ if(i!=index && S[i] == S[i-1]) continue; res.push_back(S[i]); dfs(S,i+1,result,res); res.pop_back(); } }
fcead6e11ae87ff1763bdc0b21ca07852596f19d
5f30897ec79f5ff410d11fd2f056644d2ee43933
/Skill/DFSAndSimilar/LeetCode/1483.cpp
900159eefef6bdfa95607be549abc5da55352f0f
[]
no_license
Puneethnaik/CompetitiveCoding
d86f8323d65e70c260e101e6a53bf67ac284d36d
97848e4ed51335220e7e96bbe23321f2a6ae7698
refs/heads/main
2023-07-26T23:05:08.807849
2021-09-05T04:48:28
2021-09-05T04:48:28
388,463,039
0
0
null
null
null
null
UTF-8
C++
false
false
1,408
cpp
1483.cpp
#include <bits/stdc++.h> #define FOR(i, a, b) for(int i = a ; i < b ; i++) #define FORN(i, n) FOR(i, 0, n) #define vti vector<int> #define vt(x) vector<x> #define all(x) x.begin(), x.end() #define read(x) cin >> x using namespace std; class TreeAncestor { public: vector<vector<int> > par; TreeAncestor(int n, vector<int>& parent) { par.resize(n, vector<int> (20, -1)); for(int i = 0 ; i < n ; i++) { par[i][0] = parent[i]; } for(int level = 1 ; level < 20; level++) { for(int node = 0; node < n; node++) { if(par[node][level - 1] != -1) { par[node][level] = par[par[node][level - 1]][level - 1]; } } } } int getKthAncestor(int node, int k) { for(int i = 0 ; i < 20 ; i++) { if((k >> i) & 1) { node = par[node][i]; if(node == -1)return node; } } return node; } }; /** * Your TreeAncestor object will be instantiated and called as such: * TreeAncestor* obj = new TreeAncestor(n, parent); * int param_1 = obj->getKthAncestor(node,k); */ int main() { int n = 9; vector<int> parent{-1, 0, 0, 2, 2, 3, 3, 4, 4}; int node = 8; int k = 5; TreeAncestor* obj = new TreeAncestor(n, parent); cout << obj->getKthAncestor(node,k) << endl; return 0; }
d8e529f4bf79a9ae06e536747cc04cd86c0621cd
ef93cf419a898f3d34b9b7c25127264f0c964332
/Source/LabyrinthOfCollosia/Private/AI/BehaviorTree/Services/TlocServiceCheckDistance.cpp
ab70cf003a443b0b6e53aff2df37d8debfab8ed9
[]
no_license
deb8192/LabyrinthOfCollosia
1350076bbc4219e105f38b1ea1f051987f17280e
11e15c48d717ee9c803da8a8bf8dd43c65c13a58
refs/heads/master
2022-09-25T11:22:42.043127
2020-05-30T23:31:59
2020-05-30T23:31:59
218,283,333
1
0
null
null
null
null
UTF-8
C++
false
false
1,808
cpp
TlocServiceCheckDistance.cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "../Public/AI/BehaviorTree/Services/TlocServiceCheckDistance.h" #include "../Public/Characters/TlocHumanPlayer.h" #include "BehaviorTree/BlackboardComponent.h" void UTlocServiceCheckDistance::TickNode(UBehaviorTreeComponent& OwnerComp, uint8* NodeMemory, float DeltaSeconds) { Super::TickNode(OwnerComp, NodeMemory, DeltaSeconds); FVector targetLocation = OwnerComp.GetOwner()->GetActorLocation(); UBlackboardComponent* blackboardComponent = OwnerComp.GetBlackboardComponent(); UObject* target = blackboardComponent->GetValueAsObject(bbTarget.SelectedKeyName); ATlocHumanPlayer* targetActor = dynamic_cast<ATlocHumanPlayer*>(target); if (targetActor) { FVector enemyLocation = OwnerComp.GetOwner()->GetInstigator()->GetActorLocation(); FVector targetLocation = targetActor->GetActorLocation(); FVector distance = enemyLocation - targetLocation; float distanceModule = distance.Size(); if (distanceModule <= closeDistance) { blackboardComponent->SetValueAsBool(bbCheckClose.SelectedKeyName, true); blackboardComponent->SetValueAsBool(bbCheckAway.SelectedKeyName, false); blackboardComponent->SetValueAsObject(bbTarget.SelectedKeyName, targetActor); } else if(distanceModule <= awayDistance) { blackboardComponent->SetValueAsBool(bbCheckClose.SelectedKeyName, false); blackboardComponent->SetValueAsBool(bbCheckAway.SelectedKeyName, true); blackboardComponent->SetValueAsObject(bbTarget.SelectedKeyName, targetActor); } else { blackboardComponent->SetValueAsBool(bbCheckClose.SelectedKeyName, false); blackboardComponent->SetValueAsBool(bbCheckAway.SelectedKeyName, false); blackboardComponent->SetValueAsObject(bbTarget.SelectedKeyName, nullptr); } } }
6be505e049f672fa7f9407c7e6973e1b89363069
07cbe159795612509c2e7e59eb9c8ff6c6ed6b0d
/partitioned/RayleighBenard/consistencyTest/Ra_1e+05_turbExnerFoam_X1_Y50_constThetaBC/tStep0.005_0.01/theta
22d86d4a4e7adba80b4b0b762267ac102f6836c2
[]
no_license
AtmosFOAM/danRun
aacaaf8a22e47d1eb6390190cb98fbe846001e7a
94d19c4992053d7bd860923e9605c0cbb77ca8a2
refs/heads/master
2021-03-22T04:32:10.679600
2020-12-03T21:09:40
2020-12-03T21:09:40
118,792,506
0
0
null
null
null
null
UTF-8
C++
false
false
1,843
theta
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: dev \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0.01"; object theta; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 1 0 0 0]; internalField nonuniform List<scalar> 50 ( 329.405223834 328.208197754 327.005199556 325.79464026 324.591043288 323.391026518 322.194516 321.004454771 319.804451689 318.594512276 317.391025913 316.191044203 314.994644742 313.805206245 312.608214969 311.405324706 310.195368812 308.994664213 307.801006335 306.594641686 305.395243576 304.204579807 303.004468302 301.794491611 300.590877618 299.3901702 298.190170359 296.99087865 295.794496296 294.604475371 293.404600199 292.195386593 290.995501001 289.805373385 288.608370474 287.406097852 286.19924402 285.006118263 283.808478314 282.605989951 281.398498983 280.202375732 278.997791938 277.802378552 276.598517257 275.406100971 274.209095213 273.009091688 271.806076081 270.598384961 ) ; boundaryField { ground { type fixedValue; value uniform 330; } top { type fixedValue; value uniform 270; } left { type cyclic; } right { type cyclic; } frontAndBack { type empty; } } // ************************************************************************* //
e60d33c2fdd0bb7d023caf35231d2e7e42e35d3a
bc6c37cf0469c6b2778707b76227558b3a040718
/PTC/4a.cpp
7d3878b512000eb8f7a29703caad0e9afa23b609
[]
no_license
zeroplusone/AlgorithmPractice
241530a5c989f6321543f7bd07a393c405cdf2e6
7fe9182d943bc2066f7fd31cc05096be79dc12cb
refs/heads/master
2022-01-28T21:57:04.393943
2022-01-26T13:46:43
2022-01-26T13:46:43
84,074,414
2
1
null
null
null
null
UTF-8
C++
false
false
331
cpp
4a.cpp
#include <cstdio> #include <iostream> #include <cstring> #include<string> #include <algorithm> using namespace std; int main() { int t,a,b; scanf("%d",&t); for(int i=0;i<t;++i) { scanf("%d %d",&a,&b); if(a>b) printf(">\n"); else if(a<b) printf("<\n"); else printf("=\n"); } return 0; }
d92bfda6c8e68077ae56108917928c123cff28de
4d2465f1ea7127683dc6465ad66b558409bc2671
/src/Game/States/WinState.h
e4bc97c2d7f2a79e20c34ea0afecd608615e5076
[]
no_license
Mercrist/PacMan
cb28653e4ce0bfad7348bdd17ec549b42bb57779
72a513b055f71a6d7e44e6d27909d9466b112ed3
refs/heads/master
2023-05-03T03:33:33.068823
2021-05-25T15:56:29
2021-05-25T15:56:29
367,454,180
1
0
null
null
null
null
UTF-8
C++
false
false
426
h
WinState.h
#pragma once #include "State.h" #include "Button.h" #include "Animation.h" class WinState : public State { private: ofImage img2; Button *NewButton; //new Button Button object that presents onto the secreen to start a new game Animation* anim; ofSoundPlayer music; public: WinState(); ~WinState(); void tick(); void render(); void keyPressed(int key); void mousePressed(int x, int y, int button); void reset(); };
3d9a3b78956cc3da4d3c25dae63cc021469c2da5
8ae887afac7903c6dd3b0ddfec69a100524510d5
/api/trpc_package.cpp
fcad4964964c4a7e3e036424ae27203120a9ae0f
[]
no_license
liuyinqi2013/relay_proxy
5787350fe9ece9bb36e42767e8cc86a4e754a9e1
3abb9ad23e19d5f277b901b720dced6759ccafac
refs/heads/master
2020-04-13T13:35:08.474978
2018-12-27T02:17:32
2018-12-27T02:17:32
163,235,191
0
0
null
null
null
null
GB18030
C++
false
false
2,655
cpp
trpc_package.cpp
/* 功能: 1. trpc远程过程调用的包格式类定义 Created by Song, 2003-02 Change list: */ #include <stdio.h> #include "trpc_package.h" void CTrpcPackage::Print() { fprintf(stdout, "iLen: %d\n", GetLen()); fprintf(stdout, "iVersion: %d\n", GetVersion()); fprintf(stdout, "iSeqNo: %d\n", GetSeqNo()); fprintf(stdout, "iMsgType: %d\n", GetMsgType()); fprintf(stdout, "sServiceName: [%.*s]\n", (int) sizeof(_stMsg.sServiceName), GetServiceName()); fprintf(stdout, "iResult: %d\n", GetResult()); fprintf(stdout, "iDataLen: %d\n", GetDataLen()); fprintf(stdout, "\n"); } int CTrpcPackage::Encode(void *buf, int &iBufSize, int iMaxBufSize) { _stMsg.iLen = PackSize(_stMsg.iDataLen); iBufSize = _stMsg.iLen; if (iBufSize > iMaxBufSize) { sprintf(_error_text, "iBufSize==%d, but iMaxBufSize==%d", iBufSize, iMaxBufSize); return -1; } Trpc_Package_Net_T *pPack = (Trpc_Package_Net_T *) buf; _stMsg.iLen = iBufSize; // 包开始分隔符 pPack->cStx = CTrpcPackage::PACK_STX; TRPC_PUT_INT32(pPack->sLen, _stMsg.iLen); TRPC_PUT_INT32(pPack->sVersion, _stMsg.iVersion); TRPC_PUT_INT32(pPack->sSeqNo, _stMsg.iSeqNo); TRPC_PUT_INT32(pPack->sMsgType, _stMsg.iMsgType); TRPC_PUT_STR(pPack->sServiceName, _stMsg.sServiceName, sizeof(pPack->sServiceName)); TRPC_PUT_INT32(pPack->sResult, _stMsg.iResult); TRPC_PUT_INT32(pPack->sDataLen, _stMsg.iDataLen); if (_stMsg.iDataLen > 0) { memcpy(pPack->sData, _stMsg.sData, _stMsg.iDataLen); } // 包结束分隔符 *(pPack->sData + _stMsg.iDataLen) = PACK_ETX; return 0; } int CTrpcPackage::Decode(const void *buf, int iBufSize) { const Trpc_Package_Net_T *pSrc = (const Trpc_Package_Net_T *) buf; _stMsg.cStx = pSrc->cStx; TRPC_GET_INT32(_stMsg.iLen, pSrc->sLen); TRPC_GET_INT32(_stMsg.iVersion, pSrc->sVersion); TRPC_GET_INT32(_stMsg.iSeqNo, pSrc->sSeqNo); TRPC_GET_INT32(_stMsg.iMsgType, pSrc->sMsgType); TRPC_GET_STR(_stMsg.sServiceName, pSrc->sServiceName, sizeof(_stMsg.sServiceName)); TRPC_GET_INT32(_stMsg.iResult, pSrc->sResult); TRPC_GET_INT32(_stMsg.iDataLen, pSrc->sDataLen); _stMsg.sData = pSrc->sData; // 判断数据长度是否正确,要把Etx减去 int iDataLen = (const char *) pSrc + iBufSize - (const char *) pSrc->sData - 1; if (_stMsg.iDataLen != iDataLen) { sprintf(_error_text, "_stMsg.iDataLen==%d, but iDataLen==%d", _stMsg.iDataLen, iDataLen); return -1; } return 0; }
441b5a6dff60edeee8835f1a4be4f4546dffa907
13af8cf84dd504fb9b29e3d83dc530fa8f95f7ed
/LPLab17/LP_asm01c.cpp
c6c6d6123cdcb942e385c68be06b762f21d7c1d7
[]
no_license
DimonMobile/YAP
443c14c79ba245d71eaa8f12d11f026ed97aa115
60ef7f1e9aab084763652f33e4a0b9274425382b
refs/heads/master
2020-03-28T11:14:59.188415
2018-11-20T06:32:45
2018-11-20T06:32:45
148,192,686
2
3
null
null
null
null
UTF-8
C++
false
false
273
cpp
LP_asm01c.cpp
#include <cstdio> extern "C" int getmin(int *a, int n); extern "C" int getmax(int *a, int n); int main() { int a[] = {5,423,432,32,42,23,432,13,42,12,325}; int min = getmin(a, 10); int max = getmax(a, 10); printf("getmax-getmin = %d\n", max-min); return 0; }
e72780f5e907960daac5338593285faf45928201
7635701a155cdf7df79a3f3ddecf3102b7c7cde2
/week 1_Q3.cpp
9c07b1ef907b3432ceb72b26cd4a6952e1f1c49b
[]
no_license
satyajitsethi/Liftoff-c_assingment
ce2164dac669c5113788115d24fb74ca992abcbb
7619d613151bf971b44619afe324676021e74455
refs/heads/main
2023-03-01T04:56:45.878732
2021-02-07T14:10:25
2021-02-07T14:10:25
336,564,632
0
0
null
null
null
null
UTF-8
C++
false
false
361
cpp
week 1_Q3.cpp
#include <stdio.h> int main () { float r; double d,c,a; printf("Enter radius of circle:"); scanf("%f", &r); d=2*r; printf("Diameter of circle = %.2f units \n",d); c=2*3.14*r; printf("Circumference of circle = %.2f units \n",c); a=3.14*(r*r); printf("Area of circle = %.2f sq.units ",a); return 0; }
005da1f494cf0295801ac7be0f9b2ade1c2a6818
22c487202dbc77c4080776c19015fc5cbaca7ec8
/src/train.cpp
6485b0d3e6cb922345d3c938fe82c6b6091e142e
[]
no_license
pbogren/trains
c3bcc733af5b965a251abe0ae6078885104da06a
ace55debd1852168b7d4ef2cd26c41ec1832a651
refs/heads/main
2023-05-26T20:32:43.517312
2021-06-11T12:47:47
2021-06-11T12:47:47
376,023,053
0
0
null
null
null
null
UTF-8
C++
false
false
5,330
cpp
train.cpp
#include "train.h" #include "time_point.h" #include <algorithm> #include <stdexcept> #include <string> #include <utility> // move #include <limits> namespace pabo::train { // // Private helpers // bool isEmptyAndType(const Train::Slot& s, Train::CarType match) { const auto& [type, car] = s; return type == match && !car; } Train::State Train::defaultState() { return Train::State::not_assembled; } // // Construct Slot Train::Slot::Slot(Train::CarType t, Train::Car c) : type{t}, car{std::move(c)} { } // // Construct Train // Train::Train(const TrainConnection& tc) : m_nbr{tc.trainNbr()} , m_departure{tc.departure()} { for (const auto type: tc.vehicles()) { m_self.emplace_back(type, nullptr); } } // // Queries // int Train::number() const noexcept { return m_nbr; } time::TimeOfDay Train::departure() const noexcept { return m_departure; } Train::State Train::state() const noexcept { return m_state; } bool Train::isAssembled() const noexcept { return std::none_of(m_self.begin(), m_self.end(), [](const Slot& s) { const auto& [type, car] = s; return !car; }); } bool Train::hasDeparted() const noexcept { return state() >= State::running; } std::vector<Train::CarType> Train::missingCarTypes() const { auto res = std::vector<CarType>{}; for (const auto& [type, car]: m_self) { if (!car) { res.push_back(type); } } return res; } bool Train::missesCarOfType(CarType match) const { return std::any_of(m_self.begin(), m_self.end(), [match](const Slot& s) { return isEmptyAndType(s, match); }); } bool Train::hasCar(int id) const { return std::any_of(m_self.begin(), m_self.end(), [id](const Slot& s) { const auto& [type, car] = s; if (!car) { return false; } return car->id() == id; }); } // // Commands // void Train::delayDeparture(const int minutes) { m_departure.addMinutes(minutes); } void Train::attachCar(Car c) { auto& [type, car] = findEmptySlotByType(c->type()); car = std::move(c); } Train::Slot& Train::findEmptySlotByType(CarType match) { auto slot = std::find_if(m_self.begin(), m_self.end(), [match](const Slot& s) { return isEmptyAndType(s, match); }); if (slot == m_self.end()) { throw std::runtime_error("Tried finding type that was not missing"); } return *slot; } void Train::setState(const State s) noexcept { m_state = s; } Train::CarView Train::viewCar(int id) const { auto slot = std::find_if(m_self.begin(), m_self.end(), [id](const Slot& s) { const auto& [type, car] = s; if (!car) { return false; } return car->id() == id; }); if (slot == m_self.end()) { throw std::runtime_error("Tried retrieving non-existing car!"); } const auto& [type, car] = *slot; return car.get(); } std::vector<Train::CarView> Train::attachedCars() const { auto res = std::vector<CarView>{}; std::for_each(m_self.begin(), m_self.end(), [&res](const Slot& s) { const auto& [type, car] = s; if (car) { res.push_back(car.get()); } }); return res; } Train::Speed Train::maxSpeed() const { const auto sentry = std::numeric_limits<double>::max(); auto res = Speed{sentry, "kph"}; for (const auto& [type, car] : m_self) { if (car && car->hasEngine()) { res = std::min(res, car->maxSpeed()); } } if (res == sentry) { res = {0, "kph"}; } return res; } Train::Speed Train::currentSpeed() const { return m_currentSpd; } void Train::setSpeed(const Speed& spd) { if (maxSpeed() < spd) { throw std::runtime_error("Attempted to set speed above speed limit!"); } m_currentSpd = Speed{spd.value, "kph"}; } void Train::setDepartureDelay(Duration delay) { m_departureDelay = std::move(delay); } void Train::setArrivalDelay(Duration delay) { m_arrivalDelay = std::move(delay); } Train::Duration Train::departureDelay() const { return m_departureDelay; } Train::Duration Train::arrivalDelay() const { return m_arrivalDelay; } std::vector<Train::Car> Train::disassemble() { auto res = std::vector<Car>{}; for (auto& slot : m_self) { auto& [type, car] = slot; if (car) { res.emplace_back(std::move(car)); } } setState(State::not_assembled); return std::move(res); } // // Non-members // std::string toString(const Train::State s) { switch (s) { case Train::State::not_assembled: return "NOT ASSEMBLED"; case Train::State::assembled: return "ASSEMBLED"; case Train::State::incomplete: return "INCOMPLETE"; case Train::State::ready: return "READY"; case Train::State::running: return "RUNNING"; case Train::State::arrived: return "ARRIVED"; case Train::State::finished: return "FINISHED"; default: throw std::runtime_error("Invalid state!"); } } std::ostream& operator<<(std::ostream& os, Train::State state) { const auto string = toString(state); return os << string; } } // namespace pabo::train
ada7ccc99c4fdf6b1f0c542fa3d61133e4953fe2
2780006e63a1295e12bec5b5f768d43ea5e5072d
/src/utility/RemoteUpdate.h
ef00af8a2e365037ccde4dd4a6e30574541f5ebf
[]
no_license
OpenDevice/opendevice-lib-arduino
7e720a4ffea53cf398886308b9bff2af55f46b13
722c7880cd8b218c1fdcc3b38101a4c407fed42d
refs/heads/master
2020-12-25T15:19:03.435478
2020-07-21T22:19:29
2020-07-21T22:19:29
34,213,327
8
8
null
2016-07-11T23:03:03
2015-04-19T15:59:06
C++
UTF-8
C++
false
false
2,105
h
RemoteUpdate.h
#ifndef LIBRARIES_OPENDEVICE_SRC_RemoteUpdateClass_H_ #define LIBRARIES_OPENDEVICE_SRC_RemoteUpdateClass_H_ #include "config.h" #include "utility/Logger.h" namespace od { class RemoteUpdateClass { public: RemoteUpdateClass(); ~RemoteUpdateClass(); void begin(){ #ifdef __ARDUINO_OTA_H LOG_DEBUG_S("OTA Enabled"); ArduinoOTA.setHostname(Config.moduleName); ArduinoOTA.setPassword(Config.appID); ArduinoOTA.onStart([]() { LOG_DEBUG_S("OTA Start"); }); ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) { LOG_DEBUG("Progress", (progress / (total / 100))); }); ArduinoOTA.onError([](ota_error_t error) { # ifdef DEBUG Serial.printf("Error[%u]: ", error); if (error == OTA_AUTH_ERROR) Serial.println("Auth Failed"); else if (error == OTA_BEGIN_ERROR) Serial.println("Begin Failed"); else if (error == OTA_CONNECT_ERROR) Serial.println("Connect Failed"); else if (error == OTA_RECEIVE_ERROR) Serial.println("Receive Failed"); else if (error == OTA_END_ERROR) Serial.println("End Failed"); #endif }); ArduinoOTA.begin(); #endif } void check(){ #ifdef __ARDUINO_OTA_H ArduinoOTA.handle(); #endif } boolean updateFromURL(String path){ LOG_DEBUG("OTA", path); #ifdef ESP8266HTTPUPDATE_H_ ESPhttpUpdate.rebootOnUpdate(false); t_httpUpdate_return ret = ESPhttpUpdate.update(path); // .c_str() switch(ret) { case HTTP_UPDATE_FAILED: LOG_DEBUG("OTA", ESPhttpUpdate.getLastErrorString()); return false; case HTTP_UPDATE_NO_UPDATES: LOG_DEBUG("OTA","no Update."); return false; case HTTP_UPDATE_OK: LOG_DEBUG("OTA","Update ok."); // may not called we reboot the ESP return true; } #endif return false; } }; extern RemoteUpdateClass RemoteUpdate; } // name-space #endif
5423d80411933e45a4771911352acf2cbd4554e0
03bde7f58d51cfd65707ee8bb55eae54ed745db5
/120. Triangle/solution.cpp
bae0c28ad14dc4ac4868636ac950014e91b08fa6
[]
no_license
humbert0u0/leetcoderepo
b04736d45a0938fbd388b37d81aaa997d85a065b
b370a504c3ce0e702c593bf956dee71a1f4f1013
HEAD
2018-09-10T22:37:40.638508
2018-06-18T02:40:07
2018-06-18T02:40:07
109,574,242
0
0
null
null
null
null
UTF-8
C++
false
false
1,026
cpp
solution.cpp
#define min(x,y) x<y?x:y class Solution { public: int minimumTotal(vector<vector<int>>& triangle) { vector<int> tmp; vector<int> res; if(triangle.size() == 0) return 0; if(triangle.size() == 1) { tmp = triangle.back(); return tmp[0]; } res = triangle.back(); triangle.pop_back(); tmp = triangle.back(); if(tmp.size()>=res.size()); while(res.size()<=tmp.size()) res.push_back(0); for(int i = 0; i < (res.size()); i++) cout<<res[i]<<" "; cout<<endl; while(!triangle.empty()) { tmp = triangle.back(); triangle.pop_back(); for(int i = 0; i < (res.size()-1); i++) { int min = min(res[i],res[i+1]); res[i] = min + tmp[i]; } res.pop_back(); } return res[0]; } };
542f3d46ae1b3cc817bc6e4aec8dfb0bc6a94cf9
c4270321848d8da394f171e907a9246f9ac48cdf
/2018/01/poo/classes abstratas/barco.h
737fbcc071395ed648c838c2aa39209dd75e30d4
[]
no_license
marlovi/aulas
99a83d2364a3e5573fd3fb8d58b696fb1d835ae4
a8b22d506105217b196e9354a2b06fdd74758203
refs/heads/master
2023-01-08T03:22:24.067025
2019-11-12T00:23:44
2019-11-12T00:23:44
98,063,832
10
11
null
2023-01-04T12:26:56
2017-07-22T23:41:20
JavaScript
UTF-8
C++
false
false
161
h
barco.h
#ifndef BARCO_H #define BARCO_H #include "veiculo.h" class Barco: public Veiculo{ private: public: void dirigir(); }; #endif
de330ffaf85bb020873726400ee08a2b62fd11eb
e85db75c9c26dbe70bac6cfea7c29948cdd591b5
/Widget2_KreditcardChecker/eventhandler.h
174e45b6487c593f06c20fedc6acaf190d545f10
[]
no_license
AchimGrolimund/HF-ICT-GUI
69840af0977b8d3b0f94eded8d84248afc01c78f
383293e3c4e3ea0efa51c960feecb711aa71c67b
refs/heads/master
2021-09-15T12:56:35.793810
2018-06-02T07:22:08
2018-06-02T07:22:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
292
h
eventhandler.h
#ifndef EVENTHANDLER_H #define EVENTHANDLER_H #include <QObject> class MainWidget; class EventHandler : public QObject { Q_OBJECT private: MainWidget *parent; public: EventHandler(MainWidget *parent); public slots: void onCheckButtonClicked(); }; #endif // EVENTHANDLER_H
f7b264bf3a6d569d7bb043ec9135c3afb9e3c8ba
f2256d80323f1b8b32a4a282faaf807ee76ddd58
/p228_局部作用域.cpp
c9222bec93d178344c91c6fa97ca7bbd70feb807
[ "MIT" ]
permissive
nnngu/my_first_cpp_book
005d58adf0b2a8214739c1d3e4e8d3c70718d449
5674a6c78b3facf03a10176fdf0a40997fbe4884
refs/heads/master
2020-11-26T07:31:16.480866
2020-02-01T11:51:55
2020-02-01T11:51:55
229,003,745
0
0
null
null
null
null
UTF-8
C++
false
false
610
cpp
p228_局部作用域.cpp
int GetSum(void) { // 整体函数体是一个局部作用域 int nTotal = 0; for (int i = 0; i < 100; ++i) { // 函数体中的 for 循环体,是函数体所嵌套的一个子局部作用域 // 在父作用域函数体中定义的变量,在子作用域中同样可见 nTotal += i; } // 在作用域中定义的变量,在整个作用域都可见 return nTotal; } // 人为地在代码中添加一个局部作用域 void foo(void) { int nNum = 0; { int nNum; nNum = 1; cout<<"在局部作用域中输出:"<<nNum<<endl; } cout<<"在函数体作用域中输出:"<<nNum<<endl; }
a80ffc8aba8bdf6126566bedef2c683f6143c552
cfeac52f970e8901871bd02d9acb7de66b9fb6b4
/generated/src/aws-cpp-sdk-chime-sdk-identity/include/aws/chime-sdk-identity/model/PutAppInstanceUserExpirationSettingsResult.h
3a33223327d6244897ba3682595acf4bf9480f85
[ "Apache-2.0", "MIT", "JSON" ]
permissive
aws/aws-sdk-cpp
aff116ddf9ca2b41e45c47dba1c2b7754935c585
9a7606a6c98e13c759032c2e920c7c64a6a35264
refs/heads/main
2023-08-25T11:16:55.982089
2023-08-24T18:14:53
2023-08-24T18:14:53
35,440,404
1,681
1,133
Apache-2.0
2023-09-12T15:59:33
2015-05-11T17:57:32
null
UTF-8
C++
false
false
4,681
h
PutAppInstanceUserExpirationSettingsResult.h
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/chime-sdk-identity/ChimeSDKIdentity_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/chime-sdk-identity/model/ExpirationSettings.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ChimeSDKIdentity { namespace Model { class PutAppInstanceUserExpirationSettingsResult { public: AWS_CHIMESDKIDENTITY_API PutAppInstanceUserExpirationSettingsResult(); AWS_CHIMESDKIDENTITY_API PutAppInstanceUserExpirationSettingsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_CHIMESDKIDENTITY_API PutAppInstanceUserExpirationSettingsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>The ARN of the <code>AppInstanceUser</code>.</p> */ inline const Aws::String& GetAppInstanceUserArn() const{ return m_appInstanceUserArn; } /** * <p>The ARN of the <code>AppInstanceUser</code>.</p> */ inline void SetAppInstanceUserArn(const Aws::String& value) { m_appInstanceUserArn = value; } /** * <p>The ARN of the <code>AppInstanceUser</code>.</p> */ inline void SetAppInstanceUserArn(Aws::String&& value) { m_appInstanceUserArn = std::move(value); } /** * <p>The ARN of the <code>AppInstanceUser</code>.</p> */ inline void SetAppInstanceUserArn(const char* value) { m_appInstanceUserArn.assign(value); } /** * <p>The ARN of the <code>AppInstanceUser</code>.</p> */ inline PutAppInstanceUserExpirationSettingsResult& WithAppInstanceUserArn(const Aws::String& value) { SetAppInstanceUserArn(value); return *this;} /** * <p>The ARN of the <code>AppInstanceUser</code>.</p> */ inline PutAppInstanceUserExpirationSettingsResult& WithAppInstanceUserArn(Aws::String&& value) { SetAppInstanceUserArn(std::move(value)); return *this;} /** * <p>The ARN of the <code>AppInstanceUser</code>.</p> */ inline PutAppInstanceUserExpirationSettingsResult& WithAppInstanceUserArn(const char* value) { SetAppInstanceUserArn(value); return *this;} /** * <p>Settings that control the interval after which an * <code>AppInstanceUser</code> is automatically deleted.</p> */ inline const ExpirationSettings& GetExpirationSettings() const{ return m_expirationSettings; } /** * <p>Settings that control the interval after which an * <code>AppInstanceUser</code> is automatically deleted.</p> */ inline void SetExpirationSettings(const ExpirationSettings& value) { m_expirationSettings = value; } /** * <p>Settings that control the interval after which an * <code>AppInstanceUser</code> is automatically deleted.</p> */ inline void SetExpirationSettings(ExpirationSettings&& value) { m_expirationSettings = std::move(value); } /** * <p>Settings that control the interval after which an * <code>AppInstanceUser</code> is automatically deleted.</p> */ inline PutAppInstanceUserExpirationSettingsResult& WithExpirationSettings(const ExpirationSettings& value) { SetExpirationSettings(value); return *this;} /** * <p>Settings that control the interval after which an * <code>AppInstanceUser</code> is automatically deleted.</p> */ inline PutAppInstanceUserExpirationSettingsResult& WithExpirationSettings(ExpirationSettings&& value) { SetExpirationSettings(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline PutAppInstanceUserExpirationSettingsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline PutAppInstanceUserExpirationSettingsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline PutAppInstanceUserExpirationSettingsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_appInstanceUserArn; ExpirationSettings m_expirationSettings; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKIdentity } // namespace Aws
b929064c6d9b638b4822b1a2f099840e2d1db86f
f14f1fb63b15e716b150c245eb0802e39701a678
/aula07_sources/Fila07_IF.cpp
5421b5eeb07828e7de6ad14cd54d04237a40138f
[]
no_license
EdsonMateus1/codigos-em-C-C-faculdade
331e834abe8f61c55e8ff84e25913fa19f8380bd
89c3cc0ce4ca45a33278cccb7630d3bc09b4fbfe
refs/heads/master
2022-11-03T03:39:59.590885
2020-06-18T21:23:54
2020-06-18T21:23:54
273,053,286
2
0
null
null
null
null
ISO-8859-1
C++
false
false
3,254
cpp
Fila07_IF.cpp
#include <stdio.h> #include <stdlib.h> // Definição da Estrutura typedef struct tipoCliente cliente; struct tipoCliente { int codigo; float valor; struct tipoCliente *prox; }; int tam; void inicializa(cliente *inicio, cliente *fim); void insere(cliente **inicio, cliente **fim); void imprime(cliente *inicio); void consome(cliente **inicio, cliente **fim); int busca(cliente *inicio); int main(){ cliente *inicio = NULL; cliente *fim = NULL; char maisum; inicializa(inicio, fim); do{ insere(&inicio, &fim); printf("Inserir mais um (S/N)? "); fflush(stdin); scanf("%c", &maisum); }while(maisum == 'S' || maisum == 's'); imprime(inicio); consome(&inicio, &fim); imprime(inicio); int resultadoBusca = busca(inicio); if(resultadoBusca == -1) printf("Lista vazia!\n"); else if(resultadoBusca == 0) printf("Codigo nao encontrado!\n"); else printf("Codigo encontrado na posicao %d.\n", resultadoBusca); system("PAUSE"); return 0; } void inicializa(cliente *inicio, cliente *fim) { tam = 0; printf("Fila inicializada!\n"); printf("Inicio.: %d\n", inicio); printf("Fim....: %d\n", fim); printf("Tamanho: %d\n", tam); printf("\n"); } void insere(cliente **inicio, cliente **fim){ printf("\n"); cliente *novo = (cliente *)malloc(sizeof(cliente)); if(novo) { printf("Novo codigo: "); scanf("%d", &novo->codigo); printf("Novo valor: "); scanf("%f", &novo->valor); novo->prox = NULL; if(!(*inicio) && !(*fim)) { *inicio = novo; *fim = novo; } else { cliente *aux = (*inicio); while(aux->prox != NULL) aux = aux->prox; aux->prox = novo; *fim = novo; } tam++; } printf("\n"); return; } void imprime(cliente *inicio){ printf("\n"); printf("Tamanho da lista: %d\n", tam); int pos = 1; while(inicio) { printf("\n"); printf("Posicao.: %d\n", pos); printf("Codigo..: %d\n", inicio->codigo); printf("Valor...: %.2f\n", inicio->valor); pos++; inicio = inicio->prox; } return; } void consome(cliente **inicio, cliente **fim) { printf("\n"); if(!(*inicio) && !(*fim)) { printf("Fila vazia. Impossivel remover!\n"); return; } cliente *aux = *inicio; if(*inicio == *fim) { *inicio = NULL; *fim = NULL; free(aux); tam--; return; } *inicio = (*inicio)->prox; free(aux); tam--; return; } int busca(int codigo, cliente *inicio) { } int busca(cliente *inicio) { printf("\n"); if(inicio == NULL) return -1; int codigo; printf("Codigo a buscar: "); scanf("%d", &codigo); int pos = 1; while(inicio) { //(inicio != NULL) if(inicio->codigo == codigo) // Encontrou o elemento return pos; inicio = inicio->prox; // Anda para o próxio elemento pos++; } return 0; // Percorreu a lista, mas não encontrou }
67baad0c9b72763a25ab836601756123bffb5afc
989c2552b2b9727a99dd661d000f89cbdded19de
/benchmark/OpenSpaceToolkit/Astrodynamics/Access.benchmark.cpp
18c50b4163daa32244ed334ea189a879f6fd5639
[ "LGPL-2.0-or-later", "MPL-2.0", "BSD-3-Clause", "Apache-2.0" ]
permissive
open-space-collective/open-space-toolkit-astrodynamics
d57d3a441757779dd2573c68cdb1e5e70d2a131c
8b45943bca57d7667c7171f4e581673f335e6255
refs/heads/main
2023-09-03T19:14:40.106871
2023-09-01T15:20:30
2023-09-01T15:20:30
136,835,751
25
9
Apache-2.0
2023-09-14T21:27:21
2018-06-10T18:47:24
C++
UTF-8
C++
false
false
3,533
cpp
Access.benchmark.cpp
/// Apache License 2.0 #include "benchmark/benchmark.h" #include <OpenSpaceToolkit/Core/Containers/Array.hpp> #include <OpenSpaceToolkit/Core/Types/Shared.hpp> #include <OpenSpaceToolkit/Mathematics/Objects/Interval.hpp> #include <OpenSpaceToolkit/Physics/Coordinate/Spherical/LLA.hpp> #include <OpenSpaceToolkit/Physics/Environment.hpp> #include <OpenSpaceToolkit/Physics/Environment/Objects/CelestialBodies/Earth.hpp> #include <OpenSpaceToolkit/Physics/Time/Instant.hpp> #include <OpenSpaceToolkit/Physics/Time/Scale.hpp> #include <OpenSpaceToolkit/Astrodynamics/Access/Generator.hpp> #include <OpenSpaceToolkit/Astrodynamics/Flight/System/Dynamics.hpp> #include <OpenSpaceToolkit/Astrodynamics/Trajectory.hpp> #include <OpenSpaceToolkit/Astrodynamics/Trajectory/Orbit.hpp> #include <OpenSpaceToolkit/Astrodynamics/Trajectory/Orbit/Models/SGP4.hpp> #include <OpenSpaceToolkit/Astrodynamics/Trajectory/Orbit/Models/SGP4/TLE.hpp> using ostk::core::ctnr::Array; using ostk::core::types::Shared; using ostk::physics::Environment; using ostk::physics::coord::Frame; using ostk::physics::coord::Position; using ostk::physics::coord::spherical::LLA; using ostk::physics::environment::gravitational::Earth; using ostk::physics::time::DateTime; using ostk::physics::time::Instant; using ostk::physics::time::Scale; using ostk::physics::time::Interval; using ostk::physics::units::Angle; using ostk::physics::units::Length; using ostk::astro::Access; using ostk::astro::Trajectory; using ostk::astro::access::Generator; using ostk::astro::trajectory::Orbit; using ostk::astro::trajectory::orbit::models::SGP4; using ostk::astro::trajectory::orbit::models::sgp4::TLE; static const int DEFAULT_ITERATIONS = 10; static const Environment REFERENCE_ENVIRONMENT = Environment::Default(); static const Instant REFERENCE_START_INSTANT = Instant::DateTime(DateTime(2023, 1, 1, 0, 0, 0), Scale::UTC); static const Instant REFERENCE_END_INSTANT = Instant::DateTime(DateTime(2023, 1, 8, 0, 0, 0), Scale::UTC); static void computeAccesses(benchmark::State& state, const Trajectory& aFromTrajectory, const Trajectory& aToTrajectory) { const Generator generator = {REFERENCE_ENVIRONMENT}; const Interval interval = Interval::Closed(REFERENCE_START_INSTANT, REFERENCE_END_INSTANT); state.ResumeTiming(); benchmark::DoNotOptimize(generator.computeAccesses(interval, aFromTrajectory, aToTrajectory)); } static void benchmark001(benchmark::State& state) { for (auto _ : state) { state.PauseTiming(); // Ground Station const LLA groundStationLla = {Angle::Degrees(-45.0), Angle::Degrees(-170.0), Length::Meters(5.0)}; const Position groundStationPosition = Position::Meters( groundStationLla.toCartesian(Earth::EGM2008.equatorialRadius_, Earth::EGM2008.flattening_), Frame::ITRF() ); const Trajectory groundStationTrajectory = Trajectory::Position(groundStationPosition); // Satellite const TLE tle = { "1 39419U 13066D 18248.44969859 -.00000394 00000-0 -31796-4 0 9997", "2 39419 97.6313 314.6863 0012643 218.7350 141.2966 14.93878994260975" }; const SGP4 sgp4 = {tle}; const Orbit satelliteOrbit = {sgp4, REFERENCE_ENVIRONMENT.accessCelestialObjectWithName("Earth")}; computeAccesses(state, groundStationTrajectory, satelliteOrbit); } } // Register the functions as a benchmark BENCHMARK(benchmark001)->Name("Access | Ground Station <> TLE")->Iterations(DEFAULT_ITERATIONS);
be052f2d6b95d208319566e6e5ac9182a7c9d1a7
1b9e8b56a726d9907c947a6c3c1fb5f82686ecea
/Lab2.1/lab21.cpp
cb4ed00058e9ee896a8875811a503a3f635abd6a
[]
no_license
sofiia-pavl/lab02_repos
ef4be03209817527ef0b87c88990c71242c1d478
9402c32c825cc9327b851c21aab6828d873cd7dc
refs/heads/master
2022-12-27T18:25:08.538352
2020-10-10T09:40:58
2020-10-10T09:40:58
302,857,741
0
0
null
2020-10-10T09:40:59
2020-10-10T08:51:06
C++
UTF-8
C++
false
false
391
cpp
lab21.cpp
#include <iostream> #include <cmath> using namespace std; int main() { double a; // double z1; double z2; cout << "a = "; cin >> a; // z1 = pow(((1 + a + a * a) / (2 * a + a * a) + 2 - (1 - a + a * a) / (2 * a - a * a)), -1) * (5 - 2 * a * a); z2 = (4 - a * a) / 2; cout << endl; // cout << "z1 = " << z1 << endl; cout << "z2 = " << z2 << endl; cin.get(); return 0; }
2587ca1258c27f57a8d9313f4d9674f7c4f23c88
02d16a1ec2ca61524e7730ee1ce2cf1252836faf
/reflective/density/dense_fixed_queue.h
7acd5c73a0844398842bf2f6ac5eac20cecd629f
[]
no_license
giucamp/rreflective
06b006f5e2e72a66dcdea942e0897b4f448d634d
1be0bad35f3e66bc127a86df8a1e61c575b9b4df
refs/heads/master
2020-12-20T10:44:02.922496
2016-04-15T05:58:55
2016-04-15T05:58:55
38,154,269
0
0
null
null
null
null
UTF-8
C++
false
false
17,969
h
dense_fixed_queue.h
#pragma once #include <memory> // std::allocator #include <utility> // std::forward #include <type_traits> // std::is_constructible, ... #include "element_type.h" namespace reflective { namespace details { template < typename ALLOCATOR, typename RUNTIME_TYPE > class DenseFixedQueueImpl : private ALLOCATOR { public: struct IteratorBaseImpl { IteratorBaseImpl() REFLECTIVE_NOEXCEPT {} IteratorBaseImpl(RUNTIME_TYPE * i_type) REFLECTIVE_NOEXCEPT // used to construct end : m_curr_type(i_type) { } IteratorBaseImpl(const DenseFixedQueueImpl * i_queue, RUNTIME_TYPE * i_type, void * i_element) REFLECTIVE_NOEXCEPT : m_curr_type(i_type), m_curr_element(i_element), m_queue(i_queue) { } void move_next() REFLECTIVE_NOEXCEPT { // advance m_curr_type m_curr_type = static_cast<RUNTIME_TYPE*>(address_add(m_curr_element, m_curr_type->size())); if (m_curr_type != m_queue->m_tail) { m_curr_type = static_cast<RUNTIME_TYPE*>(address_upper_align(m_curr_type, alignof(RUNTIME_TYPE))); if (m_curr_type + 1 > m_queue->m_buffer_end) { m_curr_type = static_cast<RUNTIME_TYPE*>(address_upper_align(m_queue->m_buffer_start, alignof(RUNTIME_TYPE))); } // advance m_curr_element m_curr_element = address_upper_align(m_curr_type + 1, m_curr_type->alignment()); auto end_of_element = address_add(m_curr_element, m_curr_type->size()); if (end_of_element > m_queue->m_buffer_end) { m_curr_element = address_upper_align(m_queue->m_buffer_start, m_curr_type->alignment()); end_of_element = address_add(m_curr_element, m_curr_type->size()); } } } bool operator == (const IteratorBaseImpl & i_source) REFLECTIVE_NOEXCEPT { return i_source.m_curr_type == i_source.m_curr_type; } RUNTIME_TYPE * m_curr_type; void * m_curr_element; const DenseFixedQueueImpl * m_queue; }; DenseFixedQueueImpl(size_t i_buffer_byte_capacity) { impl_init(i_buffer_byte_capacity); } DenseFixedQueueImpl(DenseFixedQueueImpl && i_source) REFLECTIVE_NOEXCEPT : m_head(i_source.m_head), m_tail(i_source.m_tail), m_buffer_start(i_source.m_buffer_start), m_buffer_end(i_source.m_buffer_end) { i_source.m_tail = i_source.m_head = nullptr; i_source.m_buffer_end = i_source.m_buffer_start = nullptr; } DenseFixedQueueImpl(const DenseFixedQueueImpl & i_source) : ALLOCATOR(i_source) { impl_assign(i_source); } DenseFixedQueueImpl & operator = (const DenseFixedQueueImpl & i_source) { impl_destroy(); *static_cast<ALLOCATOR*>(this) = i_source; impl_assign(i_source); return *this; } DenseFixedQueueImpl & operator = (DenseFixedQueueImpl && i_source) REFLECTIVE_NOEXCEPT { impl_clear(); m_head = i_source.m_head; m_tail = i_source.m_tail; m_buffer_start = i_source.m_buffer_start; m_buffer_end = i_source.m_buffer_end; i_source.m_tail = i_source.m_head = nullptr; i_source.m_buffer_end = i_source.m_buffer_start = nullptr; return *this; } ~DenseFixedQueueImpl() REFLECTIVE_NOEXCEPT { impl_destroy(); } void impl_init(size_t i_buffer_byte_capacity) { typename std::allocator_traits<ALLOCATOR>::template rebind_alloc<char> char_alloc( *static_cast<ALLOCATOR*>(this)); m_buffer_start = char_alloc.allocate(i_buffer_byte_capacity); m_buffer_end = address_add(m_buffer_start, i_buffer_byte_capacity); m_tail = m_head = static_cast<RUNTIME_TYPE *>(m_buffer_start); } void impl_destroy() { impl_clear(); typename std::allocator_traits<ALLOCATOR>::template rebind_alloc<char> char_alloc( *static_cast<ALLOCATOR*>(this)); char_alloc.deallocate(static_cast<char*>(m_buffer_start), address_diff(m_buffer_end, m_buffer_start)); } void impl_assign(const DenseFixedQueueImpl & i_source) { impl_init(i_source.impl_mem_capacity()); /* now the queue is empty, and m_tail = m_head = m_buffer_start. Anyway we offset m_tail and m_head like tjhey are in the source, so in order to make an exact copy, in which the free space is the same */ m_tail = m_head = static_cast<RUNTIME_TYPE*>(address_add(m_buffer_start, address_diff(i_source.m_head, i_source.m_buffer_start) ) ); for (auto source_it = i_source.impl_begin(); source_it.m_curr_type != static_cast<RUNTIME_TYPE*>(i_source.m_tail); source_it.move_next()) { impl_push(*source_it.m_curr_type, CopyConstruct(source_it.m_curr_element)); } } bool impl_empty() const REFLECTIVE_NOEXCEPT { return m_head == m_tail; } IteratorBaseImpl impl_begin() const REFLECTIVE_NOEXCEPT { if (m_head == m_tail) { return IteratorBaseImpl(static_cast<RUNTIME_TYPE*>(m_tail)); } else { auto type_ptr = static_cast<RUNTIME_TYPE*>(address_upper_align(m_head, alignof(RUNTIME_TYPE))); auto type_end = static_cast<void*>(type_ptr + 1); if (type_end > m_buffer_end) { type_ptr = static_cast<RUNTIME_TYPE*>(address_upper_align(m_buffer_start, alignof(RUNTIME_TYPE))); type_end = static_cast<void*>(type_ptr + 1); } auto const element_size = type_ptr->size(); auto const element_alignment = type_ptr->alignment(); auto element_end = type_end; auto element_ptr = linear_alloc(&element_end, element_size, element_alignment); if (element_end > m_buffer_end) { element_end = m_buffer_start; element_ptr = linear_alloc(&element_end, element_size, element_alignment); } return IteratorBaseImpl(this, type_ptr, element_ptr); } } IteratorBaseImpl impl_end() const REFLECTIVE_NOEXCEPT { return IteratorBaseImpl(static_cast<RUNTIME_TYPE*>(m_tail)); } struct CopyConstruct { const void * const m_source; CopyConstruct(const void * i_source) : m_source(i_source) { } void operator () (void * i_dest, const RUNTIME_TYPE & i_element_type) { i_element_type.copy_construct(i_dest, m_source); } }; struct MoveConstruct { void * const m_source; MoveConstruct(void * i_source) : m_source(i_source) { } void operator () (void * i_dest, const RUNTIME_TYPE & i_element_type) REFLECTIVE_NOEXCEPT { i_element_type.move_construct(i_dest, m_source); } }; /* Inserts an object on the queue. The return value is the address of the new object */ void * single_push(void * * io_tail, size_t i_size, size_t i_alignment) REFLECTIVE_NOEXCEPT { auto const prev_tail = *io_tail; auto start_of_block = linear_alloc(io_tail, i_size, i_alignment); if (*io_tail > m_buffer_end) { // wrap to the start... *io_tail = m_buffer_start; start_of_block = linear_alloc(io_tail, i_size, i_alignment); if (*io_tail >= m_head) { // ...not enough space before the head, failed! start_of_block = nullptr; *io_tail = prev_tail; } } else if ((prev_tail >= m_head) != (*io_tail >= m_head)) { // ...crossed the head, failed! start_of_block = nullptr; *io_tail = prev_tail; } return start_of_block; } template <typename CONSTRUCTOR> bool impl_push(const RUNTIME_TYPE & i_source_type, CONSTRUCTOR && i_constructor) { auto tail = static_cast<void*>(m_tail); const auto type_block = single_push(&tail, sizeof(RUNTIME_TYPE), alignof(RUNTIME_TYPE) ); const auto element_block = single_push(&tail, i_source_type.size(), i_source_type.alignment()); if (element_block == nullptr || type_block == nullptr) { return false; } // commit the push i_constructor(element_block, i_source_type); new(type_block) RUNTIME_TYPE(i_source_type); m_tail = static_cast<RUNTIME_TYPE*>(tail); assert(tail == address_add(element_block, i_source_type.size())); return true; } template <typename OPERATION> void impl_consume(OPERATION && i_operation) REFLECTIVE_NOEXCEPT_V(REFLECTIVE_NOEXCEPT_V(i_operation(std::declval<RUNTIME_TYPE>(), std::declval<void*>()))) { assert(m_head != m_tail); // the queue must not be empty auto type_ptr = static_cast<RUNTIME_TYPE*>(address_upper_align(m_head, alignof(RUNTIME_TYPE))); auto type_end = static_cast<void*>(type_ptr + 1); if (type_end > m_buffer_end) { type_ptr = static_cast<RUNTIME_TYPE*>(address_upper_align(m_buffer_start, alignof(RUNTIME_TYPE))); type_end = static_cast<void*>(type_ptr + 1); } auto const element_size = type_ptr->size(); auto const element_alignment = type_ptr->alignment(); auto element_end = type_end; auto element_ptr = linear_alloc(&element_end, element_size, element_alignment); if (element_end > m_buffer_end) { element_end = m_buffer_start; element_ptr = linear_alloc(&element_end, element_size, element_alignment); } // commit i_operation(*type_ptr, element_ptr); type_ptr->destroy(element_ptr); type_ptr->RUNTIME_TYPE::~RUNTIME_TYPE(); m_head = static_cast<RUNTIME_TYPE*>(element_end); } size_t impl_mem_capacity() const REFLECTIVE_NOEXCEPT { return address_diff(m_buffer_end, m_buffer_start); } size_t impl_mem_size() const REFLECTIVE_NOEXCEPT { if (m_head <= m_tail) { return address_diff(m_tail, m_head); } else { return address_diff(m_buffer_end, m_head) + address_diff(m_tail, m_buffer_start); } } private: void impl_clear() REFLECTIVE_NOEXCEPT { IteratorBaseImpl it = impl_begin(); while (it.m_curr_type != m_tail) { auto const type = it.m_curr_type; auto const element = it.m_curr_element; it.move_next(); type->destroy(element); type->RUNTIME_TYPE::~RUNTIME_TYPE(); } m_head = static_cast<RUNTIME_TYPE*>(m_tail); } private: RUNTIME_TYPE * m_head; // poinnts to the first RUNTIME_TYPE void * m_tail; // points to the end of the last element - if = m_tail the queue is empty void * m_buffer_start; void * m_buffer_end; }; // class DenseFixedQueueImpl } // namespace details template <typename ELEMENT = void, typename ALLOCATOR = std::allocator<ELEMENT>, typename RUNTIME_TYPE = RuntimeType<ELEMENT> > class DenseFixedQueue final { public: using RuntimeType = RUNTIME_TYPE; using allocator_type = ALLOCATOR; using value_type = ELEMENT; using reference = ELEMENT &; using const_reference = const ELEMENT &; using pointer = typename std::allocator_traits<allocator_type>::pointer; using const_pointer = typename std::allocator_traits<allocator_type>::const_pointer; using difference_type = ptrdiff_t; using size_type = size_t; class iterator; class const_iterator; DenseFixedQueue(size_t i_buffer_byte_capacity) : m_impl(i_buffer_byte_capacity) { } class iterator final { public: using iterator_category = std::forward_iterator_tag; using difference_type = ptrdiff_t; using size_type = size_t; using value_type = ELEMENT; using reference = ELEMENT &; using const_reference = const ELEMENT &; using pointer = typename std::allocator_traits<allocator_type>::pointer; using const_pointer = typename std::allocator_traits<allocator_type>::const_pointer; iterator(const typename details::DenseFixedQueueImpl<ALLOCATOR, RUNTIME_TYPE>::IteratorBaseImpl & i_source) REFLECTIVE_NOEXCEPT : m_impl(i_source) { } value_type & operator * () const REFLECTIVE_NOEXCEPT { return *static_cast<value_type *>(m_impl.m_curr_element); } value_type * operator -> () const REFLECTIVE_NOEXCEPT { return static_cast<value_type *>(m_impl.m_curr_element); } value_type * curr_element() const REFLECTIVE_NOEXCEPT { return static_cast<value_type *>(m_impl.m_curr_element); } iterator & operator ++ () REFLECTIVE_NOEXCEPT { m_impl.move_next(); return *this; } iterator operator++ (int) REFLECTIVE_NOEXCEPT { const iterator copy(*this); m_impl.move_next(); return copy; } bool operator == (const iterator & i_other) const REFLECTIVE_NOEXCEPT { return m_impl.m_curr_type == i_other.curr_type(); } bool operator != (const iterator & i_other) const REFLECTIVE_NOEXCEPT { return m_impl.m_curr_type != i_other.curr_type(); } bool operator == (const const_iterator & i_other) const REFLECTIVE_NOEXCEPT { return m_impl.m_curr_type == i_other.curr_type(); } bool operator != (const const_iterator & i_other) const REFLECTIVE_NOEXCEPT { return m_impl.m_curr_type != i_other.curr_type(); } const RUNTIME_TYPE * curr_type() const REFLECTIVE_NOEXCEPT { return m_impl.m_curr_type; } private: typename details::DenseFixedQueueImpl<ALLOCATOR, RUNTIME_TYPE>::IteratorBaseImpl m_impl; }; // class iterator class const_iterator final { public: using iterator_category = std::forward_iterator_tag; using difference_type = ptrdiff_t; using size_type = size_t; using value_type = const ELEMENT; using reference = const ELEMENT &; using const_reference = const ELEMENT &; using pointer = typename std::allocator_traits<allocator_type>::pointer; using const_pointer = typename std::allocator_traits<allocator_type>::const_pointer; const_iterator(const typename details::DenseFixedQueueImpl<ALLOCATOR, RUNTIME_TYPE>::IteratorBaseImpl & i_source) REFLECTIVE_NOEXCEPT : m_impl(i_source) { } const_iterator(const iterator & i_source) REFLECTIVE_NOEXCEPT : m_impl(i_source.m_impl) { } value_type & operator * () const REFLECTIVE_NOEXCEPT { return *static_cast<value_type *>(m_impl.m_curr_element); } value_type * operator -> () const REFLECTIVE_NOEXCEPT { return static_cast<value_type *>(m_impl.m_curr_element); } value_type * curr_element() const REFLECTIVE_NOEXCEPT { return static_cast<value_type *>(m_impl.m_curr_element); } const_iterator & operator ++ () REFLECTIVE_NOEXCEPT { m_impl.move_next(); return *this; } const_iterator operator++ (int) REFLECTIVE_NOEXCEPT { const iterator copy(*this); m_impl.move_next(); return copy; } bool operator == (const iterator & i_other) const REFLECTIVE_NOEXCEPT { return m_curr_type == i_other.curr_type(); } bool operator != (const iterator & i_other) const REFLECTIVE_NOEXCEPT { return m_curr_type != i_other.curr_type(); } bool operator == (const const_iterator & i_other) const REFLECTIVE_NOEXCEPT { return m_impl.m_curr_type == i_other.curr_type(); } bool operator != (const const_iterator & i_other) const REFLECTIVE_NOEXCEPT { return m_impl.m_curr_type != i_other.curr_type(); } const RUNTIME_TYPE * curr_type() const REFLECTIVE_NOEXCEPT { return m_impl.m_curr_type; } private: typename details::DenseFixedQueueImpl<ALLOCATOR, RUNTIME_TYPE>::IteratorBaseImpl m_impl; }; // class const_iterator iterator begin() REFLECTIVE_NOEXCEPT { return iterator(m_impl.impl_begin()); } iterator end() REFLECTIVE_NOEXCEPT { return iterator(m_impl.impl_end()); } const_iterator begin() const REFLECTIVE_NOEXCEPT { return const_iterator(m_impl.impl_begin()); } const_iterator end() const REFLECTIVE_NOEXCEPT { return const_iterator(m_impl.impl_end()); } const_iterator cbegin() const REFLECTIVE_NOEXCEPT { return const_iterator(m_impl.impl_begin()); } const_iterator cend() const REFLECTIVE_NOEXCEPT { return const_iterator(m_impl.impl_end()); } bool empty() const REFLECTIVE_NOEXCEPT { return m_impl.impl_empty(); } void clear() REFLECTIVE_NOEXCEPT { m_impl.impl_clear(); } template <typename ELEMENT_COMPLETE_TYPE> bool try_push(const ELEMENT_COMPLETE_TYPE & i_source) REFLECTIVE_NOEXCEPT_V((std::is_nothrow_copy_constructible<ELEMENT_COMPLETE_TYPE>::value)) { return m_impl.impl_push(RuntimeType::template make<ELEMENT_COMPLETE_TYPE>(), typename details::DenseFixedQueueImpl<ALLOCATOR, RUNTIME_TYPE>::CopyConstruct(&i_source)); } template <typename ELEMENT_COMPLETE_TYPE, typename ... PARAMETERS> bool try_emplace(PARAMETERS && ... i_parameters) REFLECTIVE_NOEXCEPT_V((std::is_nothrow_constructible<ELEMENT_COMPLETE_TYPE, PARAMETERS...>::value)) { return m_impl.impl_push(RuntimeType::template make<ELEMENT_COMPLETE_TYPE>(), [&i_parameters...](void * i_dest, const RuntimeType & ) { new(i_dest) ELEMENT_COMPLETE_TYPE(std::forward<PARAMETERS>(i_parameters)...); }); } bool try_copy_push(const RUNTIME_TYPE & i_type, const ELEMENT * i_source ) { return m_impl.impl_push(i_type, typename details::DenseFixedQueueImpl<ALLOCATOR, RUNTIME_TYPE>::CopyConstruct(i_source) ); } bool try_move_push(const RUNTIME_TYPE & i_type, ELEMENT * i_source) REFLECTIVE_NOEXCEPT { return m_impl.impl_push(i_type, typename details::DenseFixedQueueImpl<ALLOCATOR, RUNTIME_TYPE>::MoveConstruct(i_source)); } template <typename OPERATION> void consume(OPERATION && i_operation) REFLECTIVE_NOEXCEPT_V(REFLECTIVE_NOEXCEPT_V((i_operation( std::declval<const RUNTIME_TYPE>(), std::declval<ELEMENT>() )))) { m_impl.impl_consume([&i_operation](const RUNTIME_TYPE & i_type, void * i_element) { i_operation(i_type, *static_cast<ELEMENT*>(i_element)); }); } void pop() REFLECTIVE_NOEXCEPT { m_impl.impl_consume([](const RUNTIME_TYPE &, void *) {}); } const ELEMENT & front() REFLECTIVE_NOEXCEPT { assert(!empty()); const auto it = m_impl.impl_begin(); return *static_cast<value_type *>(it.m_curr_element); } size_t mem_capacity() const REFLECTIVE_NOEXCEPT { return m_impl.impl_mem_capacity(); } size_t mem_size() const REFLECTIVE_NOEXCEPT { return m_impl.impl_mem_size(); } size_t mem_free() const REFLECTIVE_NOEXCEPT { return m_impl.impl_mem_capacity() - m_impl.impl_mem_size(); } private: details::DenseFixedQueueImpl<ALLOCATOR, RUNTIME_TYPE> m_impl; }; // class DenseFixedQueue }
be582f9d7cd7a93469a5c743780469934ccc72f0
e42da0512597824794fe341001dc6aa2c787d94c
/pmp/Mirim/Option.cpp
00f9df65c53a6892abd1a10a6bc43d4a9a01119c
[]
no_license
mirimsoft/pmp
7004577995d87052fbe02d4ba3685c63a7012f90
82773ecc0e0b92772dbab3110193a53fe95368f7
refs/heads/master
2016-09-06T05:04:43.591475
2014-03-15T12:11:09
2014-03-15T12:11:09
17,769,876
0
1
null
null
null
null
UTF-8
C++
false
false
6,255
cpp
Option.cpp
#include "Option.h" ProPath Mirim::Option::ProductName = L"PMP 4.0.0.1"; ProPath Mirim::Option::ApplicationRoot = L""; ProPath Mirim::Option::FilePath = L""; Mirim::Option *Mirim::Option::_uniqueInstance = NULL; namespace Mirim { Option::Option(void) { this->ShowAsm1 = true; this->ShowPrt1 = true; this->ShowAsm2 = true; this->ShowDrw2 = true; this->ExportDwg = true; this->ExportDxf = false; this->ExportHpgl = false; this->ExportPdf = false; this->Print = false; *this->SourceFolder = 0; *this->PrinterName = 0; *this->PaperSize = 0; *this->LicenseFile = 0; *this->PrintFormat = 0; this->TotalLength = 16; this->PartNrStart = 13; this->PartNrLength = 4; this->ColumnWidths = NULL; this->n_folders = 0; } Option::~Option(void) { Option::Save(*this); } // Singleton Option *Option::GetUniqueInstance() { ProError status; ProPath w_path; status = ProToolkitApplTextPathGet(w_path); wsprintf(Option::ApplicationRoot, L"%s", w_path); wsprintf(Option::FilePath, L"%s\\config\\configuration.xml", w_path); if (Mirim::Util::FileExists(Option::FilePath)) { _uniqueInstance = Option::Read(); } else { _uniqueInstance = new Option(); } return Option::_uniqueInstance; } Mirim::Option *Option::Read() { Option *option = new Option(); pugi::xml_document xml; pugi::xml_parse_result success = xml.load_file(Option::FilePath); if (!success) return option; option->ExportDwg = xml.select_single_node(L"/Configuration/Option/ExportDwg").node().text().as_bool(); option->ExportDxf = xml.select_single_node(L"/Configuration/Option/ExportDxf").node().text().as_bool(); option->ExportHpgl = xml.select_single_node(L"/Configuration/Option/ExportHpgl").node().text().as_bool(); option->ExportPdf = xml.select_single_node(L"/Configuration/Option/ExportPdf").node().text().as_bool(); option->Print = xml.select_single_node(L"/Configuration/Option/Print").node().text().as_bool(); option->ShowAsm1 = xml.select_single_node(L"/Configuration/Option/ShowAsm1").node().text().as_bool(); option->ShowPrt1 = xml.select_single_node(L"/Configuration/Option/ShowPrt1").node().text().as_bool(); option->ShowAsm2 = xml.select_single_node(L"/Configuration/Option/ShowAsm2").node().text().as_bool(); option->ShowDrw2 = xml.select_single_node(L"/Configuration/Option/ShowDrw2").node().text().as_bool(); option->TotalLength = xml.select_single_node(L"/Configuration/Option/TotalLength").node().text().as_int(); option->PartNrStart = xml.select_single_node(L"/Configuration/Option/PartNrStart").node().text().as_int(); option->PartNrLength = xml.select_single_node(L"/Configuration/Option/PartNrLength").node().text().as_int(); wcscpy(option->SourceFolder, xml.select_single_node(L"/Configuration/Option/SourceFolder").node().text().as_string()); wcscpy(option->PrinterName, xml.select_single_node(L"/Configuration/Option/PrinterName").node().text().as_string()); wcscpy(option->PaperSize, xml.select_single_node(L"/Configuration/Option/PaperSize").node().text().as_string()); wcscpy(option->PrintFormat, xml.select_single_node(L"/Configuration/Option/PrintFormat").node().text().as_string()); wcscpy(option->LicenseFile, xml.select_single_node(L"/Configuration/Option/LicenseFile").node().text().as_string()); if (option->ColumnWidths != NULL) { delete[] option->ColumnWidths; } const wchar_t *w_text = xml.select_single_node(L"/Configuration/Option/ColumnWidths").node().text().as_string(); option->ColumnWidths = new wchar_t [wcslen(w_text) + 1]; wcscpy(option->ColumnWidths, w_text); return option; } ProError Option::Save(Mirim::Option &option) { pugi::xml_document xml; pugi::xml_node decl = xml.prepend_child(pugi::node_declaration); decl.append_attribute(L"version") = L"1.0"; decl.append_attribute(L"encoding") = L"UTF-8"; decl.append_attribute(L"standalone") = L"yes"; pugi::xml_node root = xml.append_child(L"Configuration"); pugi::xml_node node = root.append_child(L"Option"); pugi::xml_node child_node = node.append_child(L"ExportDxf"); child_node.text().set(option.ExportDxf); child_node = node.append_child(L"ExportDwg"); child_node.text().set(option.ExportDwg); child_node = node.append_child(L"ExportHpgl"); child_node.text().set(option.ExportHpgl); child_node = node.append_child(L"ExportPdf"); child_node.text().set(option.ExportPdf); child_node = node.append_child(L"Print"); child_node.text().set(option.Print); child_node = node.append_child(L"ExportDwg"); child_node.text().set(option.ExportDwg); child_node = node.append_child(L"ShowAsm1"); child_node.text().set(option.ShowAsm1); child_node = node.append_child(L"ShowPrt1"); child_node.text().set(option.ShowPrt1); child_node = node.append_child(L"ShowAsm2"); child_node.text().set(option.ShowAsm2); child_node = node.append_child(L"ShowDrw2"); child_node.text().set(option.ShowDrw2); child_node = node.append_child(L"SourceFolder"); child_node.text().set(option.SourceFolder); wchar_t w_text[32]; child_node = node.append_child(L"TotalLength"); child_node.text().set(_itow(option.TotalLength, w_text, 10)); child_node = node.append_child(L"PartNrStart"); child_node.text().set(_itow(option.PartNrStart, w_text, 10)); child_node = node.append_child(L"PartNrLength"); child_node.text().set(_itow(option.PartNrLength, w_text, 10)); child_node = node.append_child(L"PrinterName"); child_node.text().set(option.PrinterName); child_node = node.append_child(L"PaperSize"); child_node.text().set(option.PaperSize); child_node = node.append_child(L"PrintFormat"); child_node.text().set(option.PrintFormat); child_node = node.append_child(L"LicenseFile"); child_node.text().set(option.LicenseFile); if (option.ColumnWidths != NULL) { child_node = node.append_child(L"ColumnWidths"); child_node.text().set(option.ColumnWidths); } xml.save_file(Option::FilePath); return PRO_TK_NO_ERROR; } ProError Option::GetRootDirectory(wchar_t *w_path) { return ProToolkitApplTextPathGet(w_path); } }
d48eca58975828c8a05a2891708e23a28ef3c830
87a2896f868dc13f89ecbb629d897f0ffe8a57e6
/Code/379f.cpp
96ff8d44081b21ed0ef9687adf5d3e555bb3420e
[]
no_license
sahashoo/Daily
a20a4bce60b0903fde23bea9d5244c65a9ea3928
c209cf800cbae850e2233a149d3cc8181b49fb5e
refs/heads/master
2020-04-23T04:31:13.770829
2019-02-15T20:00:34
2019-02-15T20:00:34
170,910,172
0
0
null
null
null
null
UTF-8
C++
false
false
1,114
cpp
379f.cpp
///age yekam bekeshi beham is no problem ._. #include<bits/stdc++.h> #define ld long double // #define int long long #define F first #define S second using namespace std; void null(){return ;} const int maxn=1e6+7; // const int INF=3e18+9237; const int mod=1e9+7; const int LG=22; int anc[maxn][LG],h[maxn]; int LCA(int u,int v){ if(h[u]>h[v])swap(u,v); int depth=h[v]-h[u]; for(int i=0;i<LG;i++) if(depth&(1<<i))v=anc[v][i]; if(v==u)return v; for(int i=LG-1;i>=0;i--) if(anc[v][i]!=anc[u][i]) v=anc[v][i],u=anc[u][i]; return(u==v?v:anc[v][0]); } int dist(int u,int v){ return h[u]+h[v]-2*h[LCA(u,v)]; } int32_t main(){ ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); h[1]=0; h[2]=h[3]=h[4]=1; anc[2][0]=anc[3][0]=anc[4][0]=1; int q,v,bgn=2,trm=4,dim=2,n=4; cin>>q; vector<int>ans; while(q--){ cin>>v; h[n+1]=h[n+2]=h[v]+1; anc[n+1][0]=anc[n+2][0]=v; for(int i=1;i<LG;i++){ anc[n+1][i]=anc[anc[n+1][i-1]][i-1]; anc[n+2][i]=anc[anc[n+2][i-1]][i-1]; } if(dist(trm,n+1)>dim)dim++,bgn=n+1; else if(dist(bgn,n+1)>dim)dim++,trm=n+1; cout<<dim<<'\n'; n+=2; } }
2b399d1776a20aec7822f5cfaccab93ad996580c
ed1b1e2f35e18569aa19b63568431c65493b4fbe
/archsim/inc/instrumentation/AsyncWatcher.h
c2cd99b8c40230c06137b415bc4d0e021092f805
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
yczheng-hit/gensim
cd215c6efc6357f1e375a90d7bda003e8288ed55
1c2c608d97ef8a90253b6f0567b43724ba553c6b
refs/heads/master
2022-12-31T21:00:50.851259
2020-10-16T11:52:19
2020-10-16T11:52:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,188
h
AsyncWatcher.h
/* This file is Copyright University of Edinburgh 2018. For license details, see LICENSE. */ /* * AsyncWatcher.h * * Created on: 25 Jun 2015 * Author: harry */ #ifndef INC_UTIL_ASYNCWATCHER_H_ #define INC_UTIL_ASYNCWATCHER_H_ #include "concurrent/Thread.h" #include "concurrent/ThreadsafeQueue.h" #include "util/PubSubSync.h" namespace archsim { namespace util { class AsyncWatcher : private concurrent::Thread { public: AsyncWatcher(util::PubSubContext &pubsub, uint32_t data_size); void Subscribe(PubSubType::PubSubType type); virtual void ProcessElement(PubSubType::PubSubType type, void *data) = 0; void Enqueue(PubSubType::PubSubType type, void *data); void Start(); void Finish(); void Terminate(); static const uint32_t max_data_size = 8; typedef uint8_t data_buffer_t[max_data_size]; private: void run() override; struct queue_entry { PubSubType::PubSubType type; data_buffer_t data; }; typedef concurrent::ThreadsafeQueue<struct queue_entry, 1024*1024, false> queue_t; queue_t *queue; util::PubSubContext &pubsub; volatile bool terminate; }; } } #endif /* INC_UTIL_ASYNCWATCHER_H_ */
00858347284432e98e0805dd38717ee996655b9e
dd558312098e086d7cb6ff238e2dfe8cd8aa8572
/Source/BEXMLTextReader.cpp
fc84abebcdf45bb227bf74f938463877975df4e8
[]
no_license
unibloc/BaseElements-Plugin
b730d75d3dbcd8cd731f415b5daea7baea65992d
3b1fa0cba17b0e3a42f2e528e67b363c717dde18
refs/heads/master
2021-01-14T12:57:28.437218
2013-12-10T04:26:03
2013-12-10T04:26:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,232
cpp
BEXMLTextReader.cpp
/* BEXMLTextReader.cpp BaseElements Plug-In Copyright 2012 Goya. All rights reserved. For conditions of distribution and use please see the copyright notice in BEPlugin.cpp http://www.goya.com.au/baseelements/plugin */ #include "BEXMLTextReader.h" #include <algorithm> #include <string> #include "boost/filesystem.hpp" #pragma mark - #pragma mark Constructors #pragma mark - BEXMLTextReader::BEXMLTextReader ( const string path ) { last_node = false; boost::filesystem::path file = path; bool file_exists = boost::filesystem::exists ( file ); if ( file_exists ) { reader = xmlNewTextReaderFilename ( path.c_str() ); if ( reader != NULL ) { xml_document = xmlTextReaderCurrentDoc ( reader ); } else { throw BEXMLReaderInterface_Exception ( last_error() ); } } else { throw BEXMLReaderInterface_Exception ( kNoSuchFileOrDirectoryError ); } } BEXMLTextReader::~BEXMLTextReader() { xmlFreeTextReader ( reader ); if ( xml_document ) { xmlFreeDoc ( xml_document ); } } #pragma mark - #pragma mark Methods #pragma mark - void BEXMLTextReader::read ( ) { int ok = xmlTextReaderRead ( reader ); if ( ok == 0 ) { last_node = true; } else if ( ok == kBE_XMLReaderError ) { throw BEXMLReaderInterface_Exception ( last_error() ); } } string BEXMLTextReader::name() { const xmlChar * node_name = xmlTextReaderName ( reader ); string name = (const char *)node_name; xmlFree ( (xmlChar *)node_name ); return name; } int BEXMLTextReader::node_type() { int node_type = xmlTextReaderNodeType ( reader ); if ( node_type == kBE_XMLReaderError ) { throw BEXMLReaderInterface_Exception ( last_error() ); } return node_type; } int BEXMLTextReader::depth() { int depth = xmlTextReaderDepth ( reader ); if ( depth == kBE_XMLReaderError ) { throw BEXMLReaderInterface_Exception ( last_error() ); } return depth; } bool BEXMLTextReader::has_attributes() { int has_attributes = xmlTextReaderHasAttributes ( reader ) == 1; if ( has_attributes == kBE_XMLReaderError ) { throw BEXMLReaderInterface_Exception ( last_error() ); } return has_attributes == 1; } int BEXMLTextReader::number_of_attributes() { int count = xmlTextReaderAttributeCount ( reader ); if ( count == kBE_XMLReaderError ) { throw BEXMLReaderInterface_Exception ( last_error() ); } return count; } void BEXMLTextReader::move_to_element() { int return_code = xmlTextReaderMoveToElement ( reader ); if ( return_code == kBE_XMLReaderError ) { throw BEXMLReaderInterface_Exception ( last_error() ); } } string BEXMLTextReader::get_attribute ( const string attribute_name ) { const xmlChar * attribute_value = xmlTextReaderGetAttribute ( reader, (xmlChar *)attribute_name.c_str() ); string value = (const char *)attribute_value; xmlFree ( (xmlChar *)attribute_value ); return value; } void BEXMLTextReader::move_to_attribute ( const int attribute_number ) { int return_code = xmlTextReaderMoveToAttributeNo ( reader, attribute_number ); if ( return_code == kBE_XMLReaderError ) { throw BEXMLReaderInterface_Exception ( last_error() ); } else if ( return_code == 0 ) { throw BEXMLReaderInterface_Exception ( kBE_XMLReaderAttributeNotFoundError ); } } bool BEXMLTextReader::empty() { int empty = xmlTextReaderIsEmptyElement ( reader ); if ( empty == kBE_XMLReaderError ) { throw BEXMLReaderInterface_Exception ( last_error() ); } return empty == 1; } string BEXMLTextReader::value() { const xmlChar * reader_value = xmlTextReaderValue ( reader ); string value = (const char *)reader_value; xmlFree ( (void *)reader_value ); return value; } string BEXMLTextReader::raw_xml() { xmlBufferPtr node_content = xmlBufferCreate(); xmlOutputBufferPtr node = (xmlOutputBufferPtr) xmlMalloc ( sizeof(xmlOutputBuffer) ); memset ( node, 0, (size_t) sizeof(xmlOutputBuffer) ); node->buffer = node_content; xmlNodeDumpOutput ( node, xml_document, xmlTextReaderCurrentNode ( reader ), 0, true, "UTF-8" ); const xmlChar * xml_data = xmlBufferContent ( (xmlBufferPtr)node_content ); size_t xml_length = xmlBufferLength ( node_content ); string xml_result ( (char *)xml_data, xml_length ); xmlFree ( (xmlChar *)xml_data ); return xml_result; } // raw_xml
f6503401beb0e724f53a31c3b6aa2d1cf4074f70
e44b39d795f3e604ab5a9698ecd4447332d0cc48
/bc/d1.cpp
15549df162c2ae5fc4ac7066ef40f8d7b7959f90
[]
no_license
Ilovezilian/acm
4cd2d114333107f750812ccd2380af99e21942bb
c9f2fe995aec41ca0912a16eeda939675c6cc620
refs/heads/master
2021-06-07T23:41:01.335060
2016-10-30T02:25:17
2016-10-30T02:25:17
39,359,796
0
0
null
null
null
null
UTF-8
C++
false
false
1,188
cpp
d1.cpp
/* *********************************************** Author :Ilovezilian Created Time :2015/7/27 20:08:45 File Name :d1.cpp ************************************************ */ #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #include <vector> #include <queue> #include <set> #include <map> #include <string> #include <cmath> #include <cstdlib> #include <ctime> #define fi(i,n) for(int i = 0; i < n; i ++) #define fin(i,n1,n2) for(int i = n1; i < n2; i ++) #define INF 0x0x7fffffff #define ll long long using namespace std; const int N = 10100, mod = 1e9+7; int vis[N]; int main() { int t, n, m, u, v; scanf("%d", &t); while(t --) { memset(vis, 0, sizeof(vis)); scanf("%d%d", &n, &m); fi(i,m) { scanf("%d%d", &u, &v); if(!vis[u] && !vis[v]) vis[u] = -1, vis[v] = 1; else if(!vis[u]) vis[u] = -vis[v]; else if(!vis[v]) vis[v] = - vis[u]; } int s1 = 0, s2 = 0; fi(i,n+1) if(vis[i] == -1) s1 ++; else if(vis[i] == 1) s2 ++; if(s1 + s2 == n) {puts("0"); continue;} if(s1 < s2) s1 = s2; else s2 = s1; int k = n - 2 * s1; s1 += k / 2; s2 += k - k / 2; printf("%d\n", s1 * s2 - m); } return 0; }
499e67f4a15824b5cc067e3f2833bc6c5a4b9cce
0f2ae7177d250e3c048dc2ca5141a7c2a09f06a5
/061_Rotate_List/test.cpp
f1a940377f80858bf33e2a35884340e4198f397b
[]
no_license
MichaelHGitHub/LCA51to100
aa4130a952bfa78a1b9ac3dfbd35f020f61b1235
d3328a234915d32620f02ad2efbbfc223f1b434b
refs/heads/main
2023-09-01T16:02:46.202826
2021-10-03T15:23:25
2021-10-03T15:23:25
352,446,338
0
0
null
null
null
null
UTF-8
C++
false
false
856
cpp
test.cpp
#include "header.h" void PrepareTestData(vector<TD_L_I_L>& testData) { TD_L_I_L data; data.input = GenerateLinkedList({ 1,2,3,4,5 }); data.input2 = 2; data.output = GenerateLinkedList({ 4,5,1,2,3 }); testData.push_back(data); data.input = GenerateLinkedList({ 0,1,2 }); data.input2 = 4; data.output = GenerateLinkedList({ 2,0,1 }); testData.push_back(data); data.input = GenerateLinkedList({ 0,1,2 }); data.input2 = 0; data.output = GenerateLinkedList({ 0,1,2 }); testData.push_back(data); data.input = GenerateLinkedList({}); data.input2 = 3; data.output = GenerateLinkedList({}); testData.push_back(data); data.input = GenerateLinkedList({ 1 }); data.input2 = 10; data.output = GenerateLinkedList({ 1 }); testData.push_back(data); }
cda43e0a48b01073ae11e13dcb5e8e93f3da2a72
753d227672ea94c55c7d43002f6e7a7f67ed59a0
/Draw.hpp
6cbbb52499658e0933f8de88c1f9b4d3553ffb29
[]
no_license
Yatinu1234/covid69
c37bcae8ffadcdcb139be3fa0f85ea7a5553fc63
7b60d79f366f94d8f69d1a1dd8d3ce2ccbf8bc82
refs/heads/main
2023-02-09T13:40:07.939679
2021-01-02T21:11:20
2021-01-02T21:11:20
326,267,485
3
0
null
null
null
null
UTF-8
C++
false
false
2,062
hpp
Draw.hpp
#pragma once class nkDraw { public: nk_context* CopyContext; struct nk_font_atlas* atlas; void SetBuffer(nk_command_buffer* buffer); void SetOverlaySize(float X, float Y); float* GetOverlaySize(); void DrawCicle(int Radius, int x, int y, int rx, int gx, int bx, int ax); void DrawFOV(int Radius); void nkDrawText(const char* String, int X, int Y, int Size, nk_color c); void DrawLine(int x1, int y1, int x2, int y2, int thickness, nk_color color); void DrawFilledRect(int x, int y, int w, int h, float rounding, nk_color color); private: nk_command_buffer* b; float ScreenSize[2]; }; void nkDraw::SetBuffer(nk_command_buffer* buffer) { this->b = buffer; } void nkDraw::SetOverlaySize(float X, float Y) { ScreenSize[0] = X; ScreenSize[1] = Y; } float* nkDraw::GetOverlaySize() { return ScreenSize; } void nkDraw::DrawFOV(int Radius) { if (!b) return; nk_color c = { 0xB2,0x22,0x22,0xFF }; auto r = nk_rect(this->ScreenSize[0] / 2 - Radius, this->ScreenSize[1] / 2 - Radius, Radius*2, Radius * 2); nk_stroke_circle(b, r, 1, c); } void nkDraw::DrawCicle(int Radius, int x, int y, int rx, int gx, int bx, int ax) { if (!b) return; auto r = nk_rect(x - Radius, y - Radius, Radius * 2, Radius * 2); nk_color c = { rx,gx,bx,ax }; nk_stroke_circle(b, r, 1, c); } void nkDraw::nkDrawText(const char* String, int X, int Y, int Size, nk_color c) { if (!b || !CopyContext || !CopyContext->style.font) return; nk_color bg = { 1,1,1,0xFF }; auto r = nk_rect(X - 1 - (CopyContext->style.font->width(CopyContext->style.font->userdata, CopyContext->style.font->height, String, Size) / 2), Y - 1 - (CopyContext->style.font->height/2), 500, 100); nk_draw_text(b, r, String, Size, CopyContext->style.font, bg, c); } void nkDraw::DrawLine(int x1, int y1, int x2, int y2, int thickness, nk_color color) { if (!b) return; nk_stroke_line(b, x1, y1, x2, y2, thickness, color); } void nkDraw::DrawFilledRect(int x, int y, int w, int h, float rounding, nk_color color) { if (!b) return; nk_fill_rect(b, nk_rect(x, y, w, h), rounding, color); }
92dc2c2bb5e270c37561d77c4bde9d137126fdfb
ef647be3eedf9567ea92829759d271e344b716dd
/RenderingX12/XUSG/Advanced/XUSGCharacter.h
7f2262b4df736394f4ab068e742ac4bb069ec68b
[]
no_license
alexanderyyg/RenderingX12
7e0c96f39125259a5f269664b4c8de35861b728b
f4c63a89e9717acb2fafa5f2a52d12cd6ab84bfc
refs/heads/master
2020-09-22T01:55:46.753946
2019-11-30T08:48:03
2019-11-30T08:48:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,066
h
XUSGCharacter.h
//-------------------------------------------------------------------------------------- // By Stars XU Tianchen //-------------------------------------------------------------------------------------- #pragma once #include "Core/XUSGComputeState.h" #include "XUSGModel.h" namespace XUSG { class Character : public Model { public: struct Vertex { DirectX::XMFLOAT3 Pos; DirectX::XMUINT3 NormTex; DirectX::XMUINT4 TanBiNrm; }; struct MeshLink { std::wstring MeshName; std::string BoneName; uint32_t BoneIndex; }; Character(const Device& device, const wchar_t* name = nullptr); virtual ~Character(); bool Init(const InputLayout& inputLayout, const std::shared_ptr<SDKMesh>& mesh, const std::shared_ptr<ShaderPool>& shaderPool, const std::shared_ptr<Graphics::PipelineCache>& graphicsPipelineCache, const std::shared_ptr<Compute::PipelineCache>& computePipelineCache, const std::shared_ptr<PipelineLayoutCache>& pipelineLayoutCache, const std::shared_ptr<DescriptorTableCache>& descriptorTableCache, const std::shared_ptr<std::vector<SDKMesh>>& linkedMeshes = nullptr, const std::shared_ptr<std::vector<MeshLink>>& meshLinks = nullptr, const Format* rtvFormats = nullptr, uint32_t numRTVs = 0, Format dsvFormat = Format::UNKNOWN, Format shadowFormat = Format::UNKNOWN); void InitPosition(const DirectX::XMFLOAT4& posRot); void Update(uint8_t frameIndex, double time); void Update(uint8_t frameIndex, double time, DirectX::CXMMATRIX viewProj, DirectX::FXMMATRIX* pWorld = nullptr, DirectX::FXMMATRIX* pShadowView = nullptr, DirectX::FXMMATRIX* pShadows = nullptr, uint8_t numShadows = 0, bool isTemporal = true); virtual void SetMatrices(DirectX::CXMMATRIX viewProj, DirectX::FXMMATRIX* pWorld = nullptr, DirectX::FXMMATRIX* pShadowView = nullptr, DirectX::FXMMATRIX* pShadows = nullptr, uint8_t numShadows = 0, bool isTemporal = true); void SetSkinningPipeline(const CommandList& commandList); void Skinning(const CommandList& commandList, uint32_t& numBarriers, ResourceBarrier* pBarriers, bool reset = false); void RenderTransformed(const CommandList& commandList, PipelineLayoutIndex layout, SubsetFlags subsetFlags = SUBSET_FULL, uint8_t matrixTableIndex = CBV_MATRICES, uint32_t numInstances = 1); const DirectX::XMFLOAT4& GetPosition() const; DirectX::FXMMATRIX GetWorldMatrix() const; static std::shared_ptr<SDKMesh> LoadSDKMesh(const Device& device, const std::wstring& meshFileName, const std::wstring& animFileName, const TextureCache& textureCache, const std::shared_ptr<std::vector<MeshLink>>& meshLinks = nullptr, std::vector<SDKMesh>* pLinkedMeshes = nullptr); protected: enum InternalDescriptorTableSlot : uint8_t { INPUT, OUTPUT, SAMPLERS = BASE_SLOT, MATERIAL, SHADOW_ALPHA_REF, #if TEMPORAL HISTORY, #endif PER_FRAME }; bool createTransformedStates(); bool createTransformedVBs(VertexBuffer& vertexBuffer, ResourceState state = ResourceState::COMMON); bool createBuffers(); bool createPipelineLayouts(); bool createPipelines(const InputLayout& inputLayout, const Format* rtvFormats, uint32_t numRTVs, Format dsvFormat, Format shadowFormat); bool createDescriptorTables(); virtual void setLinkedMatrices(uint32_t mesh, DirectX::CXMMATRIX viewProj, DirectX::CXMMATRIX world, DirectX::FXMMATRIX* pShadowView, DirectX::FXMMATRIX* pShadows, uint8_t numShadows, bool isTemporal); void skinning(const CommandList& commandList, bool reset); void renderTransformed(const CommandList& commandList, PipelineLayoutIndex layout, SubsetFlags subsetFlags, uint8_t matrixTableIndex, uint32_t numInstances); void renderLinked(uint32_t mesh, uint8_t matrixTableIndex, PipelineLayoutIndex layout, uint32_t numInstances); void setSkeletalMatrices(uint32_t numMeshes); void setBoneMatrices(uint32_t mesh); void convertToDQ(DirectX::XMFLOAT4& dqTran, DirectX::CXMVECTOR quat, const DirectX::XMFLOAT3& tran) const; DirectX::FXMMATRIX getDualQuat(uint32_t mesh, uint32_t influence) const; std::shared_ptr<Compute::PipelineCache> m_computePipelineCache; VertexBuffer m_transformedVBs[FrameCount]; DirectX::XMFLOAT4X4 m_mWorld; DirectX::XMFLOAT4 m_vPosRot; double m_time; StructuredBuffer m_boneWorlds[FrameCount]; PipelineLayout m_skinningPipelineLayout; Pipeline m_skinningPipeline; std::vector<DescriptorTable> m_srvSkinningTables[FrameCount]; std::vector<DescriptorTable> m_uavSkinningTables[FrameCount]; #if TEMPORAL std::vector<DescriptorTable> m_srvSkinnedTables[FrameCount]; std::vector<DirectX::XMFLOAT4X4> m_linkedWorldViewProjs[FrameCount]; #endif std::shared_ptr<std::vector<SDKMesh>> m_linkedMeshes; std::shared_ptr<std::vector<MeshLink>> m_meshLinks; std::vector<ConstantBuffer> m_cbLinkedMatrices; std::vector<ConstantBuffer> m_cbLinkedShadowMatrices; public: enum DescriptorTableSlot : uint8_t { SHADOW_MAP = SHADOW_ALPHA_REF, ALPHA_REF = SHADOW_ALPHA_REF, IMMUATABLE = PER_FRAME + 1 }; }; }
fc4edeff9715001d61d22da6e0c879bdebcd49ea
a9b0094409350e7fbd0a05233044c2154d15ed77
/src/Main.cc
6e32a7aa01eee82b8350a2d8829a8dc7540299c7
[]
no_license
lilinj2000/sun
ab67c76d198155667d356e17c14afaa613bcb7af
9c29f3ad473987e73b797483e1a0a78dd5549f4f
refs/heads/master
2020-02-26T13:56:32.826041
2017-10-30T09:10:03
2017-10-30T09:10:03
60,672,327
0
0
null
null
null
null
UTF-8
C++
false
false
1,007
cc
Main.cc
// Copyright (c) 2010 // All rights reserved. #include <memory> #include <iostream> #include "Server.hh" #include "soil/json.hh" #include "soil/Log.hh" #include "args.hxx" int main(int argc, char* argv[]) { args::ArgumentParser parser("The fema's load test program."); args::HelpFlag help( parser, "help", "Display this help menu", {'h', "help"}); args::ValueFlag<std::string> config( parser, "config", "config file", {'c', "config"}); try { parser.ParseCLI(argc, argv); } catch (args::Help) { std::cout << parser; return 0; } catch (args::ParseError e) { std::cerr << e.what() << std::endl; std::cerr << parser; return 1; } std::string config_file = "sun.json"; if (config) { config_file = args::get(config); } std::unique_ptr<sun::Server> server; rapidjson::Document doc; soil::json::load_from_file(&doc, config_file); soil::log::init(doc); server.reset(new sun::Server(doc)); return 0; }
05e79e4cd9bbce80f0562401c015ea181735f20d
814568751dccd74638cee34a371bef0ccf739e72
/tfcc/mkl/gemm/tfcc_mklmatmulkernel.h
8433c04f4798ad299685ce27e597759a761f6a35
[ "BSD-3-Clause" ]
permissive
zjjnevergg/WeChat-TFCC
03010e67b4d8427e0b5174b06e8f198e1e515e27
fe76438cb9a632e65e999680f19443bfcf27957e
refs/heads/master
2023-06-07T02:16:49.703797
2021-07-06T23:05:38
2021-07-06T23:10:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
18,211
h
tfcc_mklmatmulkernel.h
// Copyright 2021 Wechat Group, Tencent // // 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. #pragma once #include <immintrin.h> #include <cstdint> namespace tfcc { void matmul_m24_n4_k2( const uint8_t* a, const uint8_t* b, int32_t* dst, uint64_t stride, uint64_t batch) { asm volatile( "vpxor ymm4, ymm4, ymm4\n\t" "vpxor ymm5, ymm5, ymm5\n\t" "vpxor ymm6, ymm6, ymm6\n\t" "vpxor ymm7, ymm7, ymm7\n\t" "vpxor ymm8, ymm8, ymm8\n\t" "vpxor ymm9, ymm9, ymm9\n\t" "vpxor ymm10, ymm10, ymm10\n\t" "vpxor ymm11, ymm11, ymm11\n\t" "vpxor ymm12, ymm12, ymm12\n\t" "vpxor ymm13, ymm13, ymm13\n\t" "vpxor ymm14, ymm14, ymm14\n\t" "vpxor ymm15, ymm15, ymm15\n\t" "lea r14, [%[dst_ptr] + %[stride] * 2]\n\t" // loop "_matmul_m24_n4_k2_loop_start_ua_ub:\n\t" "vpmovzxbw ymm1, [%[b_ptr]]\n\t" "vpermq ymm1, ymm1, 0x44\n\t" // a_ptr section 0 "vpmovzxbw ymm0, [%[a_ptr]]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm4, ymm2, ymm4\n\t" "vpaddd ymm5, ymm3, ymm5\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm6, ymm2, ymm6\n\t" "vpaddd ymm7, ymm3, ymm7\n\t" // a_ptr section 1 "vpmovzxbw ymm0, [%[a_ptr] + 0x10]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm8, ymm2, ymm8\n\t" "vpaddd ymm9, ymm3, ymm9\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm10, ymm2, ymm10\n\t" "vpaddd ymm11, ymm3, ymm11\n\t" // a_ptr section 2 "vpmovzxbw ymm0, [%[a_ptr] + 0x20]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm12, ymm2, ymm12\n\t" "vpaddd ymm13, ymm3, ymm13\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm14, ymm2, ymm14\n\t" "vpaddd ymm15, ymm3, ymm15\n\t" "add %[a_ptr], 0x30 \n\t" "add %[b_ptr], 0x08 \n\t" "dec %[batch]\n\t" "jnz _matmul_m24_n4_k2_loop_start_ua_ub\n\t" // add dst "vpaddd ymm4, ymm4, [%[dst_ptr]]\n\t" "vpaddd ymm8, ymm8, [%[dst_ptr] + 0x20]\n\t" "vpaddd ymm12, ymm12, [%[dst_ptr] + 0x40]\n\t" "vpaddd ymm5, ymm5, [%[dst_ptr] + %[stride] * 1]\n\t" "vpaddd ymm9, ymm9, [%[dst_ptr] + %[stride] * 1 + 0x20]\n\t" "vpaddd ymm13, ymm13, [%[dst_ptr] + %[stride] * 1 + 0x40]\n\t" "vpaddd ymm6, ymm6, [%[dst_ptr] + %[stride] * 2]\n\t" "vpaddd ymm10, ymm10, [%[dst_ptr] + %[stride] * 2 + 0x20]\n\t" "vpaddd ymm14, ymm14, [%[dst_ptr] + %[stride] * 2 + 0x40]\n\t" "vpaddd ymm7, ymm7, [r14 + %[stride] * 1]\n\t" "vpaddd ymm11, ymm11, [r14 + %[stride] * 1 + 0x20]\n\t" "vpaddd ymm15, ymm15, [r14 + %[stride] * 1 + 0x40]\n\t" // save to dst "vmovdqu [%[dst_ptr]], ymm4\n\t" "vmovdqu [%[dst_ptr] + 0x20], ymm8\n\t" "vmovdqu [%[dst_ptr] + 0x40], ymm12\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1], ymm5\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1 + 0x20], ymm9\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1 + 0x40], ymm13\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2], ymm6\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2 + 0x20], ymm10\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2 + 0x40], ymm14\n\t" "vmovdqu [r14 + %[stride] * 1], ymm7\n\t" "vmovdqu [r14 + %[stride] * 1 + 0x20], ymm11\n\t" "vmovdqu [r14 + %[stride] * 1 + 0x40], ymm15\n\t" : : [ a_ptr ] "r"(a), [ b_ptr ] "r"(b), [ dst_ptr ] "r"(dst), [ stride ] "r"(stride * sizeof(int32_t)), [ batch ] "r"(batch) : "memory", "cc", "r14", #if __GNUC__ >= 5 "ymm0", "ymm1", "ymm2", "ymm3", "ymm4", "ymm5", "ymm6", "ymm7", "ymm8", "ymm9", "ymm10", "ymm11", "ymm12", "ymm13", "ymm14", "ymm15" #else "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7", "xmm8", "xmm9", "xmm10", "xmm11", "xmm12", "xmm13", "xmm14", "xmm15" #endif ); } void matmul_m24_n4_k2( const int8_t* a, const uint8_t* b, int32_t* dst, uint64_t stride, uint64_t batch) { asm volatile( "vpxor ymm4, ymm4, ymm4\n\t" "vpxor ymm5, ymm5, ymm5\n\t" "vpxor ymm6, ymm6, ymm6\n\t" "vpxor ymm7, ymm7, ymm7\n\t" "vpxor ymm8, ymm8, ymm8\n\t" "vpxor ymm9, ymm9, ymm9\n\t" "vpxor ymm10, ymm10, ymm10\n\t" "vpxor ymm11, ymm11, ymm11\n\t" "vpxor ymm12, ymm12, ymm12\n\t" "vpxor ymm13, ymm13, ymm13\n\t" "vpxor ymm14, ymm14, ymm14\n\t" "vpxor ymm15, ymm15, ymm15\n\t" "lea r14, [%[dst_ptr] + %[stride] * 2]\n\t" // loop "_matmul_m24_n4_k2_loop_start_ia_ub:\n\t" "vpmovzxbw ymm1, [%[b_ptr]]\n\t" "vpermq ymm1, ymm1, 0x44\n\t" // a_ptr section 0 "vpmovsxbw ymm0, [%[a_ptr]]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm4, ymm2, ymm4\n\t" "vpaddd ymm5, ymm3, ymm5\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm6, ymm2, ymm6\n\t" "vpaddd ymm7, ymm3, ymm7\n\t" // a_ptr section 1 "vpmovsxbw ymm0, [%[a_ptr] + 0x10]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm8, ymm2, ymm8\n\t" "vpaddd ymm9, ymm3, ymm9\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm10, ymm2, ymm10\n\t" "vpaddd ymm11, ymm3, ymm11\n\t" // a_ptr section 2 "vpmovsxbw ymm0, [%[a_ptr] + 0x20]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm12, ymm2, ymm12\n\t" "vpaddd ymm13, ymm3, ymm13\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm14, ymm2, ymm14\n\t" "vpaddd ymm15, ymm3, ymm15\n\t" "add %[a_ptr], 0x30 \n\t" "add %[b_ptr], 0x08 \n\t" "dec %[batch]\n\t" "jnz _matmul_m24_n4_k2_loop_start_ia_ub\n\t" // add dst "vpaddd ymm4, ymm4, [%[dst_ptr]]\n\t" "vpaddd ymm8, ymm8, [%[dst_ptr] + 0x20]\n\t" "vpaddd ymm12, ymm12, [%[dst_ptr] + 0x40]\n\t" "vpaddd ymm5, ymm5, [%[dst_ptr] + %[stride] * 1]\n\t" "vpaddd ymm9, ymm9, [%[dst_ptr] + %[stride] * 1 + 0x20]\n\t" "vpaddd ymm13, ymm13, [%[dst_ptr] + %[stride] * 1 + 0x40]\n\t" "vpaddd ymm6, ymm6, [%[dst_ptr] + %[stride] * 2]\n\t" "vpaddd ymm10, ymm10, [%[dst_ptr] + %[stride] * 2 + 0x20]\n\t" "vpaddd ymm14, ymm14, [%[dst_ptr] + %[stride] * 2 + 0x40]\n\t" "vpaddd ymm7, ymm7, [r14 + %[stride] * 1]\n\t" "vpaddd ymm11, ymm11, [r14 + %[stride] * 1 + 0x20]\n\t" "vpaddd ymm15, ymm15, [r14 + %[stride] * 1 + 0x40]\n\t" // save to dst "vmovdqu [%[dst_ptr]], ymm4\n\t" "vmovdqu [%[dst_ptr] + 0x20], ymm8\n\t" "vmovdqu [%[dst_ptr] + 0x40], ymm12\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1], ymm5\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1 + 0x20], ymm9\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1 + 0x40], ymm13\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2], ymm6\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2 + 0x20], ymm10\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2 + 0x40], ymm14\n\t" "vmovdqu [r14 + %[stride] * 1], ymm7\n\t" "vmovdqu [r14 + %[stride] * 1 + 0x20], ymm11\n\t" "vmovdqu [r14 + %[stride] * 1 + 0x40], ymm15\n\t" : : [ a_ptr ] "r"(a), [ b_ptr ] "r"(b), [ dst_ptr ] "r"(dst), [ stride ] "r"(stride * sizeof(int32_t)), [ batch ] "r"(batch) : "memory", "cc", "r14", #if __GNUC__ >= 5 "ymm0", "ymm1", "ymm2", "ymm3", "ymm4", "ymm5", "ymm6", "ymm7", "ymm8", "ymm9", "ymm10", "ymm11", "ymm12", "ymm13", "ymm14", "ymm15" #else "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7", "xmm8", "xmm9", "xmm10", "xmm11", "xmm12", "xmm13", "xmm14", "xmm15" #endif ); } void matmul_m24_n4_k2( const uint8_t* a, const int8_t* b, int32_t* dst, uint64_t stride, uint64_t batch) { asm volatile( "vpxor ymm4, ymm4, ymm4\n\t" "vpxor ymm5, ymm5, ymm5\n\t" "vpxor ymm6, ymm6, ymm6\n\t" "vpxor ymm7, ymm7, ymm7\n\t" "vpxor ymm8, ymm8, ymm8\n\t" "vpxor ymm9, ymm9, ymm9\n\t" "vpxor ymm10, ymm10, ymm10\n\t" "vpxor ymm11, ymm11, ymm11\n\t" "vpxor ymm12, ymm12, ymm12\n\t" "vpxor ymm13, ymm13, ymm13\n\t" "vpxor ymm14, ymm14, ymm14\n\t" "vpxor ymm15, ymm15, ymm15\n\t" "lea r14, [%[dst_ptr] + %[stride] * 2]\n\t" // loop "_matmul_m24_n4_k2_loop_start_ua_ib:\n\t" "vpmovsxbw ymm1, [%[b_ptr]]\n\t" "vpermq ymm1, ymm1, 0x44\n\t" // a_ptr section 0 "vpmovzxbw ymm0, [%[a_ptr]]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm4, ymm2, ymm4\n\t" "vpaddd ymm5, ymm3, ymm5\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm6, ymm2, ymm6\n\t" "vpaddd ymm7, ymm3, ymm7\n\t" // a_ptr section 1 "vpmovzxbw ymm0, [%[a_ptr] + 0x10]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm8, ymm2, ymm8\n\t" "vpaddd ymm9, ymm3, ymm9\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm10, ymm2, ymm10\n\t" "vpaddd ymm11, ymm3, ymm11\n\t" // a_ptr section 2 "vpmovzxbw ymm0, [%[a_ptr] + 0x20]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm12, ymm2, ymm12\n\t" "vpaddd ymm13, ymm3, ymm13\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm14, ymm2, ymm14\n\t" "vpaddd ymm15, ymm3, ymm15\n\t" "add %[a_ptr], 0x30 \n\t" "add %[b_ptr], 0x08 \n\t" "dec %[batch]\n\t" "jnz _matmul_m24_n4_k2_loop_start_ua_ib\n\t" // add dst "vpaddd ymm4, ymm4, [%[dst_ptr]]\n\t" "vpaddd ymm8, ymm8, [%[dst_ptr] + 0x20]\n\t" "vpaddd ymm12, ymm12, [%[dst_ptr] + 0x40]\n\t" "vpaddd ymm5, ymm5, [%[dst_ptr] + %[stride] * 1]\n\t" "vpaddd ymm9, ymm9, [%[dst_ptr] + %[stride] * 1 + 0x20]\n\t" "vpaddd ymm13, ymm13, [%[dst_ptr] + %[stride] * 1 + 0x40]\n\t" "vpaddd ymm6, ymm6, [%[dst_ptr] + %[stride] * 2]\n\t" "vpaddd ymm10, ymm10, [%[dst_ptr] + %[stride] * 2 + 0x20]\n\t" "vpaddd ymm14, ymm14, [%[dst_ptr] + %[stride] * 2 + 0x40]\n\t" "vpaddd ymm7, ymm7, [r14 + %[stride] * 1]\n\t" "vpaddd ymm11, ymm11, [r14 + %[stride] * 1 + 0x20]\n\t" "vpaddd ymm15, ymm15, [r14 + %[stride] * 1 + 0x40]\n\t" // save to dst "vmovdqu [%[dst_ptr]], ymm4\n\t" "vmovdqu [%[dst_ptr] + 0x20], ymm8\n\t" "vmovdqu [%[dst_ptr] + 0x40], ymm12\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1], ymm5\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1 + 0x20], ymm9\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1 + 0x40], ymm13\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2], ymm6\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2 + 0x20], ymm10\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2 + 0x40], ymm14\n\t" "vmovdqu [r14 + %[stride] * 1], ymm7\n\t" "vmovdqu [r14 + %[stride] * 1 + 0x20], ymm11\n\t" "vmovdqu [r14 + %[stride] * 1 + 0x40], ymm15\n\t" : : [ a_ptr ] "r"(a), [ b_ptr ] "r"(b), [ dst_ptr ] "r"(dst), [ stride ] "r"(stride * sizeof(int32_t)), [ batch ] "r"(batch) : "memory", "cc", "r14", #if __GNUC__ >= 5 "ymm0", "ymm1", "ymm2", "ymm3", "ymm4", "ymm5", "ymm6", "ymm7", "ymm8", "ymm9", "ymm10", "ymm11", "ymm12", "ymm13", "ymm14", "ymm15" #else "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7", "xmm8", "xmm9", "xmm10", "xmm11", "xmm12", "xmm13", "xmm14", "xmm15" #endif ); } void matmul_m24_n4_k2( const int8_t* a, const int8_t* b, int32_t* dst, uint64_t stride, uint64_t batch) { asm volatile( "vpxor ymm4, ymm4, ymm4\n\t" "vpxor ymm5, ymm5, ymm5\n\t" "vpxor ymm6, ymm6, ymm6\n\t" "vpxor ymm7, ymm7, ymm7\n\t" "vpxor ymm8, ymm8, ymm8\n\t" "vpxor ymm9, ymm9, ymm9\n\t" "vpxor ymm10, ymm10, ymm10\n\t" "vpxor ymm11, ymm11, ymm11\n\t" "vpxor ymm12, ymm12, ymm12\n\t" "vpxor ymm13, ymm13, ymm13\n\t" "vpxor ymm14, ymm14, ymm14\n\t" "vpxor ymm15, ymm15, ymm15\n\t" "lea r14, [%[dst_ptr] + %[stride] * 2]\n\t" // loop "_matmul_m24_n4_k2_loop_start_ia_ib:\n\t" "vpmovsxbw ymm1, [%[b_ptr]]\n\t" "vpermq ymm1, ymm1, 0x44\n\t" // a_ptr section 0 "vpmovsxbw ymm0, [%[a_ptr]]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm4, ymm2, ymm4\n\t" "vpaddd ymm5, ymm3, ymm5\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm6, ymm2, ymm6\n\t" "vpaddd ymm7, ymm3, ymm7\n\t" // a_ptr section 1 "vpmovsxbw ymm0, [%[a_ptr] + 0x10]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm8, ymm2, ymm8\n\t" "vpaddd ymm9, ymm3, ymm9\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm10, ymm2, ymm10\n\t" "vpaddd ymm11, ymm3, ymm11\n\t" // a_ptr section 2 "vpmovsxbw ymm0, [%[a_ptr] + 0x20]\n\t" "vpshufd ymm2, ymm1, 0x00\n\t" "vpshufd ymm3, ymm1, 0x55\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm12, ymm2, ymm12\n\t" "vpaddd ymm13, ymm3, ymm13\n\t" "vpshufd ymm2, ymm1, 0xaa\n\t" "vpshufd ymm3, ymm1, 0xff\n\t" "vpmaddwd ymm2, ymm0, ymm2\n\t" "vpmaddwd ymm3, ymm0, ymm3\n\t" "vpaddd ymm14, ymm2, ymm14\n\t" "vpaddd ymm15, ymm3, ymm15\n\t" "add %[a_ptr], 0x30 \n\t" "add %[b_ptr], 0x08 \n\t" "dec %[batch]\n\t" "jnz _matmul_m24_n4_k2_loop_start_ia_ib\n\t" // add dst "vpaddd ymm4, ymm4, [%[dst_ptr]]\n\t" "vpaddd ymm8, ymm8, [%[dst_ptr] + 0x20]\n\t" "vpaddd ymm12, ymm12, [%[dst_ptr] + 0x40]\n\t" "vpaddd ymm5, ymm5, [%[dst_ptr] + %[stride] * 1]\n\t" "vpaddd ymm9, ymm9, [%[dst_ptr] + %[stride] * 1 + 0x20]\n\t" "vpaddd ymm13, ymm13, [%[dst_ptr] + %[stride] * 1 + 0x40]\n\t" "vpaddd ymm6, ymm6, [%[dst_ptr] + %[stride] * 2]\n\t" "vpaddd ymm10, ymm10, [%[dst_ptr] + %[stride] * 2 + 0x20]\n\t" "vpaddd ymm14, ymm14, [%[dst_ptr] + %[stride] * 2 + 0x40]\n\t" "vpaddd ymm7, ymm7, [r14 + %[stride] * 1]\n\t" "vpaddd ymm11, ymm11, [r14 + %[stride] * 1 + 0x20]\n\t" "vpaddd ymm15, ymm15, [r14 + %[stride] * 1 + 0x40]\n\t" // save to dst "vmovdqu [%[dst_ptr]], ymm4\n\t" "vmovdqu [%[dst_ptr] + 0x20], ymm8\n\t" "vmovdqu [%[dst_ptr] + 0x40], ymm12\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1], ymm5\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1 + 0x20], ymm9\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 1 + 0x40], ymm13\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2], ymm6\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2 + 0x20], ymm10\n\t" "vmovdqu [%[dst_ptr] + %[stride] * 2 + 0x40], ymm14\n\t" "vmovdqu [r14 + %[stride] * 1], ymm7\n\t" "vmovdqu [r14 + %[stride] * 1 + 0x20], ymm11\n\t" "vmovdqu [r14 + %[stride] * 1 + 0x40], ymm15\n\t" : : [ a_ptr ] "r"(a), [ b_ptr ] "r"(b), [ dst_ptr ] "r"(dst), [ stride ] "r"(stride * sizeof(int32_t)), [ batch ] "r"(batch) : "memory", "cc", "r14", #if __GNUC__ >= 5 "ymm0", "ymm1", "ymm2", "ymm3", "ymm4", "ymm5", "ymm6", "ymm7", "ymm8", "ymm9", "ymm10", "ymm11", "ymm12", "ymm13", "ymm14", "ymm15" #else "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7", "xmm8", "xmm9", "xmm10", "xmm11", "xmm12", "xmm13", "xmm14", "xmm15" #endif ); } } // namespace tfcc
4c372aea7f39e2e1c433d4127a02e381b8542068
c66129d551456ea813f1e09ba93b7c6cf38307fb
/Game.h
544dda3d3e5d7286a5c3d38ecd682dfb2c85834a
[]
no_license
DanielBuzkov/trivia
1ddade85e722c0197e193ee29de0b89f18f6cb4e
a930dcd71946c8653d290c17775544f213d4b61d
refs/heads/master
2022-12-30T09:45:12.358012
2018-06-26T20:32:44
2018-06-26T20:32:44
299,983,139
0
0
null
null
null
null
UTF-8
C++
false
false
335
h
Game.h
#pragma once //unclear #include "Question.h" #include "Protocol.h" #include "LoggedUser.h" #include <vector> #include <map> class Game { private: vector<Question> m_questions; map<LoggedUser, GameData> m_players; public: void getQuestionsForUser(LoggedUser); //param type was User void submitAnswer(); void removePlayer(); };
73dca3e2c6b3abde8d376204e3b2f3fb46093785
237ccc5bdcf48c7893456bf8e5f745dfa9b0bb57
/StructuringElement.cpp
5de361cfa59021aa76e169256d945a99bbb601a6
[]
no_license
rickie95/MorphOpsCUDA
4479fcf597b30a2969ae9fdff000bcc244b14526
031f3a60b99853ed430c68810efe98995375279c
refs/heads/master
2020-04-09T17:59:25.904686
2019-01-12T18:09:19
2019-01-12T18:09:19
160,498,202
3
1
null
null
null
null
UTF-8
C++
false
false
2,679
cpp
StructuringElement.cpp
#include "StructuringElement.h" #include <stdlib.h> #include <stdio.h> #include <cmath> // CLASS StructElem: base class. StructElem::StructElem() {} StructElem::StructElem(int radius_x, int radius_y){ this->radius_x = radius_x; this->radius_y = radius_y; this->width = 2 * radius_x + 1 ; this->height = 2 * radius_y + 1; this->data = (float*)malloc(width * height * sizeof(float)); for(int i = 0; i < height * width; i += 1){ this->data[i] = 0; } } StructElem::StructElem(int radius_x, int radius_y, float *data){ StructElem(radius_x, radius_y); free(data); this->data = data; } StructElem::StructElem(int radius, float* data){ StructElem(radius, radius); free(data); this->data = data; } StructElem::~StructElem(){ if(data != NULL) free(data); } void StructElem::setData(float* data){ if(data != NULL) free(data); this->data = data; } void StructElem::print(){ for(int r = 0; r < height; r += 1){ for(int c = 0; c < width; c +=1) printf("%f \t", this->data[r * width + c]); printf("\n"); } } // Getters int StructElem::get_radius_x(){ return this->radius_x; } int StructElem::get_radius_y(){ return this->radius_y; } int StructElem::get_width(){ return width; } int StructElem::get_height(){ return height; } // CLASS SquareShaper_SE: class derived from StructElem. SquareShaper_SE::SquareShaper_SE(int radius) : StructElem(radius, radius){ for(int i = 0; i < width*height; i+=1){ this->data[i] = 1; } } DiamondShape_SE::DiamondShape_SE(int radius) : StructElem(radius, radius){ for(int r = 0; r < height/2 + 1; r += 1){ for(int c = width - radius_x - 1 - r; c < width - radius_x + r; c += 1){ this->data[r * width + c] = 1; this->data[(height - r - 1) * width + c] = 1; } } } LineShape_SE::LineShape_SE(int length, int angle) : StructElem(){ // 0°, +-45°, 90° int a; if(abs(angle) > 360) a = std::signbit(angle)*angle%360; a = (int)round(angle/45) * 45; printf("Angle is approximated with %d°", a); } CircleShape_SE::CircleShape_SE(int radius) : StructElem(radius, radius){ float* t_data = (float *)malloc(height * width * sizeof(float)); for(int i = 0; i < height; i+=1){ for(int j = 0; j < width; j+=1){ int x = j - radius; int y = radius - i; t_data[i * radius + j] = 0; if( x * x + y * y <= radius * radius) t_data[i * radius + j] = 1; printf("%f \t", t_data[i * radius + j]); } printf("\n"); } this->setData(t_data); }
30e089eedda5bf42c6d7c737f411ff89ed5a1f39
398f2fc3d2aa4eb7b2bbdf25943c97535bd2d17d
/Markov random fields/GraphCut/GraphCutMex.cpp
0806d9e5510e4246601fcabe5fd5a19f950afccd
[]
no_license
jakejhansen/Advanced_Image_Analysis_02503
7697daa8f3faa3a5d4e92efec1c72e20742fd801
200061486ee7817b63761555412a0653bd7b7024
refs/heads/master
2021-09-22T09:06:05.339418
2018-05-28T23:56:37
2018-05-28T23:56:37
126,198,166
0
1
null
null
null
null
UTF-8
C++
false
false
2,415
cpp
GraphCutMex.cpp
#include <math.h> #include "mex.h" #include "graph.h" #include <vector> void mexFunction(int nout, mxArray *out[], int nin, const mxArray *in[]) { if (nin != 3) mexErrMsgTxt("Three arguments are required (nNodes,TerminalWeights,EdgeWeights)") ; if (nout > 2) mexErrMsgTxt("Too many output arguments."); int nNodes = (int) *mxGetPr(in[0]); const int* twDim = mxGetDimensions(in[1]) ; int twRows = twDim[0] ; int twCols = twDim[1] ; double* twPt = mxGetPr(in[1]) ; if(twCols!=3) mexErrMsgTxt("The Terminal Weight matix should have 3 columns, (Node,sink,source)."); const int* ewDim = mxGetDimensions(in[2]) ; int ewRows = ewDim[0] ; int ewCols = ewDim[1] ; double* ewPt = mxGetPr(in[2]) ; if(ewCols!=4) mexErrMsgTxt("The Terminal Weight matix should have 4 columns, (From,To,Capacity,Rev_Capacity)."); typedef Graph<double,double,double> GraphType; GraphType G(static_cast<int>(nNodes), static_cast<int>(ewRows+twRows)); G.add_node(nNodes); for(int cTw=0;cTw<twRows;cTw++) { //Test for nodes in range int node=(int)twPt[cTw]-1; if(node<0 || node>=nNodes) mexErrMsgTxt("index out of bounds in TerminalWeight Matrix."); G.add_tweights(node,twPt[cTw+twRows],twPt[cTw+2*twRows]); } for(int cEw=0;cEw<ewRows;cEw++) { //Test for nodes in range int From=(int)ewPt[cEw]-1; int To=(int)ewPt[cEw+ewRows]-1; if(From<0 || From>=nNodes) mexErrMsgTxt("From index out of bounds in Edge Weight Matrix."); if(To<0 || To>=nNodes) mexErrMsgTxt("To index out of bounds in Edge Weight Matrix."); G.add_edge(From,To,ewPt[cEw+2*ewRows],ewPt[cEw+3*ewRows]); } double flow=G.maxflow(); std::vector<int> SourceCut; for(int cNode=0;cNode<nNodes;cNode++) { if(G.what_segment(cNode)== GraphType::SOURCE) SourceCut.push_back(cNode+1); } out[0] = mxCreateDoubleMatrix(SourceCut.size(), 1, mxREAL) ; double* pOut=mxGetPr(out[0]); std::vector<int>::const_iterator Itt(SourceCut.begin()); for(;Itt!=SourceCut.end();++Itt) { *pOut=*Itt; ++pOut; } if(nout==2) { out[1] = mxCreateDoubleMatrix(1, 1, mxREAL) ; *mxGetPr(out[1])=flow; } }
bc05b2cc2a2a595d58956c5b5adeac7809ea018a
c4a71c9813d8ea5b688e8f762258a1021e8f659e
/src/tracker/torrentracker.h
c10c6d8a723cebeec4b9b821a81c648ebd7f472e
[]
no_license
HoTaeWang/CuteTorrent
1960627f30600f80af205f9e6458b274d9a4c175
d599ffb65af9cd79c15260a35d8ceaa88efc6d6c
refs/heads/master
2021-01-21T09:02:59.325799
2016-01-01T15:52:24
2016-01-01T15:52:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
659
h
torrentracker.h
#ifndef TORRENTRACKER_H #define TORRENTRACKER_H #include <QObject> #include "trackercommon.h" #include "ServiceCommon.h" class TrackerRequestHandler; class HttpListener; class TorrentTracker : public QObject, public Singleton<TorrentTracker> { friend class Singleton<TorrentTracker>; Q_OBJECT private: HttpListener* httpServer; TrackerRequestHandler* requestHandler; QApplicationSettingsPtr m_pSettings; private slots: void OnSettngsChnaged(QString, QString); protected: explicit TorrentTracker(QObject* parent = 0); public: bool isRunning(); void start(); void stop(); ~TorrentTracker(); signals: public slots: }; #endif // TORRENTRACKER_H
b32766726a0808a549cb337e54b6728b0c15994e
4cb98b7fe0654a928deea9ead312eb0861e4e73c
/VS/Il2CppOutputProject/Source/il2cppOutput/Bulk_Generics_21.cpp
0526560a661a9968bee742c462698b4a7b076c24
[]
no_license
Tuan-Mai/ComputingInAR-FinalProject
3e78feb6b9deda1512d01b924b790811cd0c2197
930c6b1fccbf1e2c7a0d2257abaff8acd4cbf97e
refs/heads/master
2020-04-08T12:52:16.130981
2018-12-10T17:31:31
2018-12-10T17:31:31
159,365,065
0
0
null
null
null
null
UTF-8
C++
false
false
2,126,652
cpp
Bulk_Generics_21.cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "il2cpp-class-internals.h" #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" template <typename R, typename T1, typename T2> struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R> struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2> struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; // HoloToolkit.Sharing.Spawning.PrefabToDataModel[] struct PrefabToDataModelU5BU5D_t2309926077; // HoloToolkit.UX.Dialog.DialogButtonType[] struct DialogButtonTypeU5BU5D_t3127917365; // HoloToolkit.Unity.InputModule.IInputSource struct IInputSource_t3332243029; // HoloToolkit.Unity.InputModule.InputSourceInfo[] struct InputSourceInfoU5BU5D_t3430263659; // HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair[] struct KeyCodeEventPairU5BU5D_t2855334591; // HoloToolkit.Unity.RaycastResultHelper[] struct RaycastResultHelperU5BU5D_t2017648553; // HoloToolkit.Unity.Receivers.InteractionReceiver struct InteractionReceiver_t3572119366; // HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData[] struct MeshDataU5BU5D_t1706847054; // HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject[] struct SurfaceObjectU5BU5D_t214306891; // HoloToolkit.Unity.SpatialUnderstandingDll/MeshData[] struct MeshDataU5BU5D_t822949927; // HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint[] struct ShapeComponentConstraintU5BU5D_t2060966206; // HoloToolkit.Unity.TimerScheduler/Callback struct Callback_t2663646540; // HoloToolkit.Unity.TimerScheduler/TimerData[] struct TimerDataU5BU5D_t2187523415; // HoloToolkit.Unity.TimerScheduler/TimerIdPair[] struct TimerIdPairU5BU5D_t552239964; // HoloToolkit.Unity.UX.AppBar/ButtonTemplate[] struct ButtonTemplateU5BU5D_t1265442161; // Newtonsoft.Json.JsonPosition[] struct JsonPositionU5BU5D_t197937271; // System.ArgumentException struct ArgumentException_t132251570; // System.ArgumentNullException struct ArgumentNullException_t1615371798; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t777629997; // System.AsyncCallback struct AsyncCallback_t3962456242; // System.Boolean[] struct BooleanU5BU5D_t2897418192; // System.Byte[] struct ByteU5BU5D_t4116647657; // System.Char[] struct CharU5BU5D_t3528271667; // System.Char[][] struct CharU5BU5DU5BU5D_t2526858914; // System.Collections.DictionaryEntry[] struct DictionaryEntryU5BU5D_t4217117203; // System.Collections.DictionaryEntry[][] struct DictionaryEntryU5BU5DU5BU5D_t3671610434; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_t2736202052; // System.Collections.Generic.IComparer`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct IComparer_1_t3016568699; // System.Collections.Generic.IComparer`1<HoloToolkit.UX.Dialog.DialogButtonType> struct IComparer_1_t935106659; // System.Collections.Generic.IComparer`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct IComparer_1_t1354293221; // System.Collections.Generic.IComparer`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct IComparer_1_t2764370977; // System.Collections.Generic.IEnumerable`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct IEnumerable_1_t742156109; // System.Collections.Generic.IEnumerable`1<HoloToolkit.UX.Dialog.DialogButtonType> struct IEnumerable_1_t2955661365; // System.Collections.Generic.IEnumerable`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct IEnumerable_1_t3374847927; // System.Collections.Generic.IEnumerable`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct IEnumerable_1_t489958387; // System.Collections.Generic.IEnumerable`1<System.Char> struct IEnumerable_1_t2614313359; // System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry> struct IEnumerable_1_t2103828527; // System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct IEnumerable_1_t1510070208; // System.Collections.Generic.IEnumerable`1<System.Object> struct IEnumerable_1_t2059959053; // System.Collections.Generic.IEnumerable`1<UnityEngine.Ray> struct IEnumerable_1_t2765704382; // System.Collections.Generic.IEnumerator`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct IEnumerator_1_t2194873688; // System.Collections.Generic.IEnumerator`1<HoloToolkit.UX.Dialog.DialogButtonType> struct IEnumerator_1_t113411648; // System.Collections.Generic.IEnumerator`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct IEnumerator_1_t532598210; // System.Collections.Generic.IEnumerator`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct IEnumerator_1_t1942675966; // System.Collections.Generic.IEnumerator`1<System.Object> struct IEnumerator_1_t3512676632; // System.Collections.Generic.IList`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct IList_1_t3577623003; // System.Collections.Generic.IList`1<HoloToolkit.UX.Dialog.DialogButtonType> struct IList_1_t1496160963; // System.Collections.Generic.IList`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct IList_1_t1915347525; // System.Collections.Generic.IList`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct IList_1_t3325425281; // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[] struct KeyValuePair_2U5BU5D_t2069718811; // System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>[] struct KeyValuePair_2U5BU5D_t1995959125; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[] struct KeyValuePair_2U5BU5D_t118269214; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[][] struct KeyValuePair_2U5BU5DU5BU5D_t2409249963; // System.Collections.Generic.LinkedListNode`1<System.Object> struct LinkedListNode_1_t2825281267; // System.Collections.Generic.LinkedList`1<System.Object> struct LinkedList_1_t1919752173; // System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct List_1_t3234377962; // System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType> struct List_1_t1152915922; // System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct List_1_t1572102484; // System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct List_1_t2982180240; // System.Collections.Generic.List`1<HoloToolkit.Unity.RaycastResultHelper> struct List_1_t3480059758; // System.Collections.Generic.List`1<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData> struct List_1_t1291522797; // System.Collections.Generic.List`1<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject> struct List_1_t4085315060; // System.Collections.Generic.List`1<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData> struct List_1_t538943048; // System.Collections.Generic.List`1<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint> struct List_1_t1419061181; // System.Collections.Generic.List`1<HoloToolkit.Unity.TimerScheduler/TimerData> struct List_1_t1233822936; // System.Collections.Generic.List`1<HoloToolkit.Unity.TimerScheduler/TimerIdPair> struct List_1_t2393398647; // System.Collections.Generic.List`1<HoloToolkit.Unity.UX.AppBar/ButtonTemplate> struct List_1_t1103073094; // System.Collections.Generic.List`1<Newtonsoft.Json.JsonPosition> struct List_1_t4000102456; // System.Collections.Generic.List`1<System.Boolean> struct List_1_t1569362707; // System.Collections.Generic.List`1<System.Byte> struct List_1_t2606371118; // System.Collections.Generic.List`1<System.Char> struct List_1_t811567916; // System.Collections.Generic.List`1<System.Collections.DictionaryEntry> struct List_1_t301083084; // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct List_1_t2343005028; // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>> struct List_1_t2520208434; // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct List_1_t4002292061; // System.Collections.Generic.List`1<System.DateTime> struct List_1_t915637231; // System.Collections.Generic.List`1<System.DateTimeOffset> struct List_1_t406394953; // System.Collections.Generic.List`1<System.Decimal> struct List_1_t125366826; // System.Collections.Generic.List`1<System.Double> struct List_1_t2066740105; // System.Collections.Generic.List`1<System.Int16> struct List_1_t4024895129; // System.Collections.Generic.List`1<System.Int32> struct List_1_t128053199; // System.Collections.Generic.List`1<System.Int64> struct List_1_t913674750; // System.Collections.Generic.List`1<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES> struct List_1_t640633774; // System.Collections.Generic.List`1<System.Object> struct List_1_t257213610; // System.Collections.Generic.List`1<System.Runtime.InteropServices.GCHandle> struct List_1_t528545633; // System.Collections.Generic.List`1<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> struct List_1_t1790965530; // System.Collections.Generic.List`1<System.SByte> struct List_1_t3141652404; // System.Collections.Generic.List`1<System.Single> struct List_1_t2869341516; // System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions> struct List_1_t1564920337; // System.Collections.Generic.List`1<System.TimeSpan> struct List_1_t2353233991; // System.Collections.Generic.List`1<System.UInt16> struct List_1_t3649799700; // System.Collections.Generic.List`1<System.UInt32> struct List_1_t4032136720; // System.Collections.Generic.List`1<System.UInt64> struct List_1_t1311147538; // System.Collections.Generic.List`1<System.Xml.Schema.RangePositionInfo> struct List_1_t2062043678; // System.Collections.Generic.List`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry> struct List_1_t521784417; // System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct List_1_t3058052573; // System.Collections.Generic.List`1<UnityEngine.Color32> struct List_1_t4072576034; // System.Collections.Generic.List`1<UnityEngine.Color> struct List_1_t4027761066; // System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult> struct List_1_t537414295; // System.Collections.Generic.List`1<UnityEngine.Ray> struct List_1_t962958939; // System.Collections.Generic.List`1<UnityEngine.UICharInfo> struct List_1_t1547575848; // System.Collections.Generic.List`1<UnityEngine.UILineInfo> struct List_1_t1372374256; // System.Collections.Generic.List`1<UnityEngine.UIVertex> struct List_1_t1234605051; // System.Collections.Generic.List`1<UnityEngine.Vector2> struct List_1_t3628304265; // System.Collections.Generic.List`1<UnityEngine.Vector3> struct List_1_t899420910; // System.Collections.Generic.List`1<UnityEngine.Vector4> struct List_1_t496136383; // System.Collections.IDictionary struct IDictionary_t1363984059; // System.Collections.IEnumerator struct IEnumerator_t1853284238; // System.Collections.ObjectModel.ReadOnlyCollection`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct ReadOnlyCollection_1_t2974879507; // System.Collections.ObjectModel.ReadOnlyCollection`1<HoloToolkit.UX.Dialog.DialogButtonType> struct ReadOnlyCollection_1_t893417467; // System.Collections.ObjectModel.ReadOnlyCollection`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct ReadOnlyCollection_1_t1312604029; // System.Collections.ObjectModel.ReadOnlyCollection`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct ReadOnlyCollection_1_t2722681785; // System.Comparison`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct Comparison_1_t1537234399; // System.Comparison`1<HoloToolkit.UX.Dialog.DialogButtonType> struct Comparison_1_t3750739655; // System.Comparison`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct Comparison_1_t4169926217; // System.Comparison`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct Comparison_1_t1285036677; // System.DateTimeOffset[] struct DateTimeOffsetU5BU5D_t3473357058; // System.DateTime[] struct DateTimeU5BU5D_t1184652292; // System.Decimal[] struct DecimalU5BU5D_t1145110141; // System.DelegateData struct DelegateData_t1677132599; // System.Delegate[] struct DelegateU5BU5D_t1703627840; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t1169129676; // System.Double[] struct DoubleU5BU5D_t3413330114; // System.IAsyncResult struct IAsyncResult_t767004451; // System.Int16[] struct Int16U5BU5D_t3686840178; // System.Int32[] struct Int32U5BU5D_t385246372; // System.Int64[] struct Int64U5BU5D_t2559172825; // System.IntPtr[] struct IntPtrU5BU5D_t4013366056; // System.InvalidOperationException struct InvalidOperationException_t56020091; // System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES[] struct Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057; // System.Object[] struct ObjectU5BU5D_t2843939325; // System.Object[][] struct ObjectU5BU5DU5BU5D_t831815024; // System.PlatformNotSupportedException struct PlatformNotSupportedException_t3572244504; // System.Predicate`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct Predicate_1_t2587597344; // System.Predicate`1<HoloToolkit.UX.Dialog.DialogButtonType> struct Predicate_1_t506135304; // System.Predicate`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct Predicate_1_t925321866; // System.Predicate`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct Predicate_1_t2335399622; // System.Reflection.Binder struct Binder_t2999457153; // System.Reflection.MemberFilter struct MemberFilter_t426314064; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventRegistrationTokenListWithCount> struct ConditionalWeakTable_2_t3044373657; // System.Runtime.InteropServices.GCHandle[] struct GCHandleU5BU5D_t35668618; // System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken[] struct EventRegistrationTokenU5BU5D_t897718221; // System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/TokenListCount struct TokenListCount_t1606756367; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_t2171992254; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t2481557153; // System.Runtime.Serialization.SerializationException struct SerializationException_t3941511869; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t950877179; // System.SByte[] struct SByteU5BU5D_t2651576203; // System.Single[] struct SingleU5BU5D_t1444911251; // System.String struct String_t; // System.String[] struct StringU5BU5D_t1281789340; // System.Text.RegularExpressions.RegexOptions[] struct RegexOptionsU5BU5D_t160358170; // System.TimeSpan[] struct TimeSpanU5BU5D_t4291357516; // System.Type struct Type_t; // System.Type[] struct TypeU5BU5D_t3940880105; // System.UInt16[] struct UInt16U5BU5D_t3326319531; // System.UInt32[] struct UInt32U5BU5D_t2770800703; // System.UInt64[] struct UInt64U5BU5D_t1659327989; // System.Void struct Void_t1185182177; // System.Xml.Schema.BitSet struct BitSet_t1154229585; // System.Xml.Schema.RangePositionInfo[] struct RangePositionInfoU5BU5D_t242328633; // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_t1315720168; // System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry[] struct XmlSchemaObjectEntryU5BU5D_t1655208330; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t2760654312; // UnityEngine.BeforeRenderHelper/OrderBlock[] struct OrderBlockU5BU5D_t2389202590; // UnityEngine.Collider struct Collider_t1773347010; // UnityEngine.Color32[] struct Color32U5BU5D_t3850468773; // UnityEngine.Color[] struct ColorU5BU5D_t941916413; // UnityEngine.EventSystems.BaseRaycaster struct BaseRaycaster_t4150874583; // UnityEngine.EventSystems.RaycastResult[] struct RaycastResultU5BU5D_t1128832444; // UnityEngine.Events.UnityAction struct UnityAction_t3245792599; // UnityEngine.Events.UnityEvent struct UnityEvent_t2581268647; // UnityEngine.GameObject struct GameObject_t1113636619; // UnityEngine.MeshCollider struct MeshCollider_t903564387; // UnityEngine.MeshFilter struct MeshFilter_t3523625662; // UnityEngine.MeshRenderer struct MeshRenderer_t587009260; // UnityEngine.Ray[] struct RayU5BU5D_t1836217960; // UnityEngine.Ray[][] struct RayU5BU5DU5BU5D_t292100857; // UnityEngine.Transform struct Transform_t3600365921; // UnityEngine.UICharInfo[] struct UICharInfoU5BU5D_t928762055; // UnityEngine.UILineInfo[] struct UILineInfoU5BU5D_t1655937503; // UnityEngine.UIVertex[] struct UIVertexU5BU5D_t1981460040; // UnityEngine.Vector2[] struct Vector2U5BU5D_t1457185986; // UnityEngine.Vector3[] struct Vector3U5BU5D_t1718750761; // UnityEngine.Vector4[] struct Vector4U5BU5D_t934056436; extern RuntimeClass* ArgumentException_t132251570_il2cpp_TypeInfo_var; extern RuntimeClass* ArgumentNullException_t1615371798_il2cpp_TypeInfo_var; extern RuntimeClass* ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var; extern RuntimeClass* ArrayTypeMismatchException_t2342549375_il2cpp_TypeInfo_var; extern RuntimeClass* IDisposable_t3640265483_il2cpp_TypeInfo_var; extern RuntimeClass* IEnumerator_t1853284238_il2cpp_TypeInfo_var; extern RuntimeClass* Int32_t2950945753_il2cpp_TypeInfo_var; extern RuntimeClass* InvalidCastException_t3927145244_il2cpp_TypeInfo_var; extern RuntimeClass* InvalidOperationException_t56020091_il2cpp_TypeInfo_var; extern RuntimeClass* Math_t1671470975_il2cpp_TypeInfo_var; extern RuntimeClass* ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var; extern RuntimeClass* PlatformNotSupportedException_t3572244504_il2cpp_TypeInfo_var; extern RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; extern RuntimeClass* SerializationException_t3941511869_il2cpp_TypeInfo_var; extern RuntimeClass* Type_t_il2cpp_TypeInfo_var; extern String_t* _stringLiteral1013684703; extern String_t* _stringLiteral1322100995; extern String_t* _stringLiteral1621028992; extern String_t* _stringLiteral1902402919; extern String_t* _stringLiteral1985170616; extern String_t* _stringLiteral2002596872; extern String_t* _stringLiteral2037252898; extern String_t* _stringLiteral2224226828; extern String_t* _stringLiteral2590862907; extern String_t* _stringLiteral2892689725; extern String_t* _stringLiteral298611841; extern String_t* _stringLiteral3835243841; extern String_t* _stringLiteral4007973390; extern String_t* _stringLiteral79347; extern String_t* _stringLiteral797640427; extern String_t* _stringLiteral848686345; extern String_t* _stringLiteral885983982; extern String_t* _stringLiteral915403387; extern String_t* _stringLiteral927632030; extern const RuntimeMethod* Enumerator_MoveNext_m880141662_RuntimeMethod_var; extern const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m2550940120_RuntimeMethod_var; extern const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m3484854280_RuntimeMethod_var; extern const RuntimeMethod* Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3768315530_RuntimeMethod_var; extern const RuntimeMethod* Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m577802395_RuntimeMethod_var; extern const RuntimeMethod* Enumerator__ctor_m351918184_RuntimeMethod_var; extern const RuntimeMethod* LinkedList_1_CopyTo_m2255490129_RuntimeMethod_var; extern const RuntimeMethod* LinkedList_1_GetObjectData_m1792615137_RuntimeMethod_var; extern const RuntimeMethod* LinkedList_1_OnDeserialization_m3201462664_RuntimeMethod_var; extern const RuntimeMethod* LinkedList_1_RemoveLast_m2923798972_RuntimeMethod_var; extern const RuntimeMethod* LinkedList_1_System_Collections_ICollection_CopyTo_m816767247_RuntimeMethod_var; extern const RuntimeMethod* LinkedList_1_ValidateNewNode_m3541769584_RuntimeMethod_var; extern const RuntimeMethod* LinkedList_1_ValidateNode_m947758109_RuntimeMethod_var; extern const uint32_t Enumerator_MoveNext_m880141662_MetadataUsageId; extern const uint32_t Enumerator_System_Collections_IEnumerator_Reset_m2550940120_MetadataUsageId; extern const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_m3484854280_MetadataUsageId; extern const uint32_t Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3768315530_MetadataUsageId; extern const uint32_t Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m577802395_MetadataUsageId; extern const uint32_t Enumerator__ctor_m351918184_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_AddRange_m1159522811_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_AddRange_m271381180_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_AddRange_m3208469990_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_AddRange_m3454702397_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_AddRange_m522528651_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_AllocateBuffer_m2042007487_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_AllocateBuffer_m2360349896_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_AllocateBuffer_m2677938218_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_AllocateBuffer_m2894186751_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_AllocateBuffer_m3260867912_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_CopyTo_m12527799_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_CopyTo_m1253522307_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_CopyTo_m3539229272_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_CopyTo_m3784363977_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_CopyTo_m4153360821_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m1834757906_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m2330126167_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m2625366957_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m4034077565_MetadataUsageId; extern const uint32_t LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m720436240_MetadataUsageId; extern const uint32_t LinkedList_1_CopyTo_m2255490129_MetadataUsageId; extern const uint32_t LinkedList_1_GetObjectData_m1792615137_MetadataUsageId; extern const uint32_t LinkedList_1_OnDeserialization_m3201462664_MetadataUsageId; extern const uint32_t LinkedList_1_RemoveLast_m2923798972_MetadataUsageId; extern const uint32_t LinkedList_1_System_Collections_ICollection_CopyTo_m816767247_MetadataUsageId; extern const uint32_t LinkedList_1_System_Collections_ICollection_get_SyncRoot_m260305035_MetadataUsageId; extern const uint32_t LinkedList_1_ValidateNewNode_m3541769584_MetadataUsageId; extern const uint32_t LinkedList_1_ValidateNode_m947758109_MetadataUsageId; extern const uint32_t List_1_InsertRange_m138798606_MetadataUsageId; extern const uint32_t List_1_InsertRange_m1537432904_MetadataUsageId; extern const uint32_t List_1_InsertRange_m352360262_MetadataUsageId; extern const uint32_t List_1_InsertRange_m4128922981_MetadataUsageId; extern const uint32_t List_1_System_Collections_ICollection_CopyTo_m1872002207_MetadataUsageId; extern const uint32_t List_1_System_Collections_ICollection_CopyTo_m2870566478_MetadataUsageId; extern const uint32_t List_1_System_Collections_ICollection_CopyTo_m3310066590_MetadataUsageId; extern const uint32_t List_1_System_Collections_ICollection_CopyTo_m4151435992_MetadataUsageId; extern const uint32_t List_1_System_Collections_ICollection_get_SyncRoot_m1414840202_MetadataUsageId; extern const uint32_t List_1_System_Collections_ICollection_get_SyncRoot_m1584784809_MetadataUsageId; extern const uint32_t List_1_System_Collections_ICollection_get_SyncRoot_m1676407547_MetadataUsageId; extern const uint32_t List_1_System_Collections_ICollection_get_SyncRoot_m1980815923_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_Add_m1624506343_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_Add_m2010731703_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_Add_m2033955595_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_Add_m754835530_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_Insert_m1831843688_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_Insert_m2906268787_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_Insert_m4212849325_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_Insert_m711674532_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_set_Item_m1790168535_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_set_Item_m1892267905_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_set_Item_m2431013279_MetadataUsageId; extern const uint32_t List_1_System_Collections_IList_set_Item_m899098186_MetadataUsageId; extern const uint32_t List_1__ctor_m3424047560_MetadataUsageId; extern const uint32_t List_1__ctor_m3755393346_MetadataUsageId; extern const uint32_t List_1__ctor_m4156487288_MetadataUsageId; extern const uint32_t List_1__ctor_m4279344487_MetadataUsageId; struct Decimal_t2948259380 ; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct Vector3_t3722313464 ; struct PrefabToDataModelU5BU5D_t2309926077; struct DialogButtonTypeU5BU5D_t3127917365; struct InputSourceInfoU5BU5D_t3430263659; struct KeyCodeEventPairU5BU5D_t2855334591; struct RaycastResultHelperU5BU5D_t2017648553; struct MeshDataU5BU5D_t1706847054; struct SurfaceObjectU5BU5D_t214306891; struct MeshDataU5BU5D_t822949927; struct ShapeComponentConstraintU5BU5D_t2060966206; struct TimerDataU5BU5D_t2187523415; struct TimerIdPairU5BU5D_t552239964; struct ButtonTemplateU5BU5D_t1265442161; struct JsonPositionU5BU5D_t197937271; struct BooleanU5BU5D_t2897418192; struct ByteU5BU5D_t4116647657; struct CharU5BU5D_t3528271667; struct DictionaryEntryU5BU5D_t4217117203; struct KeyValuePair_2U5BU5D_t2069718811; struct KeyValuePair_2U5BU5D_t1995959125; struct KeyValuePair_2U5BU5D_t118269214; struct DateTimeOffsetU5BU5D_t3473357058; struct DateTimeU5BU5D_t1184652292; struct DecimalU5BU5D_t1145110141; struct DoubleU5BU5D_t3413330114; struct Int16U5BU5D_t3686840178; struct Int32U5BU5D_t385246372; struct Int64U5BU5D_t2559172825; struct Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057; struct ObjectU5BU5D_t2843939325; struct GCHandleU5BU5D_t35668618; struct EventRegistrationTokenU5BU5D_t897718221; struct SByteU5BU5D_t2651576203; struct SingleU5BU5D_t1444911251; struct RegexOptionsU5BU5D_t160358170; struct TimeSpanU5BU5D_t4291357516; struct UInt16U5BU5D_t3326319531; struct UInt32U5BU5D_t2770800703; struct UInt64U5BU5D_t1659327989; struct RangePositionInfoU5BU5D_t242328633; struct XmlSchemaObjectEntryU5BU5D_t1655208330; struct OrderBlockU5BU5D_t2389202590; struct Color32U5BU5D_t3850468773; struct ColorU5BU5D_t941916413; struct RaycastResultU5BU5D_t1128832444; struct RayU5BU5D_t1836217960; struct UICharInfoU5BU5D_t928762055; struct UILineInfoU5BU5D_t1655937503; struct UIVertexU5BU5D_t1981460040; struct Vector2U5BU5D_t1457185986; struct Vector3U5BU5D_t1718750761; struct Vector4U5BU5D_t934056436; #ifndef RUNTIMEOBJECT_H #define RUNTIMEOBJECT_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEOBJECT_H struct Il2CppArrayBounds; #ifndef RUNTIMEARRAY_H #define RUNTIMEARRAY_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEARRAY_H #ifndef EQUALITYCOMPARER_1_T4227042852_H #define EQUALITYCOMPARER_1_T4227042852_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct EqualityComparer_1_t4227042852 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t4227042852_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t4227042852 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t4227042852_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t4227042852 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t4227042852 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t4227042852 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T4227042852_H #ifndef EQUALITYCOMPARER_1_T2145580812_H #define EQUALITYCOMPARER_1_T2145580812_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<HoloToolkit.UX.Dialog.DialogButtonType> struct EqualityComparer_1_t2145580812 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t2145580812_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t2145580812 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2145580812_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t2145580812 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t2145580812 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t2145580812 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T2145580812_H #ifndef EQUALITYCOMPARER_1_T2564767374_H #define EQUALITYCOMPARER_1_T2564767374_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct EqualityComparer_1_t2564767374 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t2564767374_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t2564767374 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2564767374_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t2564767374 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t2564767374 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t2564767374 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T2564767374_H #ifndef EQUALITYCOMPARER_1_T3974845130_H #define EQUALITYCOMPARER_1_T3974845130_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct EqualityComparer_1_t3974845130 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t3974845130_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t3974845130 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3974845130_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t3974845130 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t3974845130 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t3974845130 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T3974845130_H #ifndef EQUALITYCOMPARER_1_T1249878500_H #define EQUALITYCOMPARER_1_T1249878500_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t1249878500 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t1249878500_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t1249878500 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1249878500_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t1249878500 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t1249878500 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t1249878500 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1249878500_H #ifndef LINKEDLISTNODE_1_T2825281267_H #define LINKEDLISTNODE_1_T2825281267_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LinkedListNode`1<System.Object> struct LinkedListNode_1_t2825281267 : public RuntimeObject { public: // System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list LinkedList_1_t1919752173 * ___list_0; // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next LinkedListNode_1_t2825281267 * ___next_1; // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev LinkedListNode_1_t2825281267 * ___prev_2; // T System.Collections.Generic.LinkedListNode`1::item RuntimeObject * ___item_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t2825281267, ___list_0)); } inline LinkedList_1_t1919752173 * get_list_0() const { return ___list_0; } inline LinkedList_1_t1919752173 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(LinkedList_1_t1919752173 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t2825281267, ___next_1)); } inline LinkedListNode_1_t2825281267 * get_next_1() const { return ___next_1; } inline LinkedListNode_1_t2825281267 ** get_address_of_next_1() { return &___next_1; } inline void set_next_1(LinkedListNode_1_t2825281267 * value) { ___next_1 = value; Il2CppCodeGenWriteBarrier((&___next_1), value); } inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t2825281267, ___prev_2)); } inline LinkedListNode_1_t2825281267 * get_prev_2() const { return ___prev_2; } inline LinkedListNode_1_t2825281267 ** get_address_of_prev_2() { return &___prev_2; } inline void set_prev_2(LinkedListNode_1_t2825281267 * value) { ___prev_2 = value; Il2CppCodeGenWriteBarrier((&___prev_2), value); } inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t2825281267, ___item_3)); } inline RuntimeObject * get_item_3() const { return ___item_3; } inline RuntimeObject ** get_address_of_item_3() { return &___item_3; } inline void set_item_3(RuntimeObject * value) { ___item_3 = value; Il2CppCodeGenWriteBarrier((&___item_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LINKEDLISTNODE_1_T2825281267_H #ifndef LINKEDLIST_1_T1919752173_H #define LINKEDLIST_1_T1919752173_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LinkedList`1<System.Object> struct LinkedList_1_t1919752173 : public RuntimeObject { public: // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1::head LinkedListNode_1_t2825281267 * ___head_0; // System.Int32 System.Collections.Generic.LinkedList`1::count int32_t ___count_1; // System.Int32 System.Collections.Generic.LinkedList`1::version int32_t ___version_2; // System.Object System.Collections.Generic.LinkedList`1::_syncRoot RuntimeObject * ____syncRoot_3; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.LinkedList`1::_siInfo SerializationInfo_t950877179 * ____siInfo_4; public: inline static int32_t get_offset_of_head_0() { return static_cast<int32_t>(offsetof(LinkedList_1_t1919752173, ___head_0)); } inline LinkedListNode_1_t2825281267 * get_head_0() const { return ___head_0; } inline LinkedListNode_1_t2825281267 ** get_address_of_head_0() { return &___head_0; } inline void set_head_0(LinkedListNode_1_t2825281267 * value) { ___head_0 = value; Il2CppCodeGenWriteBarrier((&___head_0), value); } inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(LinkedList_1_t1919752173, ___count_1)); } inline int32_t get_count_1() const { return ___count_1; } inline int32_t* get_address_of_count_1() { return &___count_1; } inline void set_count_1(int32_t value) { ___count_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(LinkedList_1_t1919752173, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(LinkedList_1_t1919752173, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_3), value); } inline static int32_t get_offset_of__siInfo_4() { return static_cast<int32_t>(offsetof(LinkedList_1_t1919752173, ____siInfo_4)); } inline SerializationInfo_t950877179 * get__siInfo_4() const { return ____siInfo_4; } inline SerializationInfo_t950877179 ** get_address_of__siInfo_4() { return &____siInfo_4; } inline void set__siInfo_4(SerializationInfo_t950877179 * value) { ____siInfo_4 = value; Il2CppCodeGenWriteBarrier((&____siInfo_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LINKEDLIST_1_T1919752173_H #ifndef LIST_1_T3234377962_H #define LIST_1_T3234377962_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct List_1_t3234377962 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items PrefabToDataModelU5BU5D_t2309926077* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3234377962, ____items_1)); } inline PrefabToDataModelU5BU5D_t2309926077* get__items_1() const { return ____items_1; } inline PrefabToDataModelU5BU5D_t2309926077** get_address_of__items_1() { return &____items_1; } inline void set__items_1(PrefabToDataModelU5BU5D_t2309926077* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3234377962, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3234377962, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3234377962, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t3234377962_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray PrefabToDataModelU5BU5D_t2309926077* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3234377962_StaticFields, ____emptyArray_5)); } inline PrefabToDataModelU5BU5D_t2309926077* get__emptyArray_5() const { return ____emptyArray_5; } inline PrefabToDataModelU5BU5D_t2309926077** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(PrefabToDataModelU5BU5D_t2309926077* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T3234377962_H #ifndef LIST_1_T1152915922_H #define LIST_1_T1152915922_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType> struct List_1_t1152915922 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items DialogButtonTypeU5BU5D_t3127917365* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1152915922, ____items_1)); } inline DialogButtonTypeU5BU5D_t3127917365* get__items_1() const { return ____items_1; } inline DialogButtonTypeU5BU5D_t3127917365** get_address_of__items_1() { return &____items_1; } inline void set__items_1(DialogButtonTypeU5BU5D_t3127917365* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1152915922, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1152915922, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1152915922, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1152915922_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray DialogButtonTypeU5BU5D_t3127917365* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1152915922_StaticFields, ____emptyArray_5)); } inline DialogButtonTypeU5BU5D_t3127917365* get__emptyArray_5() const { return ____emptyArray_5; } inline DialogButtonTypeU5BU5D_t3127917365** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(DialogButtonTypeU5BU5D_t3127917365* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1152915922_H #ifndef LIST_1_T1572102484_H #define LIST_1_T1572102484_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct List_1_t1572102484 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items InputSourceInfoU5BU5D_t3430263659* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1572102484, ____items_1)); } inline InputSourceInfoU5BU5D_t3430263659* get__items_1() const { return ____items_1; } inline InputSourceInfoU5BU5D_t3430263659** get_address_of__items_1() { return &____items_1; } inline void set__items_1(InputSourceInfoU5BU5D_t3430263659* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1572102484, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1572102484, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1572102484, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1572102484_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray InputSourceInfoU5BU5D_t3430263659* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1572102484_StaticFields, ____emptyArray_5)); } inline InputSourceInfoU5BU5D_t3430263659* get__emptyArray_5() const { return ____emptyArray_5; } inline InputSourceInfoU5BU5D_t3430263659** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(InputSourceInfoU5BU5D_t3430263659* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1572102484_H #ifndef LIST_1_T2982180240_H #define LIST_1_T2982180240_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct List_1_t2982180240 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items KeyCodeEventPairU5BU5D_t2855334591* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2982180240, ____items_1)); } inline KeyCodeEventPairU5BU5D_t2855334591* get__items_1() const { return ____items_1; } inline KeyCodeEventPairU5BU5D_t2855334591** get_address_of__items_1() { return &____items_1; } inline void set__items_1(KeyCodeEventPairU5BU5D_t2855334591* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2982180240, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2982180240, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2982180240, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t2982180240_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray KeyCodeEventPairU5BU5D_t2855334591* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2982180240_StaticFields, ____emptyArray_5)); } inline KeyCodeEventPairU5BU5D_t2855334591* get__emptyArray_5() const { return ____emptyArray_5; } inline KeyCodeEventPairU5BU5D_t2855334591** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(KeyCodeEventPairU5BU5D_t2855334591* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T2982180240_H #ifndef LIST_1_T3480059758_H #define LIST_1_T3480059758_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.Unity.RaycastResultHelper> struct List_1_t3480059758 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items RaycastResultHelperU5BU5D_t2017648553* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3480059758, ____items_1)); } inline RaycastResultHelperU5BU5D_t2017648553* get__items_1() const { return ____items_1; } inline RaycastResultHelperU5BU5D_t2017648553** get_address_of__items_1() { return &____items_1; } inline void set__items_1(RaycastResultHelperU5BU5D_t2017648553* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3480059758, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3480059758, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3480059758, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t3480059758_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray RaycastResultHelperU5BU5D_t2017648553* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3480059758_StaticFields, ____emptyArray_5)); } inline RaycastResultHelperU5BU5D_t2017648553* get__emptyArray_5() const { return ____emptyArray_5; } inline RaycastResultHelperU5BU5D_t2017648553** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(RaycastResultHelperU5BU5D_t2017648553* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T3480059758_H #ifndef LIST_1_T1291522797_H #define LIST_1_T1291522797_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData> struct List_1_t1291522797 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items MeshDataU5BU5D_t1706847054* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1291522797, ____items_1)); } inline MeshDataU5BU5D_t1706847054* get__items_1() const { return ____items_1; } inline MeshDataU5BU5D_t1706847054** get_address_of__items_1() { return &____items_1; } inline void set__items_1(MeshDataU5BU5D_t1706847054* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1291522797, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1291522797, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1291522797, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1291522797_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray MeshDataU5BU5D_t1706847054* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1291522797_StaticFields, ____emptyArray_5)); } inline MeshDataU5BU5D_t1706847054* get__emptyArray_5() const { return ____emptyArray_5; } inline MeshDataU5BU5D_t1706847054** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(MeshDataU5BU5D_t1706847054* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1291522797_H #ifndef LIST_1_T4085315060_H #define LIST_1_T4085315060_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject> struct List_1_t4085315060 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items SurfaceObjectU5BU5D_t214306891* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4085315060, ____items_1)); } inline SurfaceObjectU5BU5D_t214306891* get__items_1() const { return ____items_1; } inline SurfaceObjectU5BU5D_t214306891** get_address_of__items_1() { return &____items_1; } inline void set__items_1(SurfaceObjectU5BU5D_t214306891* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4085315060, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4085315060, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4085315060, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t4085315060_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray SurfaceObjectU5BU5D_t214306891* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4085315060_StaticFields, ____emptyArray_5)); } inline SurfaceObjectU5BU5D_t214306891* get__emptyArray_5() const { return ____emptyArray_5; } inline SurfaceObjectU5BU5D_t214306891** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(SurfaceObjectU5BU5D_t214306891* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T4085315060_H #ifndef LIST_1_T538943048_H #define LIST_1_T538943048_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData> struct List_1_t538943048 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items MeshDataU5BU5D_t822949927* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t538943048, ____items_1)); } inline MeshDataU5BU5D_t822949927* get__items_1() const { return ____items_1; } inline MeshDataU5BU5D_t822949927** get_address_of__items_1() { return &____items_1; } inline void set__items_1(MeshDataU5BU5D_t822949927* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t538943048, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t538943048, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t538943048, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t538943048_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray MeshDataU5BU5D_t822949927* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t538943048_StaticFields, ____emptyArray_5)); } inline MeshDataU5BU5D_t822949927* get__emptyArray_5() const { return ____emptyArray_5; } inline MeshDataU5BU5D_t822949927** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(MeshDataU5BU5D_t822949927* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T538943048_H #ifndef LIST_1_T1419061181_H #define LIST_1_T1419061181_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint> struct List_1_t1419061181 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ShapeComponentConstraintU5BU5D_t2060966206* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1419061181, ____items_1)); } inline ShapeComponentConstraintU5BU5D_t2060966206* get__items_1() const { return ____items_1; } inline ShapeComponentConstraintU5BU5D_t2060966206** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ShapeComponentConstraintU5BU5D_t2060966206* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1419061181, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1419061181, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1419061181, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1419061181_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ShapeComponentConstraintU5BU5D_t2060966206* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1419061181_StaticFields, ____emptyArray_5)); } inline ShapeComponentConstraintU5BU5D_t2060966206* get__emptyArray_5() const { return ____emptyArray_5; } inline ShapeComponentConstraintU5BU5D_t2060966206** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ShapeComponentConstraintU5BU5D_t2060966206* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1419061181_H #ifndef LIST_1_T1233822936_H #define LIST_1_T1233822936_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.Unity.TimerScheduler/TimerData> struct List_1_t1233822936 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TimerDataU5BU5D_t2187523415* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1233822936, ____items_1)); } inline TimerDataU5BU5D_t2187523415* get__items_1() const { return ____items_1; } inline TimerDataU5BU5D_t2187523415** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TimerDataU5BU5D_t2187523415* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1233822936, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1233822936, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1233822936, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1233822936_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TimerDataU5BU5D_t2187523415* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1233822936_StaticFields, ____emptyArray_5)); } inline TimerDataU5BU5D_t2187523415* get__emptyArray_5() const { return ____emptyArray_5; } inline TimerDataU5BU5D_t2187523415** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TimerDataU5BU5D_t2187523415* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1233822936_H #ifndef LIST_1_T2393398647_H #define LIST_1_T2393398647_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.Unity.TimerScheduler/TimerIdPair> struct List_1_t2393398647 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TimerIdPairU5BU5D_t552239964* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2393398647, ____items_1)); } inline TimerIdPairU5BU5D_t552239964* get__items_1() const { return ____items_1; } inline TimerIdPairU5BU5D_t552239964** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TimerIdPairU5BU5D_t552239964* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2393398647, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2393398647, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2393398647, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t2393398647_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TimerIdPairU5BU5D_t552239964* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2393398647_StaticFields, ____emptyArray_5)); } inline TimerIdPairU5BU5D_t552239964* get__emptyArray_5() const { return ____emptyArray_5; } inline TimerIdPairU5BU5D_t552239964** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TimerIdPairU5BU5D_t552239964* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T2393398647_H #ifndef LIST_1_T1103073094_H #define LIST_1_T1103073094_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<HoloToolkit.Unity.UX.AppBar/ButtonTemplate> struct List_1_t1103073094 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ButtonTemplateU5BU5D_t1265442161* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1103073094, ____items_1)); } inline ButtonTemplateU5BU5D_t1265442161* get__items_1() const { return ____items_1; } inline ButtonTemplateU5BU5D_t1265442161** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ButtonTemplateU5BU5D_t1265442161* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1103073094, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1103073094, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1103073094, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1103073094_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ButtonTemplateU5BU5D_t1265442161* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1103073094_StaticFields, ____emptyArray_5)); } inline ButtonTemplateU5BU5D_t1265442161* get__emptyArray_5() const { return ____emptyArray_5; } inline ButtonTemplateU5BU5D_t1265442161** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ButtonTemplateU5BU5D_t1265442161* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1103073094_H #ifndef LIST_1_T4000102456_H #define LIST_1_T4000102456_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<Newtonsoft.Json.JsonPosition> struct List_1_t4000102456 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items JsonPositionU5BU5D_t197937271* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4000102456, ____items_1)); } inline JsonPositionU5BU5D_t197937271* get__items_1() const { return ____items_1; } inline JsonPositionU5BU5D_t197937271** get_address_of__items_1() { return &____items_1; } inline void set__items_1(JsonPositionU5BU5D_t197937271* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4000102456, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4000102456, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4000102456, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t4000102456_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray JsonPositionU5BU5D_t197937271* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4000102456_StaticFields, ____emptyArray_5)); } inline JsonPositionU5BU5D_t197937271* get__emptyArray_5() const { return ____emptyArray_5; } inline JsonPositionU5BU5D_t197937271** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(JsonPositionU5BU5D_t197937271* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T4000102456_H #ifndef LIST_1_T1569362707_H #define LIST_1_T1569362707_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Boolean> struct List_1_t1569362707 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items BooleanU5BU5D_t2897418192* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1569362707, ____items_1)); } inline BooleanU5BU5D_t2897418192* get__items_1() const { return ____items_1; } inline BooleanU5BU5D_t2897418192** get_address_of__items_1() { return &____items_1; } inline void set__items_1(BooleanU5BU5D_t2897418192* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1569362707, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1569362707, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1569362707, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1569362707_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray BooleanU5BU5D_t2897418192* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1569362707_StaticFields, ____emptyArray_5)); } inline BooleanU5BU5D_t2897418192* get__emptyArray_5() const { return ____emptyArray_5; } inline BooleanU5BU5D_t2897418192** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(BooleanU5BU5D_t2897418192* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1569362707_H #ifndef LIST_1_T2606371118_H #define LIST_1_T2606371118_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Byte> struct List_1_t2606371118 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ByteU5BU5D_t4116647657* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2606371118, ____items_1)); } inline ByteU5BU5D_t4116647657* get__items_1() const { return ____items_1; } inline ByteU5BU5D_t4116647657** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ByteU5BU5D_t4116647657* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2606371118, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2606371118, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2606371118, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t2606371118_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ByteU5BU5D_t4116647657* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2606371118_StaticFields, ____emptyArray_5)); } inline ByteU5BU5D_t4116647657* get__emptyArray_5() const { return ____emptyArray_5; } inline ByteU5BU5D_t4116647657** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ByteU5BU5D_t4116647657* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T2606371118_H #ifndef LIST_1_T811567916_H #define LIST_1_T811567916_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Char> struct List_1_t811567916 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items CharU5BU5D_t3528271667* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t811567916, ____items_1)); } inline CharU5BU5D_t3528271667* get__items_1() const { return ____items_1; } inline CharU5BU5D_t3528271667** get_address_of__items_1() { return &____items_1; } inline void set__items_1(CharU5BU5D_t3528271667* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t811567916, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t811567916, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t811567916, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t811567916_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray CharU5BU5D_t3528271667* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t811567916_StaticFields, ____emptyArray_5)); } inline CharU5BU5D_t3528271667* get__emptyArray_5() const { return ____emptyArray_5; } inline CharU5BU5D_t3528271667** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(CharU5BU5D_t3528271667* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T811567916_H #ifndef LIST_1_T301083084_H #define LIST_1_T301083084_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Collections.DictionaryEntry> struct List_1_t301083084 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items DictionaryEntryU5BU5D_t4217117203* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t301083084, ____items_1)); } inline DictionaryEntryU5BU5D_t4217117203* get__items_1() const { return ____items_1; } inline DictionaryEntryU5BU5D_t4217117203** get_address_of__items_1() { return &____items_1; } inline void set__items_1(DictionaryEntryU5BU5D_t4217117203* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t301083084, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t301083084, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t301083084, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t301083084_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray DictionaryEntryU5BU5D_t4217117203* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t301083084_StaticFields, ____emptyArray_5)); } inline DictionaryEntryU5BU5D_t4217117203* get__emptyArray_5() const { return ____emptyArray_5; } inline DictionaryEntryU5BU5D_t4217117203** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(DictionaryEntryU5BU5D_t4217117203* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T301083084_H #ifndef LIST_1_T2343005028_H #define LIST_1_T2343005028_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct List_1_t2343005028 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items KeyValuePair_2U5BU5D_t2069718811* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2343005028, ____items_1)); } inline KeyValuePair_2U5BU5D_t2069718811* get__items_1() const { return ____items_1; } inline KeyValuePair_2U5BU5D_t2069718811** get_address_of__items_1() { return &____items_1; } inline void set__items_1(KeyValuePair_2U5BU5D_t2069718811* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2343005028, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2343005028, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2343005028, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t2343005028_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray KeyValuePair_2U5BU5D_t2069718811* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2343005028_StaticFields, ____emptyArray_5)); } inline KeyValuePair_2U5BU5D_t2069718811* get__emptyArray_5() const { return ____emptyArray_5; } inline KeyValuePair_2U5BU5D_t2069718811** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(KeyValuePair_2U5BU5D_t2069718811* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T2343005028_H #ifndef LIST_1_T2520208434_H #define LIST_1_T2520208434_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>> struct List_1_t2520208434 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items KeyValuePair_2U5BU5D_t1995959125* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2520208434, ____items_1)); } inline KeyValuePair_2U5BU5D_t1995959125* get__items_1() const { return ____items_1; } inline KeyValuePair_2U5BU5D_t1995959125** get_address_of__items_1() { return &____items_1; } inline void set__items_1(KeyValuePair_2U5BU5D_t1995959125* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2520208434, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2520208434, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2520208434, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t2520208434_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray KeyValuePair_2U5BU5D_t1995959125* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2520208434_StaticFields, ____emptyArray_5)); } inline KeyValuePair_2U5BU5D_t1995959125* get__emptyArray_5() const { return ____emptyArray_5; } inline KeyValuePair_2U5BU5D_t1995959125** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(KeyValuePair_2U5BU5D_t1995959125* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T2520208434_H #ifndef LIST_1_T4002292061_H #define LIST_1_T4002292061_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct List_1_t4002292061 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items KeyValuePair_2U5BU5D_t118269214* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4002292061, ____items_1)); } inline KeyValuePair_2U5BU5D_t118269214* get__items_1() const { return ____items_1; } inline KeyValuePair_2U5BU5D_t118269214** get_address_of__items_1() { return &____items_1; } inline void set__items_1(KeyValuePair_2U5BU5D_t118269214* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4002292061, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4002292061, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4002292061, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t4002292061_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray KeyValuePair_2U5BU5D_t118269214* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4002292061_StaticFields, ____emptyArray_5)); } inline KeyValuePair_2U5BU5D_t118269214* get__emptyArray_5() const { return ____emptyArray_5; } inline KeyValuePair_2U5BU5D_t118269214** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(KeyValuePair_2U5BU5D_t118269214* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T4002292061_H #ifndef LIST_1_T915637231_H #define LIST_1_T915637231_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.DateTime> struct List_1_t915637231 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items DateTimeU5BU5D_t1184652292* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t915637231, ____items_1)); } inline DateTimeU5BU5D_t1184652292* get__items_1() const { return ____items_1; } inline DateTimeU5BU5D_t1184652292** get_address_of__items_1() { return &____items_1; } inline void set__items_1(DateTimeU5BU5D_t1184652292* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t915637231, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t915637231, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t915637231, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t915637231_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray DateTimeU5BU5D_t1184652292* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t915637231_StaticFields, ____emptyArray_5)); } inline DateTimeU5BU5D_t1184652292* get__emptyArray_5() const { return ____emptyArray_5; } inline DateTimeU5BU5D_t1184652292** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(DateTimeU5BU5D_t1184652292* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T915637231_H #ifndef LIST_1_T406394953_H #define LIST_1_T406394953_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.DateTimeOffset> struct List_1_t406394953 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items DateTimeOffsetU5BU5D_t3473357058* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t406394953, ____items_1)); } inline DateTimeOffsetU5BU5D_t3473357058* get__items_1() const { return ____items_1; } inline DateTimeOffsetU5BU5D_t3473357058** get_address_of__items_1() { return &____items_1; } inline void set__items_1(DateTimeOffsetU5BU5D_t3473357058* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t406394953, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t406394953, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t406394953, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t406394953_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray DateTimeOffsetU5BU5D_t3473357058* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t406394953_StaticFields, ____emptyArray_5)); } inline DateTimeOffsetU5BU5D_t3473357058* get__emptyArray_5() const { return ____emptyArray_5; } inline DateTimeOffsetU5BU5D_t3473357058** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(DateTimeOffsetU5BU5D_t3473357058* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T406394953_H #ifndef LIST_1_T125366826_H #define LIST_1_T125366826_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Decimal> struct List_1_t125366826 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items DecimalU5BU5D_t1145110141* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t125366826, ____items_1)); } inline DecimalU5BU5D_t1145110141* get__items_1() const { return ____items_1; } inline DecimalU5BU5D_t1145110141** get_address_of__items_1() { return &____items_1; } inline void set__items_1(DecimalU5BU5D_t1145110141* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t125366826, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t125366826, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t125366826, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t125366826_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray DecimalU5BU5D_t1145110141* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t125366826_StaticFields, ____emptyArray_5)); } inline DecimalU5BU5D_t1145110141* get__emptyArray_5() const { return ____emptyArray_5; } inline DecimalU5BU5D_t1145110141** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(DecimalU5BU5D_t1145110141* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T125366826_H #ifndef LIST_1_T2066740105_H #define LIST_1_T2066740105_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Double> struct List_1_t2066740105 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items DoubleU5BU5D_t3413330114* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2066740105, ____items_1)); } inline DoubleU5BU5D_t3413330114* get__items_1() const { return ____items_1; } inline DoubleU5BU5D_t3413330114** get_address_of__items_1() { return &____items_1; } inline void set__items_1(DoubleU5BU5D_t3413330114* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2066740105, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2066740105, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2066740105, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t2066740105_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray DoubleU5BU5D_t3413330114* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2066740105_StaticFields, ____emptyArray_5)); } inline DoubleU5BU5D_t3413330114* get__emptyArray_5() const { return ____emptyArray_5; } inline DoubleU5BU5D_t3413330114** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(DoubleU5BU5D_t3413330114* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T2066740105_H #ifndef LIST_1_T4024895129_H #define LIST_1_T4024895129_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Int16> struct List_1_t4024895129 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Int16U5BU5D_t3686840178* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4024895129, ____items_1)); } inline Int16U5BU5D_t3686840178* get__items_1() const { return ____items_1; } inline Int16U5BU5D_t3686840178** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Int16U5BU5D_t3686840178* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4024895129, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4024895129, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4024895129, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t4024895129_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Int16U5BU5D_t3686840178* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4024895129_StaticFields, ____emptyArray_5)); } inline Int16U5BU5D_t3686840178* get__emptyArray_5() const { return ____emptyArray_5; } inline Int16U5BU5D_t3686840178** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Int16U5BU5D_t3686840178* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T4024895129_H #ifndef LIST_1_T128053199_H #define LIST_1_T128053199_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Int32> struct List_1_t128053199 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Int32U5BU5D_t385246372* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t128053199, ____items_1)); } inline Int32U5BU5D_t385246372* get__items_1() const { return ____items_1; } inline Int32U5BU5D_t385246372** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Int32U5BU5D_t385246372* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t128053199, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t128053199, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t128053199, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t128053199_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Int32U5BU5D_t385246372* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t128053199_StaticFields, ____emptyArray_5)); } inline Int32U5BU5D_t385246372* get__emptyArray_5() const { return ____emptyArray_5; } inline Int32U5BU5D_t385246372** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Int32U5BU5D_t385246372* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T128053199_H #ifndef LIST_1_T913674750_H #define LIST_1_T913674750_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Int64> struct List_1_t913674750 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Int64U5BU5D_t2559172825* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t913674750, ____items_1)); } inline Int64U5BU5D_t2559172825* get__items_1() const { return ____items_1; } inline Int64U5BU5D_t2559172825** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Int64U5BU5D_t2559172825* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t913674750, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t913674750, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t913674750, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t913674750_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Int64U5BU5D_t2559172825* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t913674750_StaticFields, ____emptyArray_5)); } inline Int64U5BU5D_t2559172825* get__emptyArray_5() const { return ____emptyArray_5; } inline Int64U5BU5D_t2559172825** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Int64U5BU5D_t2559172825* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T913674750_H #ifndef LIST_1_T640633774_H #define LIST_1_T640633774_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES> struct List_1_t640633774 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t640633774, ____items_1)); } inline Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057* get__items_1() const { return ____items_1; } inline Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t640633774, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t640633774, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t640633774, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t640633774_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t640633774_StaticFields, ____emptyArray_5)); } inline Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057* get__emptyArray_5() const { return ____emptyArray_5; } inline Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T640633774_H #ifndef LIST_1_T257213610_H #define LIST_1_T257213610_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Object> struct List_1_t257213610 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_t2843939325* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____items_1)); } inline ObjectU5BU5D_t2843939325* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_t2843939325** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_t2843939325* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t257213610_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_t2843939325* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t257213610_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_t2843939325* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_t2843939325** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_t2843939325* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T257213610_H #ifndef LIST_1_T528545633_H #define LIST_1_T528545633_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Runtime.InteropServices.GCHandle> struct List_1_t528545633 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items GCHandleU5BU5D_t35668618* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t528545633, ____items_1)); } inline GCHandleU5BU5D_t35668618* get__items_1() const { return ____items_1; } inline GCHandleU5BU5D_t35668618** get_address_of__items_1() { return &____items_1; } inline void set__items_1(GCHandleU5BU5D_t35668618* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t528545633, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t528545633, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t528545633, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t528545633_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray GCHandleU5BU5D_t35668618* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t528545633_StaticFields, ____emptyArray_5)); } inline GCHandleU5BU5D_t35668618* get__emptyArray_5() const { return ____emptyArray_5; } inline GCHandleU5BU5D_t35668618** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(GCHandleU5BU5D_t35668618* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T528545633_H #ifndef LIST_1_T1790965530_H #define LIST_1_T1790965530_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> struct List_1_t1790965530 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items EventRegistrationTokenU5BU5D_t897718221* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1790965530, ____items_1)); } inline EventRegistrationTokenU5BU5D_t897718221* get__items_1() const { return ____items_1; } inline EventRegistrationTokenU5BU5D_t897718221** get_address_of__items_1() { return &____items_1; } inline void set__items_1(EventRegistrationTokenU5BU5D_t897718221* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1790965530, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1790965530, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1790965530, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1790965530_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray EventRegistrationTokenU5BU5D_t897718221* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1790965530_StaticFields, ____emptyArray_5)); } inline EventRegistrationTokenU5BU5D_t897718221* get__emptyArray_5() const { return ____emptyArray_5; } inline EventRegistrationTokenU5BU5D_t897718221** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(EventRegistrationTokenU5BU5D_t897718221* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1790965530_H #ifndef LIST_1_T3141652404_H #define LIST_1_T3141652404_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.SByte> struct List_1_t3141652404 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items SByteU5BU5D_t2651576203* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3141652404, ____items_1)); } inline SByteU5BU5D_t2651576203* get__items_1() const { return ____items_1; } inline SByteU5BU5D_t2651576203** get_address_of__items_1() { return &____items_1; } inline void set__items_1(SByteU5BU5D_t2651576203* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3141652404, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3141652404, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3141652404, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t3141652404_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray SByteU5BU5D_t2651576203* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3141652404_StaticFields, ____emptyArray_5)); } inline SByteU5BU5D_t2651576203* get__emptyArray_5() const { return ____emptyArray_5; } inline SByteU5BU5D_t2651576203** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(SByteU5BU5D_t2651576203* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T3141652404_H #ifndef LIST_1_T2869341516_H #define LIST_1_T2869341516_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Single> struct List_1_t2869341516 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items SingleU5BU5D_t1444911251* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2869341516, ____items_1)); } inline SingleU5BU5D_t1444911251* get__items_1() const { return ____items_1; } inline SingleU5BU5D_t1444911251** get_address_of__items_1() { return &____items_1; } inline void set__items_1(SingleU5BU5D_t1444911251* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2869341516, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2869341516, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2869341516, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t2869341516_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray SingleU5BU5D_t1444911251* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2869341516_StaticFields, ____emptyArray_5)); } inline SingleU5BU5D_t1444911251* get__emptyArray_5() const { return ____emptyArray_5; } inline SingleU5BU5D_t1444911251** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(SingleU5BU5D_t1444911251* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T2869341516_H #ifndef LIST_1_T1564920337_H #define LIST_1_T1564920337_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions> struct List_1_t1564920337 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items RegexOptionsU5BU5D_t160358170* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1564920337, ____items_1)); } inline RegexOptionsU5BU5D_t160358170* get__items_1() const { return ____items_1; } inline RegexOptionsU5BU5D_t160358170** get_address_of__items_1() { return &____items_1; } inline void set__items_1(RegexOptionsU5BU5D_t160358170* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1564920337, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1564920337, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1564920337, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1564920337_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray RegexOptionsU5BU5D_t160358170* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1564920337_StaticFields, ____emptyArray_5)); } inline RegexOptionsU5BU5D_t160358170* get__emptyArray_5() const { return ____emptyArray_5; } inline RegexOptionsU5BU5D_t160358170** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(RegexOptionsU5BU5D_t160358170* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1564920337_H #ifndef LIST_1_T2353233991_H #define LIST_1_T2353233991_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.TimeSpan> struct List_1_t2353233991 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TimeSpanU5BU5D_t4291357516* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2353233991, ____items_1)); } inline TimeSpanU5BU5D_t4291357516* get__items_1() const { return ____items_1; } inline TimeSpanU5BU5D_t4291357516** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TimeSpanU5BU5D_t4291357516* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2353233991, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2353233991, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2353233991, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t2353233991_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TimeSpanU5BU5D_t4291357516* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2353233991_StaticFields, ____emptyArray_5)); } inline TimeSpanU5BU5D_t4291357516* get__emptyArray_5() const { return ____emptyArray_5; } inline TimeSpanU5BU5D_t4291357516** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TimeSpanU5BU5D_t4291357516* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T2353233991_H #ifndef LIST_1_T3649799700_H #define LIST_1_T3649799700_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.UInt16> struct List_1_t3649799700 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items UInt16U5BU5D_t3326319531* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3649799700, ____items_1)); } inline UInt16U5BU5D_t3326319531* get__items_1() const { return ____items_1; } inline UInt16U5BU5D_t3326319531** get_address_of__items_1() { return &____items_1; } inline void set__items_1(UInt16U5BU5D_t3326319531* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3649799700, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3649799700, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3649799700, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t3649799700_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray UInt16U5BU5D_t3326319531* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3649799700_StaticFields, ____emptyArray_5)); } inline UInt16U5BU5D_t3326319531* get__emptyArray_5() const { return ____emptyArray_5; } inline UInt16U5BU5D_t3326319531** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(UInt16U5BU5D_t3326319531* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T3649799700_H #ifndef LIST_1_T4032136720_H #define LIST_1_T4032136720_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.UInt32> struct List_1_t4032136720 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items UInt32U5BU5D_t2770800703* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4032136720, ____items_1)); } inline UInt32U5BU5D_t2770800703* get__items_1() const { return ____items_1; } inline UInt32U5BU5D_t2770800703** get_address_of__items_1() { return &____items_1; } inline void set__items_1(UInt32U5BU5D_t2770800703* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4032136720, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4032136720, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4032136720, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t4032136720_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray UInt32U5BU5D_t2770800703* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4032136720_StaticFields, ____emptyArray_5)); } inline UInt32U5BU5D_t2770800703* get__emptyArray_5() const { return ____emptyArray_5; } inline UInt32U5BU5D_t2770800703** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(UInt32U5BU5D_t2770800703* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T4032136720_H #ifndef LIST_1_T1311147538_H #define LIST_1_T1311147538_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.UInt64> struct List_1_t1311147538 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items UInt64U5BU5D_t1659327989* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1311147538, ____items_1)); } inline UInt64U5BU5D_t1659327989* get__items_1() const { return ____items_1; } inline UInt64U5BU5D_t1659327989** get_address_of__items_1() { return &____items_1; } inline void set__items_1(UInt64U5BU5D_t1659327989* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1311147538, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1311147538, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1311147538, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1311147538_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray UInt64U5BU5D_t1659327989* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1311147538_StaticFields, ____emptyArray_5)); } inline UInt64U5BU5D_t1659327989* get__emptyArray_5() const { return ____emptyArray_5; } inline UInt64U5BU5D_t1659327989** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(UInt64U5BU5D_t1659327989* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1311147538_H #ifndef LIST_1_T2062043678_H #define LIST_1_T2062043678_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Xml.Schema.RangePositionInfo> struct List_1_t2062043678 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items RangePositionInfoU5BU5D_t242328633* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2062043678, ____items_1)); } inline RangePositionInfoU5BU5D_t242328633* get__items_1() const { return ____items_1; } inline RangePositionInfoU5BU5D_t242328633** get_address_of__items_1() { return &____items_1; } inline void set__items_1(RangePositionInfoU5BU5D_t242328633* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2062043678, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2062043678, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2062043678, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t2062043678_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray RangePositionInfoU5BU5D_t242328633* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2062043678_StaticFields, ____emptyArray_5)); } inline RangePositionInfoU5BU5D_t242328633* get__emptyArray_5() const { return ____emptyArray_5; } inline RangePositionInfoU5BU5D_t242328633** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(RangePositionInfoU5BU5D_t242328633* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T2062043678_H #ifndef LIST_1_T521784417_H #define LIST_1_T521784417_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry> struct List_1_t521784417 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items XmlSchemaObjectEntryU5BU5D_t1655208330* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t521784417, ____items_1)); } inline XmlSchemaObjectEntryU5BU5D_t1655208330* get__items_1() const { return ____items_1; } inline XmlSchemaObjectEntryU5BU5D_t1655208330** get_address_of__items_1() { return &____items_1; } inline void set__items_1(XmlSchemaObjectEntryU5BU5D_t1655208330* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t521784417, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t521784417, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t521784417, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t521784417_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray XmlSchemaObjectEntryU5BU5D_t1655208330* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t521784417_StaticFields, ____emptyArray_5)); } inline XmlSchemaObjectEntryU5BU5D_t1655208330* get__emptyArray_5() const { return ____emptyArray_5; } inline XmlSchemaObjectEntryU5BU5D_t1655208330** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(XmlSchemaObjectEntryU5BU5D_t1655208330* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T521784417_H #ifndef LIST_1_T3058052573_H #define LIST_1_T3058052573_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct List_1_t3058052573 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items OrderBlockU5BU5D_t2389202590* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3058052573, ____items_1)); } inline OrderBlockU5BU5D_t2389202590* get__items_1() const { return ____items_1; } inline OrderBlockU5BU5D_t2389202590** get_address_of__items_1() { return &____items_1; } inline void set__items_1(OrderBlockU5BU5D_t2389202590* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3058052573, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3058052573, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3058052573, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t3058052573_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray OrderBlockU5BU5D_t2389202590* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3058052573_StaticFields, ____emptyArray_5)); } inline OrderBlockU5BU5D_t2389202590* get__emptyArray_5() const { return ____emptyArray_5; } inline OrderBlockU5BU5D_t2389202590** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(OrderBlockU5BU5D_t2389202590* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T3058052573_H #ifndef LIST_1_T4072576034_H #define LIST_1_T4072576034_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.Color32> struct List_1_t4072576034 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Color32U5BU5D_t3850468773* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4072576034, ____items_1)); } inline Color32U5BU5D_t3850468773* get__items_1() const { return ____items_1; } inline Color32U5BU5D_t3850468773** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Color32U5BU5D_t3850468773* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4072576034, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4072576034, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4072576034, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t4072576034_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Color32U5BU5D_t3850468773* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4072576034_StaticFields, ____emptyArray_5)); } inline Color32U5BU5D_t3850468773* get__emptyArray_5() const { return ____emptyArray_5; } inline Color32U5BU5D_t3850468773** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Color32U5BU5D_t3850468773* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T4072576034_H #ifndef LIST_1_T4027761066_H #define LIST_1_T4027761066_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.Color> struct List_1_t4027761066 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ColorU5BU5D_t941916413* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4027761066, ____items_1)); } inline ColorU5BU5D_t941916413* get__items_1() const { return ____items_1; } inline ColorU5BU5D_t941916413** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ColorU5BU5D_t941916413* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4027761066, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4027761066, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4027761066, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t4027761066_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ColorU5BU5D_t941916413* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4027761066_StaticFields, ____emptyArray_5)); } inline ColorU5BU5D_t941916413* get__emptyArray_5() const { return ____emptyArray_5; } inline ColorU5BU5D_t941916413** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ColorU5BU5D_t941916413* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T4027761066_H #ifndef LIST_1_T537414295_H #define LIST_1_T537414295_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult> struct List_1_t537414295 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items RaycastResultU5BU5D_t1128832444* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t537414295, ____items_1)); } inline RaycastResultU5BU5D_t1128832444* get__items_1() const { return ____items_1; } inline RaycastResultU5BU5D_t1128832444** get_address_of__items_1() { return &____items_1; } inline void set__items_1(RaycastResultU5BU5D_t1128832444* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t537414295, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t537414295, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t537414295, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t537414295_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray RaycastResultU5BU5D_t1128832444* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t537414295_StaticFields, ____emptyArray_5)); } inline RaycastResultU5BU5D_t1128832444* get__emptyArray_5() const { return ____emptyArray_5; } inline RaycastResultU5BU5D_t1128832444** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(RaycastResultU5BU5D_t1128832444* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T537414295_H #ifndef LIST_1_T962958939_H #define LIST_1_T962958939_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.Ray> struct List_1_t962958939 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items RayU5BU5D_t1836217960* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t962958939, ____items_1)); } inline RayU5BU5D_t1836217960* get__items_1() const { return ____items_1; } inline RayU5BU5D_t1836217960** get_address_of__items_1() { return &____items_1; } inline void set__items_1(RayU5BU5D_t1836217960* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t962958939, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t962958939, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t962958939, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t962958939_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray RayU5BU5D_t1836217960* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t962958939_StaticFields, ____emptyArray_5)); } inline RayU5BU5D_t1836217960* get__emptyArray_5() const { return ____emptyArray_5; } inline RayU5BU5D_t1836217960** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(RayU5BU5D_t1836217960* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T962958939_H #ifndef LIST_1_T1547575848_H #define LIST_1_T1547575848_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.UICharInfo> struct List_1_t1547575848 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items UICharInfoU5BU5D_t928762055* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1547575848, ____items_1)); } inline UICharInfoU5BU5D_t928762055* get__items_1() const { return ____items_1; } inline UICharInfoU5BU5D_t928762055** get_address_of__items_1() { return &____items_1; } inline void set__items_1(UICharInfoU5BU5D_t928762055* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1547575848, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1547575848, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1547575848, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1547575848_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray UICharInfoU5BU5D_t928762055* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1547575848_StaticFields, ____emptyArray_5)); } inline UICharInfoU5BU5D_t928762055* get__emptyArray_5() const { return ____emptyArray_5; } inline UICharInfoU5BU5D_t928762055** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(UICharInfoU5BU5D_t928762055* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1547575848_H #ifndef LIST_1_T1372374256_H #define LIST_1_T1372374256_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.UILineInfo> struct List_1_t1372374256 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items UILineInfoU5BU5D_t1655937503* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1372374256, ____items_1)); } inline UILineInfoU5BU5D_t1655937503* get__items_1() const { return ____items_1; } inline UILineInfoU5BU5D_t1655937503** get_address_of__items_1() { return &____items_1; } inline void set__items_1(UILineInfoU5BU5D_t1655937503* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1372374256, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1372374256, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1372374256, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1372374256_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray UILineInfoU5BU5D_t1655937503* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1372374256_StaticFields, ____emptyArray_5)); } inline UILineInfoU5BU5D_t1655937503* get__emptyArray_5() const { return ____emptyArray_5; } inline UILineInfoU5BU5D_t1655937503** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(UILineInfoU5BU5D_t1655937503* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1372374256_H #ifndef LIST_1_T1234605051_H #define LIST_1_T1234605051_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.UIVertex> struct List_1_t1234605051 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items UIVertexU5BU5D_t1981460040* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1234605051, ____items_1)); } inline UIVertexU5BU5D_t1981460040* get__items_1() const { return ____items_1; } inline UIVertexU5BU5D_t1981460040** get_address_of__items_1() { return &____items_1; } inline void set__items_1(UIVertexU5BU5D_t1981460040* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1234605051, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1234605051, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1234605051, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1234605051_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray UIVertexU5BU5D_t1981460040* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1234605051_StaticFields, ____emptyArray_5)); } inline UIVertexU5BU5D_t1981460040* get__emptyArray_5() const { return ____emptyArray_5; } inline UIVertexU5BU5D_t1981460040** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(UIVertexU5BU5D_t1981460040* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1234605051_H #ifndef LIST_1_T3628304265_H #define LIST_1_T3628304265_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.Vector2> struct List_1_t3628304265 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Vector2U5BU5D_t1457185986* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3628304265, ____items_1)); } inline Vector2U5BU5D_t1457185986* get__items_1() const { return ____items_1; } inline Vector2U5BU5D_t1457185986** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Vector2U5BU5D_t1457185986* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3628304265, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3628304265, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3628304265, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t3628304265_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Vector2U5BU5D_t1457185986* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3628304265_StaticFields, ____emptyArray_5)); } inline Vector2U5BU5D_t1457185986* get__emptyArray_5() const { return ____emptyArray_5; } inline Vector2U5BU5D_t1457185986** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Vector2U5BU5D_t1457185986* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T3628304265_H #ifndef LIST_1_T899420910_H #define LIST_1_T899420910_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.Vector3> struct List_1_t899420910 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Vector3U5BU5D_t1718750761* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t899420910, ____items_1)); } inline Vector3U5BU5D_t1718750761* get__items_1() const { return ____items_1; } inline Vector3U5BU5D_t1718750761** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Vector3U5BU5D_t1718750761* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t899420910, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t899420910, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t899420910, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t899420910_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Vector3U5BU5D_t1718750761* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t899420910_StaticFields, ____emptyArray_5)); } inline Vector3U5BU5D_t1718750761* get__emptyArray_5() const { return ____emptyArray_5; } inline Vector3U5BU5D_t1718750761** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Vector3U5BU5D_t1718750761* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T899420910_H #ifndef LIST_1_T496136383_H #define LIST_1_T496136383_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.Vector4> struct List_1_t496136383 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Vector4U5BU5D_t934056436* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t496136383, ____items_1)); } inline Vector4U5BU5D_t934056436* get__items_1() const { return ____items_1; } inline Vector4U5BU5D_t934056436** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Vector4U5BU5D_t934056436* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t496136383, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t496136383, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t496136383, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t496136383_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Vector4U5BU5D_t934056436* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t496136383_StaticFields, ____emptyArray_5)); } inline Vector4U5BU5D_t934056436* get__emptyArray_5() const { return ____emptyArray_5; } inline Vector4U5BU5D_t934056436** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Vector4U5BU5D_t934056436* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T496136383_H #ifndef READONLYCOLLECTION_1_T2974879507_H #define READONLYCOLLECTION_1_T2974879507_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.ObjectModel.ReadOnlyCollection`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct ReadOnlyCollection_1_t2974879507 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject * ____syncRoot_1; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t2974879507, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t2974879507, ____syncRoot_1)); } inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; } inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; } inline void set__syncRoot_1(RuntimeObject * value) { ____syncRoot_1 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // READONLYCOLLECTION_1_T2974879507_H #ifndef READONLYCOLLECTION_1_T893417467_H #define READONLYCOLLECTION_1_T893417467_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.ObjectModel.ReadOnlyCollection`1<HoloToolkit.UX.Dialog.DialogButtonType> struct ReadOnlyCollection_1_t893417467 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject * ____syncRoot_1; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t893417467, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t893417467, ____syncRoot_1)); } inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; } inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; } inline void set__syncRoot_1(RuntimeObject * value) { ____syncRoot_1 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // READONLYCOLLECTION_1_T893417467_H #ifndef READONLYCOLLECTION_1_T1312604029_H #define READONLYCOLLECTION_1_T1312604029_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.ObjectModel.ReadOnlyCollection`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct ReadOnlyCollection_1_t1312604029 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject * ____syncRoot_1; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t1312604029, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t1312604029, ____syncRoot_1)); } inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; } inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; } inline void set__syncRoot_1(RuntimeObject * value) { ____syncRoot_1 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // READONLYCOLLECTION_1_T1312604029_H #ifndef READONLYCOLLECTION_1_T2722681785_H #define READONLYCOLLECTION_1_T2722681785_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.ObjectModel.ReadOnlyCollection`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct ReadOnlyCollection_1_t2722681785 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject * ____syncRoot_1; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t2722681785, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t2722681785, ____syncRoot_1)); } inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; } inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; } inline void set__syncRoot_1(RuntimeObject * value) { ____syncRoot_1 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // READONLYCOLLECTION_1_T2722681785_H #ifndef EXCEPTION_T_H #define EXCEPTION_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t2481557153 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t1169129676* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4013366056* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((&____className_1), value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((&____message_2), value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((&____data_3), value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((&____innerException_4), value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((&____helpURL_5), value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((&____stackTrace_6), value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((&____stackTraceString_7), value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_8), value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((&____dynamicMethods_10), value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((&____source_12), value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t2481557153 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t2481557153 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t2481557153 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((&____safeSerializationManager_13), value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t1169129676* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t1169129676** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t1169129676* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((&___captured_traces_14), value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4013366056* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4013366056** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4013366056* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((&___native_trace_ips_15), value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((&___s_EDILock_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t2481557153 * ____safeSerializationManager_13; StackTraceU5BU5D_t1169129676* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t2481557153 * ____safeSerializationManager_13; StackTraceU5BU5D_t1169129676* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; #endif // EXCEPTION_T_H #ifndef MEMBERINFO_T_H #define MEMBERINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MEMBERINFO_T_H #ifndef SERIALIZATIONINFO_T950877179_H #define SERIALIZATIONINFO_T950877179_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t950877179 : public RuntimeObject { public: // System.String[] System.Runtime.Serialization.SerializationInfo::m_members StringU5BU5D_t1281789340* ___m_members_3; // System.Object[] System.Runtime.Serialization.SerializationInfo::m_data ObjectU5BU5D_t2843939325* ___m_data_4; // System.Type[] System.Runtime.Serialization.SerializationInfo::m_types TypeU5BU5D_t3940880105* ___m_types_5; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex Dictionary_2_t2736202052 * ___m_nameToIndex_6; // System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember int32_t ___m_currMember_7; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter RuntimeObject* ___m_converter_8; // System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName String_t* ___m_fullTypeName_9; // System.String System.Runtime.Serialization.SerializationInfo::m_assemName String_t* ___m_assemName_10; // System.Type System.Runtime.Serialization.SerializationInfo::objectType Type_t * ___objectType_11; // System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit bool ___isFullTypeNameSetExplicit_12; // System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit bool ___isAssemblyNameSetExplicit_13; // System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust bool ___requireSameTokenInPartialTrust_14; public: inline static int32_t get_offset_of_m_members_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___m_members_3)); } inline StringU5BU5D_t1281789340* get_m_members_3() const { return ___m_members_3; } inline StringU5BU5D_t1281789340** get_address_of_m_members_3() { return &___m_members_3; } inline void set_m_members_3(StringU5BU5D_t1281789340* value) { ___m_members_3 = value; Il2CppCodeGenWriteBarrier((&___m_members_3), value); } inline static int32_t get_offset_of_m_data_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___m_data_4)); } inline ObjectU5BU5D_t2843939325* get_m_data_4() const { return ___m_data_4; } inline ObjectU5BU5D_t2843939325** get_address_of_m_data_4() { return &___m_data_4; } inline void set_m_data_4(ObjectU5BU5D_t2843939325* value) { ___m_data_4 = value; Il2CppCodeGenWriteBarrier((&___m_data_4), value); } inline static int32_t get_offset_of_m_types_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___m_types_5)); } inline TypeU5BU5D_t3940880105* get_m_types_5() const { return ___m_types_5; } inline TypeU5BU5D_t3940880105** get_address_of_m_types_5() { return &___m_types_5; } inline void set_m_types_5(TypeU5BU5D_t3940880105* value) { ___m_types_5 = value; Il2CppCodeGenWriteBarrier((&___m_types_5), value); } inline static int32_t get_offset_of_m_nameToIndex_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___m_nameToIndex_6)); } inline Dictionary_2_t2736202052 * get_m_nameToIndex_6() const { return ___m_nameToIndex_6; } inline Dictionary_2_t2736202052 ** get_address_of_m_nameToIndex_6() { return &___m_nameToIndex_6; } inline void set_m_nameToIndex_6(Dictionary_2_t2736202052 * value) { ___m_nameToIndex_6 = value; Il2CppCodeGenWriteBarrier((&___m_nameToIndex_6), value); } inline static int32_t get_offset_of_m_currMember_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___m_currMember_7)); } inline int32_t get_m_currMember_7() const { return ___m_currMember_7; } inline int32_t* get_address_of_m_currMember_7() { return &___m_currMember_7; } inline void set_m_currMember_7(int32_t value) { ___m_currMember_7 = value; } inline static int32_t get_offset_of_m_converter_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___m_converter_8)); } inline RuntimeObject* get_m_converter_8() const { return ___m_converter_8; } inline RuntimeObject** get_address_of_m_converter_8() { return &___m_converter_8; } inline void set_m_converter_8(RuntimeObject* value) { ___m_converter_8 = value; Il2CppCodeGenWriteBarrier((&___m_converter_8), value); } inline static int32_t get_offset_of_m_fullTypeName_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___m_fullTypeName_9)); } inline String_t* get_m_fullTypeName_9() const { return ___m_fullTypeName_9; } inline String_t** get_address_of_m_fullTypeName_9() { return &___m_fullTypeName_9; } inline void set_m_fullTypeName_9(String_t* value) { ___m_fullTypeName_9 = value; Il2CppCodeGenWriteBarrier((&___m_fullTypeName_9), value); } inline static int32_t get_offset_of_m_assemName_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___m_assemName_10)); } inline String_t* get_m_assemName_10() const { return ___m_assemName_10; } inline String_t** get_address_of_m_assemName_10() { return &___m_assemName_10; } inline void set_m_assemName_10(String_t* value) { ___m_assemName_10 = value; Il2CppCodeGenWriteBarrier((&___m_assemName_10), value); } inline static int32_t get_offset_of_objectType_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___objectType_11)); } inline Type_t * get_objectType_11() const { return ___objectType_11; } inline Type_t ** get_address_of_objectType_11() { return &___objectType_11; } inline void set_objectType_11(Type_t * value) { ___objectType_11 = value; Il2CppCodeGenWriteBarrier((&___objectType_11), value); } inline static int32_t get_offset_of_isFullTypeNameSetExplicit_12() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___isFullTypeNameSetExplicit_12)); } inline bool get_isFullTypeNameSetExplicit_12() const { return ___isFullTypeNameSetExplicit_12; } inline bool* get_address_of_isFullTypeNameSetExplicit_12() { return &___isFullTypeNameSetExplicit_12; } inline void set_isFullTypeNameSetExplicit_12(bool value) { ___isFullTypeNameSetExplicit_12 = value; } inline static int32_t get_offset_of_isAssemblyNameSetExplicit_13() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___isAssemblyNameSetExplicit_13)); } inline bool get_isAssemblyNameSetExplicit_13() const { return ___isAssemblyNameSetExplicit_13; } inline bool* get_address_of_isAssemblyNameSetExplicit_13() { return &___isAssemblyNameSetExplicit_13; } inline void set_isAssemblyNameSetExplicit_13(bool value) { ___isAssemblyNameSetExplicit_13 = value; } inline static int32_t get_offset_of_requireSameTokenInPartialTrust_14() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___requireSameTokenInPartialTrust_14)); } inline bool get_requireSameTokenInPartialTrust_14() const { return ___requireSameTokenInPartialTrust_14; } inline bool* get_address_of_requireSameTokenInPartialTrust_14() { return &___requireSameTokenInPartialTrust_14; } inline void set_requireSameTokenInPartialTrust_14(bool value) { ___requireSameTokenInPartialTrust_14 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERIALIZATIONINFO_T950877179_H #ifndef STRING_T_H #define STRING_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((&___Empty_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRING_T_H #ifndef VALUETYPE_T3640485471_H #define VALUETYPE_T3640485471_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ValueType struct ValueType_t3640485471 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t3640485471_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t3640485471_marshaled_com { }; #endif // VALUETYPE_T3640485471_H #ifndef PREFABTODATAMODEL_T1762303220_H #define PREFABTODATAMODEL_T1762303220_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Sharing.Spawning.PrefabToDataModel struct PrefabToDataModel_t1762303220 { public: // System.String HoloToolkit.Sharing.Spawning.PrefabToDataModel::DataModelClassName String_t* ___DataModelClassName_0; // UnityEngine.GameObject HoloToolkit.Sharing.Spawning.PrefabToDataModel::Prefab GameObject_t1113636619 * ___Prefab_1; public: inline static int32_t get_offset_of_DataModelClassName_0() { return static_cast<int32_t>(offsetof(PrefabToDataModel_t1762303220, ___DataModelClassName_0)); } inline String_t* get_DataModelClassName_0() const { return ___DataModelClassName_0; } inline String_t** get_address_of_DataModelClassName_0() { return &___DataModelClassName_0; } inline void set_DataModelClassName_0(String_t* value) { ___DataModelClassName_0 = value; Il2CppCodeGenWriteBarrier((&___DataModelClassName_0), value); } inline static int32_t get_offset_of_Prefab_1() { return static_cast<int32_t>(offsetof(PrefabToDataModel_t1762303220, ___Prefab_1)); } inline GameObject_t1113636619 * get_Prefab_1() const { return ___Prefab_1; } inline GameObject_t1113636619 ** get_address_of_Prefab_1() { return &___Prefab_1; } inline void set_Prefab_1(GameObject_t1113636619 * value) { ___Prefab_1 = value; Il2CppCodeGenWriteBarrier((&___Prefab_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of HoloToolkit.Sharing.Spawning.PrefabToDataModel struct PrefabToDataModel_t1762303220_marshaled_pinvoke { char* ___DataModelClassName_0; GameObject_t1113636619 * ___Prefab_1; }; // Native definition for COM marshalling of HoloToolkit.Sharing.Spawning.PrefabToDataModel struct PrefabToDataModel_t1762303220_marshaled_com { Il2CppChar* ___DataModelClassName_0; GameObject_t1113636619 * ___Prefab_1; }; #endif // PREFABTODATAMODEL_T1762303220_H #ifndef INPUTSOURCEINFO_T100027742_H #define INPUTSOURCEINFO_T100027742_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.InputModule.InputSourceInfo struct InputSourceInfo_t100027742 { public: // HoloToolkit.Unity.InputModule.IInputSource HoloToolkit.Unity.InputModule.InputSourceInfo::InputSource RuntimeObject* ___InputSource_0; // System.UInt32 HoloToolkit.Unity.InputModule.InputSourceInfo::SourceId uint32_t ___SourceId_1; public: inline static int32_t get_offset_of_InputSource_0() { return static_cast<int32_t>(offsetof(InputSourceInfo_t100027742, ___InputSource_0)); } inline RuntimeObject* get_InputSource_0() const { return ___InputSource_0; } inline RuntimeObject** get_address_of_InputSource_0() { return &___InputSource_0; } inline void set_InputSource_0(RuntimeObject* value) { ___InputSource_0 = value; Il2CppCodeGenWriteBarrier((&___InputSource_0), value); } inline static int32_t get_offset_of_SourceId_1() { return static_cast<int32_t>(offsetof(InputSourceInfo_t100027742, ___SourceId_1)); } inline uint32_t get_SourceId_1() const { return ___SourceId_1; } inline uint32_t* get_address_of_SourceId_1() { return &___SourceId_1; } inline void set_SourceId_1(uint32_t value) { ___SourceId_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of HoloToolkit.Unity.InputModule.InputSourceInfo struct InputSourceInfo_t100027742_marshaled_pinvoke { RuntimeObject* ___InputSource_0; uint32_t ___SourceId_1; }; // Native definition for COM marshalling of HoloToolkit.Unity.InputModule.InputSourceInfo struct InputSourceInfo_t100027742_marshaled_com { RuntimeObject* ___InputSource_0; uint32_t ___SourceId_1; }; #endif // INPUTSOURCEINFO_T100027742_H #ifndef XBOXCONTROLLERDATA_T1920221146_H #define XBOXCONTROLLERDATA_T1920221146_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.InputModule.XboxControllerData struct XboxControllerData_t1920221146 { public: // System.String HoloToolkit.Unity.InputModule.XboxControllerData::<GamePadName>k__BackingField String_t* ___U3CGamePadNameU3Ek__BackingField_0; // System.Single HoloToolkit.Unity.InputModule.XboxControllerData::<XboxLeftStickHorizontalAxis>k__BackingField float ___U3CXboxLeftStickHorizontalAxisU3Ek__BackingField_1; // System.Single HoloToolkit.Unity.InputModule.XboxControllerData::<XboxLeftStickVerticalAxis>k__BackingField float ___U3CXboxLeftStickVerticalAxisU3Ek__BackingField_2; // System.Single HoloToolkit.Unity.InputModule.XboxControllerData::<XboxRightStickHorizontalAxis>k__BackingField float ___U3CXboxRightStickHorizontalAxisU3Ek__BackingField_3; // System.Single HoloToolkit.Unity.InputModule.XboxControllerData::<XboxRightStickVerticalAxis>k__BackingField float ___U3CXboxRightStickVerticalAxisU3Ek__BackingField_4; // System.Single HoloToolkit.Unity.InputModule.XboxControllerData::<XboxDpadHorizontalAxis>k__BackingField float ___U3CXboxDpadHorizontalAxisU3Ek__BackingField_5; // System.Single HoloToolkit.Unity.InputModule.XboxControllerData::<XboxDpadVerticalAxis>k__BackingField float ___U3CXboxDpadVerticalAxisU3Ek__BackingField_6; // System.Single HoloToolkit.Unity.InputModule.XboxControllerData::<XboxLeftTriggerAxis>k__BackingField float ___U3CXboxLeftTriggerAxisU3Ek__BackingField_7; // System.Single HoloToolkit.Unity.InputModule.XboxControllerData::<XboxRightTriggerAxis>k__BackingField float ___U3CXboxRightTriggerAxisU3Ek__BackingField_8; // System.Single HoloToolkit.Unity.InputModule.XboxControllerData::<XboxSharedTriggerAxis>k__BackingField float ___U3CXboxSharedTriggerAxisU3Ek__BackingField_9; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxA_Pressed>k__BackingField bool ___U3CXboxA_PressedU3Ek__BackingField_10; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxB_Pressed>k__BackingField bool ___U3CXboxB_PressedU3Ek__BackingField_11; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxX_Pressed>k__BackingField bool ___U3CXboxX_PressedU3Ek__BackingField_12; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxY_Pressed>k__BackingField bool ___U3CXboxY_PressedU3Ek__BackingField_13; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxLeftBumper_Pressed>k__BackingField bool ___U3CXboxLeftBumper_PressedU3Ek__BackingField_14; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxRightBumper_Pressed>k__BackingField bool ___U3CXboxRightBumper_PressedU3Ek__BackingField_15; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxLeftStick_Pressed>k__BackingField bool ___U3CXboxLeftStick_PressedU3Ek__BackingField_16; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxRightStick_Pressed>k__BackingField bool ___U3CXboxRightStick_PressedU3Ek__BackingField_17; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxView_Pressed>k__BackingField bool ___U3CXboxView_PressedU3Ek__BackingField_18; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxMenu_Pressed>k__BackingField bool ___U3CXboxMenu_PressedU3Ek__BackingField_19; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxA_Up>k__BackingField bool ___U3CXboxA_UpU3Ek__BackingField_20; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxB_Up>k__BackingField bool ___U3CXboxB_UpU3Ek__BackingField_21; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxX_Up>k__BackingField bool ___U3CXboxX_UpU3Ek__BackingField_22; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxY_Up>k__BackingField bool ___U3CXboxY_UpU3Ek__BackingField_23; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxLeftBumper_Up>k__BackingField bool ___U3CXboxLeftBumper_UpU3Ek__BackingField_24; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxRightBumper_Up>k__BackingField bool ___U3CXboxRightBumper_UpU3Ek__BackingField_25; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxLeftStick_Up>k__BackingField bool ___U3CXboxLeftStick_UpU3Ek__BackingField_26; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxRightStick_Up>k__BackingField bool ___U3CXboxRightStick_UpU3Ek__BackingField_27; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxView_Up>k__BackingField bool ___U3CXboxView_UpU3Ek__BackingField_28; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxMenu_Up>k__BackingField bool ___U3CXboxMenu_UpU3Ek__BackingField_29; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxA_Down>k__BackingField bool ___U3CXboxA_DownU3Ek__BackingField_30; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxB_Down>k__BackingField bool ___U3CXboxB_DownU3Ek__BackingField_31; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxX_Down>k__BackingField bool ___U3CXboxX_DownU3Ek__BackingField_32; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxY_Down>k__BackingField bool ___U3CXboxY_DownU3Ek__BackingField_33; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxLeftBumper_Down>k__BackingField bool ___U3CXboxLeftBumper_DownU3Ek__BackingField_34; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxRightBumper_Down>k__BackingField bool ___U3CXboxRightBumper_DownU3Ek__BackingField_35; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxLeftStick_Down>k__BackingField bool ___U3CXboxLeftStick_DownU3Ek__BackingField_36; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxRightStick_Down>k__BackingField bool ___U3CXboxRightStick_DownU3Ek__BackingField_37; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxView_Down>k__BackingField bool ___U3CXboxView_DownU3Ek__BackingField_38; // System.Boolean HoloToolkit.Unity.InputModule.XboxControllerData::<XboxMenu_Down>k__BackingField bool ___U3CXboxMenu_DownU3Ek__BackingField_39; public: inline static int32_t get_offset_of_U3CGamePadNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CGamePadNameU3Ek__BackingField_0)); } inline String_t* get_U3CGamePadNameU3Ek__BackingField_0() const { return ___U3CGamePadNameU3Ek__BackingField_0; } inline String_t** get_address_of_U3CGamePadNameU3Ek__BackingField_0() { return &___U3CGamePadNameU3Ek__BackingField_0; } inline void set_U3CGamePadNameU3Ek__BackingField_0(String_t* value) { ___U3CGamePadNameU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((&___U3CGamePadNameU3Ek__BackingField_0), value); } inline static int32_t get_offset_of_U3CXboxLeftStickHorizontalAxisU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxLeftStickHorizontalAxisU3Ek__BackingField_1)); } inline float get_U3CXboxLeftStickHorizontalAxisU3Ek__BackingField_1() const { return ___U3CXboxLeftStickHorizontalAxisU3Ek__BackingField_1; } inline float* get_address_of_U3CXboxLeftStickHorizontalAxisU3Ek__BackingField_1() { return &___U3CXboxLeftStickHorizontalAxisU3Ek__BackingField_1; } inline void set_U3CXboxLeftStickHorizontalAxisU3Ek__BackingField_1(float value) { ___U3CXboxLeftStickHorizontalAxisU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CXboxLeftStickVerticalAxisU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxLeftStickVerticalAxisU3Ek__BackingField_2)); } inline float get_U3CXboxLeftStickVerticalAxisU3Ek__BackingField_2() const { return ___U3CXboxLeftStickVerticalAxisU3Ek__BackingField_2; } inline float* get_address_of_U3CXboxLeftStickVerticalAxisU3Ek__BackingField_2() { return &___U3CXboxLeftStickVerticalAxisU3Ek__BackingField_2; } inline void set_U3CXboxLeftStickVerticalAxisU3Ek__BackingField_2(float value) { ___U3CXboxLeftStickVerticalAxisU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CXboxRightStickHorizontalAxisU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxRightStickHorizontalAxisU3Ek__BackingField_3)); } inline float get_U3CXboxRightStickHorizontalAxisU3Ek__BackingField_3() const { return ___U3CXboxRightStickHorizontalAxisU3Ek__BackingField_3; } inline float* get_address_of_U3CXboxRightStickHorizontalAxisU3Ek__BackingField_3() { return &___U3CXboxRightStickHorizontalAxisU3Ek__BackingField_3; } inline void set_U3CXboxRightStickHorizontalAxisU3Ek__BackingField_3(float value) { ___U3CXboxRightStickHorizontalAxisU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CXboxRightStickVerticalAxisU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxRightStickVerticalAxisU3Ek__BackingField_4)); } inline float get_U3CXboxRightStickVerticalAxisU3Ek__BackingField_4() const { return ___U3CXboxRightStickVerticalAxisU3Ek__BackingField_4; } inline float* get_address_of_U3CXboxRightStickVerticalAxisU3Ek__BackingField_4() { return &___U3CXboxRightStickVerticalAxisU3Ek__BackingField_4; } inline void set_U3CXboxRightStickVerticalAxisU3Ek__BackingField_4(float value) { ___U3CXboxRightStickVerticalAxisU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CXboxDpadHorizontalAxisU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxDpadHorizontalAxisU3Ek__BackingField_5)); } inline float get_U3CXboxDpadHorizontalAxisU3Ek__BackingField_5() const { return ___U3CXboxDpadHorizontalAxisU3Ek__BackingField_5; } inline float* get_address_of_U3CXboxDpadHorizontalAxisU3Ek__BackingField_5() { return &___U3CXboxDpadHorizontalAxisU3Ek__BackingField_5; } inline void set_U3CXboxDpadHorizontalAxisU3Ek__BackingField_5(float value) { ___U3CXboxDpadHorizontalAxisU3Ek__BackingField_5 = value; } inline static int32_t get_offset_of_U3CXboxDpadVerticalAxisU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxDpadVerticalAxisU3Ek__BackingField_6)); } inline float get_U3CXboxDpadVerticalAxisU3Ek__BackingField_6() const { return ___U3CXboxDpadVerticalAxisU3Ek__BackingField_6; } inline float* get_address_of_U3CXboxDpadVerticalAxisU3Ek__BackingField_6() { return &___U3CXboxDpadVerticalAxisU3Ek__BackingField_6; } inline void set_U3CXboxDpadVerticalAxisU3Ek__BackingField_6(float value) { ___U3CXboxDpadVerticalAxisU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3CXboxLeftTriggerAxisU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxLeftTriggerAxisU3Ek__BackingField_7)); } inline float get_U3CXboxLeftTriggerAxisU3Ek__BackingField_7() const { return ___U3CXboxLeftTriggerAxisU3Ek__BackingField_7; } inline float* get_address_of_U3CXboxLeftTriggerAxisU3Ek__BackingField_7() { return &___U3CXboxLeftTriggerAxisU3Ek__BackingField_7; } inline void set_U3CXboxLeftTriggerAxisU3Ek__BackingField_7(float value) { ___U3CXboxLeftTriggerAxisU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3CXboxRightTriggerAxisU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxRightTriggerAxisU3Ek__BackingField_8)); } inline float get_U3CXboxRightTriggerAxisU3Ek__BackingField_8() const { return ___U3CXboxRightTriggerAxisU3Ek__BackingField_8; } inline float* get_address_of_U3CXboxRightTriggerAxisU3Ek__BackingField_8() { return &___U3CXboxRightTriggerAxisU3Ek__BackingField_8; } inline void set_U3CXboxRightTriggerAxisU3Ek__BackingField_8(float value) { ___U3CXboxRightTriggerAxisU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_U3CXboxSharedTriggerAxisU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxSharedTriggerAxisU3Ek__BackingField_9)); } inline float get_U3CXboxSharedTriggerAxisU3Ek__BackingField_9() const { return ___U3CXboxSharedTriggerAxisU3Ek__BackingField_9; } inline float* get_address_of_U3CXboxSharedTriggerAxisU3Ek__BackingField_9() { return &___U3CXboxSharedTriggerAxisU3Ek__BackingField_9; } inline void set_U3CXboxSharedTriggerAxisU3Ek__BackingField_9(float value) { ___U3CXboxSharedTriggerAxisU3Ek__BackingField_9 = value; } inline static int32_t get_offset_of_U3CXboxA_PressedU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxA_PressedU3Ek__BackingField_10)); } inline bool get_U3CXboxA_PressedU3Ek__BackingField_10() const { return ___U3CXboxA_PressedU3Ek__BackingField_10; } inline bool* get_address_of_U3CXboxA_PressedU3Ek__BackingField_10() { return &___U3CXboxA_PressedU3Ek__BackingField_10; } inline void set_U3CXboxA_PressedU3Ek__BackingField_10(bool value) { ___U3CXboxA_PressedU3Ek__BackingField_10 = value; } inline static int32_t get_offset_of_U3CXboxB_PressedU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxB_PressedU3Ek__BackingField_11)); } inline bool get_U3CXboxB_PressedU3Ek__BackingField_11() const { return ___U3CXboxB_PressedU3Ek__BackingField_11; } inline bool* get_address_of_U3CXboxB_PressedU3Ek__BackingField_11() { return &___U3CXboxB_PressedU3Ek__BackingField_11; } inline void set_U3CXboxB_PressedU3Ek__BackingField_11(bool value) { ___U3CXboxB_PressedU3Ek__BackingField_11 = value; } inline static int32_t get_offset_of_U3CXboxX_PressedU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxX_PressedU3Ek__BackingField_12)); } inline bool get_U3CXboxX_PressedU3Ek__BackingField_12() const { return ___U3CXboxX_PressedU3Ek__BackingField_12; } inline bool* get_address_of_U3CXboxX_PressedU3Ek__BackingField_12() { return &___U3CXboxX_PressedU3Ek__BackingField_12; } inline void set_U3CXboxX_PressedU3Ek__BackingField_12(bool value) { ___U3CXboxX_PressedU3Ek__BackingField_12 = value; } inline static int32_t get_offset_of_U3CXboxY_PressedU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxY_PressedU3Ek__BackingField_13)); } inline bool get_U3CXboxY_PressedU3Ek__BackingField_13() const { return ___U3CXboxY_PressedU3Ek__BackingField_13; } inline bool* get_address_of_U3CXboxY_PressedU3Ek__BackingField_13() { return &___U3CXboxY_PressedU3Ek__BackingField_13; } inline void set_U3CXboxY_PressedU3Ek__BackingField_13(bool value) { ___U3CXboxY_PressedU3Ek__BackingField_13 = value; } inline static int32_t get_offset_of_U3CXboxLeftBumper_PressedU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxLeftBumper_PressedU3Ek__BackingField_14)); } inline bool get_U3CXboxLeftBumper_PressedU3Ek__BackingField_14() const { return ___U3CXboxLeftBumper_PressedU3Ek__BackingField_14; } inline bool* get_address_of_U3CXboxLeftBumper_PressedU3Ek__BackingField_14() { return &___U3CXboxLeftBumper_PressedU3Ek__BackingField_14; } inline void set_U3CXboxLeftBumper_PressedU3Ek__BackingField_14(bool value) { ___U3CXboxLeftBumper_PressedU3Ek__BackingField_14 = value; } inline static int32_t get_offset_of_U3CXboxRightBumper_PressedU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxRightBumper_PressedU3Ek__BackingField_15)); } inline bool get_U3CXboxRightBumper_PressedU3Ek__BackingField_15() const { return ___U3CXboxRightBumper_PressedU3Ek__BackingField_15; } inline bool* get_address_of_U3CXboxRightBumper_PressedU3Ek__BackingField_15() { return &___U3CXboxRightBumper_PressedU3Ek__BackingField_15; } inline void set_U3CXboxRightBumper_PressedU3Ek__BackingField_15(bool value) { ___U3CXboxRightBumper_PressedU3Ek__BackingField_15 = value; } inline static int32_t get_offset_of_U3CXboxLeftStick_PressedU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxLeftStick_PressedU3Ek__BackingField_16)); } inline bool get_U3CXboxLeftStick_PressedU3Ek__BackingField_16() const { return ___U3CXboxLeftStick_PressedU3Ek__BackingField_16; } inline bool* get_address_of_U3CXboxLeftStick_PressedU3Ek__BackingField_16() { return &___U3CXboxLeftStick_PressedU3Ek__BackingField_16; } inline void set_U3CXboxLeftStick_PressedU3Ek__BackingField_16(bool value) { ___U3CXboxLeftStick_PressedU3Ek__BackingField_16 = value; } inline static int32_t get_offset_of_U3CXboxRightStick_PressedU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxRightStick_PressedU3Ek__BackingField_17)); } inline bool get_U3CXboxRightStick_PressedU3Ek__BackingField_17() const { return ___U3CXboxRightStick_PressedU3Ek__BackingField_17; } inline bool* get_address_of_U3CXboxRightStick_PressedU3Ek__BackingField_17() { return &___U3CXboxRightStick_PressedU3Ek__BackingField_17; } inline void set_U3CXboxRightStick_PressedU3Ek__BackingField_17(bool value) { ___U3CXboxRightStick_PressedU3Ek__BackingField_17 = value; } inline static int32_t get_offset_of_U3CXboxView_PressedU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxView_PressedU3Ek__BackingField_18)); } inline bool get_U3CXboxView_PressedU3Ek__BackingField_18() const { return ___U3CXboxView_PressedU3Ek__BackingField_18; } inline bool* get_address_of_U3CXboxView_PressedU3Ek__BackingField_18() { return &___U3CXboxView_PressedU3Ek__BackingField_18; } inline void set_U3CXboxView_PressedU3Ek__BackingField_18(bool value) { ___U3CXboxView_PressedU3Ek__BackingField_18 = value; } inline static int32_t get_offset_of_U3CXboxMenu_PressedU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxMenu_PressedU3Ek__BackingField_19)); } inline bool get_U3CXboxMenu_PressedU3Ek__BackingField_19() const { return ___U3CXboxMenu_PressedU3Ek__BackingField_19; } inline bool* get_address_of_U3CXboxMenu_PressedU3Ek__BackingField_19() { return &___U3CXboxMenu_PressedU3Ek__BackingField_19; } inline void set_U3CXboxMenu_PressedU3Ek__BackingField_19(bool value) { ___U3CXboxMenu_PressedU3Ek__BackingField_19 = value; } inline static int32_t get_offset_of_U3CXboxA_UpU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxA_UpU3Ek__BackingField_20)); } inline bool get_U3CXboxA_UpU3Ek__BackingField_20() const { return ___U3CXboxA_UpU3Ek__BackingField_20; } inline bool* get_address_of_U3CXboxA_UpU3Ek__BackingField_20() { return &___U3CXboxA_UpU3Ek__BackingField_20; } inline void set_U3CXboxA_UpU3Ek__BackingField_20(bool value) { ___U3CXboxA_UpU3Ek__BackingField_20 = value; } inline static int32_t get_offset_of_U3CXboxB_UpU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxB_UpU3Ek__BackingField_21)); } inline bool get_U3CXboxB_UpU3Ek__BackingField_21() const { return ___U3CXboxB_UpU3Ek__BackingField_21; } inline bool* get_address_of_U3CXboxB_UpU3Ek__BackingField_21() { return &___U3CXboxB_UpU3Ek__BackingField_21; } inline void set_U3CXboxB_UpU3Ek__BackingField_21(bool value) { ___U3CXboxB_UpU3Ek__BackingField_21 = value; } inline static int32_t get_offset_of_U3CXboxX_UpU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxX_UpU3Ek__BackingField_22)); } inline bool get_U3CXboxX_UpU3Ek__BackingField_22() const { return ___U3CXboxX_UpU3Ek__BackingField_22; } inline bool* get_address_of_U3CXboxX_UpU3Ek__BackingField_22() { return &___U3CXboxX_UpU3Ek__BackingField_22; } inline void set_U3CXboxX_UpU3Ek__BackingField_22(bool value) { ___U3CXboxX_UpU3Ek__BackingField_22 = value; } inline static int32_t get_offset_of_U3CXboxY_UpU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxY_UpU3Ek__BackingField_23)); } inline bool get_U3CXboxY_UpU3Ek__BackingField_23() const { return ___U3CXboxY_UpU3Ek__BackingField_23; } inline bool* get_address_of_U3CXboxY_UpU3Ek__BackingField_23() { return &___U3CXboxY_UpU3Ek__BackingField_23; } inline void set_U3CXboxY_UpU3Ek__BackingField_23(bool value) { ___U3CXboxY_UpU3Ek__BackingField_23 = value; } inline static int32_t get_offset_of_U3CXboxLeftBumper_UpU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxLeftBumper_UpU3Ek__BackingField_24)); } inline bool get_U3CXboxLeftBumper_UpU3Ek__BackingField_24() const { return ___U3CXboxLeftBumper_UpU3Ek__BackingField_24; } inline bool* get_address_of_U3CXboxLeftBumper_UpU3Ek__BackingField_24() { return &___U3CXboxLeftBumper_UpU3Ek__BackingField_24; } inline void set_U3CXboxLeftBumper_UpU3Ek__BackingField_24(bool value) { ___U3CXboxLeftBumper_UpU3Ek__BackingField_24 = value; } inline static int32_t get_offset_of_U3CXboxRightBumper_UpU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxRightBumper_UpU3Ek__BackingField_25)); } inline bool get_U3CXboxRightBumper_UpU3Ek__BackingField_25() const { return ___U3CXboxRightBumper_UpU3Ek__BackingField_25; } inline bool* get_address_of_U3CXboxRightBumper_UpU3Ek__BackingField_25() { return &___U3CXboxRightBumper_UpU3Ek__BackingField_25; } inline void set_U3CXboxRightBumper_UpU3Ek__BackingField_25(bool value) { ___U3CXboxRightBumper_UpU3Ek__BackingField_25 = value; } inline static int32_t get_offset_of_U3CXboxLeftStick_UpU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxLeftStick_UpU3Ek__BackingField_26)); } inline bool get_U3CXboxLeftStick_UpU3Ek__BackingField_26() const { return ___U3CXboxLeftStick_UpU3Ek__BackingField_26; } inline bool* get_address_of_U3CXboxLeftStick_UpU3Ek__BackingField_26() { return &___U3CXboxLeftStick_UpU3Ek__BackingField_26; } inline void set_U3CXboxLeftStick_UpU3Ek__BackingField_26(bool value) { ___U3CXboxLeftStick_UpU3Ek__BackingField_26 = value; } inline static int32_t get_offset_of_U3CXboxRightStick_UpU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxRightStick_UpU3Ek__BackingField_27)); } inline bool get_U3CXboxRightStick_UpU3Ek__BackingField_27() const { return ___U3CXboxRightStick_UpU3Ek__BackingField_27; } inline bool* get_address_of_U3CXboxRightStick_UpU3Ek__BackingField_27() { return &___U3CXboxRightStick_UpU3Ek__BackingField_27; } inline void set_U3CXboxRightStick_UpU3Ek__BackingField_27(bool value) { ___U3CXboxRightStick_UpU3Ek__BackingField_27 = value; } inline static int32_t get_offset_of_U3CXboxView_UpU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxView_UpU3Ek__BackingField_28)); } inline bool get_U3CXboxView_UpU3Ek__BackingField_28() const { return ___U3CXboxView_UpU3Ek__BackingField_28; } inline bool* get_address_of_U3CXboxView_UpU3Ek__BackingField_28() { return &___U3CXboxView_UpU3Ek__BackingField_28; } inline void set_U3CXboxView_UpU3Ek__BackingField_28(bool value) { ___U3CXboxView_UpU3Ek__BackingField_28 = value; } inline static int32_t get_offset_of_U3CXboxMenu_UpU3Ek__BackingField_29() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxMenu_UpU3Ek__BackingField_29)); } inline bool get_U3CXboxMenu_UpU3Ek__BackingField_29() const { return ___U3CXboxMenu_UpU3Ek__BackingField_29; } inline bool* get_address_of_U3CXboxMenu_UpU3Ek__BackingField_29() { return &___U3CXboxMenu_UpU3Ek__BackingField_29; } inline void set_U3CXboxMenu_UpU3Ek__BackingField_29(bool value) { ___U3CXboxMenu_UpU3Ek__BackingField_29 = value; } inline static int32_t get_offset_of_U3CXboxA_DownU3Ek__BackingField_30() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxA_DownU3Ek__BackingField_30)); } inline bool get_U3CXboxA_DownU3Ek__BackingField_30() const { return ___U3CXboxA_DownU3Ek__BackingField_30; } inline bool* get_address_of_U3CXboxA_DownU3Ek__BackingField_30() { return &___U3CXboxA_DownU3Ek__BackingField_30; } inline void set_U3CXboxA_DownU3Ek__BackingField_30(bool value) { ___U3CXboxA_DownU3Ek__BackingField_30 = value; } inline static int32_t get_offset_of_U3CXboxB_DownU3Ek__BackingField_31() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxB_DownU3Ek__BackingField_31)); } inline bool get_U3CXboxB_DownU3Ek__BackingField_31() const { return ___U3CXboxB_DownU3Ek__BackingField_31; } inline bool* get_address_of_U3CXboxB_DownU3Ek__BackingField_31() { return &___U3CXboxB_DownU3Ek__BackingField_31; } inline void set_U3CXboxB_DownU3Ek__BackingField_31(bool value) { ___U3CXboxB_DownU3Ek__BackingField_31 = value; } inline static int32_t get_offset_of_U3CXboxX_DownU3Ek__BackingField_32() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxX_DownU3Ek__BackingField_32)); } inline bool get_U3CXboxX_DownU3Ek__BackingField_32() const { return ___U3CXboxX_DownU3Ek__BackingField_32; } inline bool* get_address_of_U3CXboxX_DownU3Ek__BackingField_32() { return &___U3CXboxX_DownU3Ek__BackingField_32; } inline void set_U3CXboxX_DownU3Ek__BackingField_32(bool value) { ___U3CXboxX_DownU3Ek__BackingField_32 = value; } inline static int32_t get_offset_of_U3CXboxY_DownU3Ek__BackingField_33() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxY_DownU3Ek__BackingField_33)); } inline bool get_U3CXboxY_DownU3Ek__BackingField_33() const { return ___U3CXboxY_DownU3Ek__BackingField_33; } inline bool* get_address_of_U3CXboxY_DownU3Ek__BackingField_33() { return &___U3CXboxY_DownU3Ek__BackingField_33; } inline void set_U3CXboxY_DownU3Ek__BackingField_33(bool value) { ___U3CXboxY_DownU3Ek__BackingField_33 = value; } inline static int32_t get_offset_of_U3CXboxLeftBumper_DownU3Ek__BackingField_34() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxLeftBumper_DownU3Ek__BackingField_34)); } inline bool get_U3CXboxLeftBumper_DownU3Ek__BackingField_34() const { return ___U3CXboxLeftBumper_DownU3Ek__BackingField_34; } inline bool* get_address_of_U3CXboxLeftBumper_DownU3Ek__BackingField_34() { return &___U3CXboxLeftBumper_DownU3Ek__BackingField_34; } inline void set_U3CXboxLeftBumper_DownU3Ek__BackingField_34(bool value) { ___U3CXboxLeftBumper_DownU3Ek__BackingField_34 = value; } inline static int32_t get_offset_of_U3CXboxRightBumper_DownU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxRightBumper_DownU3Ek__BackingField_35)); } inline bool get_U3CXboxRightBumper_DownU3Ek__BackingField_35() const { return ___U3CXboxRightBumper_DownU3Ek__BackingField_35; } inline bool* get_address_of_U3CXboxRightBumper_DownU3Ek__BackingField_35() { return &___U3CXboxRightBumper_DownU3Ek__BackingField_35; } inline void set_U3CXboxRightBumper_DownU3Ek__BackingField_35(bool value) { ___U3CXboxRightBumper_DownU3Ek__BackingField_35 = value; } inline static int32_t get_offset_of_U3CXboxLeftStick_DownU3Ek__BackingField_36() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxLeftStick_DownU3Ek__BackingField_36)); } inline bool get_U3CXboxLeftStick_DownU3Ek__BackingField_36() const { return ___U3CXboxLeftStick_DownU3Ek__BackingField_36; } inline bool* get_address_of_U3CXboxLeftStick_DownU3Ek__BackingField_36() { return &___U3CXboxLeftStick_DownU3Ek__BackingField_36; } inline void set_U3CXboxLeftStick_DownU3Ek__BackingField_36(bool value) { ___U3CXboxLeftStick_DownU3Ek__BackingField_36 = value; } inline static int32_t get_offset_of_U3CXboxRightStick_DownU3Ek__BackingField_37() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxRightStick_DownU3Ek__BackingField_37)); } inline bool get_U3CXboxRightStick_DownU3Ek__BackingField_37() const { return ___U3CXboxRightStick_DownU3Ek__BackingField_37; } inline bool* get_address_of_U3CXboxRightStick_DownU3Ek__BackingField_37() { return &___U3CXboxRightStick_DownU3Ek__BackingField_37; } inline void set_U3CXboxRightStick_DownU3Ek__BackingField_37(bool value) { ___U3CXboxRightStick_DownU3Ek__BackingField_37 = value; } inline static int32_t get_offset_of_U3CXboxView_DownU3Ek__BackingField_38() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxView_DownU3Ek__BackingField_38)); } inline bool get_U3CXboxView_DownU3Ek__BackingField_38() const { return ___U3CXboxView_DownU3Ek__BackingField_38; } inline bool* get_address_of_U3CXboxView_DownU3Ek__BackingField_38() { return &___U3CXboxView_DownU3Ek__BackingField_38; } inline void set_U3CXboxView_DownU3Ek__BackingField_38(bool value) { ___U3CXboxView_DownU3Ek__BackingField_38 = value; } inline static int32_t get_offset_of_U3CXboxMenu_DownU3Ek__BackingField_39() { return static_cast<int32_t>(offsetof(XboxControllerData_t1920221146, ___U3CXboxMenu_DownU3Ek__BackingField_39)); } inline bool get_U3CXboxMenu_DownU3Ek__BackingField_39() const { return ___U3CXboxMenu_DownU3Ek__BackingField_39; } inline bool* get_address_of_U3CXboxMenu_DownU3Ek__BackingField_39() { return &___U3CXboxMenu_DownU3Ek__BackingField_39; } inline void set_U3CXboxMenu_DownU3Ek__BackingField_39(bool value) { ___U3CXboxMenu_DownU3Ek__BackingField_39 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of HoloToolkit.Unity.InputModule.XboxControllerData struct XboxControllerData_t1920221146_marshaled_pinvoke { char* ___U3CGamePadNameU3Ek__BackingField_0; float ___U3CXboxLeftStickHorizontalAxisU3Ek__BackingField_1; float ___U3CXboxLeftStickVerticalAxisU3Ek__BackingField_2; float ___U3CXboxRightStickHorizontalAxisU3Ek__BackingField_3; float ___U3CXboxRightStickVerticalAxisU3Ek__BackingField_4; float ___U3CXboxDpadHorizontalAxisU3Ek__BackingField_5; float ___U3CXboxDpadVerticalAxisU3Ek__BackingField_6; float ___U3CXboxLeftTriggerAxisU3Ek__BackingField_7; float ___U3CXboxRightTriggerAxisU3Ek__BackingField_8; float ___U3CXboxSharedTriggerAxisU3Ek__BackingField_9; int32_t ___U3CXboxA_PressedU3Ek__BackingField_10; int32_t ___U3CXboxB_PressedU3Ek__BackingField_11; int32_t ___U3CXboxX_PressedU3Ek__BackingField_12; int32_t ___U3CXboxY_PressedU3Ek__BackingField_13; int32_t ___U3CXboxLeftBumper_PressedU3Ek__BackingField_14; int32_t ___U3CXboxRightBumper_PressedU3Ek__BackingField_15; int32_t ___U3CXboxLeftStick_PressedU3Ek__BackingField_16; int32_t ___U3CXboxRightStick_PressedU3Ek__BackingField_17; int32_t ___U3CXboxView_PressedU3Ek__BackingField_18; int32_t ___U3CXboxMenu_PressedU3Ek__BackingField_19; int32_t ___U3CXboxA_UpU3Ek__BackingField_20; int32_t ___U3CXboxB_UpU3Ek__BackingField_21; int32_t ___U3CXboxX_UpU3Ek__BackingField_22; int32_t ___U3CXboxY_UpU3Ek__BackingField_23; int32_t ___U3CXboxLeftBumper_UpU3Ek__BackingField_24; int32_t ___U3CXboxRightBumper_UpU3Ek__BackingField_25; int32_t ___U3CXboxLeftStick_UpU3Ek__BackingField_26; int32_t ___U3CXboxRightStick_UpU3Ek__BackingField_27; int32_t ___U3CXboxView_UpU3Ek__BackingField_28; int32_t ___U3CXboxMenu_UpU3Ek__BackingField_29; int32_t ___U3CXboxA_DownU3Ek__BackingField_30; int32_t ___U3CXboxB_DownU3Ek__BackingField_31; int32_t ___U3CXboxX_DownU3Ek__BackingField_32; int32_t ___U3CXboxY_DownU3Ek__BackingField_33; int32_t ___U3CXboxLeftBumper_DownU3Ek__BackingField_34; int32_t ___U3CXboxRightBumper_DownU3Ek__BackingField_35; int32_t ___U3CXboxLeftStick_DownU3Ek__BackingField_36; int32_t ___U3CXboxRightStick_DownU3Ek__BackingField_37; int32_t ___U3CXboxView_DownU3Ek__BackingField_38; int32_t ___U3CXboxMenu_DownU3Ek__BackingField_39; }; // Native definition for COM marshalling of HoloToolkit.Unity.InputModule.XboxControllerData struct XboxControllerData_t1920221146_marshaled_com { Il2CppChar* ___U3CGamePadNameU3Ek__BackingField_0; float ___U3CXboxLeftStickHorizontalAxisU3Ek__BackingField_1; float ___U3CXboxLeftStickVerticalAxisU3Ek__BackingField_2; float ___U3CXboxRightStickHorizontalAxisU3Ek__BackingField_3; float ___U3CXboxRightStickVerticalAxisU3Ek__BackingField_4; float ___U3CXboxDpadHorizontalAxisU3Ek__BackingField_5; float ___U3CXboxDpadVerticalAxisU3Ek__BackingField_6; float ___U3CXboxLeftTriggerAxisU3Ek__BackingField_7; float ___U3CXboxRightTriggerAxisU3Ek__BackingField_8; float ___U3CXboxSharedTriggerAxisU3Ek__BackingField_9; int32_t ___U3CXboxA_PressedU3Ek__BackingField_10; int32_t ___U3CXboxB_PressedU3Ek__BackingField_11; int32_t ___U3CXboxX_PressedU3Ek__BackingField_12; int32_t ___U3CXboxY_PressedU3Ek__BackingField_13; int32_t ___U3CXboxLeftBumper_PressedU3Ek__BackingField_14; int32_t ___U3CXboxRightBumper_PressedU3Ek__BackingField_15; int32_t ___U3CXboxLeftStick_PressedU3Ek__BackingField_16; int32_t ___U3CXboxRightStick_PressedU3Ek__BackingField_17; int32_t ___U3CXboxView_PressedU3Ek__BackingField_18; int32_t ___U3CXboxMenu_PressedU3Ek__BackingField_19; int32_t ___U3CXboxA_UpU3Ek__BackingField_20; int32_t ___U3CXboxB_UpU3Ek__BackingField_21; int32_t ___U3CXboxX_UpU3Ek__BackingField_22; int32_t ___U3CXboxY_UpU3Ek__BackingField_23; int32_t ___U3CXboxLeftBumper_UpU3Ek__BackingField_24; int32_t ___U3CXboxRightBumper_UpU3Ek__BackingField_25; int32_t ___U3CXboxLeftStick_UpU3Ek__BackingField_26; int32_t ___U3CXboxRightStick_UpU3Ek__BackingField_27; int32_t ___U3CXboxView_UpU3Ek__BackingField_28; int32_t ___U3CXboxMenu_UpU3Ek__BackingField_29; int32_t ___U3CXboxA_DownU3Ek__BackingField_30; int32_t ___U3CXboxB_DownU3Ek__BackingField_31; int32_t ___U3CXboxX_DownU3Ek__BackingField_32; int32_t ___U3CXboxY_DownU3Ek__BackingField_33; int32_t ___U3CXboxLeftBumper_DownU3Ek__BackingField_34; int32_t ___U3CXboxRightBumper_DownU3Ek__BackingField_35; int32_t ___U3CXboxLeftStick_DownU3Ek__BackingField_36; int32_t ___U3CXboxRightStick_DownU3Ek__BackingField_37; int32_t ___U3CXboxView_DownU3Ek__BackingField_38; int32_t ___U3CXboxMenu_DownU3Ek__BackingField_39; }; #endif // XBOXCONTROLLERDATA_T1920221146_H #ifndef SURFACEOBJECT_T2613240318_H #define SURFACEOBJECT_T2613240318_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject struct SurfaceObject_t2613240318 { public: // System.Int32 HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject::ID int32_t ___ID_0; // UnityEngine.GameObject HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject::Object GameObject_t1113636619 * ___Object_1; // UnityEngine.MeshRenderer HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject::Renderer MeshRenderer_t587009260 * ___Renderer_2; // UnityEngine.MeshFilter HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject::Filter MeshFilter_t3523625662 * ___Filter_3; // UnityEngine.MeshCollider HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject::Collider MeshCollider_t903564387 * ___Collider_4; public: inline static int32_t get_offset_of_ID_0() { return static_cast<int32_t>(offsetof(SurfaceObject_t2613240318, ___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_Object_1() { return static_cast<int32_t>(offsetof(SurfaceObject_t2613240318, ___Object_1)); } inline GameObject_t1113636619 * get_Object_1() const { return ___Object_1; } inline GameObject_t1113636619 ** get_address_of_Object_1() { return &___Object_1; } inline void set_Object_1(GameObject_t1113636619 * value) { ___Object_1 = value; Il2CppCodeGenWriteBarrier((&___Object_1), value); } inline static int32_t get_offset_of_Renderer_2() { return static_cast<int32_t>(offsetof(SurfaceObject_t2613240318, ___Renderer_2)); } inline MeshRenderer_t587009260 * get_Renderer_2() const { return ___Renderer_2; } inline MeshRenderer_t587009260 ** get_address_of_Renderer_2() { return &___Renderer_2; } inline void set_Renderer_2(MeshRenderer_t587009260 * value) { ___Renderer_2 = value; Il2CppCodeGenWriteBarrier((&___Renderer_2), value); } inline static int32_t get_offset_of_Filter_3() { return static_cast<int32_t>(offsetof(SurfaceObject_t2613240318, ___Filter_3)); } inline MeshFilter_t3523625662 * get_Filter_3() const { return ___Filter_3; } inline MeshFilter_t3523625662 ** get_address_of_Filter_3() { return &___Filter_3; } inline void set_Filter_3(MeshFilter_t3523625662 * value) { ___Filter_3 = value; Il2CppCodeGenWriteBarrier((&___Filter_3), value); } inline static int32_t get_offset_of_Collider_4() { return static_cast<int32_t>(offsetof(SurfaceObject_t2613240318, ___Collider_4)); } inline MeshCollider_t903564387 * get_Collider_4() const { return ___Collider_4; } inline MeshCollider_t903564387 ** get_address_of_Collider_4() { return &___Collider_4; } inline void set_Collider_4(MeshCollider_t903564387 * value) { ___Collider_4 = value; Il2CppCodeGenWriteBarrier((&___Collider_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject struct SurfaceObject_t2613240318_marshaled_pinvoke { int32_t ___ID_0; GameObject_t1113636619 * ___Object_1; MeshRenderer_t587009260 * ___Renderer_2; MeshFilter_t3523625662 * ___Filter_3; MeshCollider_t903564387 * ___Collider_4; }; // Native definition for COM marshalling of HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject struct SurfaceObject_t2613240318_marshaled_com { int32_t ___ID_0; GameObject_t1113636619 * ___Object_1; MeshRenderer_t587009260 * ___Renderer_2; MeshFilter_t3523625662 * ___Filter_3; MeshCollider_t903564387 * ___Collider_4; }; #endif // SURFACEOBJECT_T2613240318_H #ifndef TIMERDATA_T4056715490_H #define TIMERDATA_T4056715490_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.TimerScheduler/TimerData struct TimerData_t4056715490 { public: // HoloToolkit.Unity.TimerScheduler/Callback HoloToolkit.Unity.TimerScheduler/TimerData::Callback Callback_t2663646540 * ___Callback_0; // System.Single HoloToolkit.Unity.TimerScheduler/TimerData::Duration float ___Duration_1; // System.Boolean HoloToolkit.Unity.TimerScheduler/TimerData::Loop bool ___Loop_2; // System.Int32 HoloToolkit.Unity.TimerScheduler/TimerData::Id int32_t ___Id_3; public: inline static int32_t get_offset_of_Callback_0() { return static_cast<int32_t>(offsetof(TimerData_t4056715490, ___Callback_0)); } inline Callback_t2663646540 * get_Callback_0() const { return ___Callback_0; } inline Callback_t2663646540 ** get_address_of_Callback_0() { return &___Callback_0; } inline void set_Callback_0(Callback_t2663646540 * value) { ___Callback_0 = value; Il2CppCodeGenWriteBarrier((&___Callback_0), value); } inline static int32_t get_offset_of_Duration_1() { return static_cast<int32_t>(offsetof(TimerData_t4056715490, ___Duration_1)); } inline float get_Duration_1() const { return ___Duration_1; } inline float* get_address_of_Duration_1() { return &___Duration_1; } inline void set_Duration_1(float value) { ___Duration_1 = value; } inline static int32_t get_offset_of_Loop_2() { return static_cast<int32_t>(offsetof(TimerData_t4056715490, ___Loop_2)); } inline bool get_Loop_2() const { return ___Loop_2; } inline bool* get_address_of_Loop_2() { return &___Loop_2; } inline void set_Loop_2(bool value) { ___Loop_2 = value; } inline static int32_t get_offset_of_Id_3() { return static_cast<int32_t>(offsetof(TimerData_t4056715490, ___Id_3)); } inline int32_t get_Id_3() const { return ___Id_3; } inline int32_t* get_address_of_Id_3() { return &___Id_3; } inline void set_Id_3(int32_t value) { ___Id_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of HoloToolkit.Unity.TimerScheduler/TimerData struct TimerData_t4056715490_marshaled_pinvoke { Il2CppMethodPointer ___Callback_0; float ___Duration_1; int32_t ___Loop_2; int32_t ___Id_3; }; // Native definition for COM marshalling of HoloToolkit.Unity.TimerScheduler/TimerData struct TimerData_t4056715490_marshaled_com { Il2CppMethodPointer ___Callback_0; float ___Duration_1; int32_t ___Loop_2; int32_t ___Id_3; }; #endif // TIMERDATA_T4056715490_H #ifndef TIMERIDPAIR_T921323905_H #define TIMERIDPAIR_T921323905_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.TimerScheduler/TimerIdPair struct TimerIdPair_t921323905 { public: // System.Int32 HoloToolkit.Unity.TimerScheduler/TimerIdPair::Id int32_t ___Id_0; // System.Int32 HoloToolkit.Unity.TimerScheduler/TimerIdPair::KeyTime int32_t ___KeyTime_1; public: inline static int32_t get_offset_of_Id_0() { return static_cast<int32_t>(offsetof(TimerIdPair_t921323905, ___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_KeyTime_1() { return static_cast<int32_t>(offsetof(TimerIdPair_t921323905, ___KeyTime_1)); } inline int32_t get_KeyTime_1() const { return ___KeyTime_1; } inline int32_t* get_address_of_KeyTime_1() { return &___KeyTime_1; } inline void set_KeyTime_1(int32_t value) { ___KeyTime_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMERIDPAIR_T921323905_H #ifndef BOOLEAN_T97287965_H #define BOOLEAN_T97287965_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean struct Boolean_t97287965 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_t97287965_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((&___TrueString_5), value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((&___FalseString_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BOOLEAN_T97287965_H #ifndef BYTE_T1134296376_H #define BYTE_T1134296376_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Byte struct Byte_t1134296376 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_t1134296376, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BYTE_T1134296376_H #ifndef CHAR_T3634460470_H #define CHAR_T3634460470_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Char struct Char_t3634460470 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_t3634460470, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_t3634460470_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_t4116647657* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_t4116647657* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_t4116647657** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_t4116647657* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((&___categoryForLatin1_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CHAR_T3634460470_H #ifndef DICTIONARYENTRY_T3123975638_H #define DICTIONARYENTRY_T3123975638_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.DictionaryEntry struct DictionaryEntry_t3123975638 { 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_t3123975638, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((&____key_0), value); } inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_t3123975638, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((&____value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t3123975638_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t3123975638_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; #endif // DICTIONARYENTRY_T3123975638_H #ifndef ARRAYBUILDER_1_T516401051_H #define ARRAYBUILDER_1_T516401051_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ArrayBuilder`1<System.Char[]> struct ArrayBuilder_1_t516401051 { public: // T[] System.Collections.Generic.ArrayBuilder`1::_array CharU5BU5DU5BU5D_t2526858914* ____array_0; // System.Int32 System.Collections.Generic.ArrayBuilder`1::_count int32_t ____count_1; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t516401051, ____array_0)); } inline CharU5BU5DU5BU5D_t2526858914* get__array_0() const { return ____array_0; } inline CharU5BU5DU5BU5D_t2526858914** get_address_of__array_0() { return &____array_0; } inline void set__array_0(CharU5BU5DU5BU5D_t2526858914* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((&____array_0), value); } inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t516401051, ____count_1)); } inline int32_t get__count_1() const { return ____count_1; } inline int32_t* get_address_of__count_1() { return &____count_1; } inline void set__count_1(int32_t value) { ____count_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYBUILDER_1_T516401051_H #ifndef ARRAYBUILDER_1_T1205246587_H #define ARRAYBUILDER_1_T1205246587_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ArrayBuilder`1<System.Collections.DictionaryEntry[]> struct ArrayBuilder_1_t1205246587 { public: // T[] System.Collections.Generic.ArrayBuilder`1::_array DictionaryEntryU5BU5DU5BU5D_t3671610434* ____array_0; // System.Int32 System.Collections.Generic.ArrayBuilder`1::_count int32_t ____count_1; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t1205246587, ____array_0)); } inline DictionaryEntryU5BU5DU5BU5D_t3671610434* get__array_0() const { return ____array_0; } inline DictionaryEntryU5BU5DU5BU5D_t3671610434** get_address_of__array_0() { return &____array_0; } inline void set__array_0(DictionaryEntryU5BU5DU5BU5D_t3671610434* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((&____array_0), value); } inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t1205246587, ____count_1)); } inline int32_t get__count_1() const { return ____count_1; } inline int32_t* get_address_of__count_1() { return &____count_1; } inline void set__count_1(int32_t value) { ____count_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYBUILDER_1_T1205246587_H #ifndef ARRAYBUILDER_1_T1401365894_H #define ARRAYBUILDER_1_T1401365894_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]> struct ArrayBuilder_1_t1401365894 { public: // T[] System.Collections.Generic.ArrayBuilder`1::_array KeyValuePair_2U5BU5DU5BU5D_t2409249963* ____array_0; // System.Int32 System.Collections.Generic.ArrayBuilder`1::_count int32_t ____count_1; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t1401365894, ____array_0)); } inline KeyValuePair_2U5BU5DU5BU5D_t2409249963* get__array_0() const { return ____array_0; } inline KeyValuePair_2U5BU5DU5BU5D_t2409249963** get_address_of__array_0() { return &____array_0; } inline void set__array_0(KeyValuePair_2U5BU5DU5BU5D_t2409249963* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((&____array_0), value); } inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t1401365894, ____count_1)); } inline int32_t get__count_1() const { return ____count_1; } inline int32_t* get_address_of__count_1() { return &____count_1; } inline void set__count_1(int32_t value) { ____count_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYBUILDER_1_T1401365894_H #ifndef ARRAYBUILDER_1_T68235548_H #define ARRAYBUILDER_1_T68235548_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ArrayBuilder`1<System.Object> struct ArrayBuilder_1_t68235548 { public: // T[] System.Collections.Generic.ArrayBuilder`1::_array ObjectU5BU5D_t2843939325* ____array_0; // System.Int32 System.Collections.Generic.ArrayBuilder`1::_count int32_t ____count_1; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t68235548, ____array_0)); } inline ObjectU5BU5D_t2843939325* get__array_0() const { return ____array_0; } inline ObjectU5BU5D_t2843939325** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ObjectU5BU5D_t2843939325* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((&____array_0), value); } inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t68235548, ____count_1)); } inline int32_t get__count_1() const { return ____count_1; } inline int32_t* get_address_of__count_1() { return &____count_1; } inline void set__count_1(int32_t value) { ____count_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYBUILDER_1_T68235548_H #ifndef ARRAYBUILDER_1_T4127036005_H #define ARRAYBUILDER_1_T4127036005_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ArrayBuilder`1<System.Object[]> struct ArrayBuilder_1_t4127036005 { public: // T[] System.Collections.Generic.ArrayBuilder`1::_array ObjectU5BU5DU5BU5D_t831815024* ____array_0; // System.Int32 System.Collections.Generic.ArrayBuilder`1::_count int32_t ____count_1; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t4127036005, ____array_0)); } inline ObjectU5BU5DU5BU5D_t831815024* get__array_0() const { return ____array_0; } inline ObjectU5BU5DU5BU5D_t831815024** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ObjectU5BU5DU5BU5D_t831815024* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((&____array_0), value); } inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t4127036005, ____count_1)); } inline int32_t get__count_1() const { return ____count_1; } inline int32_t* get_address_of__count_1() { return &____count_1; } inline void set__count_1(int32_t value) { ____count_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYBUILDER_1_T4127036005_H #ifndef ARRAYBUILDER_1_T3119314640_H #define ARRAYBUILDER_1_T3119314640_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ArrayBuilder`1<UnityEngine.Ray[]> struct ArrayBuilder_1_t3119314640 { public: // T[] System.Collections.Generic.ArrayBuilder`1::_array RayU5BU5DU5BU5D_t292100857* ____array_0; // System.Int32 System.Collections.Generic.ArrayBuilder`1::_count int32_t ____count_1; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t3119314640, ____array_0)); } inline RayU5BU5DU5BU5D_t292100857* get__array_0() const { return ____array_0; } inline RayU5BU5DU5BU5D_t292100857** get_address_of__array_0() { return &____array_0; } inline void set__array_0(RayU5BU5DU5BU5D_t292100857* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((&____array_0), value); } inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t3119314640, ____count_1)); } inline int32_t get__count_1() const { return ____count_1; } inline int32_t* get_address_of__count_1() { return &____count_1; } inline void set__count_1(int32_t value) { ____count_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYBUILDER_1_T3119314640_H #ifndef COPYPOSITION_T2993389481_H #define COPYPOSITION_T2993389481_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.CopyPosition struct CopyPosition_t2993389481 { public: // System.Int32 System.Collections.Generic.CopyPosition::<Row>k__BackingField int32_t ___U3CRowU3Ek__BackingField_0; // System.Int32 System.Collections.Generic.CopyPosition::<Column>k__BackingField int32_t ___U3CColumnU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CRowU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(CopyPosition_t2993389481, ___U3CRowU3Ek__BackingField_0)); } inline int32_t get_U3CRowU3Ek__BackingField_0() const { return ___U3CRowU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CRowU3Ek__BackingField_0() { return &___U3CRowU3Ek__BackingField_0; } inline void set_U3CRowU3Ek__BackingField_0(int32_t value) { ___U3CRowU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CColumnU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(CopyPosition_t2993389481, ___U3CColumnU3Ek__BackingField_1)); } inline int32_t get_U3CColumnU3Ek__BackingField_1() const { return ___U3CColumnU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CColumnU3Ek__BackingField_1() { return &___U3CColumnU3Ek__BackingField_1; } inline void set_U3CColumnU3Ek__BackingField_1(int32_t value) { ___U3CColumnU3Ek__BackingField_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COPYPOSITION_T2993389481_H #ifndef KEYVALUEPAIR_2_T4237331251_H #define KEYVALUEPAIR_2_T4237331251_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32> struct KeyValuePair_2_t4237331251 { 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_t4237331251, ___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_t4237331251, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T4237331251_H #ifndef KEYVALUEPAIR_2_T71524366_H #define KEYVALUEPAIR_2_T71524366_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object> struct KeyValuePair_2_t71524366 { 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_t71524366, ___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_t71524366, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T71524366_H #ifndef KEYVALUEPAIR_2_T2245450819_H #define KEYVALUEPAIR_2_T2245450819_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object> struct KeyValuePair_2_t2245450819 { 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_t2245450819, ___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_t2245450819, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2245450819_H #ifndef KEYVALUEPAIR_2_T3842366416_H #define KEYVALUEPAIR_2_T3842366416_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean> struct KeyValuePair_2_t3842366416 { 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_t3842366416, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3842366416, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T3842366416_H #ifndef KEYVALUEPAIR_2_T2401056908_H #define KEYVALUEPAIR_2_T2401056908_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32> struct KeyValuePair_2_t2401056908 { 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_t2401056908, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2401056908, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2401056908_H #ifndef KEYVALUEPAIR_2_T2530217319_H #define KEYVALUEPAIR_2_T2530217319_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> struct KeyValuePair_2_t2530217319 { 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_t2530217319, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2530217319, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2530217319_H #ifndef KEYVALUEPAIR_2_T2457078697_H #define KEYVALUEPAIR_2_T2457078697_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object> struct KeyValuePair_2_t2457078697 { 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_t2457078697, ___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_t2457078697, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2457078697_H #ifndef U3CU3EC__DISPLAYCLASS15_0_T623179283_H #define U3CU3EC__DISPLAYCLASS15_0_T623179283_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0<System.Char> struct U3CU3Ec__DisplayClass15_0_t623179283 { public: // System.Int32 System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::count int32_t ___count_0; // T[] System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::array CharU5BU5D_t3528271667* ___array_1; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::arrayIndex int32_t ___arrayIndex_2; public: inline static int32_t get_offset_of_count_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t623179283, ___count_0)); } inline int32_t get_count_0() const { return ___count_0; } inline int32_t* get_address_of_count_0() { return &___count_0; } inline void set_count_0(int32_t value) { ___count_0 = value; } inline static int32_t get_offset_of_array_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t623179283, ___array_1)); } inline CharU5BU5D_t3528271667* get_array_1() const { return ___array_1; } inline CharU5BU5D_t3528271667** get_address_of_array_1() { return &___array_1; } inline void set_array_1(CharU5BU5D_t3528271667* value) { ___array_1 = value; Il2CppCodeGenWriteBarrier((&___array_1), value); } inline static int32_t get_offset_of_arrayIndex_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t623179283, ___arrayIndex_2)); } inline int32_t get_arrayIndex_2() const { return ___arrayIndex_2; } inline int32_t* get_address_of_arrayIndex_2() { return &___arrayIndex_2; } inline void set_arrayIndex_2(int32_t value) { ___arrayIndex_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CU3EC__DISPLAYCLASS15_0_T623179283_H #ifndef U3CU3EC__DISPLAYCLASS15_0_T112694451_H #define U3CU3EC__DISPLAYCLASS15_0_T112694451_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0<System.Collections.DictionaryEntry> struct U3CU3Ec__DisplayClass15_0_t112694451 { public: // System.Int32 System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::count int32_t ___count_0; // T[] System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::array DictionaryEntryU5BU5D_t4217117203* ___array_1; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::arrayIndex int32_t ___arrayIndex_2; public: inline static int32_t get_offset_of_count_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t112694451, ___count_0)); } inline int32_t get_count_0() const { return ___count_0; } inline int32_t* get_address_of_count_0() { return &___count_0; } inline void set_count_0(int32_t value) { ___count_0 = value; } inline static int32_t get_offset_of_array_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t112694451, ___array_1)); } inline DictionaryEntryU5BU5D_t4217117203* get_array_1() const { return ___array_1; } inline DictionaryEntryU5BU5D_t4217117203** get_address_of_array_1() { return &___array_1; } inline void set_array_1(DictionaryEntryU5BU5D_t4217117203* value) { ___array_1 = value; Il2CppCodeGenWriteBarrier((&___array_1), value); } inline static int32_t get_offset_of_arrayIndex_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t112694451, ___arrayIndex_2)); } inline int32_t get_arrayIndex_2() const { return ___arrayIndex_2; } inline int32_t* get_address_of_arrayIndex_2() { return &___arrayIndex_2; } inline void set_arrayIndex_2(int32_t value) { ___arrayIndex_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CU3EC__DISPLAYCLASS15_0_T112694451_H #ifndef U3CU3EC__DISPLAYCLASS15_0_T3813903428_H #define U3CU3EC__DISPLAYCLASS15_0_T3813903428_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct U3CU3Ec__DisplayClass15_0_t3813903428 { public: // System.Int32 System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::count int32_t ___count_0; // T[] System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::array KeyValuePair_2U5BU5D_t118269214* ___array_1; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::arrayIndex int32_t ___arrayIndex_2; public: inline static int32_t get_offset_of_count_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t3813903428, ___count_0)); } inline int32_t get_count_0() const { return ___count_0; } inline int32_t* get_address_of_count_0() { return &___count_0; } inline void set_count_0(int32_t value) { ___count_0 = value; } inline static int32_t get_offset_of_array_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t3813903428, ___array_1)); } inline KeyValuePair_2U5BU5D_t118269214* get_array_1() const { return ___array_1; } inline KeyValuePair_2U5BU5D_t118269214** get_address_of_array_1() { return &___array_1; } inline void set_array_1(KeyValuePair_2U5BU5D_t118269214* value) { ___array_1 = value; Il2CppCodeGenWriteBarrier((&___array_1), value); } inline static int32_t get_offset_of_arrayIndex_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t3813903428, ___arrayIndex_2)); } inline int32_t get_arrayIndex_2() const { return ___arrayIndex_2; } inline int32_t* get_address_of_arrayIndex_2() { return &___arrayIndex_2; } inline void set_arrayIndex_2(int32_t value) { ___arrayIndex_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CU3EC__DISPLAYCLASS15_0_T3813903428_H #ifndef U3CU3EC__DISPLAYCLASS15_0_T68824977_H #define U3CU3EC__DISPLAYCLASS15_0_T68824977_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0<System.Object> struct U3CU3Ec__DisplayClass15_0_t68824977 { public: // System.Int32 System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::count int32_t ___count_0; // T[] System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::array ObjectU5BU5D_t2843939325* ___array_1; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::arrayIndex int32_t ___arrayIndex_2; public: inline static int32_t get_offset_of_count_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t68824977, ___count_0)); } inline int32_t get_count_0() const { return ___count_0; } inline int32_t* get_address_of_count_0() { return &___count_0; } inline void set_count_0(int32_t value) { ___count_0 = value; } inline static int32_t get_offset_of_array_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t68824977, ___array_1)); } inline ObjectU5BU5D_t2843939325* get_array_1() const { return ___array_1; } inline ObjectU5BU5D_t2843939325** get_address_of_array_1() { return &___array_1; } inline void set_array_1(ObjectU5BU5D_t2843939325* value) { ___array_1 = value; Il2CppCodeGenWriteBarrier((&___array_1), value); } inline static int32_t get_offset_of_arrayIndex_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t68824977, ___arrayIndex_2)); } inline int32_t get_arrayIndex_2() const { return ___arrayIndex_2; } inline int32_t* get_address_of_arrayIndex_2() { return &___arrayIndex_2; } inline void set_arrayIndex_2(int32_t value) { ___arrayIndex_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CU3EC__DISPLAYCLASS15_0_T68824977_H #ifndef U3CU3EC__DISPLAYCLASS15_0_T774570306_H #define U3CU3EC__DISPLAYCLASS15_0_T774570306_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0<UnityEngine.Ray> struct U3CU3Ec__DisplayClass15_0_t774570306 { public: // System.Int32 System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::count int32_t ___count_0; // T[] System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::array RayU5BU5D_t1836217960* ___array_1; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0::arrayIndex int32_t ___arrayIndex_2; public: inline static int32_t get_offset_of_count_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t774570306, ___count_0)); } inline int32_t get_count_0() const { return ___count_0; } inline int32_t* get_address_of_count_0() { return &___count_0; } inline void set_count_0(int32_t value) { ___count_0 = value; } inline static int32_t get_offset_of_array_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t774570306, ___array_1)); } inline RayU5BU5D_t1836217960* get_array_1() const { return ___array_1; } inline RayU5BU5D_t1836217960** get_address_of_array_1() { return &___array_1; } inline void set_array_1(RayU5BU5D_t1836217960* value) { ___array_1 = value; Il2CppCodeGenWriteBarrier((&___array_1), value); } inline static int32_t get_offset_of_arrayIndex_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t774570306, ___arrayIndex_2)); } inline int32_t get_arrayIndex_2() const { return ___arrayIndex_2; } inline int32_t* get_address_of_arrayIndex_2() { return &___arrayIndex_2; } inline void set_arrayIndex_2(int32_t value) { ___arrayIndex_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CU3EC__DISPLAYCLASS15_0_T774570306_H #ifndef ENUMERATOR_T139379724_H #define ENUMERATOR_T139379724_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LinkedList`1/Enumerator<System.Object> struct Enumerator_t139379724 { public: // System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedList`1/Enumerator::_list LinkedList_1_t1919752173 * ____list_0; // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1/Enumerator::_node LinkedListNode_1_t2825281267 * ____node_1; // System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.LinkedList`1/Enumerator::_current RuntimeObject * ____current_3; // System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_index int32_t ____index_4; public: inline static int32_t get_offset_of__list_0() { return static_cast<int32_t>(offsetof(Enumerator_t139379724, ____list_0)); } inline LinkedList_1_t1919752173 * get__list_0() const { return ____list_0; } inline LinkedList_1_t1919752173 ** get_address_of__list_0() { return &____list_0; } inline void set__list_0(LinkedList_1_t1919752173 * value) { ____list_0 = value; Il2CppCodeGenWriteBarrier((&____list_0), value); } inline static int32_t get_offset_of__node_1() { return static_cast<int32_t>(offsetof(Enumerator_t139379724, ____node_1)); } inline LinkedListNode_1_t2825281267 * get__node_1() const { return ____node_1; } inline LinkedListNode_1_t2825281267 ** get_address_of__node_1() { return &____node_1; } inline void set__node_1(LinkedListNode_1_t2825281267 * value) { ____node_1 = value; Il2CppCodeGenWriteBarrier((&____node_1), value); } inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Enumerator_t139379724, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(Enumerator_t139379724, ____current_3)); } inline RuntimeObject * get__current_3() const { return ____current_3; } inline RuntimeObject ** get_address_of__current_3() { return &____current_3; } inline void set__current_3(RuntimeObject * value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((&____current_3), value); } inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(Enumerator_t139379724, ____index_4)); } inline int32_t get__index_4() const { return ____index_4; } inline int32_t* get_address_of__index_4() { return &____index_4; } inline void set__index_4(int32_t value) { ____index_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T139379724_H #ifndef ENUMERATOR_T3458606584_H #define ENUMERATOR_T3458606584_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Boolean> struct Enumerator_t3458606584 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1569362707 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current bool ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3458606584, ___list_0)); } inline List_1_t1569362707 * get_list_0() const { return ___list_0; } inline List_1_t1569362707 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1569362707 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3458606584, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3458606584, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3458606584, ___current_3)); } inline bool get_current_3() const { return ___current_3; } inline bool* get_address_of_current_3() { return &___current_3; } inline void set_current_3(bool value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3458606584_H #ifndef ENUMERATOR_T200647699_H #define ENUMERATOR_T200647699_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Byte> struct Enumerator_t200647699 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t2606371118 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current uint8_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t200647699, ___list_0)); } inline List_1_t2606371118 * get_list_0() const { return ___list_0; } inline List_1_t2606371118 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t2606371118 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t200647699, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t200647699, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t200647699, ___current_3)); } inline uint8_t get_current_3() const { return ___current_3; } inline uint8_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(uint8_t value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T200647699_H #ifndef ENUMERATOR_T2700811793_H #define ENUMERATOR_T2700811793_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Char> struct Enumerator_t2700811793 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t811567916 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Il2CppChar ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2700811793, ___list_0)); } inline List_1_t811567916 * get_list_0() const { return ___list_0; } inline List_1_t811567916 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t811567916 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2700811793, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2700811793, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2700811793, ___current_3)); } inline Il2CppChar get_current_3() const { return ___current_3; } inline Il2CppChar* get_address_of_current_3() { return &___current_3; } inline void set_current_3(Il2CppChar value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2700811793_H #ifndef ENUMERATOR_T3955983982_H #define ENUMERATOR_T3955983982_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Double> struct Enumerator_t3955983982 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t2066740105 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current double ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3955983982, ___list_0)); } inline List_1_t2066740105 * get_list_0() const { return ___list_0; } inline List_1_t2066740105 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t2066740105 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3955983982, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3955983982, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3955983982, ___current_3)); } inline double get_current_3() const { return ___current_3; } inline double* get_address_of_current_3() { return &___current_3; } inline void set_current_3(double value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3955983982_H #ifndef ENUMERATOR_T1619171710_H #define ENUMERATOR_T1619171710_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Int16> struct Enumerator_t1619171710 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t4024895129 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current int16_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1619171710, ___list_0)); } inline List_1_t4024895129 * get_list_0() const { return ___list_0; } inline List_1_t4024895129 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t4024895129 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1619171710, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1619171710, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1619171710, ___current_3)); } inline int16_t get_current_3() const { return ___current_3; } inline int16_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(int16_t value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T1619171710_H #ifndef ENUMERATOR_T2017297076_H #define ENUMERATOR_T2017297076_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Int32> struct Enumerator_t2017297076 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t128053199 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current int32_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2017297076, ___list_0)); } inline List_1_t128053199 * get_list_0() const { return ___list_0; } inline List_1_t128053199 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t128053199 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2017297076, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2017297076, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2017297076, ___current_3)); } inline int32_t get_current_3() const { return ___current_3; } inline int32_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(int32_t value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2017297076_H #ifndef ENUMERATOR_T2802918627_H #define ENUMERATOR_T2802918627_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Int64> struct Enumerator_t2802918627 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t913674750 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current int64_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2802918627, ___list_0)); } inline List_1_t913674750 * get_list_0() const { return ___list_0; } inline List_1_t913674750 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t913674750 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2802918627, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2802918627, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2802918627, ___current_3)); } inline int64_t get_current_3() const { return ___current_3; } inline int64_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(int64_t value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2802918627_H #ifndef ENUMERATOR_T2146457487_H #define ENUMERATOR_T2146457487_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Object> struct Enumerator_t2146457487 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t257213610 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current RuntimeObject * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___list_0)); } inline List_1_t257213610 * get_list_0() const { return ___list_0; } inline List_1_t257213610 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t257213610 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___current_3)); } inline RuntimeObject * get_current_3() const { return ___current_3; } inline RuntimeObject ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(RuntimeObject * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((&___current_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2146457487_H #ifndef ENUMERATOR_T735928985_H #define ENUMERATOR_T735928985_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.SByte> struct Enumerator_t735928985 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t3141652404 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current int8_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t735928985, ___list_0)); } inline List_1_t3141652404 * get_list_0() const { return ___list_0; } inline List_1_t3141652404 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t3141652404 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t735928985, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t735928985, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t735928985, ___current_3)); } inline int8_t get_current_3() const { return ___current_3; } inline int8_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(int8_t value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T735928985_H #ifndef ENUMERATOR_T463618097_H #define ENUMERATOR_T463618097_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Single> struct Enumerator_t463618097 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t2869341516 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current float ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t463618097, ___list_0)); } inline List_1_t2869341516 * get_list_0() const { return ___list_0; } inline List_1_t2869341516 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t2869341516 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t463618097, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t463618097, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t463618097, ___current_3)); } inline float get_current_3() const { return ___current_3; } inline float* get_address_of_current_3() { return &___current_3; } inline void set_current_3(float value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T463618097_H #ifndef ENUMERATOR_T1244076281_H #define ENUMERATOR_T1244076281_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.UInt16> struct Enumerator_t1244076281 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t3649799700 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current uint16_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1244076281, ___list_0)); } inline List_1_t3649799700 * get_list_0() const { return ___list_0; } inline List_1_t3649799700 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t3649799700 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1244076281, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1244076281, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1244076281, ___current_3)); } inline uint16_t get_current_3() const { return ___current_3; } inline uint16_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(uint16_t value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T1244076281_H #ifndef ENUMERATOR_T1626413301_H #define ENUMERATOR_T1626413301_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.UInt32> struct Enumerator_t1626413301 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t4032136720 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current uint32_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1626413301, ___list_0)); } inline List_1_t4032136720 * get_list_0() const { return ___list_0; } inline List_1_t4032136720 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t4032136720 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1626413301, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1626413301, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1626413301, ___current_3)); } inline uint32_t get_current_3() const { return ___current_3; } inline uint32_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(uint32_t value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T1626413301_H #ifndef ENUMERATOR_T3200391415_H #define ENUMERATOR_T3200391415_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.UInt64> struct Enumerator_t3200391415 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1311147538 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current uint64_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3200391415, ___list_0)); } inline List_1_t1311147538 * get_list_0() const { return ___list_0; } inline List_1_t1311147538 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1311147538 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3200391415, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3200391415, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3200391415, ___current_3)); } inline uint64_t get_current_3() const { return ___current_3; } inline uint64_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(uint64_t value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3200391415_H #ifndef DATETIME_T3738529785_H #define DATETIME_T3738529785_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTime struct DateTime_t3738529785 { 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_t3738529785, ___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_t3738529785_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t385246372* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t385246372* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_t3738529785 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_t3738529785 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t385246372* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t385246372** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t385246372* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((&___DaysToMonth365_29), value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t385246372* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t385246372** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t385246372* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((&___DaysToMonth366_30), value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MinValue_31)); } inline DateTime_t3738529785 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_t3738529785 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_t3738529785 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MaxValue_32)); } inline DateTime_t3738529785 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_t3738529785 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_t3738529785 value) { ___MaxValue_32 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIME_T3738529785_H #ifndef DECIMAL_T2948259380_H #define DECIMAL_T2948259380_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Decimal struct Decimal_t2948259380 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t2948259380_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_t2770800703* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t2948259380 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t2948259380 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t2948259380 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t2948259380 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t2948259380 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t2948259380 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t2948259380 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_t2770800703* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_t2770800703** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_t2770800703* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((&___Powers10_6), value); } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___Zero_7)); } inline Decimal_t2948259380 get_Zero_7() const { return ___Zero_7; } inline Decimal_t2948259380 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t2948259380 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___One_8)); } inline Decimal_t2948259380 get_One_8() const { return ___One_8; } inline Decimal_t2948259380 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t2948259380 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinusOne_9)); } inline Decimal_t2948259380 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t2948259380 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t2948259380 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValue_10)); } inline Decimal_t2948259380 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t2948259380 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t2948259380 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinValue_11)); } inline Decimal_t2948259380 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t2948259380 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t2948259380 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t2948259380 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t2948259380 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t2948259380 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t2948259380 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t2948259380 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t2948259380 value) { ___NearPositiveZero_13 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DECIMAL_T2948259380_H #ifndef DOUBLE_T594665363_H #define DOUBLE_T594665363_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Double struct Double_t594665363 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t594665363, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t594665363_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t594665363_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DOUBLE_T594665363_H #ifndef ENUM_T4135868527_H #define ENUM_T4135868527_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Enum struct Enum_t4135868527 : public ValueType_t3640485471 { public: public: }; struct Enum_t4135868527_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t3528271667* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t3528271667* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t3528271667** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t3528271667* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((&___enumSeperatorCharArray_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Enum struct Enum_t4135868527_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t4135868527_marshaled_com { }; #endif // ENUM_T4135868527_H #ifndef INT16_T2552820387_H #define INT16_T2552820387_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int16 struct Int16_t2552820387 { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t2552820387, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT16_T2552820387_H #ifndef INT32_T2950945753_H #define INT32_T2950945753_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 struct Int32_t2950945753 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT32_T2950945753_H #ifndef INT64_T3736567304_H #define INT64_T3736567304_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int64 struct Int64_t3736567304 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t3736567304, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT64_T3736567304_H #ifndef INTPTR_T_H #define INTPTR_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTPTR_T_H #ifndef TYPEDCONSTANT_T714020897_H #define TYPEDCONSTANT_T714020897_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Expressions.Compiler.BoundConstants/TypedConstant struct TypedConstant_t714020897 { public: // System.Object System.Linq.Expressions.Compiler.BoundConstants/TypedConstant::Value RuntimeObject * ___Value_0; // System.Type System.Linq.Expressions.Compiler.BoundConstants/TypedConstant::Type Type_t * ___Type_1; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(TypedConstant_t714020897, ___Value_0)); } inline RuntimeObject * get_Value_0() const { return ___Value_0; } inline RuntimeObject ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(RuntimeObject * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(TypedConstant_t714020897, ___Type_1)); } inline Type_t * get_Type_1() const { return ___Type_1; } inline Type_t ** get_address_of_Type_1() { return &___Type_1; } inline void set_Type_1(Type_t * value) { ___Type_1 = value; Il2CppCodeGenWriteBarrier((&___Type_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Linq.Expressions.Compiler.BoundConstants/TypedConstant struct TypedConstant_t714020897_marshaled_pinvoke { Il2CppIUnknown* ___Value_0; Type_t * ___Type_1; }; // Native definition for COM marshalling of System.Linq.Expressions.Compiler.BoundConstants/TypedConstant struct TypedConstant_t714020897_marshaled_com { Il2CppIUnknown* ___Value_0; Type_t * ___Type_1; }; #endif // TYPEDCONSTANT_T714020897_H #ifndef ALIGNMENTUNION_T208902285_H #define ALIGNMENTUNION_T208902285_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.NetworkInformation.AlignmentUnion struct AlignmentUnion_t208902285 { public: union { #pragma pack(push, tp, 1) struct { // System.UInt64 System.Net.NetworkInformation.AlignmentUnion::Alignment uint64_t ___Alignment_0; }; #pragma pack(pop, tp) struct { uint64_t ___Alignment_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Int32 System.Net.NetworkInformation.AlignmentUnion::Length int32_t ___Length_1; }; #pragma pack(pop, tp) struct { int32_t ___Length_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___IfIndex_2_OffsetPadding[4]; // System.Int32 System.Net.NetworkInformation.AlignmentUnion::IfIndex int32_t ___IfIndex_2; }; #pragma pack(pop, tp) struct { char ___IfIndex_2_OffsetPadding_forAlignmentOnly[4]; int32_t ___IfIndex_2_forAlignmentOnly; }; }; public: inline static int32_t get_offset_of_Alignment_0() { return static_cast<int32_t>(offsetof(AlignmentUnion_t208902285, ___Alignment_0)); } inline uint64_t get_Alignment_0() const { return ___Alignment_0; } inline uint64_t* get_address_of_Alignment_0() { return &___Alignment_0; } inline void set_Alignment_0(uint64_t value) { ___Alignment_0 = value; } inline static int32_t get_offset_of_Length_1() { return static_cast<int32_t>(offsetof(AlignmentUnion_t208902285, ___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_IfIndex_2() { return static_cast<int32_t>(offsetof(AlignmentUnion_t208902285, ___IfIndex_2)); } inline int32_t get_IfIndex_2() const { return ___IfIndex_2; } inline int32_t* get_address_of_IfIndex_2() { return &___IfIndex_2; } inline void set_IfIndex_2(int32_t value) { ___IfIndex_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ALIGNMENTUNION_T208902285_H #ifndef RESOURCELOCATOR_T3723970807_H #define RESOURCELOCATOR_T3723970807_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Resources.ResourceLocator struct ResourceLocator_t3723970807 { 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_t3723970807, ____value_0)); } inline RuntimeObject * get__value_0() const { return ____value_0; } inline RuntimeObject ** get_address_of__value_0() { return &____value_0; } inline void set__value_0(RuntimeObject * value) { ____value_0 = value; Il2CppCodeGenWriteBarrier((&____value_0), value); } inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t3723970807, ____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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Resources.ResourceLocator struct ResourceLocator_t3723970807_marshaled_pinvoke { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // Native definition for COM marshalling of System.Resources.ResourceLocator struct ResourceLocator_t3723970807_marshaled_com { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; #endif // RESOURCELOCATOR_T3723970807_H #ifndef GCHANDLE_T3351438187_H #define GCHANDLE_T3351438187_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.InteropServices.GCHandle struct GCHandle_t3351438187 { public: // System.Int32 System.Runtime.InteropServices.GCHandle::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t3351438187, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GCHANDLE_T3351438187_H #ifndef EVENTREGISTRATIONTOKEN_T318890788_H #define EVENTREGISTRATIONTOKEN_T318890788_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken struct EventRegistrationToken_t318890788 { public: // System.UInt64 System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(EventRegistrationToken_t318890788, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EVENTREGISTRATIONTOKEN_T318890788_H #ifndef EVENTCACHEENTRY_T156445199_H #define EVENTCACHEENTRY_T156445199_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry struct EventCacheEntry_t156445199 { public: // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventRegistrationTokenListWithCount> System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry::registrationTable ConditionalWeakTable_2_t3044373657 * ___registrationTable_0; // System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/TokenListCount System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry::tokenListCount TokenListCount_t1606756367 * ___tokenListCount_1; public: inline static int32_t get_offset_of_registrationTable_0() { return static_cast<int32_t>(offsetof(EventCacheEntry_t156445199, ___registrationTable_0)); } inline ConditionalWeakTable_2_t3044373657 * get_registrationTable_0() const { return ___registrationTable_0; } inline ConditionalWeakTable_2_t3044373657 ** get_address_of_registrationTable_0() { return &___registrationTable_0; } inline void set_registrationTable_0(ConditionalWeakTable_2_t3044373657 * value) { ___registrationTable_0 = value; Il2CppCodeGenWriteBarrier((&___registrationTable_0), value); } inline static int32_t get_offset_of_tokenListCount_1() { return static_cast<int32_t>(offsetof(EventCacheEntry_t156445199, ___tokenListCount_1)); } inline TokenListCount_t1606756367 * get_tokenListCount_1() const { return ___tokenListCount_1; } inline TokenListCount_t1606756367 ** get_address_of_tokenListCount_1() { return &___tokenListCount_1; } inline void set_tokenListCount_1(TokenListCount_t1606756367 * value) { ___tokenListCount_1 = value; Il2CppCodeGenWriteBarrier((&___tokenListCount_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry struct EventCacheEntry_t156445199_marshaled_pinvoke { ConditionalWeakTable_2_t3044373657 * ___registrationTable_0; TokenListCount_t1606756367 * ___tokenListCount_1; }; // Native definition for COM marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry struct EventCacheEntry_t156445199_marshaled_com { ConditionalWeakTable_2_t3044373657 * ___registrationTable_0; TokenListCount_t1606756367 * ___tokenListCount_1; }; #endif // EVENTCACHEENTRY_T156445199_H #ifndef EVENTCACHEKEY_T3133620722_H #define EVENTCACHEKEY_T3133620722_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey struct EventCacheKey_t3133620722 { public: // System.Object System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey::target RuntimeObject * ___target_0; // System.Reflection.MethodInfo System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey::method MethodInfo_t * ___method_1; public: inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(EventCacheKey_t3133620722, ___target_0)); } inline RuntimeObject * get_target_0() const { return ___target_0; } inline RuntimeObject ** get_address_of_target_0() { return &___target_0; } inline void set_target_0(RuntimeObject * value) { ___target_0 = value; Il2CppCodeGenWriteBarrier((&___target_0), value); } inline static int32_t get_offset_of_method_1() { return static_cast<int32_t>(offsetof(EventCacheKey_t3133620722, ___method_1)); } inline MethodInfo_t * get_method_1() const { return ___method_1; } inline MethodInfo_t ** get_address_of_method_1() { return &___method_1; } inline void set_method_1(MethodInfo_t * value) { ___method_1 = value; Il2CppCodeGenWriteBarrier((&___method_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey struct EventCacheKey_t3133620722_marshaled_pinvoke { Il2CppIUnknown* ___target_0; MethodInfo_t * ___method_1; }; // Native definition for COM marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey struct EventCacheKey_t3133620722_marshaled_com { Il2CppIUnknown* ___target_0; MethodInfo_t * ___method_1; }; #endif // EVENTCACHEKEY_T3133620722_H #ifndef SBYTE_T1669577662_H #define SBYTE_T1669577662_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SByte struct SByte_t1669577662 { public: // System.SByte System.SByte::m_value int8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t1669577662, ___m_value_0)); } inline int8_t get_m_value_0() const { return ___m_value_0; } inline int8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int8_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SBYTE_T1669577662_H #ifndef SINGLE_T1397266774_H #define SINGLE_T1397266774_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Single struct Single_t1397266774 { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SINGLE_T1397266774_H #ifndef SYSTEMEXCEPTION_T176217640_H #define SYSTEMEXCEPTION_T176217640_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SystemException struct SystemException_t176217640 : public Exception_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SYSTEMEXCEPTION_T176217640_H #ifndef UINT16_T2177724958_H #define UINT16_T2177724958_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt16 struct UInt16_t2177724958 { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_t2177724958, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT16_T2177724958_H #ifndef UINT32_T2560061978_H #define UINT32_T2560061978_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt32 struct UInt32_t2560061978 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t2560061978, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT32_T2560061978_H #ifndef UINT64_T4134040092_H #define UINT64_T4134040092_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt64 struct UInt64_t4134040092 { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_t4134040092, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT64_T4134040092_H #ifndef VOID_T1185182177_H #define VOID_T1185182177_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void struct Void_t1185182177 { public: union { struct { }; uint8_t Void_t1185182177__padding[1]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VOID_T1185182177_H #ifndef RANGEPOSITIONINFO_T589968936_H #define RANGEPOSITIONINFO_T589968936_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.RangePositionInfo struct RangePositionInfo_t589968936 { public: // System.Xml.Schema.BitSet System.Xml.Schema.RangePositionInfo::curpos BitSet_t1154229585 * ___curpos_0; // System.Decimal[] System.Xml.Schema.RangePositionInfo::rangeCounters DecimalU5BU5D_t1145110141* ___rangeCounters_1; public: inline static int32_t get_offset_of_curpos_0() { return static_cast<int32_t>(offsetof(RangePositionInfo_t589968936, ___curpos_0)); } inline BitSet_t1154229585 * get_curpos_0() const { return ___curpos_0; } inline BitSet_t1154229585 ** get_address_of_curpos_0() { return &___curpos_0; } inline void set_curpos_0(BitSet_t1154229585 * value) { ___curpos_0 = value; Il2CppCodeGenWriteBarrier((&___curpos_0), value); } inline static int32_t get_offset_of_rangeCounters_1() { return static_cast<int32_t>(offsetof(RangePositionInfo_t589968936, ___rangeCounters_1)); } inline DecimalU5BU5D_t1145110141* get_rangeCounters_1() const { return ___rangeCounters_1; } inline DecimalU5BU5D_t1145110141** get_address_of_rangeCounters_1() { return &___rangeCounters_1; } inline void set_rangeCounters_1(DecimalU5BU5D_t1145110141* value) { ___rangeCounters_1 = value; Il2CppCodeGenWriteBarrier((&___rangeCounters_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.Schema.RangePositionInfo struct RangePositionInfo_t589968936_marshaled_pinvoke { BitSet_t1154229585 * ___curpos_0; Decimal_t2948259380 * ___rangeCounters_1; }; // Native definition for COM marshalling of System.Xml.Schema.RangePositionInfo struct RangePositionInfo_t589968936_marshaled_com { BitSet_t1154229585 * ___curpos_0; Decimal_t2948259380 * ___rangeCounters_1; }; #endif // RANGEPOSITIONINFO_T589968936_H #ifndef XMLSCHEMAOBJECTENTRY_T3344676971_H #define XMLSCHEMAOBJECTENTRY_T3344676971_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry struct XmlSchemaObjectEntry_t3344676971 { public: // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry::qname XmlQualifiedName_t2760654312 * ___qname_0; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry::xso XmlSchemaObject_t1315720168 * ___xso_1; public: inline static int32_t get_offset_of_qname_0() { return static_cast<int32_t>(offsetof(XmlSchemaObjectEntry_t3344676971, ___qname_0)); } inline XmlQualifiedName_t2760654312 * get_qname_0() const { return ___qname_0; } inline XmlQualifiedName_t2760654312 ** get_address_of_qname_0() { return &___qname_0; } inline void set_qname_0(XmlQualifiedName_t2760654312 * value) { ___qname_0 = value; Il2CppCodeGenWriteBarrier((&___qname_0), value); } inline static int32_t get_offset_of_xso_1() { return static_cast<int32_t>(offsetof(XmlSchemaObjectEntry_t3344676971, ___xso_1)); } inline XmlSchemaObject_t1315720168 * get_xso_1() const { return ___xso_1; } inline XmlSchemaObject_t1315720168 ** get_address_of_xso_1() { return &___xso_1; } inline void set_xso_1(XmlSchemaObject_t1315720168 * value) { ___xso_1 = value; Il2CppCodeGenWriteBarrier((&___xso_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry struct XmlSchemaObjectEntry_t3344676971_marshaled_pinvoke { XmlQualifiedName_t2760654312 * ___qname_0; XmlSchemaObject_t1315720168 * ___xso_1; }; // Native definition for COM marshalling of System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry struct XmlSchemaObjectEntry_t3344676971_marshaled_com { XmlQualifiedName_t2760654312 * ___qname_0; XmlSchemaObject_t1315720168 * ___xso_1; }; #endif // XMLSCHEMAOBJECTENTRY_T3344676971_H #ifndef ORDERBLOCK_T1585977831_H #define ORDERBLOCK_T1585977831_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t1585977831 { public: // System.Int32 UnityEngine.BeforeRenderHelper/OrderBlock::order int32_t ___order_0; // UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper/OrderBlock::callback UnityAction_t3245792599 * ___callback_1; public: inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t1585977831, ___order_0)); } inline int32_t get_order_0() const { return ___order_0; } inline int32_t* get_address_of_order_0() { return &___order_0; } inline void set_order_0(int32_t value) { ___order_0 = value; } inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t1585977831, ___callback_1)); } inline UnityAction_t3245792599 * get_callback_1() const { return ___callback_1; } inline UnityAction_t3245792599 ** get_address_of_callback_1() { return &___callback_1; } inline void set_callback_1(UnityAction_t3245792599 * value) { ___callback_1 = value; Il2CppCodeGenWriteBarrier((&___callback_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t1585977831_marshaled_pinvoke { int32_t ___order_0; Il2CppMethodPointer ___callback_1; }; // Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t1585977831_marshaled_com { int32_t ___order_0; Il2CppMethodPointer ___callback_1; }; #endif // ORDERBLOCK_T1585977831_H #ifndef COLOR_T2555686324_H #define COLOR_T2555686324_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Color struct Color_t2555686324 { public: // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; public: inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___r_0)); } inline float get_r_0() const { return ___r_0; } inline float* get_address_of_r_0() { return &___r_0; } inline void set_r_0(float value) { ___r_0 = value; } inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___g_1)); } inline float get_g_1() const { return ___g_1; } inline float* get_address_of_g_1() { return &___g_1; } inline void set_g_1(float value) { ___g_1 = value; } inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___b_2)); } inline float get_b_2() const { return ___b_2; } inline float* get_address_of_b_2() { return &___b_2; } inline void set_b_2(float value) { ___b_2 = value; } inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___a_3)); } inline float get_a_3() const { return ___a_3; } inline float* get_address_of_a_3() { return &___a_3; } inline void set_a_3(float value) { ___a_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COLOR_T2555686324_H #ifndef COLOR32_T2600501292_H #define COLOR32_T2600501292_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Color32 struct Color32_t2600501292 { public: union { #pragma pack(push, tp, 1) struct { // System.Int32 UnityEngine.Color32::rgba int32_t ___rgba_0; }; #pragma pack(pop, tp) struct { int32_t ___rgba_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Byte UnityEngine.Color32::r uint8_t ___r_1; }; #pragma pack(pop, tp) struct { uint8_t ___r_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___g_2_OffsetPadding[1]; // System.Byte UnityEngine.Color32::g uint8_t ___g_2; }; #pragma pack(pop, tp) struct { char ___g_2_OffsetPadding_forAlignmentOnly[1]; uint8_t ___g_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___b_3_OffsetPadding[2]; // System.Byte UnityEngine.Color32::b uint8_t ___b_3; }; #pragma pack(pop, tp) struct { char ___b_3_OffsetPadding_forAlignmentOnly[2]; uint8_t ___b_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___a_4_OffsetPadding[3]; // System.Byte UnityEngine.Color32::a uint8_t ___a_4; }; #pragma pack(pop, tp) struct { char ___a_4_OffsetPadding_forAlignmentOnly[3]; uint8_t ___a_4_forAlignmentOnly; }; }; public: inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___rgba_0)); } inline int32_t get_rgba_0() const { return ___rgba_0; } inline int32_t* get_address_of_rgba_0() { return &___rgba_0; } inline void set_rgba_0(int32_t value) { ___rgba_0 = value; } inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___r_1)); } inline uint8_t get_r_1() const { return ___r_1; } inline uint8_t* get_address_of_r_1() { return &___r_1; } inline void set_r_1(uint8_t value) { ___r_1 = value; } inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___g_2)); } inline uint8_t get_g_2() const { return ___g_2; } inline uint8_t* get_address_of_g_2() { return &___g_2; } inline void set_g_2(uint8_t value) { ___g_2 = value; } inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___b_3)); } inline uint8_t get_b_3() const { return ___b_3; } inline uint8_t* get_address_of_b_3() { return &___b_3; } inline void set_b_3(uint8_t value) { ___b_3 = value; } inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___a_4)); } inline uint8_t get_a_4() const { return ___a_4; } inline uint8_t* get_address_of_a_4() { return &___a_4; } inline void set_a_4(uint8_t value) { ___a_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COLOR32_T2600501292_H #ifndef MATRIX4X4_T1817901843_H #define MATRIX4X4_T1817901843_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Matrix4x4 struct Matrix4x4_t1817901843 { 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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843, ___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_t1817901843_StaticFields { public: // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix Matrix4x4_t1817901843 ___zeroMatrix_16; // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix Matrix4x4_t1817901843 ___identityMatrix_17; public: inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843_StaticFields, ___zeroMatrix_16)); } inline Matrix4x4_t1817901843 get_zeroMatrix_16() const { return ___zeroMatrix_16; } inline Matrix4x4_t1817901843 * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; } inline void set_zeroMatrix_16(Matrix4x4_t1817901843 value) { ___zeroMatrix_16 = value; } inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843_StaticFields, ___identityMatrix_17)); } inline Matrix4x4_t1817901843 get_identityMatrix_17() const { return ___identityMatrix_17; } inline Matrix4x4_t1817901843 * get_address_of_identityMatrix_17() { return &___identityMatrix_17; } inline void set_identityMatrix_17(Matrix4x4_t1817901843 value) { ___identityMatrix_17 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MATRIX4X4_T1817901843_H #ifndef UILINEINFO_T4195266810_H #define UILINEINFO_T4195266810_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UILineInfo struct UILineInfo_t4195266810 { public: // System.Int32 UnityEngine.UILineInfo::startCharIdx int32_t ___startCharIdx_0; // System.Int32 UnityEngine.UILineInfo::height int32_t ___height_1; // System.Single UnityEngine.UILineInfo::topY float ___topY_2; // System.Single UnityEngine.UILineInfo::leading float ___leading_3; public: inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___startCharIdx_0)); } inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; } inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; } inline void set_startCharIdx_0(int32_t value) { ___startCharIdx_0 = value; } inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___height_1)); } inline int32_t get_height_1() const { return ___height_1; } inline int32_t* get_address_of_height_1() { return &___height_1; } inline void set_height_1(int32_t value) { ___height_1 = value; } inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___topY_2)); } inline float get_topY_2() const { return ___topY_2; } inline float* get_address_of_topY_2() { return &___topY_2; } inline void set_topY_2(float value) { ___topY_2 = value; } inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___leading_3)); } inline float get_leading_3() const { return ___leading_3; } inline float* get_address_of_leading_3() { return &___leading_3; } inline void set_leading_3(float value) { ___leading_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UILINEINFO_T4195266810_H #ifndef VECTOR2_T2156229523_H #define VECTOR2_T2156229523_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Vector2 struct Vector2_t2156229523 { public: // System.Single UnityEngine.Vector2::x float ___x_0; // System.Single UnityEngine.Vector2::y float ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } }; struct Vector2_t2156229523_StaticFields { public: // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector Vector2_t2156229523 ___zeroVector_2; // UnityEngine.Vector2 UnityEngine.Vector2::oneVector Vector2_t2156229523 ___oneVector_3; // UnityEngine.Vector2 UnityEngine.Vector2::upVector Vector2_t2156229523 ___upVector_4; // UnityEngine.Vector2 UnityEngine.Vector2::downVector Vector2_t2156229523 ___downVector_5; // UnityEngine.Vector2 UnityEngine.Vector2::leftVector Vector2_t2156229523 ___leftVector_6; // UnityEngine.Vector2 UnityEngine.Vector2::rightVector Vector2_t2156229523 ___rightVector_7; // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector Vector2_t2156229523 ___positiveInfinityVector_8; // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector Vector2_t2156229523 ___negativeInfinityVector_9; public: inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___zeroVector_2)); } inline Vector2_t2156229523 get_zeroVector_2() const { return ___zeroVector_2; } inline Vector2_t2156229523 * get_address_of_zeroVector_2() { return &___zeroVector_2; } inline void set_zeroVector_2(Vector2_t2156229523 value) { ___zeroVector_2 = value; } inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___oneVector_3)); } inline Vector2_t2156229523 get_oneVector_3() const { return ___oneVector_3; } inline Vector2_t2156229523 * get_address_of_oneVector_3() { return &___oneVector_3; } inline void set_oneVector_3(Vector2_t2156229523 value) { ___oneVector_3 = value; } inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___upVector_4)); } inline Vector2_t2156229523 get_upVector_4() const { return ___upVector_4; } inline Vector2_t2156229523 * get_address_of_upVector_4() { return &___upVector_4; } inline void set_upVector_4(Vector2_t2156229523 value) { ___upVector_4 = value; } inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___downVector_5)); } inline Vector2_t2156229523 get_downVector_5() const { return ___downVector_5; } inline Vector2_t2156229523 * get_address_of_downVector_5() { return &___downVector_5; } inline void set_downVector_5(Vector2_t2156229523 value) { ___downVector_5 = value; } inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___leftVector_6)); } inline Vector2_t2156229523 get_leftVector_6() const { return ___leftVector_6; } inline Vector2_t2156229523 * get_address_of_leftVector_6() { return &___leftVector_6; } inline void set_leftVector_6(Vector2_t2156229523 value) { ___leftVector_6 = value; } inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___rightVector_7)); } inline Vector2_t2156229523 get_rightVector_7() const { return ___rightVector_7; } inline Vector2_t2156229523 * get_address_of_rightVector_7() { return &___rightVector_7; } inline void set_rightVector_7(Vector2_t2156229523 value) { ___rightVector_7 = value; } inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___positiveInfinityVector_8)); } inline Vector2_t2156229523 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; } inline Vector2_t2156229523 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; } inline void set_positiveInfinityVector_8(Vector2_t2156229523 value) { ___positiveInfinityVector_8 = value; } inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___negativeInfinityVector_9)); } inline Vector2_t2156229523 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; } inline Vector2_t2156229523 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; } inline void set_negativeInfinityVector_9(Vector2_t2156229523 value) { ___negativeInfinityVector_9 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VECTOR2_T2156229523_H #ifndef VECTOR3_T3722313464_H #define VECTOR3_T3722313464_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Vector3 struct Vector3_t3722313464 { public: // System.Single UnityEngine.Vector3::x float ___x_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_t3722313464, ___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_t3722313464, ___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_t3722313464, ___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_t3722313464_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t3722313464 ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t3722313464 ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t3722313464 ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t3722313464 ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t3722313464 ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t3722313464 ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t3722313464 ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t3722313464 ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t3722313464 ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t3722313464 ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___zeroVector_5)); } inline Vector3_t3722313464 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_t3722313464 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_t3722313464 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___oneVector_6)); } inline Vector3_t3722313464 get_oneVector_6() const { return ___oneVector_6; } inline Vector3_t3722313464 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_t3722313464 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___upVector_7)); } inline Vector3_t3722313464 get_upVector_7() const { return ___upVector_7; } inline Vector3_t3722313464 * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_t3722313464 value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___downVector_8)); } inline Vector3_t3722313464 get_downVector_8() const { return ___downVector_8; } inline Vector3_t3722313464 * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_t3722313464 value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___leftVector_9)); } inline Vector3_t3722313464 get_leftVector_9() const { return ___leftVector_9; } inline Vector3_t3722313464 * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_t3722313464 value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___rightVector_10)); } inline Vector3_t3722313464 get_rightVector_10() const { return ___rightVector_10; } inline Vector3_t3722313464 * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_t3722313464 value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___forwardVector_11)); } inline Vector3_t3722313464 get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_t3722313464 * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_t3722313464 value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___backVector_12)); } inline Vector3_t3722313464 get_backVector_12() const { return ___backVector_12; } inline Vector3_t3722313464 * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_t3722313464 value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_t3722313464 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_t3722313464 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_t3722313464 value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_t3722313464 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_t3722313464 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_t3722313464 value) { ___negativeInfinityVector_14 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VECTOR3_T3722313464_H #ifndef VECTOR4_T3319028937_H #define VECTOR4_T3319028937_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Vector4 struct Vector4_t3319028937 { public: // System.Single UnityEngine.Vector4::x float ___x_1; // System.Single UnityEngine.Vector4::y float ___y_2; // System.Single UnityEngine.Vector4::z float ___z_3; // System.Single UnityEngine.Vector4::w float ___w_4; public: inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___w_4)); } inline float get_w_4() const { return ___w_4; } inline float* get_address_of_w_4() { return &___w_4; } inline void set_w_4(float value) { ___w_4 = value; } }; struct Vector4_t3319028937_StaticFields { public: // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_t3319028937 ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_t3319028937 ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_t3319028937 ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_t3319028937 ___negativeInfinityVector_8; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___zeroVector_5)); } inline Vector4_t3319028937 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector4_t3319028937 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector4_t3319028937 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___oneVector_6)); } inline Vector4_t3319028937 get_oneVector_6() const { return ___oneVector_6; } inline Vector4_t3319028937 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector4_t3319028937 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___positiveInfinityVector_7)); } inline Vector4_t3319028937 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; } inline Vector4_t3319028937 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; } inline void set_positiveInfinityVector_7(Vector4_t3319028937 value) { ___positiveInfinityVector_7 = value; } inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___negativeInfinityVector_8)); } inline Vector4_t3319028937 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; } inline Vector4_t3319028937 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; } inline void set_negativeInfinityVector_8(Vector4_t3319028937 value) { ___negativeInfinityVector_8 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VECTOR4_T3319028937_H #ifndef DIALOGBUTTONTYPE_T3975808476_H #define DIALOGBUTTONTYPE_T3975808476_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.UX.Dialog.DialogButtonType struct DialogButtonType_t3975808476 { public: // System.Int32 HoloToolkit.UX.Dialog.DialogButtonType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DialogButtonType_t3975808476, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DIALOGBUTTONTYPE_T3975808476_H #ifndef KEYEVENT_T245959883_H #define KEYEVENT_T245959883_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.InputModule.KeyboardManager/KeyEvent struct KeyEvent_t245959883 { public: // System.Int32 HoloToolkit.Unity.InputModule.KeyboardManager/KeyEvent::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(KeyEvent_t245959883, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYEVENT_T245959883_H #ifndef RAYCASTRESULTHELPER_T2007985016_H #define RAYCASTRESULTHELPER_T2007985016_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.RaycastResultHelper struct RaycastResultHelper_t2007985016 { public: // UnityEngine.Collider HoloToolkit.Unity.RaycastResultHelper::collider Collider_t1773347010 * ___collider_0; // System.Int32 HoloToolkit.Unity.RaycastResultHelper::layer int32_t ___layer_1; // UnityEngine.Vector3 HoloToolkit.Unity.RaycastResultHelper::normal Vector3_t3722313464 ___normal_2; // System.Single HoloToolkit.Unity.RaycastResultHelper::distance float ___distance_3; // UnityEngine.Vector3 HoloToolkit.Unity.RaycastResultHelper::point Vector3_t3722313464 ___point_4; // UnityEngine.Transform HoloToolkit.Unity.RaycastResultHelper::transform Transform_t3600365921 * ___transform_5; // UnityEngine.Vector2 HoloToolkit.Unity.RaycastResultHelper::textureCoord Vector2_t2156229523 ___textureCoord_6; // UnityEngine.Vector2 HoloToolkit.Unity.RaycastResultHelper::textureCoord2 Vector2_t2156229523 ___textureCoord2_7; public: inline static int32_t get_offset_of_collider_0() { return static_cast<int32_t>(offsetof(RaycastResultHelper_t2007985016, ___collider_0)); } inline Collider_t1773347010 * get_collider_0() const { return ___collider_0; } inline Collider_t1773347010 ** get_address_of_collider_0() { return &___collider_0; } inline void set_collider_0(Collider_t1773347010 * value) { ___collider_0 = value; Il2CppCodeGenWriteBarrier((&___collider_0), value); } inline static int32_t get_offset_of_layer_1() { return static_cast<int32_t>(offsetof(RaycastResultHelper_t2007985016, ___layer_1)); } inline int32_t get_layer_1() const { return ___layer_1; } inline int32_t* get_address_of_layer_1() { return &___layer_1; } inline void set_layer_1(int32_t value) { ___layer_1 = value; } inline static int32_t get_offset_of_normal_2() { return static_cast<int32_t>(offsetof(RaycastResultHelper_t2007985016, ___normal_2)); } inline Vector3_t3722313464 get_normal_2() const { return ___normal_2; } inline Vector3_t3722313464 * get_address_of_normal_2() { return &___normal_2; } inline void set_normal_2(Vector3_t3722313464 value) { ___normal_2 = value; } inline static int32_t get_offset_of_distance_3() { return static_cast<int32_t>(offsetof(RaycastResultHelper_t2007985016, ___distance_3)); } inline float get_distance_3() const { return ___distance_3; } inline float* get_address_of_distance_3() { return &___distance_3; } inline void set_distance_3(float value) { ___distance_3 = value; } inline static int32_t get_offset_of_point_4() { return static_cast<int32_t>(offsetof(RaycastResultHelper_t2007985016, ___point_4)); } inline Vector3_t3722313464 get_point_4() const { return ___point_4; } inline Vector3_t3722313464 * get_address_of_point_4() { return &___point_4; } inline void set_point_4(Vector3_t3722313464 value) { ___point_4 = value; } inline static int32_t get_offset_of_transform_5() { return static_cast<int32_t>(offsetof(RaycastResultHelper_t2007985016, ___transform_5)); } inline Transform_t3600365921 * get_transform_5() const { return ___transform_5; } inline Transform_t3600365921 ** get_address_of_transform_5() { return &___transform_5; } inline void set_transform_5(Transform_t3600365921 * value) { ___transform_5 = value; Il2CppCodeGenWriteBarrier((&___transform_5), value); } inline static int32_t get_offset_of_textureCoord_6() { return static_cast<int32_t>(offsetof(RaycastResultHelper_t2007985016, ___textureCoord_6)); } inline Vector2_t2156229523 get_textureCoord_6() const { return ___textureCoord_6; } inline Vector2_t2156229523 * get_address_of_textureCoord_6() { return &___textureCoord_6; } inline void set_textureCoord_6(Vector2_t2156229523 value) { ___textureCoord_6 = value; } inline static int32_t get_offset_of_textureCoord2_7() { return static_cast<int32_t>(offsetof(RaycastResultHelper_t2007985016, ___textureCoord2_7)); } inline Vector2_t2156229523 get_textureCoord2_7() const { return ___textureCoord2_7; } inline Vector2_t2156229523 * get_address_of_textureCoord2_7() { return &___textureCoord2_7; } inline void set_textureCoord2_7(Vector2_t2156229523 value) { ___textureCoord2_7 = value; } }; struct RaycastResultHelper_t2007985016_StaticFields { public: // HoloToolkit.Unity.RaycastResultHelper HoloToolkit.Unity.RaycastResultHelper::None RaycastResultHelper_t2007985016 ___None_8; public: inline static int32_t get_offset_of_None_8() { return static_cast<int32_t>(offsetof(RaycastResultHelper_t2007985016_StaticFields, ___None_8)); } inline RaycastResultHelper_t2007985016 get_None_8() const { return ___None_8; } inline RaycastResultHelper_t2007985016 * get_address_of_None_8() { return &___None_8; } inline void set_None_8(RaycastResultHelper_t2007985016 value) { ___None_8 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of HoloToolkit.Unity.RaycastResultHelper struct RaycastResultHelper_t2007985016_marshaled_pinvoke { Collider_t1773347010 * ___collider_0; int32_t ___layer_1; Vector3_t3722313464 ___normal_2; float ___distance_3; Vector3_t3722313464 ___point_4; Transform_t3600365921 * ___transform_5; Vector2_t2156229523 ___textureCoord_6; Vector2_t2156229523 ___textureCoord2_7; }; // Native definition for COM marshalling of HoloToolkit.Unity.RaycastResultHelper struct RaycastResultHelper_t2007985016_marshaled_com { Collider_t1773347010 * ___collider_0; int32_t ___layer_1; Vector3_t3722313464 ___normal_2; float ___distance_3; Vector3_t3722313464 ___point_4; Transform_t3600365921 * ___transform_5; Vector2_t2156229523 ___textureCoord_6; Vector2_t2156229523 ___textureCoord2_7; }; #endif // RAYCASTRESULTHELPER_T2007985016_H #ifndef MESHDATA_T4114415351_H #define MESHDATA_T4114415351_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData struct MeshData_t4114415351 { public: // UnityEngine.Matrix4x4 HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData::Transform Matrix4x4_t1817901843 ___Transform_0; // UnityEngine.Vector3[] HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData::Verts Vector3U5BU5D_t1718750761* ___Verts_1; // UnityEngine.Vector3[] HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData::Normals Vector3U5BU5D_t1718750761* ___Normals_2; // System.Int32[] HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData::Indices Int32U5BU5D_t385246372* ___Indices_3; public: inline static int32_t get_offset_of_Transform_0() { return static_cast<int32_t>(offsetof(MeshData_t4114415351, ___Transform_0)); } inline Matrix4x4_t1817901843 get_Transform_0() const { return ___Transform_0; } inline Matrix4x4_t1817901843 * get_address_of_Transform_0() { return &___Transform_0; } inline void set_Transform_0(Matrix4x4_t1817901843 value) { ___Transform_0 = value; } inline static int32_t get_offset_of_Verts_1() { return static_cast<int32_t>(offsetof(MeshData_t4114415351, ___Verts_1)); } inline Vector3U5BU5D_t1718750761* get_Verts_1() const { return ___Verts_1; } inline Vector3U5BU5D_t1718750761** get_address_of_Verts_1() { return &___Verts_1; } inline void set_Verts_1(Vector3U5BU5D_t1718750761* value) { ___Verts_1 = value; Il2CppCodeGenWriteBarrier((&___Verts_1), value); } inline static int32_t get_offset_of_Normals_2() { return static_cast<int32_t>(offsetof(MeshData_t4114415351, ___Normals_2)); } inline Vector3U5BU5D_t1718750761* get_Normals_2() const { return ___Normals_2; } inline Vector3U5BU5D_t1718750761** get_address_of_Normals_2() { return &___Normals_2; } inline void set_Normals_2(Vector3U5BU5D_t1718750761* value) { ___Normals_2 = value; Il2CppCodeGenWriteBarrier((&___Normals_2), value); } inline static int32_t get_offset_of_Indices_3() { return static_cast<int32_t>(offsetof(MeshData_t4114415351, ___Indices_3)); } inline Int32U5BU5D_t385246372* get_Indices_3() const { return ___Indices_3; } inline Int32U5BU5D_t385246372** get_address_of_Indices_3() { return &___Indices_3; } inline void set_Indices_3(Int32U5BU5D_t385246372* value) { ___Indices_3 = value; Il2CppCodeGenWriteBarrier((&___Indices_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData struct MeshData_t4114415351_marshaled_pinvoke { Matrix4x4_t1817901843 ___Transform_0; Vector3_t3722313464 * ___Verts_1; Vector3_t3722313464 * ___Normals_2; int32_t* ___Indices_3; }; // Native definition for COM marshalling of HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData struct MeshData_t4114415351_marshaled_com { Matrix4x4_t1817901843 ___Transform_0; Vector3_t3722313464 * ___Verts_1; Vector3_t3722313464 * ___Normals_2; int32_t* ___Indices_3; }; #endif // MESHDATA_T4114415351_H #ifndef MESHDATA_T3361835602_H #define MESHDATA_T3361835602_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.SpatialUnderstandingDll/MeshData struct MeshData_t3361835602 { public: // System.Int32 HoloToolkit.Unity.SpatialUnderstandingDll/MeshData::MeshID int32_t ___MeshID_0; // System.Int32 HoloToolkit.Unity.SpatialUnderstandingDll/MeshData::LastUpdateID int32_t ___LastUpdateID_1; // UnityEngine.Matrix4x4 HoloToolkit.Unity.SpatialUnderstandingDll/MeshData::Transform Matrix4x4_t1817901843 ___Transform_2; // UnityEngine.Vector3[] HoloToolkit.Unity.SpatialUnderstandingDll/MeshData::Verts Vector3U5BU5D_t1718750761* ___Verts_3; // UnityEngine.Vector3[] HoloToolkit.Unity.SpatialUnderstandingDll/MeshData::Normals Vector3U5BU5D_t1718750761* ___Normals_4; // System.Int32[] HoloToolkit.Unity.SpatialUnderstandingDll/MeshData::Indices Int32U5BU5D_t385246372* ___Indices_5; public: inline static int32_t get_offset_of_MeshID_0() { return static_cast<int32_t>(offsetof(MeshData_t3361835602, ___MeshID_0)); } inline int32_t get_MeshID_0() const { return ___MeshID_0; } inline int32_t* get_address_of_MeshID_0() { return &___MeshID_0; } inline void set_MeshID_0(int32_t value) { ___MeshID_0 = value; } inline static int32_t get_offset_of_LastUpdateID_1() { return static_cast<int32_t>(offsetof(MeshData_t3361835602, ___LastUpdateID_1)); } inline int32_t get_LastUpdateID_1() const { return ___LastUpdateID_1; } inline int32_t* get_address_of_LastUpdateID_1() { return &___LastUpdateID_1; } inline void set_LastUpdateID_1(int32_t value) { ___LastUpdateID_1 = value; } inline static int32_t get_offset_of_Transform_2() { return static_cast<int32_t>(offsetof(MeshData_t3361835602, ___Transform_2)); } inline Matrix4x4_t1817901843 get_Transform_2() const { return ___Transform_2; } inline Matrix4x4_t1817901843 * get_address_of_Transform_2() { return &___Transform_2; } inline void set_Transform_2(Matrix4x4_t1817901843 value) { ___Transform_2 = value; } inline static int32_t get_offset_of_Verts_3() { return static_cast<int32_t>(offsetof(MeshData_t3361835602, ___Verts_3)); } inline Vector3U5BU5D_t1718750761* get_Verts_3() const { return ___Verts_3; } inline Vector3U5BU5D_t1718750761** get_address_of_Verts_3() { return &___Verts_3; } inline void set_Verts_3(Vector3U5BU5D_t1718750761* value) { ___Verts_3 = value; Il2CppCodeGenWriteBarrier((&___Verts_3), value); } inline static int32_t get_offset_of_Normals_4() { return static_cast<int32_t>(offsetof(MeshData_t3361835602, ___Normals_4)); } inline Vector3U5BU5D_t1718750761* get_Normals_4() const { return ___Normals_4; } inline Vector3U5BU5D_t1718750761** get_address_of_Normals_4() { return &___Normals_4; } inline void set_Normals_4(Vector3U5BU5D_t1718750761* value) { ___Normals_4 = value; Il2CppCodeGenWriteBarrier((&___Normals_4), value); } inline static int32_t get_offset_of_Indices_5() { return static_cast<int32_t>(offsetof(MeshData_t3361835602, ___Indices_5)); } inline Int32U5BU5D_t385246372* get_Indices_5() const { return ___Indices_5; } inline Int32U5BU5D_t385246372** get_address_of_Indices_5() { return &___Indices_5; } inline void set_Indices_5(Int32U5BU5D_t385246372* value) { ___Indices_5 = value; Il2CppCodeGenWriteBarrier((&___Indices_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of HoloToolkit.Unity.SpatialUnderstandingDll/MeshData struct MeshData_t3361835602_marshaled_pinvoke { int32_t ___MeshID_0; int32_t ___LastUpdateID_1; Matrix4x4_t1817901843 ___Transform_2; Vector3_t3722313464 * ___Verts_3; Vector3_t3722313464 * ___Normals_4; int32_t* ___Indices_5; }; // Native definition for COM marshalling of HoloToolkit.Unity.SpatialUnderstandingDll/MeshData struct MeshData_t3361835602_marshaled_com { int32_t ___MeshID_0; int32_t ___LastUpdateID_1; Matrix4x4_t1817901843 ___Transform_2; Vector3_t3722313464 * ___Verts_3; Vector3_t3722313464 * ___Normals_4; int32_t* ___Indices_5; }; #endif // MESHDATA_T3361835602_H #ifndef SHAPECOMPONENTCONSTRAINTTYPE_T3710497406_H #define SHAPECOMPONENTCONSTRAINTTYPE_T3710497406_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraintType struct ShapeComponentConstraintType_t3710497406 { public: // System.Int32 HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraintType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ShapeComponentConstraintType_t3710497406, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SHAPECOMPONENTCONSTRAINTTYPE_T3710497406_H #ifndef BUTTONTYPEENUM_T1962529457_H #define BUTTONTYPEENUM_T1962529457_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.UX.AppBar/ButtonTypeEnum struct ButtonTypeEnum_t1962529457 { public: // System.Int32 HoloToolkit.Unity.UX.AppBar/ButtonTypeEnum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ButtonTypeEnum_t1962529457, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BUTTONTYPEENUM_T1962529457_H #ifndef PREDEFINEDTYPE_T3972076113_H #define PREDEFINEDTYPE_T3972076113_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType struct PredefinedType_t3972076113 { public: // System.UInt32 Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType::value__ uint32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PredefinedType_t3972076113, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PREDEFINEDTYPE_T3972076113_H #ifndef JSONCONTAINERTYPE_T3191599701_H #define JSONCONTAINERTYPE_T3191599701_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Newtonsoft.Json.JsonContainerType struct JsonContainerType_t3191599701 { public: // System.Int32 Newtonsoft.Json.JsonContainerType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JsonContainerType_t3191599701, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // JSONCONTAINERTYPE_T3191599701_H #ifndef READTYPE_T340786580_H #define READTYPE_T340786580_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Newtonsoft.Json.ReadType struct ReadType_t340786580 { public: // System.Int32 Newtonsoft.Json.ReadType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ReadType_t340786580, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // READTYPE_T340786580_H #ifndef PRIMITIVETYPECODE_T798949904_H #define PRIMITIVETYPECODE_T798949904_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Newtonsoft.Json.Utilities.PrimitiveTypeCode struct PrimitiveTypeCode_t798949904 { public: // System.Int32 Newtonsoft.Json.Utilities.PrimitiveTypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PrimitiveTypeCode_t798949904, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PRIMITIVETYPECODE_T798949904_H #ifndef SWITCHVALUESTATE_T2805251467_H #define SWITCHVALUESTATE_T2805251467_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.AppContext/SwitchValueState struct SwitchValueState_t2805251467 { public: // System.Int32 System.AppContext/SwitchValueState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SwitchValueState_t2805251467, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SWITCHVALUESTATE_T2805251467_H #ifndef ARGUMENTEXCEPTION_T132251570_H #define ARGUMENTEXCEPTION_T132251570_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentException struct ArgumentException_t132251570 : public SystemException_t176217640 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_t132251570, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((&___m_paramName_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTEXCEPTION_T132251570_H #ifndef ARRAYTYPEMISMATCHEXCEPTION_T2342549375_H #define ARRAYTYPEMISMATCHEXCEPTION_T2342549375_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArrayTypeMismatchException struct ArrayTypeMismatchException_t2342549375 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYTYPEMISMATCHEXCEPTION_T2342549375_H #ifndef KEYVALUEPAIR_2_T870930286_H #define KEYVALUEPAIR_2_T870930286_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object> struct KeyValuePair_2_t870930286 { public: // TKey System.Collections.Generic.KeyValuePair`2::key DateTime_t3738529785 ___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_t870930286, ___key_0)); } inline DateTime_t3738529785 get_key_0() const { return ___key_0; } inline DateTime_t3738529785 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(DateTime_t3738529785 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t870930286, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T870930286_H #ifndef KEYVALUEPAIR_2_T1048133692_H #define KEYVALUEPAIR_2_T1048133692_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData> struct KeyValuePair_2_t1048133692 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value TimerData_t4056715490 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1048133692, ___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_t1048133692, ___value_1)); } inline TimerData_t4056715490 get_value_1() const { return ___value_1; } inline TimerData_t4056715490 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(TimerData_t4056715490 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T1048133692_H #ifndef KEYVALUEPAIR_2_T126004427_H #define KEYVALUEPAIR_2_T126004427_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32> struct KeyValuePair_2_t126004427 { public: // TKey System.Collections.Generic.KeyValuePair`2::key TypedConstant_t714020897 ___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_t126004427, ___key_0)); } inline TypedConstant_t714020897 get_key_0() const { return ___key_0; } inline TypedConstant_t714020897 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(TypedConstant_t714020897 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t126004427, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T126004427_H #ifndef KEYVALUEPAIR_2_T255164838_H #define KEYVALUEPAIR_2_T255164838_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object> struct KeyValuePair_2_t255164838 { public: // TKey System.Collections.Generic.KeyValuePair`2::key TypedConstant_t714020897 ___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_t255164838, ___key_0)); } inline TypedConstant_t714020897 get_key_0() const { return ___key_0; } inline TypedConstant_t714020897 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(TypedConstant_t714020897 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t255164838, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T255164838_H #ifndef KEYVALUEPAIR_2_T3174081962_H #define KEYVALUEPAIR_2_T3174081962_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator> struct KeyValuePair_2_t3174081962 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value ResourceLocator_t3723970807 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3174081962, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3174081962, ___value_1)); } inline ResourceLocator_t3723970807 get_value_1() const { return ___value_1; } inline ResourceLocator_t3723970807 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(ResourceLocator_t3723970807 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T3174081962_H #ifndef KEYVALUEPAIR_2_T4253942476_H #define KEYVALUEPAIR_2_T4253942476_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry> struct KeyValuePair_2_t4253942476 { public: // TKey System.Collections.Generic.KeyValuePair`2::key EventCacheKey_t3133620722 ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value EventCacheEntry_t156445199 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t4253942476, ___key_0)); } inline EventCacheKey_t3133620722 get_key_0() const { return ___key_0; } inline EventCacheKey_t3133620722 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(EventCacheKey_t3133620722 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t4253942476, ___value_1)); } inline EventCacheEntry_t156445199 get_value_1() const { return ___value_1; } inline EventCacheEntry_t156445199 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(EventCacheEntry_t156445199 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T4253942476_H #ifndef KEYVALUEPAIR_2_T1297193679_H #define KEYVALUEPAIR_2_T1297193679_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData> struct KeyValuePair_2_t1297193679 { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value XboxControllerData_t1920221146 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1297193679, ___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_t1297193679, ___value_1)); } inline XboxControllerData_t1920221146 get_value_1() const { return ___value_1; } inline XboxControllerData_t1920221146 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(XboxControllerData_t1920221146 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T1297193679_H #ifndef KEYVALUEPAIR_2_T3099285997_H #define KEYVALUEPAIR_2_T3099285997_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3> struct KeyValuePair_2_t3099285997 { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value Vector3_t3722313464 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3099285997, ___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_t3099285997, ___value_1)); } inline Vector3_t3722313464 get_value_1() const { return ___value_1; } inline Vector3_t3722313464 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(Vector3_t3722313464 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T3099285997_H #ifndef KEYVALUEPAIR_2_T1405028755_H #define KEYVALUEPAIR_2_T1405028755_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object> struct KeyValuePair_2_t1405028755 { public: // TKey System.Collections.Generic.KeyValuePair`2::key Vector3_t3722313464 ___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_t1405028755, ___key_0)); } inline Vector3_t3722313464 get_key_0() const { return ___key_0; } inline Vector3_t3722313464 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(Vector3_t3722313464 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1405028755, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T1405028755_H #ifndef LARGEARRAYBUILDER_1_T3544813491_H #define LARGEARRAYBUILDER_1_T3544813491_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LargeArrayBuilder`1<System.Char> struct LargeArrayBuilder_1_t3544813491 { public: // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_maxCapacity int32_t ____maxCapacity_0; // T[] System.Collections.Generic.LargeArrayBuilder`1::_first CharU5BU5D_t3528271667* ____first_1; // System.Collections.Generic.ArrayBuilder`1<T[]> System.Collections.Generic.LargeArrayBuilder`1::_buffers ArrayBuilder_1_t516401051 ____buffers_2; // T[] System.Collections.Generic.LargeArrayBuilder`1::_current CharU5BU5D_t3528271667* ____current_3; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_index int32_t ____index_4; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_count int32_t ____count_5; public: inline static int32_t get_offset_of__maxCapacity_0() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____maxCapacity_0)); } inline int32_t get__maxCapacity_0() const { return ____maxCapacity_0; } inline int32_t* get_address_of__maxCapacity_0() { return &____maxCapacity_0; } inline void set__maxCapacity_0(int32_t value) { ____maxCapacity_0 = value; } inline static int32_t get_offset_of__first_1() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____first_1)); } inline CharU5BU5D_t3528271667* get__first_1() const { return ____first_1; } inline CharU5BU5D_t3528271667** get_address_of__first_1() { return &____first_1; } inline void set__first_1(CharU5BU5D_t3528271667* value) { ____first_1 = value; Il2CppCodeGenWriteBarrier((&____first_1), value); } inline static int32_t get_offset_of__buffers_2() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____buffers_2)); } inline ArrayBuilder_1_t516401051 get__buffers_2() const { return ____buffers_2; } inline ArrayBuilder_1_t516401051 * get_address_of__buffers_2() { return &____buffers_2; } inline void set__buffers_2(ArrayBuilder_1_t516401051 value) { ____buffers_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____current_3)); } inline CharU5BU5D_t3528271667* get__current_3() const { return ____current_3; } inline CharU5BU5D_t3528271667** get_address_of__current_3() { return &____current_3; } inline void set__current_3(CharU5BU5D_t3528271667* value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((&____current_3), value); } inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____index_4)); } inline int32_t get__index_4() const { return ____index_4; } inline int32_t* get_address_of__index_4() { return &____index_4; } inline void set__index_4(int32_t value) { ____index_4 = value; } inline static int32_t get_offset_of__count_5() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____count_5)); } inline int32_t get__count_5() const { return ____count_5; } inline int32_t* get_address_of__count_5() { return &____count_5; } inline void set__count_5(int32_t value) { ____count_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LARGEARRAYBUILDER_1_T3544813491_H #ifndef LARGEARRAYBUILDER_1_T3034328659_H #define LARGEARRAYBUILDER_1_T3034328659_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry> struct LargeArrayBuilder_1_t3034328659 { public: // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_maxCapacity int32_t ____maxCapacity_0; // T[] System.Collections.Generic.LargeArrayBuilder`1::_first DictionaryEntryU5BU5D_t4217117203* ____first_1; // System.Collections.Generic.ArrayBuilder`1<T[]> System.Collections.Generic.LargeArrayBuilder`1::_buffers ArrayBuilder_1_t1205246587 ____buffers_2; // T[] System.Collections.Generic.LargeArrayBuilder`1::_current DictionaryEntryU5BU5D_t4217117203* ____current_3; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_index int32_t ____index_4; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_count int32_t ____count_5; public: inline static int32_t get_offset_of__maxCapacity_0() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____maxCapacity_0)); } inline int32_t get__maxCapacity_0() const { return ____maxCapacity_0; } inline int32_t* get_address_of__maxCapacity_0() { return &____maxCapacity_0; } inline void set__maxCapacity_0(int32_t value) { ____maxCapacity_0 = value; } inline static int32_t get_offset_of__first_1() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____first_1)); } inline DictionaryEntryU5BU5D_t4217117203* get__first_1() const { return ____first_1; } inline DictionaryEntryU5BU5D_t4217117203** get_address_of__first_1() { return &____first_1; } inline void set__first_1(DictionaryEntryU5BU5D_t4217117203* value) { ____first_1 = value; Il2CppCodeGenWriteBarrier((&____first_1), value); } inline static int32_t get_offset_of__buffers_2() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____buffers_2)); } inline ArrayBuilder_1_t1205246587 get__buffers_2() const { return ____buffers_2; } inline ArrayBuilder_1_t1205246587 * get_address_of__buffers_2() { return &____buffers_2; } inline void set__buffers_2(ArrayBuilder_1_t1205246587 value) { ____buffers_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____current_3)); } inline DictionaryEntryU5BU5D_t4217117203* get__current_3() const { return ____current_3; } inline DictionaryEntryU5BU5D_t4217117203** get_address_of__current_3() { return &____current_3; } inline void set__current_3(DictionaryEntryU5BU5D_t4217117203* value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((&____current_3), value); } inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____index_4)); } inline int32_t get__index_4() const { return ____index_4; } inline int32_t* get_address_of__index_4() { return &____index_4; } inline void set__index_4(int32_t value) { ____index_4 = value; } inline static int32_t get_offset_of__count_5() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____count_5)); } inline int32_t get__count_5() const { return ____count_5; } inline int32_t* get_address_of__count_5() { return &____count_5; } inline void set__count_5(int32_t value) { ____count_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LARGEARRAYBUILDER_1_T3034328659_H #ifndef LARGEARRAYBUILDER_1_T2440570340_H #define LARGEARRAYBUILDER_1_T2440570340_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct LargeArrayBuilder_1_t2440570340 { public: // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_maxCapacity int32_t ____maxCapacity_0; // T[] System.Collections.Generic.LargeArrayBuilder`1::_first KeyValuePair_2U5BU5D_t118269214* ____first_1; // System.Collections.Generic.ArrayBuilder`1<T[]> System.Collections.Generic.LargeArrayBuilder`1::_buffers ArrayBuilder_1_t1401365894 ____buffers_2; // T[] System.Collections.Generic.LargeArrayBuilder`1::_current KeyValuePair_2U5BU5D_t118269214* ____current_3; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_index int32_t ____index_4; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_count int32_t ____count_5; public: inline static int32_t get_offset_of__maxCapacity_0() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____maxCapacity_0)); } inline int32_t get__maxCapacity_0() const { return ____maxCapacity_0; } inline int32_t* get_address_of__maxCapacity_0() { return &____maxCapacity_0; } inline void set__maxCapacity_0(int32_t value) { ____maxCapacity_0 = value; } inline static int32_t get_offset_of__first_1() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____first_1)); } inline KeyValuePair_2U5BU5D_t118269214* get__first_1() const { return ____first_1; } inline KeyValuePair_2U5BU5D_t118269214** get_address_of__first_1() { return &____first_1; } inline void set__first_1(KeyValuePair_2U5BU5D_t118269214* value) { ____first_1 = value; Il2CppCodeGenWriteBarrier((&____first_1), value); } inline static int32_t get_offset_of__buffers_2() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____buffers_2)); } inline ArrayBuilder_1_t1401365894 get__buffers_2() const { return ____buffers_2; } inline ArrayBuilder_1_t1401365894 * get_address_of__buffers_2() { return &____buffers_2; } inline void set__buffers_2(ArrayBuilder_1_t1401365894 value) { ____buffers_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____current_3)); } inline KeyValuePair_2U5BU5D_t118269214* get__current_3() const { return ____current_3; } inline KeyValuePair_2U5BU5D_t118269214** get_address_of__current_3() { return &____current_3; } inline void set__current_3(KeyValuePair_2U5BU5D_t118269214* value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((&____current_3), value); } inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____index_4)); } inline int32_t get__index_4() const { return ____index_4; } inline int32_t* get_address_of__index_4() { return &____index_4; } inline void set__index_4(int32_t value) { ____index_4 = value; } inline static int32_t get_offset_of__count_5() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____count_5)); } inline int32_t get__count_5() const { return ____count_5; } inline int32_t* get_address_of__count_5() { return &____count_5; } inline void set__count_5(int32_t value) { ____count_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LARGEARRAYBUILDER_1_T2440570340_H #ifndef LARGEARRAYBUILDER_1_T2990459185_H #define LARGEARRAYBUILDER_1_T2990459185_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LargeArrayBuilder`1<System.Object> struct LargeArrayBuilder_1_t2990459185 { public: // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_maxCapacity int32_t ____maxCapacity_0; // T[] System.Collections.Generic.LargeArrayBuilder`1::_first ObjectU5BU5D_t2843939325* ____first_1; // System.Collections.Generic.ArrayBuilder`1<T[]> System.Collections.Generic.LargeArrayBuilder`1::_buffers ArrayBuilder_1_t4127036005 ____buffers_2; // T[] System.Collections.Generic.LargeArrayBuilder`1::_current ObjectU5BU5D_t2843939325* ____current_3; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_index int32_t ____index_4; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_count int32_t ____count_5; public: inline static int32_t get_offset_of__maxCapacity_0() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____maxCapacity_0)); } inline int32_t get__maxCapacity_0() const { return ____maxCapacity_0; } inline int32_t* get_address_of__maxCapacity_0() { return &____maxCapacity_0; } inline void set__maxCapacity_0(int32_t value) { ____maxCapacity_0 = value; } inline static int32_t get_offset_of__first_1() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____first_1)); } inline ObjectU5BU5D_t2843939325* get__first_1() const { return ____first_1; } inline ObjectU5BU5D_t2843939325** get_address_of__first_1() { return &____first_1; } inline void set__first_1(ObjectU5BU5D_t2843939325* value) { ____first_1 = value; Il2CppCodeGenWriteBarrier((&____first_1), value); } inline static int32_t get_offset_of__buffers_2() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____buffers_2)); } inline ArrayBuilder_1_t4127036005 get__buffers_2() const { return ____buffers_2; } inline ArrayBuilder_1_t4127036005 * get_address_of__buffers_2() { return &____buffers_2; } inline void set__buffers_2(ArrayBuilder_1_t4127036005 value) { ____buffers_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____current_3)); } inline ObjectU5BU5D_t2843939325* get__current_3() const { return ____current_3; } inline ObjectU5BU5D_t2843939325** get_address_of__current_3() { return &____current_3; } inline void set__current_3(ObjectU5BU5D_t2843939325* value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((&____current_3), value); } inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____index_4)); } inline int32_t get__index_4() const { return ____index_4; } inline int32_t* get_address_of__index_4() { return &____index_4; } inline void set__index_4(int32_t value) { ____index_4 = value; } inline static int32_t get_offset_of__count_5() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____count_5)); } inline int32_t get__count_5() const { return ____count_5; } inline int32_t* get_address_of__count_5() { return &____count_5; } inline void set__count_5(int32_t value) { ____count_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LARGEARRAYBUILDER_1_T2990459185_H #ifndef LARGEARRAYBUILDER_1_T3696204514_H #define LARGEARRAYBUILDER_1_T3696204514_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray> struct LargeArrayBuilder_1_t3696204514 { public: // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_maxCapacity int32_t ____maxCapacity_0; // T[] System.Collections.Generic.LargeArrayBuilder`1::_first RayU5BU5D_t1836217960* ____first_1; // System.Collections.Generic.ArrayBuilder`1<T[]> System.Collections.Generic.LargeArrayBuilder`1::_buffers ArrayBuilder_1_t3119314640 ____buffers_2; // T[] System.Collections.Generic.LargeArrayBuilder`1::_current RayU5BU5D_t1836217960* ____current_3; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_index int32_t ____index_4; // System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_count int32_t ____count_5; public: inline static int32_t get_offset_of__maxCapacity_0() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____maxCapacity_0)); } inline int32_t get__maxCapacity_0() const { return ____maxCapacity_0; } inline int32_t* get_address_of__maxCapacity_0() { return &____maxCapacity_0; } inline void set__maxCapacity_0(int32_t value) { ____maxCapacity_0 = value; } inline static int32_t get_offset_of__first_1() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____first_1)); } inline RayU5BU5D_t1836217960* get__first_1() const { return ____first_1; } inline RayU5BU5D_t1836217960** get_address_of__first_1() { return &____first_1; } inline void set__first_1(RayU5BU5D_t1836217960* value) { ____first_1 = value; Il2CppCodeGenWriteBarrier((&____first_1), value); } inline static int32_t get_offset_of__buffers_2() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____buffers_2)); } inline ArrayBuilder_1_t3119314640 get__buffers_2() const { return ____buffers_2; } inline ArrayBuilder_1_t3119314640 * get_address_of__buffers_2() { return &____buffers_2; } inline void set__buffers_2(ArrayBuilder_1_t3119314640 value) { ____buffers_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____current_3)); } inline RayU5BU5D_t1836217960* get__current_3() const { return ____current_3; } inline RayU5BU5D_t1836217960** get_address_of__current_3() { return &____current_3; } inline void set__current_3(RayU5BU5D_t1836217960* value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((&____current_3), value); } inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____index_4)); } inline int32_t get__index_4() const { return ____index_4; } inline int32_t* get_address_of__index_4() { return &____index_4; } inline void set__index_4(int32_t value) { ____index_4 = value; } inline static int32_t get_offset_of__count_5() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____count_5)); } inline int32_t get__count_5() const { return ____count_5; } inline int32_t* get_address_of__count_5() { return &____count_5; } inline void set__count_5(int32_t value) { ____count_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LARGEARRAYBUILDER_1_T3696204514_H #ifndef ENUMERATOR_T828654543_H #define ENUMERATOR_T828654543_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct Enumerator_t828654543 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t3234377962 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current PrefabToDataModel_t1762303220 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t828654543, ___list_0)); } inline List_1_t3234377962 * get_list_0() const { return ___list_0; } inline List_1_t3234377962 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t3234377962 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t828654543, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t828654543, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t828654543, ___current_3)); } inline PrefabToDataModel_t1762303220 get_current_3() const { return ___current_3; } inline PrefabToDataModel_t1762303220 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(PrefabToDataModel_t1762303220 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T828654543_H #ifndef ENUMERATOR_T3461346361_H #define ENUMERATOR_T3461346361_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo> struct Enumerator_t3461346361 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1572102484 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current InputSourceInfo_t100027742 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3461346361, ___list_0)); } inline List_1_t1572102484 * get_list_0() const { return ___list_0; } inline List_1_t1572102484 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1572102484 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3461346361, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3461346361, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3461346361, ___current_3)); } inline InputSourceInfo_t100027742 get_current_3() const { return ___current_3; } inline InputSourceInfo_t100027742 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(InputSourceInfo_t100027742 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3461346361_H #ifndef ENUMERATOR_T1679591641_H #define ENUMERATOR_T1679591641_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject> struct Enumerator_t1679591641 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t4085315060 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current SurfaceObject_t2613240318 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1679591641, ___list_0)); } inline List_1_t4085315060 * get_list_0() const { return ___list_0; } inline List_1_t4085315060 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t4085315060 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1679591641, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1679591641, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1679591641, ___current_3)); } inline SurfaceObject_t2613240318 get_current_3() const { return ___current_3; } inline SurfaceObject_t2613240318 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(SurfaceObject_t2613240318 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T1679591641_H #ifndef ENUMERATOR_T3123066813_H #define ENUMERATOR_T3123066813_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData> struct Enumerator_t3123066813 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1233822936 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current TimerData_t4056715490 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3123066813, ___list_0)); } inline List_1_t1233822936 * get_list_0() const { return ___list_0; } inline List_1_t1233822936 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1233822936 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3123066813, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3123066813, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3123066813, ___current_3)); } inline TimerData_t4056715490 get_current_3() const { return ___current_3; } inline TimerData_t4056715490 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(TimerData_t4056715490 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3123066813_H #ifndef ENUMERATOR_T4282642524_H #define ENUMERATOR_T4282642524_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair> struct Enumerator_t4282642524 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t2393398647 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current TimerIdPair_t921323905 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t4282642524, ___list_0)); } inline List_1_t2393398647 * get_list_0() const { return ___list_0; } inline List_1_t2393398647 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t2393398647 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4282642524, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t4282642524, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t4282642524, ___current_3)); } inline TimerIdPair_t921323905 get_current_3() const { return ___current_3; } inline TimerIdPair_t921323905 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(TimerIdPair_t921323905 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T4282642524_H #ifndef ENUMERATOR_T2190326961_H #define ENUMERATOR_T2190326961_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry> struct Enumerator_t2190326961 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t301083084 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current DictionaryEntry_t3123975638 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2190326961, ___list_0)); } inline List_1_t301083084 * get_list_0() const { return ___list_0; } inline List_1_t301083084 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t301083084 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2190326961, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2190326961, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2190326961, ___current_3)); } inline DictionaryEntry_t3123975638 get_current_3() const { return ___current_3; } inline DictionaryEntry_t3123975638 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(DictionaryEntry_t3123975638 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2190326961_H #ifndef ENUMERATOR_T1596568642_H #define ENUMERATOR_T1596568642_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct Enumerator_t1596568642 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t4002292061 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current KeyValuePair_2_t2530217319 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1596568642, ___list_0)); } inline List_1_t4002292061 * get_list_0() const { return ___list_0; } inline List_1_t4002292061 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t4002292061 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1596568642, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1596568642, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1596568642, ___current_3)); } inline KeyValuePair_2_t2530217319 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t2530217319 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t2530217319 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T1596568642_H #ifndef ENUMERATOR_T2804881108_H #define ENUMERATOR_T2804881108_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.DateTime> struct Enumerator_t2804881108 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t915637231 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current DateTime_t3738529785 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2804881108, ___list_0)); } inline List_1_t915637231 * get_list_0() const { return ___list_0; } inline List_1_t915637231 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t915637231 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2804881108, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2804881108, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2804881108, ___current_3)); } inline DateTime_t3738529785 get_current_3() const { return ___current_3; } inline DateTime_t3738529785 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(DateTime_t3738529785 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2804881108_H #ifndef ENUMERATOR_T2014610703_H #define ENUMERATOR_T2014610703_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Decimal> struct Enumerator_t2014610703 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t125366826 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Decimal_t2948259380 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2014610703, ___list_0)); } inline List_1_t125366826 * get_list_0() const { return ___list_0; } inline List_1_t125366826 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t125366826 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2014610703, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2014610703, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2014610703, ___current_3)); } inline Decimal_t2948259380 get_current_3() const { return ___current_3; } inline Decimal_t2948259380 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Decimal_t2948259380 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2014610703_H #ifndef ENUMERATOR_T2417789510_H #define ENUMERATOR_T2417789510_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle> struct Enumerator_t2417789510 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t528545633 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current GCHandle_t3351438187 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2417789510, ___list_0)); } inline List_1_t528545633 * get_list_0() const { return ___list_0; } inline List_1_t528545633 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t528545633 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2417789510, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2417789510, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2417789510, ___current_3)); } inline GCHandle_t3351438187 get_current_3() const { return ___current_3; } inline GCHandle_t3351438187 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(GCHandle_t3351438187 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2417789510_H #ifndef ENUMERATOR_T3680209407_H #define ENUMERATOR_T3680209407_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> struct Enumerator_t3680209407 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1790965530 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current EventRegistrationToken_t318890788 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3680209407, ___list_0)); } inline List_1_t1790965530 * get_list_0() const { return ___list_0; } inline List_1_t1790965530 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1790965530 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3680209407, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3680209407, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3680209407, ___current_3)); } inline EventRegistrationToken_t318890788 get_current_3() const { return ___current_3; } inline EventRegistrationToken_t318890788 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(EventRegistrationToken_t318890788 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3680209407_H #ifndef ENUMERATOR_T3951287555_H #define ENUMERATOR_T3951287555_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo> struct Enumerator_t3951287555 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t2062043678 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current RangePositionInfo_t589968936 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3951287555, ___list_0)); } inline List_1_t2062043678 * get_list_0() const { return ___list_0; } inline List_1_t2062043678 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t2062043678 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3951287555, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3951287555, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3951287555, ___current_3)); } inline RangePositionInfo_t589968936 get_current_3() const { return ___current_3; } inline RangePositionInfo_t589968936 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(RangePositionInfo_t589968936 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3951287555_H #ifndef ENUMERATOR_T2411028294_H #define ENUMERATOR_T2411028294_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry> struct Enumerator_t2411028294 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t521784417 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current XmlSchemaObjectEntry_t3344676971 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2411028294, ___list_0)); } inline List_1_t521784417 * get_list_0() const { return ___list_0; } inline List_1_t521784417 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t521784417 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2411028294, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2411028294, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2411028294, ___current_3)); } inline XmlSchemaObjectEntry_t3344676971 get_current_3() const { return ___current_3; } inline XmlSchemaObjectEntry_t3344676971 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(XmlSchemaObjectEntry_t3344676971 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2411028294_H #ifndef ENUMERATOR_T652329154_H #define ENUMERATOR_T652329154_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock> struct Enumerator_t652329154 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t3058052573 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current OrderBlock_t1585977831 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t652329154, ___list_0)); } inline List_1_t3058052573 * get_list_0() const { return ___list_0; } inline List_1_t3058052573 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t3058052573 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t652329154, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t652329154, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t652329154, ___current_3)); } inline OrderBlock_t1585977831 get_current_3() const { return ___current_3; } inline OrderBlock_t1585977831 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(OrderBlock_t1585977831 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T652329154_H #ifndef ENUMERATOR_T1666852615_H #define ENUMERATOR_T1666852615_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32> struct Enumerator_t1666852615 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t4072576034 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Color32_t2600501292 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1666852615, ___list_0)); } inline List_1_t4072576034 * get_list_0() const { return ___list_0; } inline List_1_t4072576034 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t4072576034 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1666852615, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1666852615, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1666852615, ___current_3)); } inline Color32_t2600501292 get_current_3() const { return ___current_3; } inline Color32_t2600501292 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Color32_t2600501292 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T1666852615_H #ifndef ENUMERATOR_T1622037647_H #define ENUMERATOR_T1622037647_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<UnityEngine.Color> struct Enumerator_t1622037647 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t4027761066 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Color_t2555686324 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1622037647, ___list_0)); } inline List_1_t4027761066 * get_list_0() const { return ___list_0; } inline List_1_t4027761066 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t4027761066 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1622037647, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1622037647, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1622037647, ___current_3)); } inline Color_t2555686324 get_current_3() const { return ___current_3; } inline Color_t2555686324 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Color_t2555686324 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T1622037647_H #ifndef ENUMERATOR_T3261618133_H #define ENUMERATOR_T3261618133_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo> struct Enumerator_t3261618133 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1372374256 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current UILineInfo_t4195266810 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3261618133, ___list_0)); } inline List_1_t1372374256 * get_list_0() const { return ___list_0; } inline List_1_t1372374256 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1372374256 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3261618133, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3261618133, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3261618133, ___current_3)); } inline UILineInfo_t4195266810 get_current_3() const { return ___current_3; } inline UILineInfo_t4195266810 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(UILineInfo_t4195266810 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3261618133_H #ifndef ENUMERATOR_T1222580846_H #define ENUMERATOR_T1222580846_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2> struct Enumerator_t1222580846 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t3628304265 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Vector2_t2156229523 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1222580846, ___list_0)); } inline List_1_t3628304265 * get_list_0() const { return ___list_0; } inline List_1_t3628304265 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t3628304265 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1222580846, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1222580846, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1222580846, ___current_3)); } inline Vector2_t2156229523 get_current_3() const { return ___current_3; } inline Vector2_t2156229523 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Vector2_t2156229523 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T1222580846_H #ifndef ENUMERATOR_T2788664787_H #define ENUMERATOR_T2788664787_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3> struct Enumerator_t2788664787 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t899420910 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Vector3_t3722313464 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2788664787, ___list_0)); } inline List_1_t899420910 * get_list_0() const { return ___list_0; } inline List_1_t899420910 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t899420910 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2788664787, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2788664787, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2788664787, ___current_3)); } inline Vector3_t3722313464 get_current_3() const { return ___current_3; } inline Vector3_t3722313464 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Vector3_t3722313464 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2788664787_H #ifndef ENUMERATOR_T2385380260_H #define ENUMERATOR_T2385380260_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4> struct Enumerator_t2385380260 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t496136383 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Vector4_t3319028937 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2385380260, ___list_0)); } inline List_1_t496136383 * get_list_0() const { return ___list_0; } inline List_1_t496136383 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t496136383 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2385380260, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2385380260, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2385380260, ___current_3)); } inline Vector4_t3319028937 get_current_3() const { return ___current_3; } inline Vector4_t3319028937 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Vector4_t3319028937 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2385380260_H #ifndef DATETIMEOFFSET_T3229287507_H #define DATETIMEOFFSET_T3229287507_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeOffset struct DateTimeOffset_t3229287507 { public: // System.DateTime System.DateTimeOffset::m_dateTime DateTime_t3738529785 ___m_dateTime_2; // System.Int16 System.DateTimeOffset::m_offsetMinutes int16_t ___m_offsetMinutes_3; public: inline static int32_t get_offset_of_m_dateTime_2() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507, ___m_dateTime_2)); } inline DateTime_t3738529785 get_m_dateTime_2() const { return ___m_dateTime_2; } inline DateTime_t3738529785 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; } inline void set_m_dateTime_2(DateTime_t3738529785 value) { ___m_dateTime_2 = value; } inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507, ___m_offsetMinutes_3)); } inline int16_t get_m_offsetMinutes_3() const { return ___m_offsetMinutes_3; } inline int16_t* get_address_of_m_offsetMinutes_3() { return &___m_offsetMinutes_3; } inline void set_m_offsetMinutes_3(int16_t value) { ___m_offsetMinutes_3 = value; } }; struct DateTimeOffset_t3229287507_StaticFields { public: // System.DateTimeOffset System.DateTimeOffset::MinValue DateTimeOffset_t3229287507 ___MinValue_0; // System.DateTimeOffset System.DateTimeOffset::MaxValue DateTimeOffset_t3229287507 ___MaxValue_1; public: inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507_StaticFields, ___MinValue_0)); } inline DateTimeOffset_t3229287507 get_MinValue_0() const { return ___MinValue_0; } inline DateTimeOffset_t3229287507 * get_address_of_MinValue_0() { return &___MinValue_0; } inline void set_MinValue_0(DateTimeOffset_t3229287507 value) { ___MinValue_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507_StaticFields, ___MaxValue_1)); } inline DateTimeOffset_t3229287507 get_MaxValue_1() const { return ___MaxValue_1; } inline DateTimeOffset_t3229287507 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(DateTimeOffset_t3229287507 value) { ___MaxValue_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMEOFFSET_T3229287507_H #ifndef DELEGATE_T1188392813_H #define DELEGATE_T1188392813_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Delegate struct Delegate_t1188392813 : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t1677132599 * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((&___m_target_2), value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((&___method_info_7), value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((&___original_method_info_8), value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_9)); } inline DelegateData_t1677132599 * get_data_9() const { return ___data_9; } inline DelegateData_t1677132599 ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t1677132599 * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((&___data_9), value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t1188392813_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1677132599 * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t1188392813_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1677132599 * ___data_9; int32_t ___method_is_virtual_10; }; #endif // DELEGATE_T1188392813_H #ifndef EXCEPTIONARGUMENT_T2411851266_H #define EXCEPTIONARGUMENT_T2411851266_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ExceptionArgument struct ExceptionArgument_t2411851266 { public: // System.Int32 System.ExceptionArgument::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionArgument_t2411851266, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EXCEPTIONARGUMENT_T2411851266_H #ifndef EXCEPTIONRESOURCE_T2631664984_H #define EXCEPTIONRESOURCE_T2631664984_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ExceptionResource struct ExceptionResource_t2631664984 { public: // System.Int32 System.ExceptionResource::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionResource_t2631664984, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EXCEPTIONRESOURCE_T2631664984_H #ifndef INVALIDCASTEXCEPTION_T3927145244_H #define INVALIDCASTEXCEPTION_T3927145244_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.InvalidCastException struct InvalidCastException_t3927145244 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INVALIDCASTEXCEPTION_T3927145244_H #ifndef INVALIDOPERATIONEXCEPTION_T56020091_H #define INVALIDOPERATIONEXCEPTION_T56020091_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.InvalidOperationException struct InvalidOperationException_t56020091 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INVALIDOPERATIONEXCEPTION_T56020091_H #ifndef VARIABLESTORAGEKIND_T3280289589_H #define VARIABLESTORAGEKIND_T3280289589_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Expressions.Compiler.VariableStorageKind struct VariableStorageKind_t3280289589 { public: // System.Int32 System.Linq.Expressions.Compiler.VariableStorageKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VariableStorageKind_t3280289589, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VARIABLESTORAGEKIND_T3280289589_H #ifndef NETWORKINTERFACETYPE_T616418749_H #define NETWORKINTERFACETYPE_T616418749_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.NetworkInformation.NetworkInterfaceType struct NetworkInterfaceType_t616418749 { public: // System.Int32 System.Net.NetworkInformation.NetworkInterfaceType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NetworkInterfaceType_t616418749, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NETWORKINTERFACETYPE_T616418749_H #ifndef OPERATIONALSTATUS_T2709089529_H #define OPERATIONALSTATUS_T2709089529_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.NetworkInformation.OperationalStatus struct OperationalStatus_t2709089529 { public: // System.Int32 System.Net.NetworkInformation.OperationalStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(OperationalStatus_t2709089529, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OPERATIONALSTATUS_T2709089529_H #ifndef NOTSUPPORTEDEXCEPTION_T1314879016_H #define NOTSUPPORTEDEXCEPTION_T1314879016_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.NotSupportedException struct NotSupportedException_t1314879016 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NOTSUPPORTEDEXCEPTION_T1314879016_H #ifndef BINDINGFLAGS_T2721792723_H #define BINDINGFLAGS_T2721792723_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.BindingFlags struct BindingFlags_t2721792723 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_t2721792723, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BINDINGFLAGS_T2721792723_H #ifndef EVENTREGISTRATIONTOKENLIST_T3288506496_H #define EVENTREGISTRATIONTOKENLIST_T3288506496_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList struct EventRegistrationTokenList_t3288506496 { public: // System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList::firstToken EventRegistrationToken_t318890788 ___firstToken_0; // System.Collections.Generic.List`1<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList::restTokens List_1_t1790965530 * ___restTokens_1; public: inline static int32_t get_offset_of_firstToken_0() { return static_cast<int32_t>(offsetof(EventRegistrationTokenList_t3288506496, ___firstToken_0)); } inline EventRegistrationToken_t318890788 get_firstToken_0() const { return ___firstToken_0; } inline EventRegistrationToken_t318890788 * get_address_of_firstToken_0() { return &___firstToken_0; } inline void set_firstToken_0(EventRegistrationToken_t318890788 value) { ___firstToken_0 = value; } inline static int32_t get_offset_of_restTokens_1() { return static_cast<int32_t>(offsetof(EventRegistrationTokenList_t3288506496, ___restTokens_1)); } inline List_1_t1790965530 * get_restTokens_1() const { return ___restTokens_1; } inline List_1_t1790965530 ** get_address_of_restTokens_1() { return &___restTokens_1; } inline void set_restTokens_1(List_1_t1790965530 * value) { ___restTokens_1 = value; Il2CppCodeGenWriteBarrier((&___restTokens_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList struct EventRegistrationTokenList_t3288506496_marshaled_pinvoke { EventRegistrationToken_t318890788 ___firstToken_0; List_1_t1790965530 * ___restTokens_1; }; // Native definition for COM marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList struct EventRegistrationTokenList_t3288506496_marshaled_com { EventRegistrationToken_t318890788 ___firstToken_0; List_1_t1790965530 * ___restTokens_1; }; #endif // EVENTREGISTRATIONTOKENLIST_T3288506496_H #ifndef SERIALIZATIONEXCEPTION_T3941511869_H #define SERIALIZATIONEXCEPTION_T3941511869_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.SerializationException struct SerializationException_t3941511869 : public SystemException_t176217640 { public: public: }; struct SerializationException_t3941511869_StaticFields { public: // System.String System.Runtime.Serialization.SerializationException::_nullMessage String_t* ____nullMessage_17; public: inline static int32_t get_offset_of__nullMessage_17() { return static_cast<int32_t>(offsetof(SerializationException_t3941511869_StaticFields, ____nullMessage_17)); } inline String_t* get__nullMessage_17() const { return ____nullMessage_17; } inline String_t** get_address_of__nullMessage_17() { return &____nullMessage_17; } inline void set__nullMessage_17(String_t* value) { ____nullMessage_17 = value; Il2CppCodeGenWriteBarrier((&____nullMessage_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERIALIZATIONEXCEPTION_T3941511869_H #ifndef STREAMINGCONTEXTSTATES_T3580100459_H #define STREAMINGCONTEXTSTATES_T3580100459_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t3580100459 { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t3580100459, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STREAMINGCONTEXTSTATES_T3580100459_H #ifndef RUNTIMETYPEHANDLE_T3027515415_H #define RUNTIMETYPEHANDLE_T3027515415_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeTypeHandle struct RuntimeTypeHandle_t3027515415 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t3027515415, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMETYPEHANDLE_T3027515415_H #ifndef REGEXOPTIONS_T92845595_H #define REGEXOPTIONS_T92845595_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.RegexOptions struct RegexOptions_t92845595 { public: // System.Int32 System.Text.RegularExpressions.RegexOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RegexOptions_t92845595, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REGEXOPTIONS_T92845595_H #ifndef TIMESPAN_T881159249_H #define TIMESPAN_T881159249_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeSpan struct TimeSpan_t881159249 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_22; public: inline static int32_t get_offset_of__ticks_22() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249, ____ticks_22)); } inline int64_t get__ticks_22() const { return ____ticks_22; } inline int64_t* get_address_of__ticks_22() { return &____ticks_22; } inline void set__ticks_22(int64_t value) { ____ticks_22 = value; } }; struct TimeSpan_t881159249_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_t881159249 ___Zero_19; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t881159249 ___MaxValue_20; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t881159249 ___MinValue_21; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_23; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_24; public: inline static int32_t get_offset_of_Zero_19() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___Zero_19)); } inline TimeSpan_t881159249 get_Zero_19() const { return ___Zero_19; } inline TimeSpan_t881159249 * get_address_of_Zero_19() { return &___Zero_19; } inline void set_Zero_19(TimeSpan_t881159249 value) { ___Zero_19 = value; } inline static int32_t get_offset_of_MaxValue_20() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MaxValue_20)); } inline TimeSpan_t881159249 get_MaxValue_20() const { return ___MaxValue_20; } inline TimeSpan_t881159249 * get_address_of_MaxValue_20() { return &___MaxValue_20; } inline void set_MaxValue_20(TimeSpan_t881159249 value) { ___MaxValue_20 = value; } inline static int32_t get_offset_of_MinValue_21() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MinValue_21)); } inline TimeSpan_t881159249 get_MinValue_21() const { return ___MinValue_21; } inline TimeSpan_t881159249 * get_address_of_MinValue_21() { return &___MinValue_21; } inline void set_MinValue_21(TimeSpan_t881159249 value) { ___MinValue_21 = value; } inline static int32_t get_offset_of__legacyConfigChecked_23() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ____legacyConfigChecked_23)); } inline bool get__legacyConfigChecked_23() const { return ____legacyConfigChecked_23; } inline bool* get_address_of__legacyConfigChecked_23() { return &____legacyConfigChecked_23; } inline void set__legacyConfigChecked_23(bool value) { ____legacyConfigChecked_23 = value; } inline static int32_t get_offset_of__legacyMode_24() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ____legacyMode_24)); } inline bool get__legacyMode_24() const { return ____legacyMode_24; } inline bool* get_address_of__legacyMode_24() { return &____legacyMode_24; } inline void set__legacyMode_24(bool value) { ____legacyMode_24 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMESPAN_T881159249_H #ifndef RAYCASTRESULT_T3360306849_H #define RAYCASTRESULT_T3360306849_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.EventSystems.RaycastResult struct RaycastResult_t3360306849 { public: // UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject GameObject_t1113636619 * ___m_GameObject_0; // UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module BaseRaycaster_t4150874583 * ___module_1; // System.Single UnityEngine.EventSystems.RaycastResult::distance float ___distance_2; // System.Single UnityEngine.EventSystems.RaycastResult::index float ___index_3; // System.Int32 UnityEngine.EventSystems.RaycastResult::depth int32_t ___depth_4; // System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer int32_t ___sortingLayer_5; // System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder int32_t ___sortingOrder_6; // UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition Vector3_t3722313464 ___worldPosition_7; // UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal Vector3_t3722313464 ___worldNormal_8; // UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition Vector2_t2156229523 ___screenPosition_9; public: inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___m_GameObject_0)); } inline GameObject_t1113636619 * get_m_GameObject_0() const { return ___m_GameObject_0; } inline GameObject_t1113636619 ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; } inline void set_m_GameObject_0(GameObject_t1113636619 * value) { ___m_GameObject_0 = value; Il2CppCodeGenWriteBarrier((&___m_GameObject_0), value); } inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___module_1)); } inline BaseRaycaster_t4150874583 * get_module_1() const { return ___module_1; } inline BaseRaycaster_t4150874583 ** get_address_of_module_1() { return &___module_1; } inline void set_module_1(BaseRaycaster_t4150874583 * value) { ___module_1 = value; Il2CppCodeGenWriteBarrier((&___module_1), value); } inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___distance_2)); } inline float get_distance_2() const { return ___distance_2; } inline float* get_address_of_distance_2() { return &___distance_2; } inline void set_distance_2(float value) { ___distance_2 = value; } inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___index_3)); } inline float get_index_3() const { return ___index_3; } inline float* get_address_of_index_3() { return &___index_3; } inline void set_index_3(float value) { ___index_3 = value; } inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___depth_4)); } inline int32_t get_depth_4() const { return ___depth_4; } inline int32_t* get_address_of_depth_4() { return &___depth_4; } inline void set_depth_4(int32_t value) { ___depth_4 = value; } inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___sortingLayer_5)); } inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; } inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; } inline void set_sortingLayer_5(int32_t value) { ___sortingLayer_5 = value; } inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___sortingOrder_6)); } inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; } inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; } inline void set_sortingOrder_6(int32_t value) { ___sortingOrder_6 = value; } inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___worldPosition_7)); } inline Vector3_t3722313464 get_worldPosition_7() const { return ___worldPosition_7; } inline Vector3_t3722313464 * get_address_of_worldPosition_7() { return &___worldPosition_7; } inline void set_worldPosition_7(Vector3_t3722313464 value) { ___worldPosition_7 = value; } inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___worldNormal_8)); } inline Vector3_t3722313464 get_worldNormal_8() const { return ___worldNormal_8; } inline Vector3_t3722313464 * get_address_of_worldNormal_8() { return &___worldNormal_8; } inline void set_worldNormal_8(Vector3_t3722313464 value) { ___worldNormal_8 = value; } inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___screenPosition_9)); } inline Vector2_t2156229523 get_screenPosition_9() const { return ___screenPosition_9; } inline Vector2_t2156229523 * get_address_of_screenPosition_9() { return &___screenPosition_9; } inline void set_screenPosition_9(Vector2_t2156229523 value) { ___screenPosition_9 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult struct RaycastResult_t3360306849_marshaled_pinvoke { GameObject_t1113636619 * ___m_GameObject_0; BaseRaycaster_t4150874583 * ___module_1; float ___distance_2; float ___index_3; int32_t ___depth_4; int32_t ___sortingLayer_5; int32_t ___sortingOrder_6; Vector3_t3722313464 ___worldPosition_7; Vector3_t3722313464 ___worldNormal_8; Vector2_t2156229523 ___screenPosition_9; }; // Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult struct RaycastResult_t3360306849_marshaled_com { GameObject_t1113636619 * ___m_GameObject_0; BaseRaycaster_t4150874583 * ___module_1; float ___distance_2; float ___index_3; int32_t ___depth_4; int32_t ___sortingLayer_5; int32_t ___sortingOrder_6; Vector3_t3722313464 ___worldPosition_7; Vector3_t3722313464 ___worldNormal_8; Vector2_t2156229523 ___screenPosition_9; }; #endif // RAYCASTRESULT_T3360306849_H #ifndef KEYCODE_T2599294277_H #define KEYCODE_T2599294277_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.KeyCode struct KeyCode_t2599294277 { public: // System.Int32 UnityEngine.KeyCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(KeyCode_t2599294277, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYCODE_T2599294277_H #ifndef RAY_T3785851493_H #define RAY_T3785851493_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Ray struct Ray_t3785851493 { public: // UnityEngine.Vector3 UnityEngine.Ray::m_Origin Vector3_t3722313464 ___m_Origin_0; // UnityEngine.Vector3 UnityEngine.Ray::m_Direction Vector3_t3722313464 ___m_Direction_1; public: inline static int32_t get_offset_of_m_Origin_0() { return static_cast<int32_t>(offsetof(Ray_t3785851493, ___m_Origin_0)); } inline Vector3_t3722313464 get_m_Origin_0() const { return ___m_Origin_0; } inline Vector3_t3722313464 * get_address_of_m_Origin_0() { return &___m_Origin_0; } inline void set_m_Origin_0(Vector3_t3722313464 value) { ___m_Origin_0 = value; } inline static int32_t get_offset_of_m_Direction_1() { return static_cast<int32_t>(offsetof(Ray_t3785851493, ___m_Direction_1)); } inline Vector3_t3722313464 get_m_Direction_1() const { return ___m_Direction_1; } inline Vector3_t3722313464 * get_address_of_m_Direction_1() { return &___m_Direction_1; } inline void set_m_Direction_1(Vector3_t3722313464 value) { ___m_Direction_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RAY_T3785851493_H #ifndef UICHARINFO_T75501106_H #define UICHARINFO_T75501106_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UICharInfo struct UICharInfo_t75501106 { public: // UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos Vector2_t2156229523 ___cursorPos_0; // System.Single UnityEngine.UICharInfo::charWidth float ___charWidth_1; public: inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_t75501106, ___cursorPos_0)); } inline Vector2_t2156229523 get_cursorPos_0() const { return ___cursorPos_0; } inline Vector2_t2156229523 * get_address_of_cursorPos_0() { return &___cursorPos_0; } inline void set_cursorPos_0(Vector2_t2156229523 value) { ___cursorPos_0 = value; } inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_t75501106, ___charWidth_1)); } inline float get_charWidth_1() const { return ___charWidth_1; } inline float* get_address_of_charWidth_1() { return &___charWidth_1; } inline void set_charWidth_1(float value) { ___charWidth_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UICHARINFO_T75501106_H #ifndef UIVERTEX_T4057497605_H #define UIVERTEX_T4057497605_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UIVertex struct UIVertex_t4057497605 { public: // UnityEngine.Vector3 UnityEngine.UIVertex::position Vector3_t3722313464 ___position_0; // UnityEngine.Vector3 UnityEngine.UIVertex::normal Vector3_t3722313464 ___normal_1; // UnityEngine.Vector4 UnityEngine.UIVertex::tangent Vector4_t3319028937 ___tangent_2; // UnityEngine.Color32 UnityEngine.UIVertex::color Color32_t2600501292 ___color_3; // UnityEngine.Vector2 UnityEngine.UIVertex::uv0 Vector2_t2156229523 ___uv0_4; // UnityEngine.Vector2 UnityEngine.UIVertex::uv1 Vector2_t2156229523 ___uv1_5; // UnityEngine.Vector2 UnityEngine.UIVertex::uv2 Vector2_t2156229523 ___uv2_6; // UnityEngine.Vector2 UnityEngine.UIVertex::uv3 Vector2_t2156229523 ___uv3_7; public: inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___position_0)); } inline Vector3_t3722313464 get_position_0() const { return ___position_0; } inline Vector3_t3722313464 * get_address_of_position_0() { return &___position_0; } inline void set_position_0(Vector3_t3722313464 value) { ___position_0 = value; } inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___normal_1)); } inline Vector3_t3722313464 get_normal_1() const { return ___normal_1; } inline Vector3_t3722313464 * get_address_of_normal_1() { return &___normal_1; } inline void set_normal_1(Vector3_t3722313464 value) { ___normal_1 = value; } inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___tangent_2)); } inline Vector4_t3319028937 get_tangent_2() const { return ___tangent_2; } inline Vector4_t3319028937 * get_address_of_tangent_2() { return &___tangent_2; } inline void set_tangent_2(Vector4_t3319028937 value) { ___tangent_2 = value; } inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___color_3)); } inline Color32_t2600501292 get_color_3() const { return ___color_3; } inline Color32_t2600501292 * get_address_of_color_3() { return &___color_3; } inline void set_color_3(Color32_t2600501292 value) { ___color_3 = value; } inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv0_4)); } inline Vector2_t2156229523 get_uv0_4() const { return ___uv0_4; } inline Vector2_t2156229523 * get_address_of_uv0_4() { return &___uv0_4; } inline void set_uv0_4(Vector2_t2156229523 value) { ___uv0_4 = value; } inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv1_5)); } inline Vector2_t2156229523 get_uv1_5() const { return ___uv1_5; } inline Vector2_t2156229523 * get_address_of_uv1_5() { return &___uv1_5; } inline void set_uv1_5(Vector2_t2156229523 value) { ___uv1_5 = value; } inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv2_6)); } inline Vector2_t2156229523 get_uv2_6() const { return ___uv2_6; } inline Vector2_t2156229523 * get_address_of_uv2_6() { return &___uv2_6; } inline void set_uv2_6(Vector2_t2156229523 value) { ___uv2_6 = value; } inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv3_7)); } inline Vector2_t2156229523 get_uv3_7() const { return ___uv3_7; } inline Vector2_t2156229523 * get_address_of_uv3_7() { return &___uv3_7; } inline void set_uv3_7(Vector2_t2156229523 value) { ___uv3_7 = value; } }; struct UIVertex_t4057497605_StaticFields { public: // UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor Color32_t2600501292 ___s_DefaultColor_8; // UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent Vector4_t3319028937 ___s_DefaultTangent_9; // UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert UIVertex_t4057497605 ___simpleVert_10; public: inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___s_DefaultColor_8)); } inline Color32_t2600501292 get_s_DefaultColor_8() const { return ___s_DefaultColor_8; } inline Color32_t2600501292 * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; } inline void set_s_DefaultColor_8(Color32_t2600501292 value) { ___s_DefaultColor_8 = value; } inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___s_DefaultTangent_9)); } inline Vector4_t3319028937 get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; } inline Vector4_t3319028937 * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; } inline void set_s_DefaultTangent_9(Vector4_t3319028937 value) { ___s_DefaultTangent_9 = value; } inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___simpleVert_10)); } inline UIVertex_t4057497605 get_simpleVert_10() const { return ___simpleVert_10; } inline UIVertex_t4057497605 * get_address_of_simpleVert_10() { return &___simpleVert_10; } inline void set_simpleVert_10(UIVertex_t4057497605 value) { ___simpleVert_10 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UIVERTEX_T4057497605_H #ifndef MATERIALTYPE_T597773032_H #define MATERIALTYPE_T597773032_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityGLTF.GLTFSceneImporter/MaterialType struct MaterialType_t597773032 { public: // System.Int32 UnityGLTF.GLTFSceneImporter/MaterialType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MaterialType_t597773032, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MATERIALTYPE_T597773032_H #ifndef KEYCODEEVENTPAIR_T1510105498_H #define KEYCODEEVENTPAIR_T1510105498_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair struct KeyCodeEventPair_t1510105498 { public: // UnityEngine.KeyCode HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair::KeyCode int32_t ___KeyCode_0; // HoloToolkit.Unity.InputModule.KeyboardManager/KeyEvent HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair::KeyEvent int32_t ___KeyEvent_1; public: inline static int32_t get_offset_of_KeyCode_0() { return static_cast<int32_t>(offsetof(KeyCodeEventPair_t1510105498, ___KeyCode_0)); } inline int32_t get_KeyCode_0() const { return ___KeyCode_0; } inline int32_t* get_address_of_KeyCode_0() { return &___KeyCode_0; } inline void set_KeyCode_0(int32_t value) { ___KeyCode_0 = value; } inline static int32_t get_offset_of_KeyEvent_1() { return static_cast<int32_t>(offsetof(KeyCodeEventPair_t1510105498, ___KeyEvent_1)); } inline int32_t get_KeyEvent_1() const { return ___KeyEvent_1; } inline int32_t* get_address_of_KeyEvent_1() { return &___KeyEvent_1; } inline void set_KeyEvent_1(int32_t value) { ___KeyEvent_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYCODEEVENTPAIR_T1510105498_H #ifndef SHAPECOMPONENTCONSTRAINT_T4241953735_H #define SHAPECOMPONENTCONSTRAINT_T4241953735_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint #pragma pack(push, tp, 1) struct ShapeComponentConstraint_t4241953735 { public: // HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraintType HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint::Type int32_t ___Type_0; // System.Single HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint::Param_Float_0 float ___Param_Float_0_1; // System.Single HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint::Param_Float_1 float ___Param_Float_1_2; // System.Single HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint::Param_Float_2 float ___Param_Float_2_3; // System.Single HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint::Param_Float_3 float ___Param_Float_3_4; // System.Int32 HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint::Param_Int_0 int32_t ___Param_Int_0_5; // System.Int32 HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint::Param_Int_1 int32_t ___Param_Int_1_6; // System.IntPtr HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint::Param_Str_0 intptr_t ___Param_Str_0_7; public: inline static int32_t get_offset_of_Type_0() { return static_cast<int32_t>(offsetof(ShapeComponentConstraint_t4241953735, ___Type_0)); } inline int32_t get_Type_0() const { return ___Type_0; } inline int32_t* get_address_of_Type_0() { return &___Type_0; } inline void set_Type_0(int32_t value) { ___Type_0 = value; } inline static int32_t get_offset_of_Param_Float_0_1() { return static_cast<int32_t>(offsetof(ShapeComponentConstraint_t4241953735, ___Param_Float_0_1)); } inline float get_Param_Float_0_1() const { return ___Param_Float_0_1; } inline float* get_address_of_Param_Float_0_1() { return &___Param_Float_0_1; } inline void set_Param_Float_0_1(float value) { ___Param_Float_0_1 = value; } inline static int32_t get_offset_of_Param_Float_1_2() { return static_cast<int32_t>(offsetof(ShapeComponentConstraint_t4241953735, ___Param_Float_1_2)); } inline float get_Param_Float_1_2() const { return ___Param_Float_1_2; } inline float* get_address_of_Param_Float_1_2() { return &___Param_Float_1_2; } inline void set_Param_Float_1_2(float value) { ___Param_Float_1_2 = value; } inline static int32_t get_offset_of_Param_Float_2_3() { return static_cast<int32_t>(offsetof(ShapeComponentConstraint_t4241953735, ___Param_Float_2_3)); } inline float get_Param_Float_2_3() const { return ___Param_Float_2_3; } inline float* get_address_of_Param_Float_2_3() { return &___Param_Float_2_3; } inline void set_Param_Float_2_3(float value) { ___Param_Float_2_3 = value; } inline static int32_t get_offset_of_Param_Float_3_4() { return static_cast<int32_t>(offsetof(ShapeComponentConstraint_t4241953735, ___Param_Float_3_4)); } inline float get_Param_Float_3_4() const { return ___Param_Float_3_4; } inline float* get_address_of_Param_Float_3_4() { return &___Param_Float_3_4; } inline void set_Param_Float_3_4(float value) { ___Param_Float_3_4 = value; } inline static int32_t get_offset_of_Param_Int_0_5() { return static_cast<int32_t>(offsetof(ShapeComponentConstraint_t4241953735, ___Param_Int_0_5)); } inline int32_t get_Param_Int_0_5() const { return ___Param_Int_0_5; } inline int32_t* get_address_of_Param_Int_0_5() { return &___Param_Int_0_5; } inline void set_Param_Int_0_5(int32_t value) { ___Param_Int_0_5 = value; } inline static int32_t get_offset_of_Param_Int_1_6() { return static_cast<int32_t>(offsetof(ShapeComponentConstraint_t4241953735, ___Param_Int_1_6)); } inline int32_t get_Param_Int_1_6() const { return ___Param_Int_1_6; } inline int32_t* get_address_of_Param_Int_1_6() { return &___Param_Int_1_6; } inline void set_Param_Int_1_6(int32_t value) { ___Param_Int_1_6 = value; } inline static int32_t get_offset_of_Param_Str_0_7() { return static_cast<int32_t>(offsetof(ShapeComponentConstraint_t4241953735, ___Param_Str_0_7)); } inline intptr_t get_Param_Str_0_7() const { return ___Param_Str_0_7; } inline intptr_t* get_address_of_Param_Str_0_7() { return &___Param_Str_0_7; } inline void set_Param_Str_0_7(intptr_t value) { ___Param_Str_0_7 = value; } }; #pragma pack(pop, tp) #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SHAPECOMPONENTCONSTRAINT_T4241953735_H #ifndef BUTTONTEMPLATE_T3925965648_H #define BUTTONTEMPLATE_T3925965648_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // HoloToolkit.Unity.UX.AppBar/ButtonTemplate struct ButtonTemplate_t3925965648 { public: // System.Int32 HoloToolkit.Unity.UX.AppBar/ButtonTemplate::DefaultPosition int32_t ___DefaultPosition_0; // System.Int32 HoloToolkit.Unity.UX.AppBar/ButtonTemplate::ManipulationPosition int32_t ___ManipulationPosition_1; // HoloToolkit.Unity.UX.AppBar/ButtonTypeEnum HoloToolkit.Unity.UX.AppBar/ButtonTemplate::Type int32_t ___Type_2; // System.String HoloToolkit.Unity.UX.AppBar/ButtonTemplate::Name String_t* ___Name_3; // System.String HoloToolkit.Unity.UX.AppBar/ButtonTemplate::Icon String_t* ___Icon_4; // System.String HoloToolkit.Unity.UX.AppBar/ButtonTemplate::Text String_t* ___Text_5; // HoloToolkit.Unity.Receivers.InteractionReceiver HoloToolkit.Unity.UX.AppBar/ButtonTemplate::EventTarget InteractionReceiver_t3572119366 * ___EventTarget_6; // UnityEngine.Events.UnityEvent HoloToolkit.Unity.UX.AppBar/ButtonTemplate::OnTappedEvent UnityEvent_t2581268647 * ___OnTappedEvent_7; public: inline static int32_t get_offset_of_DefaultPosition_0() { return static_cast<int32_t>(offsetof(ButtonTemplate_t3925965648, ___DefaultPosition_0)); } inline int32_t get_DefaultPosition_0() const { return ___DefaultPosition_0; } inline int32_t* get_address_of_DefaultPosition_0() { return &___DefaultPosition_0; } inline void set_DefaultPosition_0(int32_t value) { ___DefaultPosition_0 = value; } inline static int32_t get_offset_of_ManipulationPosition_1() { return static_cast<int32_t>(offsetof(ButtonTemplate_t3925965648, ___ManipulationPosition_1)); } inline int32_t get_ManipulationPosition_1() const { return ___ManipulationPosition_1; } inline int32_t* get_address_of_ManipulationPosition_1() { return &___ManipulationPosition_1; } inline void set_ManipulationPosition_1(int32_t value) { ___ManipulationPosition_1 = value; } inline static int32_t get_offset_of_Type_2() { return static_cast<int32_t>(offsetof(ButtonTemplate_t3925965648, ___Type_2)); } inline int32_t get_Type_2() const { return ___Type_2; } inline int32_t* get_address_of_Type_2() { return &___Type_2; } inline void set_Type_2(int32_t value) { ___Type_2 = value; } inline static int32_t get_offset_of_Name_3() { return static_cast<int32_t>(offsetof(ButtonTemplate_t3925965648, ___Name_3)); } inline String_t* get_Name_3() const { return ___Name_3; } inline String_t** get_address_of_Name_3() { return &___Name_3; } inline void set_Name_3(String_t* value) { ___Name_3 = value; Il2CppCodeGenWriteBarrier((&___Name_3), value); } inline static int32_t get_offset_of_Icon_4() { return static_cast<int32_t>(offsetof(ButtonTemplate_t3925965648, ___Icon_4)); } inline String_t* get_Icon_4() const { return ___Icon_4; } inline String_t** get_address_of_Icon_4() { return &___Icon_4; } inline void set_Icon_4(String_t* value) { ___Icon_4 = value; Il2CppCodeGenWriteBarrier((&___Icon_4), value); } inline static int32_t get_offset_of_Text_5() { return static_cast<int32_t>(offsetof(ButtonTemplate_t3925965648, ___Text_5)); } inline String_t* get_Text_5() const { return ___Text_5; } inline String_t** get_address_of_Text_5() { return &___Text_5; } inline void set_Text_5(String_t* value) { ___Text_5 = value; Il2CppCodeGenWriteBarrier((&___Text_5), value); } inline static int32_t get_offset_of_EventTarget_6() { return static_cast<int32_t>(offsetof(ButtonTemplate_t3925965648, ___EventTarget_6)); } inline InteractionReceiver_t3572119366 * get_EventTarget_6() const { return ___EventTarget_6; } inline InteractionReceiver_t3572119366 ** get_address_of_EventTarget_6() { return &___EventTarget_6; } inline void set_EventTarget_6(InteractionReceiver_t3572119366 * value) { ___EventTarget_6 = value; Il2CppCodeGenWriteBarrier((&___EventTarget_6), value); } inline static int32_t get_offset_of_OnTappedEvent_7() { return static_cast<int32_t>(offsetof(ButtonTemplate_t3925965648, ___OnTappedEvent_7)); } inline UnityEvent_t2581268647 * get_OnTappedEvent_7() const { return ___OnTappedEvent_7; } inline UnityEvent_t2581268647 ** get_address_of_OnTappedEvent_7() { return &___OnTappedEvent_7; } inline void set_OnTappedEvent_7(UnityEvent_t2581268647 * value) { ___OnTappedEvent_7 = value; Il2CppCodeGenWriteBarrier((&___OnTappedEvent_7), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of HoloToolkit.Unity.UX.AppBar/ButtonTemplate struct ButtonTemplate_t3925965648_marshaled_pinvoke { int32_t ___DefaultPosition_0; int32_t ___ManipulationPosition_1; int32_t ___Type_2; char* ___Name_3; char* ___Icon_4; char* ___Text_5; InteractionReceiver_t3572119366 * ___EventTarget_6; UnityEvent_t2581268647 * ___OnTappedEvent_7; }; // Native definition for COM marshalling of HoloToolkit.Unity.UX.AppBar/ButtonTemplate struct ButtonTemplate_t3925965648_marshaled_com { int32_t ___DefaultPosition_0; int32_t ___ManipulationPosition_1; int32_t ___Type_2; Il2CppChar* ___Name_3; Il2CppChar* ___Icon_4; Il2CppChar* ___Text_5; InteractionReceiver_t3572119366 * ___EventTarget_6; UnityEvent_t2581268647 * ___OnTappedEvent_7; }; #endif // BUTTONTEMPLATE_T3925965648_H #ifndef JSONPOSITION_T2528027714_H #define JSONPOSITION_T2528027714_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Newtonsoft.Json.JsonPosition struct JsonPosition_t2528027714 { public: // Newtonsoft.Json.JsonContainerType Newtonsoft.Json.JsonPosition::Type int32_t ___Type_1; // System.Int32 Newtonsoft.Json.JsonPosition::Position int32_t ___Position_2; // System.String Newtonsoft.Json.JsonPosition::PropertyName String_t* ___PropertyName_3; // System.Boolean Newtonsoft.Json.JsonPosition::HasIndex bool ___HasIndex_4; public: inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(JsonPosition_t2528027714, ___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_Position_2() { return static_cast<int32_t>(offsetof(JsonPosition_t2528027714, ___Position_2)); } inline int32_t get_Position_2() const { return ___Position_2; } inline int32_t* get_address_of_Position_2() { return &___Position_2; } inline void set_Position_2(int32_t value) { ___Position_2 = value; } inline static int32_t get_offset_of_PropertyName_3() { return static_cast<int32_t>(offsetof(JsonPosition_t2528027714, ___PropertyName_3)); } inline String_t* get_PropertyName_3() const { return ___PropertyName_3; } inline String_t** get_address_of_PropertyName_3() { return &___PropertyName_3; } inline void set_PropertyName_3(String_t* value) { ___PropertyName_3 = value; Il2CppCodeGenWriteBarrier((&___PropertyName_3), value); } inline static int32_t get_offset_of_HasIndex_4() { return static_cast<int32_t>(offsetof(JsonPosition_t2528027714, ___HasIndex_4)); } inline bool get_HasIndex_4() const { return ___HasIndex_4; } inline bool* get_address_of_HasIndex_4() { return &___HasIndex_4; } inline void set_HasIndex_4(bool value) { ___HasIndex_4 = value; } }; struct JsonPosition_t2528027714_StaticFields { public: // System.Char[] Newtonsoft.Json.JsonPosition::SpecialCharacters CharU5BU5D_t3528271667* ___SpecialCharacters_0; public: inline static int32_t get_offset_of_SpecialCharacters_0() { return static_cast<int32_t>(offsetof(JsonPosition_t2528027714_StaticFields, ___SpecialCharacters_0)); } inline CharU5BU5D_t3528271667* get_SpecialCharacters_0() const { return ___SpecialCharacters_0; } inline CharU5BU5D_t3528271667** get_address_of_SpecialCharacters_0() { return &___SpecialCharacters_0; } inline void set_SpecialCharacters_0(CharU5BU5D_t3528271667* value) { ___SpecialCharacters_0 = value; Il2CppCodeGenWriteBarrier((&___SpecialCharacters_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of Newtonsoft.Json.JsonPosition struct JsonPosition_t2528027714_marshaled_pinvoke { int32_t ___Type_1; int32_t ___Position_2; char* ___PropertyName_3; int32_t ___HasIndex_4; }; // Native definition for COM marshalling of Newtonsoft.Json.JsonPosition struct JsonPosition_t2528027714_marshaled_com { int32_t ___Type_1; int32_t ___Position_2; Il2CppChar* ___PropertyName_3; int32_t ___HasIndex_4; }; #endif // JSONPOSITION_T2528027714_H #ifndef ARGUMENTNULLEXCEPTION_T1615371798_H #define ARGUMENTNULLEXCEPTION_T1615371798_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentNullException struct ArgumentNullException_t1615371798 : public ArgumentException_t132251570 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTNULLEXCEPTION_T1615371798_H #ifndef ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H #define ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t777629997 : public ArgumentException_t132251570 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t777629997, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((&___m_actualValue_19), value); } }; struct ArgumentOutOfRangeException_t777629997_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t777629997_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((&____rangeMessage_18), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H #ifndef KEYVALUEPAIR_2_T3422187268_H #define KEYVALUEPAIR_2_T3422187268_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType> struct KeyValuePair_2_t3422187268 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value uint32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3422187268, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3422187268, ___value_1)); } inline uint32_t get_value_1() const { return ___value_1; } inline uint32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(uint32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T3422187268_H #ifndef KEYVALUEPAIR_2_T4085865031_H #define KEYVALUEPAIR_2_T4085865031_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType> struct KeyValuePair_2_t4085865031 { 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_t4085865031, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t4085865031, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T4085865031_H #ifndef KEYVALUEPAIR_2_T249061059_H #define KEYVALUEPAIR_2_T249061059_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode> struct KeyValuePair_2_t249061059 { 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_t249061059, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t249061059, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T249061059_H #ifndef KEYVALUEPAIR_2_T2255362622_H #define KEYVALUEPAIR_2_T2255362622_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState> struct KeyValuePair_2_t2255362622 { 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_t2255362622, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2255362622, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2255362622_H #ifndef KEYVALUEPAIR_2_T2730400744_H #define KEYVALUEPAIR_2_T2730400744_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind> struct KeyValuePair_2_t2730400744 { 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_t2730400744, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2730400744, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2730400744_H #ifndef KEYVALUEPAIR_2_T2738617651_H #define KEYVALUEPAIR_2_T2738617651_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct KeyValuePair_2_t2738617651 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value EventRegistrationTokenList_t3288506496 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2738617651, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2738617651, ___value_1)); } inline EventRegistrationTokenList_t3288506496 get_value_1() const { return ___value_1; } inline EventRegistrationTokenList_t3288506496 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(EventRegistrationTokenList_t3288506496 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2738617651_H #ifndef KEYVALUEPAIR_2_T4120547_H #define KEYVALUEPAIR_2_T4120547_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object> struct KeyValuePair_2_t4120547 { 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_t4120547, ___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_t4120547, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T4120547_H #ifndef ENUMERATOR_T3042159799_H #define ENUMERATOR_T3042159799_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType> struct Enumerator_t3042159799 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1152915922 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current int32_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3042159799, ___list_0)); } inline List_1_t1152915922 * get_list_0() const { return ___list_0; } inline List_1_t1152915922 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1152915922 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3042159799, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3042159799, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3042159799, ___current_3)); } inline int32_t get_current_3() const { return ___current_3; } inline int32_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(int32_t value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3042159799_H #ifndef ENUMERATOR_T1074336339_H #define ENUMERATOR_T1074336339_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper> struct Enumerator_t1074336339 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t3480059758 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current RaycastResultHelper_t2007985016 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1074336339, ___list_0)); } inline List_1_t3480059758 * get_list_0() const { return ___list_0; } inline List_1_t3480059758 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t3480059758 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1074336339, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1074336339, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1074336339, ___current_3)); } inline RaycastResultHelper_t2007985016 get_current_3() const { return ___current_3; } inline RaycastResultHelper_t2007985016 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(RaycastResultHelper_t2007985016 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T1074336339_H #ifndef ENUMERATOR_T3180766674_H #define ENUMERATOR_T3180766674_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData> struct Enumerator_t3180766674 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1291522797 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current MeshData_t4114415351 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3180766674, ___list_0)); } inline List_1_t1291522797 * get_list_0() const { return ___list_0; } inline List_1_t1291522797 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1291522797 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3180766674, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3180766674, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3180766674, ___current_3)); } inline MeshData_t4114415351 get_current_3() const { return ___current_3; } inline MeshData_t4114415351 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(MeshData_t4114415351 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3180766674_H #ifndef ENUMERATOR_T2428186925_H #define ENUMERATOR_T2428186925_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData> struct Enumerator_t2428186925 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t538943048 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current MeshData_t3361835602 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2428186925, ___list_0)); } inline List_1_t538943048 * get_list_0() const { return ___list_0; } inline List_1_t538943048 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t538943048 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2428186925, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2428186925, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2428186925, ___current_3)); } inline MeshData_t3361835602 get_current_3() const { return ___current_3; } inline MeshData_t3361835602 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(MeshData_t3361835602 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2428186925_H #ifndef ENUMERATOR_T4232248905_H #define ENUMERATOR_T4232248905_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct Enumerator_t4232248905 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t2343005028 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current KeyValuePair_2_t870930286 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t4232248905, ___list_0)); } inline List_1_t2343005028 * get_list_0() const { return ___list_0; } inline List_1_t2343005028 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t2343005028 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4232248905, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t4232248905, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t4232248905, ___current_3)); } inline KeyValuePair_2_t870930286 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t870930286 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t870930286 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T4232248905_H #ifndef ENUMERATOR_T114485015_H #define ENUMERATOR_T114485015_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>> struct Enumerator_t114485015 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t2520208434 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current KeyValuePair_2_t1048133692 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t114485015, ___list_0)); } inline List_1_t2520208434 * get_list_0() const { return ___list_0; } inline List_1_t2520208434 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t2520208434 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t114485015, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t114485015, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t114485015, ___current_3)); } inline KeyValuePair_2_t1048133692 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t1048133692 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t1048133692 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T114485015_H #ifndef ENUMERATOR_T2295638830_H #define ENUMERATOR_T2295638830_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset> struct Enumerator_t2295638830 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t406394953 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current DateTimeOffset_t3229287507 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2295638830, ___list_0)); } inline List_1_t406394953 * get_list_0() const { return ___list_0; } inline List_1_t406394953 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t406394953 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2295638830, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2295638830, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2295638830, ___current_3)); } inline DateTimeOffset_t3229287507 get_current_3() const { return ___current_3; } inline DateTimeOffset_t3229287507 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(DateTimeOffset_t3229287507 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2295638830_H #ifndef ENUMERATOR_T3454164214_H #define ENUMERATOR_T3454164214_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions> struct Enumerator_t3454164214 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1564920337 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current int32_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3454164214, ___list_0)); } inline List_1_t1564920337 * get_list_0() const { return ___list_0; } inline List_1_t1564920337 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1564920337 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3454164214, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3454164214, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3454164214, ___current_3)); } inline int32_t get_current_3() const { return ___current_3; } inline int32_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(int32_t value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3454164214_H #ifndef ENUMERATOR_T4242477868_H #define ENUMERATOR_T4242477868_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.TimeSpan> struct Enumerator_t4242477868 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t2353233991 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current TimeSpan_t881159249 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t4242477868, ___list_0)); } inline List_1_t2353233991 * get_list_0() const { return ___list_0; } inline List_1_t2353233991 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t2353233991 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4242477868, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t4242477868, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t4242477868, ___current_3)); } inline TimeSpan_t881159249 get_current_3() const { return ___current_3; } inline TimeSpan_t881159249 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(TimeSpan_t881159249 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T4242477868_H #ifndef ENUMERATOR_T2426658172_H #define ENUMERATOR_T2426658172_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult> struct Enumerator_t2426658172 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t537414295 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current RaycastResult_t3360306849 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2426658172, ___list_0)); } inline List_1_t537414295 * get_list_0() const { return ___list_0; } inline List_1_t537414295 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t537414295 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2426658172, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2426658172, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2426658172, ___current_3)); } inline RaycastResult_t3360306849 get_current_3() const { return ___current_3; } inline RaycastResult_t3360306849 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(RaycastResult_t3360306849 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2426658172_H #ifndef ENUMERATOR_T2852202816_H #define ENUMERATOR_T2852202816_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray> struct Enumerator_t2852202816 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t962958939 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Ray_t3785851493 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2852202816, ___list_0)); } inline List_1_t962958939 * get_list_0() const { return ___list_0; } inline List_1_t962958939 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t962958939 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2852202816, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2852202816, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2852202816, ___current_3)); } inline Ray_t3785851493 get_current_3() const { return ___current_3; } inline Ray_t3785851493 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Ray_t3785851493 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2852202816_H #ifndef ENUMERATOR_T3436819725_H #define ENUMERATOR_T3436819725_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo> struct Enumerator_t3436819725 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1547575848 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current UICharInfo_t75501106 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3436819725, ___list_0)); } inline List_1_t1547575848 * get_list_0() const { return ___list_0; } inline List_1_t1547575848 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1547575848 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3436819725, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3436819725, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3436819725, ___current_3)); } inline UICharInfo_t75501106 get_current_3() const { return ___current_3; } inline UICharInfo_t75501106 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(UICharInfo_t75501106 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3436819725_H #ifndef ENUMERATOR_T3123848928_H #define ENUMERATOR_T3123848928_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex> struct Enumerator_t3123848928 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1234605051 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current UIVertex_t4057497605 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3123848928, ___list_0)); } inline List_1_t1234605051 * get_list_0() const { return ___list_0; } inline List_1_t1234605051 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1234605051 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3123848928, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3123848928, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3123848928, ___current_3)); } inline UIVertex_t4057497605 get_current_3() const { return ___current_3; } inline UIVertex_t4057497605 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(UIVertex_t4057497605 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3123848928_H #ifndef MULTICASTDELEGATE_T_H #define MULTICASTDELEGATE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t1188392813 { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_t1703627840* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_t1703627840* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_t1703627840** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_t1703627840* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((&___delegates_11), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t1188392813_marshaled_pinvoke { DelegateU5BU5D_t1703627840* ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t1188392813_marshaled_com { DelegateU5BU5D_t1703627840* ___delegates_11; }; #endif // MULTICASTDELEGATE_T_H #ifndef WIN32_IP_ADAPTER_ADDRESSES_T3463526328_H #define WIN32_IP_ADAPTER_ADDRESSES_T3463526328_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES struct Win32_IP_ADAPTER_ADDRESSES_t3463526328 { public: // System.Net.NetworkInformation.AlignmentUnion System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Alignment AlignmentUnion_t208902285 ___Alignment_0; // System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Next intptr_t ___Next_1; // System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::AdapterName String_t* ___AdapterName_2; // System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstUnicastAddress intptr_t ___FirstUnicastAddress_3; // System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstAnycastAddress intptr_t ___FirstAnycastAddress_4; // System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstMulticastAddress intptr_t ___FirstMulticastAddress_5; // System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstDnsServerAddress intptr_t ___FirstDnsServerAddress_6; // System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::DnsSuffix String_t* ___DnsSuffix_7; // System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Description String_t* ___Description_8; // System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FriendlyName String_t* ___FriendlyName_9; // System.Byte[] System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::PhysicalAddress ByteU5BU5D_t4116647657* ___PhysicalAddress_10; // System.UInt32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::PhysicalAddressLength uint32_t ___PhysicalAddressLength_11; // System.UInt32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Flags uint32_t ___Flags_12; // System.UInt32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Mtu uint32_t ___Mtu_13; // System.Net.NetworkInformation.NetworkInterfaceType System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::IfType int32_t ___IfType_14; // System.Net.NetworkInformation.OperationalStatus System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::OperStatus int32_t ___OperStatus_15; // System.Int32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Ipv6IfIndex int32_t ___Ipv6IfIndex_16; // System.UInt32[] System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::ZoneIndices UInt32U5BU5D_t2770800703* ___ZoneIndices_17; public: inline static int32_t get_offset_of_Alignment_0() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Alignment_0)); } inline AlignmentUnion_t208902285 get_Alignment_0() const { return ___Alignment_0; } inline AlignmentUnion_t208902285 * get_address_of_Alignment_0() { return &___Alignment_0; } inline void set_Alignment_0(AlignmentUnion_t208902285 value) { ___Alignment_0 = value; } inline static int32_t get_offset_of_Next_1() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Next_1)); } inline intptr_t get_Next_1() const { return ___Next_1; } inline intptr_t* get_address_of_Next_1() { return &___Next_1; } inline void set_Next_1(intptr_t value) { ___Next_1 = value; } inline static int32_t get_offset_of_AdapterName_2() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___AdapterName_2)); } inline String_t* get_AdapterName_2() const { return ___AdapterName_2; } inline String_t** get_address_of_AdapterName_2() { return &___AdapterName_2; } inline void set_AdapterName_2(String_t* value) { ___AdapterName_2 = value; Il2CppCodeGenWriteBarrier((&___AdapterName_2), value); } inline static int32_t get_offset_of_FirstUnicastAddress_3() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstUnicastAddress_3)); } inline intptr_t get_FirstUnicastAddress_3() const { return ___FirstUnicastAddress_3; } inline intptr_t* get_address_of_FirstUnicastAddress_3() { return &___FirstUnicastAddress_3; } inline void set_FirstUnicastAddress_3(intptr_t value) { ___FirstUnicastAddress_3 = value; } inline static int32_t get_offset_of_FirstAnycastAddress_4() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstAnycastAddress_4)); } inline intptr_t get_FirstAnycastAddress_4() const { return ___FirstAnycastAddress_4; } inline intptr_t* get_address_of_FirstAnycastAddress_4() { return &___FirstAnycastAddress_4; } inline void set_FirstAnycastAddress_4(intptr_t value) { ___FirstAnycastAddress_4 = value; } inline static int32_t get_offset_of_FirstMulticastAddress_5() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstMulticastAddress_5)); } inline intptr_t get_FirstMulticastAddress_5() const { return ___FirstMulticastAddress_5; } inline intptr_t* get_address_of_FirstMulticastAddress_5() { return &___FirstMulticastAddress_5; } inline void set_FirstMulticastAddress_5(intptr_t value) { ___FirstMulticastAddress_5 = value; } inline static int32_t get_offset_of_FirstDnsServerAddress_6() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstDnsServerAddress_6)); } inline intptr_t get_FirstDnsServerAddress_6() const { return ___FirstDnsServerAddress_6; } inline intptr_t* get_address_of_FirstDnsServerAddress_6() { return &___FirstDnsServerAddress_6; } inline void set_FirstDnsServerAddress_6(intptr_t value) { ___FirstDnsServerAddress_6 = value; } inline static int32_t get_offset_of_DnsSuffix_7() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___DnsSuffix_7)); } inline String_t* get_DnsSuffix_7() const { return ___DnsSuffix_7; } inline String_t** get_address_of_DnsSuffix_7() { return &___DnsSuffix_7; } inline void set_DnsSuffix_7(String_t* value) { ___DnsSuffix_7 = value; Il2CppCodeGenWriteBarrier((&___DnsSuffix_7), value); } inline static int32_t get_offset_of_Description_8() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Description_8)); } inline String_t* get_Description_8() const { return ___Description_8; } inline String_t** get_address_of_Description_8() { return &___Description_8; } inline void set_Description_8(String_t* value) { ___Description_8 = value; Il2CppCodeGenWriteBarrier((&___Description_8), value); } inline static int32_t get_offset_of_FriendlyName_9() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FriendlyName_9)); } inline String_t* get_FriendlyName_9() const { return ___FriendlyName_9; } inline String_t** get_address_of_FriendlyName_9() { return &___FriendlyName_9; } inline void set_FriendlyName_9(String_t* value) { ___FriendlyName_9 = value; Il2CppCodeGenWriteBarrier((&___FriendlyName_9), value); } inline static int32_t get_offset_of_PhysicalAddress_10() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___PhysicalAddress_10)); } inline ByteU5BU5D_t4116647657* get_PhysicalAddress_10() const { return ___PhysicalAddress_10; } inline ByteU5BU5D_t4116647657** get_address_of_PhysicalAddress_10() { return &___PhysicalAddress_10; } inline void set_PhysicalAddress_10(ByteU5BU5D_t4116647657* value) { ___PhysicalAddress_10 = value; Il2CppCodeGenWriteBarrier((&___PhysicalAddress_10), value); } inline static int32_t get_offset_of_PhysicalAddressLength_11() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___PhysicalAddressLength_11)); } inline uint32_t get_PhysicalAddressLength_11() const { return ___PhysicalAddressLength_11; } inline uint32_t* get_address_of_PhysicalAddressLength_11() { return &___PhysicalAddressLength_11; } inline void set_PhysicalAddressLength_11(uint32_t value) { ___PhysicalAddressLength_11 = value; } inline static int32_t get_offset_of_Flags_12() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Flags_12)); } inline uint32_t get_Flags_12() const { return ___Flags_12; } inline uint32_t* get_address_of_Flags_12() { return &___Flags_12; } inline void set_Flags_12(uint32_t value) { ___Flags_12 = value; } inline static int32_t get_offset_of_Mtu_13() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Mtu_13)); } inline uint32_t get_Mtu_13() const { return ___Mtu_13; } inline uint32_t* get_address_of_Mtu_13() { return &___Mtu_13; } inline void set_Mtu_13(uint32_t value) { ___Mtu_13 = value; } inline static int32_t get_offset_of_IfType_14() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___IfType_14)); } inline int32_t get_IfType_14() const { return ___IfType_14; } inline int32_t* get_address_of_IfType_14() { return &___IfType_14; } inline void set_IfType_14(int32_t value) { ___IfType_14 = value; } inline static int32_t get_offset_of_OperStatus_15() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___OperStatus_15)); } inline int32_t get_OperStatus_15() const { return ___OperStatus_15; } inline int32_t* get_address_of_OperStatus_15() { return &___OperStatus_15; } inline void set_OperStatus_15(int32_t value) { ___OperStatus_15 = value; } inline static int32_t get_offset_of_Ipv6IfIndex_16() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Ipv6IfIndex_16)); } inline int32_t get_Ipv6IfIndex_16() const { return ___Ipv6IfIndex_16; } inline int32_t* get_address_of_Ipv6IfIndex_16() { return &___Ipv6IfIndex_16; } inline void set_Ipv6IfIndex_16(int32_t value) { ___Ipv6IfIndex_16 = value; } inline static int32_t get_offset_of_ZoneIndices_17() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___ZoneIndices_17)); } inline UInt32U5BU5D_t2770800703* get_ZoneIndices_17() const { return ___ZoneIndices_17; } inline UInt32U5BU5D_t2770800703** get_address_of_ZoneIndices_17() { return &___ZoneIndices_17; } inline void set_ZoneIndices_17(UInt32U5BU5D_t2770800703* value) { ___ZoneIndices_17 = value; Il2CppCodeGenWriteBarrier((&___ZoneIndices_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES struct Win32_IP_ADAPTER_ADDRESSES_t3463526328_marshaled_pinvoke { AlignmentUnion_t208902285 ___Alignment_0; intptr_t ___Next_1; char* ___AdapterName_2; intptr_t ___FirstUnicastAddress_3; intptr_t ___FirstAnycastAddress_4; intptr_t ___FirstMulticastAddress_5; intptr_t ___FirstDnsServerAddress_6; Il2CppChar* ___DnsSuffix_7; Il2CppChar* ___Description_8; Il2CppChar* ___FriendlyName_9; uint8_t ___PhysicalAddress_10[8]; uint32_t ___PhysicalAddressLength_11; uint32_t ___Flags_12; uint32_t ___Mtu_13; int32_t ___IfType_14; int32_t ___OperStatus_15; int32_t ___Ipv6IfIndex_16; uint32_t ___ZoneIndices_17[64]; }; // Native definition for COM marshalling of System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES struct Win32_IP_ADAPTER_ADDRESSES_t3463526328_marshaled_com { AlignmentUnion_t208902285 ___Alignment_0; intptr_t ___Next_1; char* ___AdapterName_2; intptr_t ___FirstUnicastAddress_3; intptr_t ___FirstAnycastAddress_4; intptr_t ___FirstMulticastAddress_5; intptr_t ___FirstDnsServerAddress_6; Il2CppChar* ___DnsSuffix_7; Il2CppChar* ___Description_8; Il2CppChar* ___FriendlyName_9; uint8_t ___PhysicalAddress_10[8]; uint32_t ___PhysicalAddressLength_11; uint32_t ___Flags_12; uint32_t ___Mtu_13; int32_t ___IfType_14; int32_t ___OperStatus_15; int32_t ___Ipv6IfIndex_16; uint32_t ___ZoneIndices_17[64]; }; #endif // WIN32_IP_ADAPTER_ADDRESSES_T3463526328_H #ifndef PLATFORMNOTSUPPORTEDEXCEPTION_T3572244504_H #define PLATFORMNOTSUPPORTEDEXCEPTION_T3572244504_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.PlatformNotSupportedException struct PlatformNotSupportedException_t3572244504 : public NotSupportedException_t1314879016 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PLATFORMNOTSUPPORTEDEXCEPTION_T3572244504_H #ifndef STREAMINGCONTEXT_T3711869237_H #define STREAMINGCONTEXT_T3711869237_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.StreamingContext struct StreamingContext_t3711869237 { public: // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject * ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; public: inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t3711869237, ___m_additionalContext_0)); } inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; } inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; } inline void set_m_additionalContext_0(RuntimeObject * value) { ___m_additionalContext_0 = value; Il2CppCodeGenWriteBarrier((&___m_additionalContext_0), value); } inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t3711869237, ___m_state_1)); } inline int32_t get_m_state_1() const { return ___m_state_1; } inline int32_t* get_address_of_m_state_1() { return &___m_state_1; } inline void set_m_state_1(int32_t value) { ___m_state_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t3711869237_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t3711869237_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; #endif // STREAMINGCONTEXT_T3711869237_H #ifndef TYPE_T_H #define TYPE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t3027515415 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_t3027515415 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_t3027515415 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_t3027515415 value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t426314064 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t426314064 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t426314064 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t3940880105* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2999457153 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t426314064 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t426314064 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t426314064 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((&___FilterAttribute_0), value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t426314064 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t426314064 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t426314064 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((&___FilterName_1), value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t426314064 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t426314064 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t426314064 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_2), value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((&___Missing_3), value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t3940880105* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t3940880105** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t3940880105* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((&___EmptyTypes_5), value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2999457153 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2999457153 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2999457153 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((&___defaultBinder_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPE_T_H #ifndef ENUMERATOR_T576456821_H #define ENUMERATOR_T576456821_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct Enumerator_t576456821 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t2982180240 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current KeyCodeEventPair_t1510105498 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t576456821, ___list_0)); } inline List_1_t2982180240 * get_list_0() const { return ___list_0; } inline List_1_t2982180240 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t2982180240 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t576456821, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t576456821, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t576456821, ___current_3)); } inline KeyCodeEventPair_t1510105498 get_current_3() const { return ___current_3; } inline KeyCodeEventPair_t1510105498 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyCodeEventPair_t1510105498 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T576456821_H #ifndef ENUMERATOR_T3308305058_H #define ENUMERATOR_T3308305058_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint> struct Enumerator_t3308305058 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1419061181 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current ShapeComponentConstraint_t4241953735 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3308305058, ___list_0)); } inline List_1_t1419061181 * get_list_0() const { return ___list_0; } inline List_1_t1419061181 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1419061181 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3308305058, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3308305058, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3308305058, ___current_3)); } inline ShapeComponentConstraint_t4241953735 get_current_3() const { return ___current_3; } inline ShapeComponentConstraint_t4241953735 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(ShapeComponentConstraint_t4241953735 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3308305058_H #ifndef ENUMERATOR_T2992316971_H #define ENUMERATOR_T2992316971_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate> struct Enumerator_t2992316971 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1103073094 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current ButtonTemplate_t3925965648 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2992316971, ___list_0)); } inline List_1_t1103073094 * get_list_0() const { return ___list_0; } inline List_1_t1103073094 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1103073094 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2992316971, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2992316971, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2992316971, ___current_3)); } inline ButtonTemplate_t3925965648 get_current_3() const { return ___current_3; } inline ButtonTemplate_t3925965648 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(ButtonTemplate_t3925965648 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2992316971_H #ifndef ENUMERATOR_T1594379037_H #define ENUMERATOR_T1594379037_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition> struct Enumerator_t1594379037 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t4000102456 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current JsonPosition_t2528027714 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1594379037, ___list_0)); } inline List_1_t4000102456 * get_list_0() const { return ___list_0; } inline List_1_t4000102456 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t4000102456 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1594379037, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1594379037, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1594379037, ___current_3)); } inline JsonPosition_t2528027714 get_current_3() const { return ___current_3; } inline JsonPosition_t2528027714 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(JsonPosition_t2528027714 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T1594379037_H #ifndef ENUMERATOR_T2529877651_H #define ENUMERATOR_T2529877651_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES> struct Enumerator_t2529877651 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t640633774 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Win32_IP_ADAPTER_ADDRESSES_t3463526328 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2529877651, ___list_0)); } inline List_1_t640633774 * get_list_0() const { return ___list_0; } inline List_1_t640633774 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t640633774 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2529877651, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2529877651, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2529877651, ___current_3)); } inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 get_current_3() const { return ___current_3; } inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Win32_IP_ADAPTER_ADDRESSES_t3463526328 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2529877651_H #ifndef COMPARISON_1_T1537234399_H #define COMPARISON_1_T1537234399_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Comparison`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct Comparison_1_t1537234399 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARISON_1_T1537234399_H #ifndef COMPARISON_1_T3750739655_H #define COMPARISON_1_T3750739655_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Comparison`1<HoloToolkit.UX.Dialog.DialogButtonType> struct Comparison_1_t3750739655 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARISON_1_T3750739655_H #ifndef COMPARISON_1_T4169926217_H #define COMPARISON_1_T4169926217_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Comparison`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct Comparison_1_t4169926217 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARISON_1_T4169926217_H #ifndef COMPARISON_1_T1285036677_H #define COMPARISON_1_T1285036677_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Comparison`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct Comparison_1_t1285036677 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPARISON_1_T1285036677_H #ifndef PREDICATE_1_T2587597344_H #define PREDICATE_1_T2587597344_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Predicate`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel> struct Predicate_1_t2587597344 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PREDICATE_1_T2587597344_H #ifndef PREDICATE_1_T506135304_H #define PREDICATE_1_T506135304_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Predicate`1<HoloToolkit.UX.Dialog.DialogButtonType> struct Predicate_1_t506135304 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PREDICATE_1_T506135304_H #ifndef PREDICATE_1_T925321866_H #define PREDICATE_1_T925321866_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Predicate`1<HoloToolkit.Unity.InputModule.InputSourceInfo> struct Predicate_1_t925321866 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PREDICATE_1_T925321866_H #ifndef PREDICATE_1_T2335399622_H #define PREDICATE_1_T2335399622_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Predicate`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair> struct Predicate_1_t2335399622 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PREDICATE_1_T2335399622_H // System.Char[] struct CharU5BU5D_t3528271667 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.Collections.DictionaryEntry[] struct DictionaryEntryU5BU5D_t4217117203 : public RuntimeArray { public: ALIGN_FIELD (8) DictionaryEntry_t3123975638 m_Items[1]; public: inline DictionaryEntry_t3123975638 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DictionaryEntry_t3123975638 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, DictionaryEntry_t3123975638 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline DictionaryEntry_t3123975638 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DictionaryEntry_t3123975638 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DictionaryEntry_t3123975638 value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[] struct KeyValuePair_2U5BU5D_t118269214 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t2530217319 m_Items[1]; public: inline KeyValuePair_2_t2530217319 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t2530217319 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t2530217319 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t2530217319 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t2530217319 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t2530217319 value) { m_Items[index] = value; } }; // System.Object[] struct ObjectU5BU5D_t2843939325 : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // UnityEngine.Ray[] struct RayU5BU5D_t1836217960 : public RuntimeArray { public: ALIGN_FIELD (8) Ray_t3785851493 m_Items[1]; public: inline Ray_t3785851493 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Ray_t3785851493 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Ray_t3785851493 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Ray_t3785851493 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Ray_t3785851493 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Ray_t3785851493 value) { m_Items[index] = value; } }; // HoloToolkit.Sharing.Spawning.PrefabToDataModel[] struct PrefabToDataModelU5BU5D_t2309926077 : public RuntimeArray { public: ALIGN_FIELD (8) PrefabToDataModel_t1762303220 m_Items[1]; public: inline PrefabToDataModel_t1762303220 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PrefabToDataModel_t1762303220 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, PrefabToDataModel_t1762303220 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline PrefabToDataModel_t1762303220 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PrefabToDataModel_t1762303220 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PrefabToDataModel_t1762303220 value) { m_Items[index] = value; } }; // HoloToolkit.UX.Dialog.DialogButtonType[] struct DialogButtonTypeU5BU5D_t3127917365 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // HoloToolkit.Unity.InputModule.InputSourceInfo[] struct InputSourceInfoU5BU5D_t3430263659 : public RuntimeArray { public: ALIGN_FIELD (8) InputSourceInfo_t100027742 m_Items[1]; public: inline InputSourceInfo_t100027742 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline InputSourceInfo_t100027742 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, InputSourceInfo_t100027742 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline InputSourceInfo_t100027742 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline InputSourceInfo_t100027742 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, InputSourceInfo_t100027742 value) { m_Items[index] = value; } }; // HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair[] struct KeyCodeEventPairU5BU5D_t2855334591 : public RuntimeArray { public: ALIGN_FIELD (8) KeyCodeEventPair_t1510105498 m_Items[1]; public: inline KeyCodeEventPair_t1510105498 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyCodeEventPair_t1510105498 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyCodeEventPair_t1510105498 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyCodeEventPair_t1510105498 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyCodeEventPair_t1510105498 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyCodeEventPair_t1510105498 value) { m_Items[index] = value; } }; // HoloToolkit.Unity.RaycastResultHelper[] struct RaycastResultHelperU5BU5D_t2017648553 : public RuntimeArray { public: ALIGN_FIELD (8) RaycastResultHelper_t2007985016 m_Items[1]; public: inline RaycastResultHelper_t2007985016 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RaycastResultHelper_t2007985016 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RaycastResultHelper_t2007985016 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline RaycastResultHelper_t2007985016 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RaycastResultHelper_t2007985016 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastResultHelper_t2007985016 value) { m_Items[index] = value; } }; // HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData[] struct MeshDataU5BU5D_t1706847054 : public RuntimeArray { public: ALIGN_FIELD (8) MeshData_t4114415351 m_Items[1]; public: inline MeshData_t4114415351 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline MeshData_t4114415351 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, MeshData_t4114415351 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline MeshData_t4114415351 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline MeshData_t4114415351 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, MeshData_t4114415351 value) { m_Items[index] = value; } }; // HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject[] struct SurfaceObjectU5BU5D_t214306891 : public RuntimeArray { public: ALIGN_FIELD (8) SurfaceObject_t2613240318 m_Items[1]; public: inline SurfaceObject_t2613240318 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline SurfaceObject_t2613240318 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, SurfaceObject_t2613240318 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline SurfaceObject_t2613240318 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline SurfaceObject_t2613240318 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, SurfaceObject_t2613240318 value) { m_Items[index] = value; } }; // HoloToolkit.Unity.SpatialUnderstandingDll/MeshData[] struct MeshDataU5BU5D_t822949927 : public RuntimeArray { public: ALIGN_FIELD (8) MeshData_t3361835602 m_Items[1]; public: inline MeshData_t3361835602 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline MeshData_t3361835602 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, MeshData_t3361835602 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline MeshData_t3361835602 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline MeshData_t3361835602 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, MeshData_t3361835602 value) { m_Items[index] = value; } }; // HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint[] struct ShapeComponentConstraintU5BU5D_t2060966206 : public RuntimeArray { public: ALIGN_FIELD (8) ShapeComponentConstraint_t4241953735 m_Items[1]; public: inline ShapeComponentConstraint_t4241953735 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ShapeComponentConstraint_t4241953735 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ShapeComponentConstraint_t4241953735 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline ShapeComponentConstraint_t4241953735 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ShapeComponentConstraint_t4241953735 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ShapeComponentConstraint_t4241953735 value) { m_Items[index] = value; } }; // HoloToolkit.Unity.TimerScheduler/TimerData[] struct TimerDataU5BU5D_t2187523415 : public RuntimeArray { public: ALIGN_FIELD (8) TimerData_t4056715490 m_Items[1]; public: inline TimerData_t4056715490 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TimerData_t4056715490 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, TimerData_t4056715490 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline TimerData_t4056715490 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TimerData_t4056715490 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TimerData_t4056715490 value) { m_Items[index] = value; } }; // HoloToolkit.Unity.TimerScheduler/TimerIdPair[] struct TimerIdPairU5BU5D_t552239964 : public RuntimeArray { public: ALIGN_FIELD (8) TimerIdPair_t921323905 m_Items[1]; public: inline TimerIdPair_t921323905 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TimerIdPair_t921323905 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, TimerIdPair_t921323905 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline TimerIdPair_t921323905 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TimerIdPair_t921323905 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TimerIdPair_t921323905 value) { m_Items[index] = value; } }; // HoloToolkit.Unity.UX.AppBar/ButtonTemplate[] struct ButtonTemplateU5BU5D_t1265442161 : public RuntimeArray { public: ALIGN_FIELD (8) ButtonTemplate_t3925965648 m_Items[1]; public: inline ButtonTemplate_t3925965648 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ButtonTemplate_t3925965648 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ButtonTemplate_t3925965648 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline ButtonTemplate_t3925965648 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ButtonTemplate_t3925965648 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ButtonTemplate_t3925965648 value) { m_Items[index] = value; } }; // Newtonsoft.Json.JsonPosition[] struct JsonPositionU5BU5D_t197937271 : public RuntimeArray { public: ALIGN_FIELD (8) JsonPosition_t2528027714 m_Items[1]; public: inline JsonPosition_t2528027714 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline JsonPosition_t2528027714 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, JsonPosition_t2528027714 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline JsonPosition_t2528027714 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline JsonPosition_t2528027714 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, JsonPosition_t2528027714 value) { m_Items[index] = value; } }; // System.Boolean[] struct BooleanU5BU5D_t2897418192 : public RuntimeArray { public: ALIGN_FIELD (8) bool m_Items[1]; public: inline bool GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline bool* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, bool value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline bool GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, bool value) { m_Items[index] = value; } }; // System.Byte[] struct ByteU5BU5D_t4116647657 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[] struct KeyValuePair_2U5BU5D_t2069718811 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t870930286 m_Items[1]; public: inline KeyValuePair_2_t870930286 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t870930286 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t870930286 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t870930286 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t870930286 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t870930286 value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>[] struct KeyValuePair_2U5BU5D_t1995959125 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t1048133692 m_Items[1]; public: inline KeyValuePair_2_t1048133692 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t1048133692 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t1048133692 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t1048133692 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t1048133692 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t1048133692 value) { m_Items[index] = value; } }; // System.DateTime[] struct DateTimeU5BU5D_t1184652292 : public RuntimeArray { public: ALIGN_FIELD (8) DateTime_t3738529785 m_Items[1]; public: inline DateTime_t3738529785 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DateTime_t3738529785 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, DateTime_t3738529785 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline DateTime_t3738529785 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DateTime_t3738529785 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DateTime_t3738529785 value) { m_Items[index] = value; } }; // System.DateTimeOffset[] struct DateTimeOffsetU5BU5D_t3473357058 : public RuntimeArray { public: ALIGN_FIELD (8) DateTimeOffset_t3229287507 m_Items[1]; public: inline DateTimeOffset_t3229287507 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DateTimeOffset_t3229287507 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, DateTimeOffset_t3229287507 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline DateTimeOffset_t3229287507 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DateTimeOffset_t3229287507 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DateTimeOffset_t3229287507 value) { m_Items[index] = value; } }; // System.Decimal[] struct DecimalU5BU5D_t1145110141 : public RuntimeArray { public: ALIGN_FIELD (8) Decimal_t2948259380 m_Items[1]; public: inline Decimal_t2948259380 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Decimal_t2948259380 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Decimal_t2948259380 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Decimal_t2948259380 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Decimal_t2948259380 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Decimal_t2948259380 value) { m_Items[index] = value; } }; // System.Double[] struct DoubleU5BU5D_t3413330114 : public RuntimeArray { public: ALIGN_FIELD (8) double m_Items[1]; public: inline double GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline double* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, double value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline double GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline double* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, double value) { m_Items[index] = value; } }; // System.Int16[] struct Int16U5BU5D_t3686840178 : public RuntimeArray { public: ALIGN_FIELD (8) int16_t m_Items[1]; public: inline int16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int16_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value) { m_Items[index] = value; } }; // System.Int32[] struct Int32U5BU5D_t385246372 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Int64[] struct Int64U5BU5D_t2559172825 : public RuntimeArray { public: ALIGN_FIELD (8) int64_t m_Items[1]; public: inline int64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value) { m_Items[index] = value; } }; // System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES[] struct Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057 : public RuntimeArray { public: ALIGN_FIELD (8) Win32_IP_ADAPTER_ADDRESSES_t3463526328 m_Items[1]; public: inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Win32_IP_ADAPTER_ADDRESSES_t3463526328 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Win32_IP_ADAPTER_ADDRESSES_t3463526328 value) { m_Items[index] = value; } }; // System.Runtime.InteropServices.GCHandle[] struct GCHandleU5BU5D_t35668618 : public RuntimeArray { public: ALIGN_FIELD (8) GCHandle_t3351438187 m_Items[1]; public: inline GCHandle_t3351438187 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline GCHandle_t3351438187 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, GCHandle_t3351438187 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline GCHandle_t3351438187 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline GCHandle_t3351438187 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, GCHandle_t3351438187 value) { m_Items[index] = value; } }; // System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken[] struct EventRegistrationTokenU5BU5D_t897718221 : public RuntimeArray { public: ALIGN_FIELD (8) EventRegistrationToken_t318890788 m_Items[1]; public: inline EventRegistrationToken_t318890788 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline EventRegistrationToken_t318890788 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, EventRegistrationToken_t318890788 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline EventRegistrationToken_t318890788 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline EventRegistrationToken_t318890788 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, EventRegistrationToken_t318890788 value) { m_Items[index] = value; } }; // System.SByte[] struct SByteU5BU5D_t2651576203 : public RuntimeArray { public: ALIGN_FIELD (8) int8_t m_Items[1]; public: inline int8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int8_t value) { m_Items[index] = value; } }; // System.Single[] struct SingleU5BU5D_t1444911251 : public RuntimeArray { public: ALIGN_FIELD (8) float m_Items[1]; public: inline float GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline float* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, float value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline float GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline float* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, float value) { m_Items[index] = value; } }; // System.Text.RegularExpressions.RegexOptions[] struct RegexOptionsU5BU5D_t160358170 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.TimeSpan[] struct TimeSpanU5BU5D_t4291357516 : public RuntimeArray { public: ALIGN_FIELD (8) TimeSpan_t881159249 m_Items[1]; public: inline TimeSpan_t881159249 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TimeSpan_t881159249 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, TimeSpan_t881159249 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline TimeSpan_t881159249 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TimeSpan_t881159249 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TimeSpan_t881159249 value) { m_Items[index] = value; } }; // System.UInt16[] struct UInt16U5BU5D_t3326319531 : public RuntimeArray { public: ALIGN_FIELD (8) uint16_t m_Items[1]; public: inline uint16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint16_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value) { m_Items[index] = value; } }; // System.UInt32[] struct UInt32U5BU5D_t2770800703 : public RuntimeArray { public: ALIGN_FIELD (8) uint32_t m_Items[1]; public: inline uint32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value) { m_Items[index] = value; } }; // System.UInt64[] struct UInt64U5BU5D_t1659327989 : public RuntimeArray { public: ALIGN_FIELD (8) uint64_t m_Items[1]; public: inline uint64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value) { m_Items[index] = value; } }; // System.Xml.Schema.RangePositionInfo[] struct RangePositionInfoU5BU5D_t242328633 : public RuntimeArray { public: ALIGN_FIELD (8) RangePositionInfo_t589968936 m_Items[1]; public: inline RangePositionInfo_t589968936 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RangePositionInfo_t589968936 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RangePositionInfo_t589968936 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline RangePositionInfo_t589968936 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RangePositionInfo_t589968936 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RangePositionInfo_t589968936 value) { m_Items[index] = value; } }; // System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry[] struct XmlSchemaObjectEntryU5BU5D_t1655208330 : public RuntimeArray { public: ALIGN_FIELD (8) XmlSchemaObjectEntry_t3344676971 m_Items[1]; public: inline XmlSchemaObjectEntry_t3344676971 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XmlSchemaObjectEntry_t3344676971 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, XmlSchemaObjectEntry_t3344676971 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline XmlSchemaObjectEntry_t3344676971 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XmlSchemaObjectEntry_t3344676971 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XmlSchemaObjectEntry_t3344676971 value) { m_Items[index] = value; } }; // UnityEngine.BeforeRenderHelper/OrderBlock[] struct OrderBlockU5BU5D_t2389202590 : public RuntimeArray { public: ALIGN_FIELD (8) OrderBlock_t1585977831 m_Items[1]; public: inline OrderBlock_t1585977831 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline OrderBlock_t1585977831 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, OrderBlock_t1585977831 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline OrderBlock_t1585977831 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline OrderBlock_t1585977831 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, OrderBlock_t1585977831 value) { m_Items[index] = value; } }; // UnityEngine.Color32[] struct Color32U5BU5D_t3850468773 : public RuntimeArray { public: ALIGN_FIELD (8) Color32_t2600501292 m_Items[1]; public: inline Color32_t2600501292 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Color32_t2600501292 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Color32_t2600501292 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Color32_t2600501292 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Color32_t2600501292 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Color32_t2600501292 value) { m_Items[index] = value; } }; // UnityEngine.Color[] struct ColorU5BU5D_t941916413 : public RuntimeArray { public: ALIGN_FIELD (8) Color_t2555686324 m_Items[1]; public: inline Color_t2555686324 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Color_t2555686324 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Color_t2555686324 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Color_t2555686324 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Color_t2555686324 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Color_t2555686324 value) { m_Items[index] = value; } }; // UnityEngine.EventSystems.RaycastResult[] struct RaycastResultU5BU5D_t1128832444 : public RuntimeArray { public: ALIGN_FIELD (8) RaycastResult_t3360306849 m_Items[1]; public: inline RaycastResult_t3360306849 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RaycastResult_t3360306849 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RaycastResult_t3360306849 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline RaycastResult_t3360306849 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RaycastResult_t3360306849 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastResult_t3360306849 value) { m_Items[index] = value; } }; // UnityEngine.UICharInfo[] struct UICharInfoU5BU5D_t928762055 : public RuntimeArray { public: ALIGN_FIELD (8) UICharInfo_t75501106 m_Items[1]; public: inline UICharInfo_t75501106 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline UICharInfo_t75501106 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, UICharInfo_t75501106 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline UICharInfo_t75501106 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline UICharInfo_t75501106 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, UICharInfo_t75501106 value) { m_Items[index] = value; } }; // UnityEngine.UILineInfo[] struct UILineInfoU5BU5D_t1655937503 : public RuntimeArray { public: ALIGN_FIELD (8) UILineInfo_t4195266810 m_Items[1]; public: inline UILineInfo_t4195266810 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline UILineInfo_t4195266810 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, UILineInfo_t4195266810 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline UILineInfo_t4195266810 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline UILineInfo_t4195266810 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, UILineInfo_t4195266810 value) { m_Items[index] = value; } }; // UnityEngine.UIVertex[] struct UIVertexU5BU5D_t1981460040 : public RuntimeArray { public: ALIGN_FIELD (8) UIVertex_t4057497605 m_Items[1]; public: inline UIVertex_t4057497605 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline UIVertex_t4057497605 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, UIVertex_t4057497605 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline UIVertex_t4057497605 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline UIVertex_t4057497605 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, UIVertex_t4057497605 value) { m_Items[index] = value; } }; // UnityEngine.Vector2[] struct Vector2U5BU5D_t1457185986 : public RuntimeArray { public: ALIGN_FIELD (8) Vector2_t2156229523 m_Items[1]; public: inline Vector2_t2156229523 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Vector2_t2156229523 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Vector2_t2156229523 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Vector2_t2156229523 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Vector2_t2156229523 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2_t2156229523 value) { m_Items[index] = value; } }; // UnityEngine.Vector3[] struct Vector3U5BU5D_t1718750761 : public RuntimeArray { public: ALIGN_FIELD (8) Vector3_t3722313464 m_Items[1]; public: inline Vector3_t3722313464 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Vector3_t3722313464 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Vector3_t3722313464 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Vector3_t3722313464 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Vector3_t3722313464 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_t3722313464 value) { m_Items[index] = value; } }; // UnityEngine.Vector4[] struct Vector4U5BU5D_t934056436 : public RuntimeArray { public: ALIGN_FIELD (8) Vector4_t3319028937 m_Items[1]; public: inline Vector4_t3319028937 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Vector4_t3319028937 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Vector4_t3319028937 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Vector4_t3319028937 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Vector4_t3319028937 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Vector4_t3319028937 value) { m_Items[index] = value; } }; // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m932279514_gshared (KeyValuePair_2_t4237331251 * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Key() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m2635782095_gshared (KeyValuePair_2_t4237331251 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m1804680087_gshared (KeyValuePair_2_t4237331251 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m65692449_gshared (KeyValuePair_2_t4237331251 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m2118224448_gshared (KeyValuePair_2_t71524366 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m1839753989_gshared (KeyValuePair_2_t71524366 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m3495598764_gshared (KeyValuePair_2_t71524366 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m1238786018_gshared (KeyValuePair_2_t71524366 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m2056996813_gshared (KeyValuePair_2_t2245450819 * __this, int64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Key_m635992374_gshared (KeyValuePair_2_t2245450819 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m392474074_gshared (KeyValuePair_2_t2245450819 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m3013572783_gshared (KeyValuePair_2_t2245450819 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m3967312370_gshared (KeyValuePair_2_t126004427 * __this, TypedConstant_t714020897 ___key0, int32_t ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::get_Key() extern "C" IL2CPP_METHOD_ATTR TypedConstant_t714020897 KeyValuePair_2_get_Key_m2623710737_gshared (KeyValuePair_2_t126004427 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m3418326370_gshared (KeyValuePair_2_t126004427 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m1045680960_gshared (KeyValuePair_2_t126004427 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m51719720_gshared (KeyValuePair_2_t255164838 * __this, TypedConstant_t714020897 ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR TypedConstant_t714020897 KeyValuePair_2_get_Key_m3539669632_gshared (KeyValuePair_2_t255164838 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1745831214_gshared (KeyValuePair_2_t255164838 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m3201086771_gshared (KeyValuePair_2_t255164838 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m540400546_gshared (KeyValuePair_2_t3422187268 * __this, RuntimeObject * ___key0, uint32_t ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m3802237574_gshared (KeyValuePair_2_t3422187268 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::get_Value() extern "C" IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Value_m3608670336_gshared (KeyValuePair_2_t3422187268 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m1093220260_gshared (KeyValuePair_2_t3422187268 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m1860763818_gshared (KeyValuePair_2_t4085865031 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m2837550314_gshared (KeyValuePair_2_t4085865031 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m1430811576_gshared (KeyValuePair_2_t4085865031 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m490808492_gshared (KeyValuePair_2_t4085865031 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m198529365_gshared (KeyValuePair_2_t249061059 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m3093971998_gshared (KeyValuePair_2_t249061059 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m551864407_gshared (KeyValuePair_2_t249061059 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m675279023_gshared (KeyValuePair_2_t249061059 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m1927988026_gshared (KeyValuePair_2_t2255362622 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m3745423128_gshared (KeyValuePair_2_t2255362622 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m963734252_gshared (KeyValuePair_2_t2255362622 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m1774591758_gshared (KeyValuePair_2_t2255362622 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m23191374_gshared (KeyValuePair_2_t3842366416 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m2106922848_gshared (KeyValuePair_2_t3842366416 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Value() extern "C" IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m1669764045_gshared (KeyValuePair_2_t3842366416 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m2480962023_gshared (KeyValuePair_2_t3842366416 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m880186442_gshared (KeyValuePair_2_t2401056908 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m1055012466_gshared (KeyValuePair_2_t2401056908 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m1308554439_gshared (KeyValuePair_2_t2401056908 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m4231614106_gshared (KeyValuePair_2_t2401056908 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m3716993270_gshared (KeyValuePair_2_t2730400744 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m4110334143_gshared (KeyValuePair_2_t2730400744 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m3734748706_gshared (KeyValuePair_2_t2730400744 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m3021632350_gshared (KeyValuePair_2_t2730400744 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m727165395_gshared (KeyValuePair_2_t2530217319 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m4184817181_gshared (KeyValuePair_2_t2530217319 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1132502692_gshared (KeyValuePair_2_t2530217319 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m510648957_gshared (KeyValuePair_2_t2530217319 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m877231462_gshared (KeyValuePair_2_t3174081962 * __this, RuntimeObject * ___key0, ResourceLocator_t3723970807 ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m1914465694_gshared (KeyValuePair_2_t3174081962 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() extern "C" IL2CPP_METHOD_ATTR ResourceLocator_t3723970807 KeyValuePair_2_get_Value_m1048976747_gshared (KeyValuePair_2_t3174081962 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m225390547_gshared (KeyValuePair_2_t3174081962 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m52543417_gshared (KeyValuePair_2_t2738617651 * __this, RuntimeObject * ___key0, EventRegistrationTokenList_t3288506496 ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m312793161_gshared (KeyValuePair_2_t2738617651 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Value() extern "C" IL2CPP_METHOD_ATTR EventRegistrationTokenList_t3288506496 KeyValuePair_2_get_Value_m80964760_gshared (KeyValuePair_2_t2738617651 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m80164506_gshared (KeyValuePair_2_t2738617651 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m1054831967_gshared (KeyValuePair_2_t4253942476 * __this, EventCacheKey_t3133620722 ___key0, EventCacheEntry_t156445199 ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::get_Key() extern "C" IL2CPP_METHOD_ATTR EventCacheKey_t3133620722 KeyValuePair_2_get_Key_m1029407593_gshared (KeyValuePair_2_t4253942476 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::get_Value() extern "C" IL2CPP_METHOD_ATTR EventCacheEntry_t156445199 KeyValuePair_2_get_Value_m497513548_gshared (KeyValuePair_2_t4253942476 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m3941865661_gshared (KeyValuePair_2_t4253942476 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m2398257575_gshared (KeyValuePair_2_t1297193679 * __this, uint32_t ___key0, XboxControllerData_t1920221146 ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::get_Key() extern "C" IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m784662759_gshared (KeyValuePair_2_t1297193679 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::get_Value() extern "C" IL2CPP_METHOD_ATTR XboxControllerData_t1920221146 KeyValuePair_2_get_Value_m3814993531_gshared (KeyValuePair_2_t1297193679 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m601171314_gshared (KeyValuePair_2_t1297193679 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m1509212969_gshared (KeyValuePair_2_t2457078697 * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m1662296104_gshared (KeyValuePair_2_t2457078697 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1484005982_gshared (KeyValuePair_2_t2457078697 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m816416158_gshared (KeyValuePair_2_t2457078697 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m2104774478_gshared (KeyValuePair_2_t3099285997 * __this, uint32_t ___key0, Vector3_t3722313464 ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::get_Key() extern "C" IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m3603522588_gshared (KeyValuePair_2_t3099285997 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::get_Value() extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 KeyValuePair_2_get_Value_m2531951264_gshared (KeyValuePair_2_t3099285997 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m2956581269_gshared (KeyValuePair_2_t3099285997 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m3305952680_gshared (KeyValuePair_2_t1405028755 * __this, Vector3_t3722313464 ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 KeyValuePair_2_get_Key_m310738991_gshared (KeyValuePair_2_t1405028755 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m585129253_gshared (KeyValuePair_2_t1405028755 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m1525119967_gshared (KeyValuePair_2_t1405028755 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m3554833245_gshared (KeyValuePair_2_t4120547 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m1795574548_gshared (KeyValuePair_2_t4120547 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1627240798_gshared (KeyValuePair_2_t4120547 * __this, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m3318177100_gshared (KeyValuePair_2_t4120547 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m2646351267_gshared (LargeArrayBuilder_1_t3544813491 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::.ctor(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m2700000537_gshared (LargeArrayBuilder_1_t3544813491 * __this, bool ___initialize0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Char>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_get_Count_m498408020_gshared (LargeArrayBuilder_1_t3544813491 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::AllocateBuffer() extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AllocateBuffer_m3260867912_gshared (LargeArrayBuilder_1_t3544813491 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::Add(T) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_Add_m982046608_gshared (LargeArrayBuilder_1_t3544813491 * __this, Il2CppChar ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AddRange_m3208469990_gshared (LargeArrayBuilder_1_t3544813491 * __this, RuntimeObject* ___items0, const RuntimeMethod* method); // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Char>::GetBuffer(System.Int32) extern "C" IL2CPP_METHOD_ATTR CharU5BU5D_t3528271667* LargeArrayBuilder_1_GetBuffer_m4278476894_gshared (LargeArrayBuilder_1_t3544813491 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::CopyTo(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_CopyTo_m3784363977_gshared (LargeArrayBuilder_1_t3544813491 * __this, CharU5BU5D_t3528271667* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method); // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Char>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3128527264_gshared (LargeArrayBuilder_1_t3544813491 * __this, CopyPosition_t2993389481 ___position0, CharU5BU5D_t3528271667* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.ArrayBuilder`1<System.Object>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t ArrayBuilder_1_get_Count_m3431094901_gshared (ArrayBuilder_1_t68235548 * __this, const RuntimeMethod* method); // T System.Collections.Generic.ArrayBuilder`1<System.Object>::get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * ArrayBuilder_1_get_Item_m2217381838_gshared (ArrayBuilder_1_t68235548 * __this, int32_t p0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Char>::TryMove(T[]&) extern "C" IL2CPP_METHOD_ATTR bool LargeArrayBuilder_1_TryMove_m2654736575_gshared (LargeArrayBuilder_1_t3544813491 * __this, CharU5BU5D_t3528271667** p0, const RuntimeMethod* method); // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Char>::ToArray() extern "C" IL2CPP_METHOD_ATTR CharU5BU5D_t3528271667* LargeArrayBuilder_1_ToArray_m1423820966_gshared (LargeArrayBuilder_1_t3544813491 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.ArrayBuilder`1<System.Object>::Add(T) extern "C" IL2CPP_METHOD_ATTR void ArrayBuilder_1_Add_m1469477416_gshared (ArrayBuilder_1_t68235548 * __this, RuntimeObject * p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m4215145640_gshared (LargeArrayBuilder_1_t3034328659 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::.ctor(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m3992711902_gshared (LargeArrayBuilder_1_t3034328659 * __this, bool ___initialize0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_get_Count_m3670631437_gshared (LargeArrayBuilder_1_t3034328659 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::AllocateBuffer() extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AllocateBuffer_m2360349896_gshared (LargeArrayBuilder_1_t3034328659 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::Add(T) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_Add_m3654651254_gshared (LargeArrayBuilder_1_t3034328659 * __this, DictionaryEntry_t3123975638 ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AddRange_m522528651_gshared (LargeArrayBuilder_1_t3034328659 * __this, RuntimeObject* ___items0, const RuntimeMethod* method); // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::GetBuffer(System.Int32) extern "C" IL2CPP_METHOD_ATTR DictionaryEntryU5BU5D_t4217117203* LargeArrayBuilder_1_GetBuffer_m459509375_gshared (LargeArrayBuilder_1_t3034328659 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::CopyTo(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_CopyTo_m4153360821_gshared (LargeArrayBuilder_1_t3034328659 * __this, DictionaryEntryU5BU5D_t4217117203* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method); // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m27690272_gshared (LargeArrayBuilder_1_t3034328659 * __this, CopyPosition_t2993389481 ___position0, DictionaryEntryU5BU5D_t4217117203* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::TryMove(T[]&) extern "C" IL2CPP_METHOD_ATTR bool LargeArrayBuilder_1_TryMove_m1874375871_gshared (LargeArrayBuilder_1_t3034328659 * __this, DictionaryEntryU5BU5D_t4217117203** p0, const RuntimeMethod* method); // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::ToArray() extern "C" IL2CPP_METHOD_ATTR DictionaryEntryU5BU5D_t4217117203* LargeArrayBuilder_1_ToArray_m880301710_gshared (LargeArrayBuilder_1_t3034328659 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m4108096359_gshared (LargeArrayBuilder_1_t2440570340 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m2226121364_gshared (LargeArrayBuilder_1_t2440570340 * __this, bool ___initialize0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_get_Count_m2608056476_gshared (LargeArrayBuilder_1_t2440570340 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::AllocateBuffer() extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AllocateBuffer_m2042007487_gshared (LargeArrayBuilder_1_t2440570340 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Add(T) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_Add_m982335036_gshared (LargeArrayBuilder_1_t2440570340 * __this, KeyValuePair_2_t2530217319 ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AddRange_m271381180_gshared (LargeArrayBuilder_1_t2440570340 * __this, RuntimeObject* ___items0, const RuntimeMethod* method); // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetBuffer(System.Int32) extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t118269214* LargeArrayBuilder_1_GetBuffer_m286061398_gshared (LargeArrayBuilder_1_t2440570340 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::CopyTo(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_CopyTo_m3539229272_gshared (LargeArrayBuilder_1_t2440570340 * __this, KeyValuePair_2U5BU5D_t118269214* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method); // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3291371982_gshared (LargeArrayBuilder_1_t2440570340 * __this, CopyPosition_t2993389481 ___position0, KeyValuePair_2U5BU5D_t118269214* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryMove(T[]&) extern "C" IL2CPP_METHOD_ATTR bool LargeArrayBuilder_1_TryMove_m3030092322_gshared (LargeArrayBuilder_1_t2440570340 * __this, KeyValuePair_2U5BU5D_t118269214** p0, const RuntimeMethod* method); // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray() extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t118269214* LargeArrayBuilder_1_ToArray_m3030376891_gshared (LargeArrayBuilder_1_t2440570340 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m193325792_gshared (LargeArrayBuilder_1_t2990459185 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::.ctor(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m104969882_gshared (LargeArrayBuilder_1_t2990459185 * __this, bool ___initialize0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Object>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_get_Count_m4249061733_gshared (LargeArrayBuilder_1_t2990459185 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::AllocateBuffer() extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AllocateBuffer_m2677938218_gshared (LargeArrayBuilder_1_t2990459185 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::Add(T) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_Add_m3802412589_gshared (LargeArrayBuilder_1_t2990459185 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AddRange_m1159522811_gshared (LargeArrayBuilder_1_t2990459185 * __this, RuntimeObject* ___items0, const RuntimeMethod* method); // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Object>::GetBuffer(System.Int32) extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* LargeArrayBuilder_1_GetBuffer_m3998549007_gshared (LargeArrayBuilder_1_t2990459185 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::CopyTo(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_CopyTo_m1253522307_gshared (LargeArrayBuilder_1_t2990459185 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method); // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Object>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3670488443_gshared (LargeArrayBuilder_1_t2990459185 * __this, CopyPosition_t2993389481 ___position0, ObjectU5BU5D_t2843939325* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Object>::TryMove(T[]&) extern "C" IL2CPP_METHOD_ATTR bool LargeArrayBuilder_1_TryMove_m950017932_gshared (LargeArrayBuilder_1_t2990459185 * __this, ObjectU5BU5D_t2843939325** p0, const RuntimeMethod* method); // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Object>::ToArray() extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* LargeArrayBuilder_1_ToArray_m390648332_gshared (LargeArrayBuilder_1_t2990459185 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m2251031111_gshared (LargeArrayBuilder_1_t3696204514 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::.ctor(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m2621609802_gshared (LargeArrayBuilder_1_t3696204514 * __this, bool ___initialize0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_get_Count_m260774496_gshared (LargeArrayBuilder_1_t3696204514 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::AllocateBuffer() extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AllocateBuffer_m2894186751_gshared (LargeArrayBuilder_1_t3696204514 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::Add(T) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_Add_m3560339651_gshared (LargeArrayBuilder_1_t3696204514 * __this, Ray_t3785851493 ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AddRange_m3454702397_gshared (LargeArrayBuilder_1_t3696204514 * __this, RuntimeObject* ___items0, const RuntimeMethod* method); // T[] System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::GetBuffer(System.Int32) extern "C" IL2CPP_METHOD_ATTR RayU5BU5D_t1836217960* LargeArrayBuilder_1_GetBuffer_m1764034806_gshared (LargeArrayBuilder_1_t3696204514 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::CopyTo(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_CopyTo_m12527799_gshared (LargeArrayBuilder_1_t3696204514 * __this, RayU5BU5D_t1836217960* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method); // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3393164995_gshared (LargeArrayBuilder_1_t3696204514 * __this, CopyPosition_t2993389481 ___position0, RayU5BU5D_t1836217960* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::TryMove(T[]&) extern "C" IL2CPP_METHOD_ATTR bool LargeArrayBuilder_1_TryMove_m1622191087_gshared (LargeArrayBuilder_1_t3696204514 * __this, RayU5BU5D_t1836217960** p0, const RuntimeMethod* method); // T[] System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::ToArray() extern "C" IL2CPP_METHOD_ATTR RayU5BU5D_t1836217960* LargeArrayBuilder_1_ToArray_m4051514523_gshared (LargeArrayBuilder_1_t3696204514 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.LinkedList`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2504641326_gshared (Enumerator_t139379724 * __this, LinkedList_1_t1919752173 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m351918184_gshared (Enumerator_t139379724 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method); // T System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m2579293505_gshared (Enumerator_t139379724 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3484854280_gshared (Enumerator_t139379724 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m880141662_gshared (Enumerator_t139379724 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2550940120_gshared (Enumerator_t139379724 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2375640141_gshared (Enumerator_t139379724 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m577802395_gshared (Enumerator_t139379724 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method); // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3768315530_gshared (Enumerator_t139379724 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1650153849_gshared (Enumerator_t828654543 * __this, List_1_t3234377962 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3775550104_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1286425451_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4187863536_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::get_Current() extern "C" IL2CPP_METHOD_ATTR PrefabToDataModel_t1762303220 Enumerator_get_Current_m2807483713_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3718120238_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3700310574_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3121224682_gshared (Enumerator_t3042159799 * __this, List_1_t1152915922 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1268664822_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3847883246_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m947041767_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::get_Current() extern "C" IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m2788039444_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2498886067_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m352654233_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3137077068_gshared (Enumerator_t3461346361 * __this, List_1_t1572102484 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2830230938_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1508119060_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2572614967_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::get_Current() extern "C" IL2CPP_METHOD_ATTR InputSourceInfo_t100027742 Enumerator_get_Current_m2904821522_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1830420905_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1847426218_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m574521130_gshared (Enumerator_t576456821 * __this, List_1_t2982180240 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1187956102_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1217953709_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2014372271_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::get_Current() extern "C" IL2CPP_METHOD_ATTR KeyCodeEventPair_t1510105498 Enumerator_get_Current_m1376590070_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m925648047_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1795417095_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2470515090_gshared (Enumerator_t1074336339 * __this, List_1_t3480059758 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1120213402_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m40727075_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3002774773_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::get_Current() extern "C" IL2CPP_METHOD_ATTR RaycastResultHelper_t2007985016 Enumerator_get_Current_m2291764410_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2043830421_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2172564090_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m394146094_gshared (Enumerator_t3180766674 * __this, List_1_t1291522797 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4010342378_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2144276695_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1736481079_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::get_Current() extern "C" IL2CPP_METHOD_ATTR MeshData_t4114415351 Enumerator_get_Current_m1298642168_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3842930208_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m976222382_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3682883020_gshared (Enumerator_t1679591641 * __this, List_1_t4085315060 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2901420088_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2588025538_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m773977532_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::get_Current() extern "C" IL2CPP_METHOD_ATTR SurfaceObject_t2613240318 Enumerator_get_Current_m1193228541_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2821435308_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2907431841_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2866993495_gshared (Enumerator_t2428186925 * __this, List_1_t538943048 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m988267940_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m397533469_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3778079963_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::get_Current() extern "C" IL2CPP_METHOD_ATTR MeshData_t3361835602 Enumerator_get_Current_m3122840142_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2353828253_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3709599164_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1945446707_gshared (Enumerator_t3308305058 * __this, List_1_t1419061181 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2651581068_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m519564709_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1278747804_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::get_Current() extern "C" IL2CPP_METHOD_ATTR ShapeComponentConstraint_t4241953735 Enumerator_get_Current_m3907500998_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m666374076_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3419802080_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3594547698_gshared (Enumerator_t3123066813 * __this, List_1_t1233822936 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1314063771_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m576964629_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1132334620_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::get_Current() extern "C" IL2CPP_METHOD_ATTR TimerData_t4056715490 Enumerator_get_Current_m3905697669_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4283618588_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4053191751_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1365743726_gshared (Enumerator_t4282642524 * __this, List_1_t2393398647 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2008828017_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m373526289_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4040824200_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::get_Current() extern "C" IL2CPP_METHOD_ATTR TimerIdPair_t921323905 Enumerator_get_Current_m2477026367_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m25666464_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3006743742_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2172015230_gshared (Enumerator_t2992316971 * __this, List_1_t1103073094 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3714308917_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2064301628_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3302057439_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::get_Current() extern "C" IL2CPP_METHOD_ATTR ButtonTemplate_t3925965648 Enumerator_get_Current_m4115079866_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1271664753_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2424584660_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m431339869_gshared (Enumerator_t1594379037 * __this, List_1_t4000102456 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3583473203_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4051738861_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m129038534_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::get_Current() extern "C" IL2CPP_METHOD_ATTR JsonPosition_t2528027714 Enumerator_get_Current_m3978296017_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m563271522_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3019374793_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2051462163_gshared (Enumerator_t3458606584 * __this, List_1_t1569362707 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3633742184_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2668710515_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m423288_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Boolean>::get_Current() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m2305210644_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2237476582_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1564381721_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3246934289_gshared (Enumerator_t200647699 * __this, List_1_t2606371118 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1812819993_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1012097514_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2041610666_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Byte>::get_Current() extern "C" IL2CPP_METHOD_ATTR uint8_t Enumerator_get_Current_m3044490399_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4168020981_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3527407980_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2263237050_gshared (Enumerator_t2700811793 * __this, List_1_t811567916 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3961787728_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3819182280_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1940664149_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Char>::get_Current() extern "C" IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m1436440636_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1846615603_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2394182378_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m298503667_gshared (Enumerator_t2190326961 * __this, List_1_t301083084 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2145973982_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m870041834_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2875527037_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::get_Current() extern "C" IL2CPP_METHOD_ATTR DictionaryEntry_t3123975638 Enumerator_get_Current_m3966199253_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m429756051_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2701100861_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2204179911_gshared (Enumerator_t4232248905 * __this, List_1_t2343005028 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m648910407_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2415817588_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m603919753_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current() extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t870930286 Enumerator_get_Current_m1408947006_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2758235416_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2636500527_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3076576538_gshared (Enumerator_t114485015 * __this, List_1_t2520208434 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m533961586_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3066504888_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m354715473_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::get_Current() extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t1048133692 Enumerator_get_Current_m3565126395_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m505121024_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m40414700_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3755364950_gshared (Enumerator_t1596568642 * __this, List_1_t4002292061 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1095364494_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m168524002_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1372561486_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t2530217319 Enumerator_get_Current_m355309478_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m793370193_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m541923898_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m138712765_gshared (Enumerator_t2804881108 * __this, List_1_t915637231 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m551339255_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1293148454_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1063715261_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.DateTime>::get_Current() extern "C" IL2CPP_METHOD_ATTR DateTime_t3738529785 Enumerator_get_Current_m3577653834_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1335446329_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3925432481_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m773886775_gshared (Enumerator_t2295638830 * __this, List_1_t406394953 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m310444287_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4283024577_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2486915160_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::get_Current() extern "C" IL2CPP_METHOD_ATTR DateTimeOffset_t3229287507 Enumerator_get_Current_m364159929_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2404343349_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1398371920_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3045324249_gshared (Enumerator_t2014610703 * __this, List_1_t125366826 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3605374108_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4035682446_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3070898284_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Decimal>::get_Current() extern "C" IL2CPP_METHOD_ATTR Decimal_t2948259380 Enumerator_get_Current_m3186922302_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3691286518_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1480554046_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1409034699_gshared (Enumerator_t3955983982 * __this, List_1_t2066740105 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3437595106_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3153309434_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3399714144_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Double>::get_Current() extern "C" IL2CPP_METHOD_ATTR double Enumerator_get_Current_m544454941_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m773711846_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1095275694_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3160081948_gshared (Enumerator_t1619171710 * __this, List_1_t4024895129 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m499370896_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1925719897_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m725592978_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Int16>::get_Current() extern "C" IL2CPP_METHOD_ATTR int16_t Enumerator_get_Current_m4284377350_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m35820292_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3106565210_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m247851533_gshared (Enumerator_t2017297076 * __this, List_1_t128053199 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m222348240_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2666135731_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1050804954_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current() extern "C" IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m2612064142_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m323862414_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m502339360_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m14605281_gshared (Enumerator_t2802918627 * __this, List_1_t913674750 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m356810930_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3832676127_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3870894191_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Int64>::get_Current() extern "C" IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_m2349305336_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1694256383_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3387745361_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2636919835_gshared (Enumerator_t2529877651 * __this, List_1_t640633774 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m895569904_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1987352430_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3352869030_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::get_Current() extern "C" IL2CPP_METHOD_ATTR Win32_IP_ADAPTER_ADDRESSES_t3463526328 Enumerator_get_Current_m2730273305_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2195889862_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3522081619_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3170385166_gshared (Enumerator_t2146457487 * __this, List_1_t257213610 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3007748546_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1088973935_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2142368520_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m337713592_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3681948262_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m959124362_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m4140484736_gshared (Enumerator_t2417789510 * __this, List_1_t528545633 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4139153022_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3052879222_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3073970556_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::get_Current() extern "C" IL2CPP_METHOD_ATTR GCHandle_t3351438187 Enumerator_get_Current_m1124086041_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1523025272_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m446259503_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1048599061_gshared (Enumerator_t3680209407 * __this, List_1_t1790965530 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1566401219_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1813959100_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3964309034_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::get_Current() extern "C" IL2CPP_METHOD_ATTR EventRegistrationToken_t318890788 Enumerator_get_Current_m2635610218_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m704675993_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2509888677_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.SByte>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1721949535_gshared (Enumerator_t735928985 * __this, List_1_t3141652404 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.SByte>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1015340444_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.SByte>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3925873929_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.SByte>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3124826189_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.SByte>::get_Current() extern "C" IL2CPP_METHOD_ATTR int8_t Enumerator_get_Current_m3149433407_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.SByte>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3493161884_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.SByte>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1118301326_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Single>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m113707524_gshared (Enumerator_t463618097 * __this, List_1_t2869341516 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Single>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3204468515_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Single>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2844325332_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Single>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3275886745_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Single>::get_Current() extern "C" IL2CPP_METHOD_ATTR float Enumerator_get_Current_m1091865704_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Single>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m495085386_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Single>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3951708793_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m671055880_gshared (Enumerator_t3454164214 * __this, List_1_t1564920337 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3062128061_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m441445789_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2437531857_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::get_Current() extern "C" IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m2218931355_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3326453338_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1292847408_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3813920009_gshared (Enumerator_t4242477868 * __this, List_1_t2353233991 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1433828346_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2054936041_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1040687014_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::get_Current() extern "C" IL2CPP_METHOD_ATTR TimeSpan_t881159249 Enumerator_get_Current_m3187927150_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m843419409_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1473965589_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt16>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3545203873_gshared (Enumerator_t1244076281 * __this, List_1_t3649799700 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt16>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1708583765_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt16>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2356633608_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt16>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2784653748_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.UInt16>::get_Current() extern "C" IL2CPP_METHOD_ATTR uint16_t Enumerator_get_Current_m1796245645_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.UInt16>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1918550569_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt16>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1309703967_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt32>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m387368542_gshared (Enumerator_t1626413301 * __this, List_1_t4032136720 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt32>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2633022274_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt32>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1813529066_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt32>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2507767888_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.UInt32>::get_Current() extern "C" IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m4017011339_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.UInt32>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2555577014_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt32>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m408884937_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1300801339_gshared (Enumerator_t3200391415 * __this, List_1_t1311147538 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1751241548_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt64>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2351054707_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt64>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2923158868_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.UInt64>::get_Current() extern "C" IL2CPP_METHOD_ATTR uint64_t Enumerator_get_Current_m390703204_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.UInt64>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3660148336_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m439305236_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2777927842_gshared (Enumerator_t3951287555 * __this, List_1_t2062043678 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1986934951_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4222641326_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m114631604_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::get_Current() extern "C" IL2CPP_METHOD_ATTR RangePositionInfo_t589968936 Enumerator_get_Current_m2883538525_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3425090230_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2460063187_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m230384598_gshared (Enumerator_t2411028294 * __this, List_1_t521784417 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m38496378_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3991867153_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m560796504_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::get_Current() extern "C" IL2CPP_METHOD_ATTR XmlSchemaObjectEntry_t3344676971 Enumerator_get_Current_m4185603630_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m441102969_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3806771805_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m504791950_gshared (Enumerator_t652329154 * __this, List_1_t3058052573 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m786980821_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1820229297_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1177880931_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() extern "C" IL2CPP_METHOD_ATTR OrderBlock_t1585977831 Enumerator_get_Current_m2468920150_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m713684915_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m144072597_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m40451936_gshared (Enumerator_t1666852615 * __this, List_1_t4072576034 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m951715887_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3401010412_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2407049913_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::get_Current() extern "C" IL2CPP_METHOD_ATTR Color32_t2600501292 Enumerator_get_Current_m2808660251_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2339378585_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m361915779_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m145149276_gshared (Enumerator_t1622037647 * __this, List_1_t4027761066 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3373245193_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1185429068_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2916575364_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::get_Current() extern "C" IL2CPP_METHOD_ATTR Color_t2555686324 Enumerator_get_Current_m3890687419_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3498516727_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m685208550_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m378707842_gshared (Enumerator_t2426658172 * __this, List_1_t537414295 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2531396701_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m642466636_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1562562514_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::get_Current() extern "C" IL2CPP_METHOD_ATTR RaycastResult_t3360306849 Enumerator_get_Current_m530189328_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3405349194_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3057416204_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3395048702_gshared (Enumerator_t2852202816 * __this, List_1_t962958939 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2723595929_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2339712370_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1697727539_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::get_Current() extern "C" IL2CPP_METHOD_ATTR Ray_t3785851493 Enumerator_get_Current_m1622353285_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2446099888_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m226384956_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3431458266_gshared (Enumerator_t3436819725 * __this, List_1_t1547575848 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2173500881_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1486703814_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4018122760_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::get_Current() extern "C" IL2CPP_METHOD_ATTR UICharInfo_t75501106 Enumerator_get_Current_m535320420_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1643543708_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2915500989_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3300941814_gshared (Enumerator_t3261618133 * __this, List_1_t1372374256 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3432036959_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4217249474_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1446151600_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::get_Current() extern "C" IL2CPP_METHOD_ATTR UILineInfo_t4195266810 Enumerator_get_Current_m3382684163_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2713159350_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2747590098_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2029608698_gshared (Enumerator_t3123848928 * __this, List_1_t1234605051 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2498245804_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1917289061_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m29052175_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::get_Current() extern "C" IL2CPP_METHOD_ATTR UIVertex_t4057497605 Enumerator_get_Current_m2538493517_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3594024719_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2355925297_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3875432026_gshared (Enumerator_t1222580846 * __this, List_1_t3628304265 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2367629053_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3690106538_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2595190390_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::get_Current() extern "C" IL2CPP_METHOD_ATTR Vector2_t2156229523 Enumerator_get_Current_m1292806972_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1540440674_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m688431936_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3751722449_gshared (Enumerator_t2788664787 * __this, List_1_t899420910 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2367589020_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2248864500_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1345201779_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::get_Current() extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 Enumerator_get_Current_m3157770427_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m506196216_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2953002685_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1346728491_gshared (Enumerator_t2385380260 * __this, List_1_t496136383 * ___list0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2367983719_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m522511488_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m625797905_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::get_Current() extern "C" IL2CPP_METHOD_ATTR Vector4_t3319028937 Enumerator_get_Current_m1210327282_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m209407522_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3754523291_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m932279514 (KeyValuePair_2_t4237331251 * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t4237331251 *, int32_t, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m932279514_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Key() inline int32_t KeyValuePair_2_get_Key_m2635782095 (KeyValuePair_2_t4237331251 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t4237331251 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m2635782095_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Value() inline int32_t KeyValuePair_2_get_Value_m1804680087 (KeyValuePair_2_t4237331251 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t4237331251 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1804680087_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair::PairToString(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_PairToString_m4006145442 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::ToString() inline String_t* KeyValuePair_2_ToString_m65692449 (KeyValuePair_2_t4237331251 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t4237331251 *, const RuntimeMethod*))KeyValuePair_2_ToString_m65692449_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m2118224448 (KeyValuePair_2_t71524366 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t71524366 *, int32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m2118224448_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() inline int32_t KeyValuePair_2_get_Key_m1839753989 (KeyValuePair_2_t71524366 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t71524366 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m1839753989_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m3495598764 (KeyValuePair_2_t71524366 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t71524366 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m3495598764_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::ToString() inline String_t* KeyValuePair_2_ToString_m1238786018 (KeyValuePair_2_t71524366 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t71524366 *, const RuntimeMethod*))KeyValuePair_2_ToString_m1238786018_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m2056996813 (KeyValuePair_2_t2245450819 * __this, int64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t2245450819 *, int64_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m2056996813_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Key() inline int64_t KeyValuePair_2_get_Key_m635992374 (KeyValuePair_2_t2245450819 * __this, const RuntimeMethod* method) { return (( int64_t (*) (KeyValuePair_2_t2245450819 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m635992374_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m392474074 (KeyValuePair_2_t2245450819 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t2245450819 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m392474074_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::ToString() inline String_t* KeyValuePair_2_ToString_m3013572783 (KeyValuePair_2_t2245450819 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t2245450819 *, const RuntimeMethod*))KeyValuePair_2_ToString_m3013572783_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m3967312370 (KeyValuePair_2_t126004427 * __this, TypedConstant_t714020897 ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t126004427 *, TypedConstant_t714020897 , int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m3967312370_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::get_Key() inline TypedConstant_t714020897 KeyValuePair_2_get_Key_m2623710737 (KeyValuePair_2_t126004427 * __this, const RuntimeMethod* method) { return (( TypedConstant_t714020897 (*) (KeyValuePair_2_t126004427 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m2623710737_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::get_Value() inline int32_t KeyValuePair_2_get_Value_m3418326370 (KeyValuePair_2_t126004427 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t126004427 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m3418326370_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::ToString() inline String_t* KeyValuePair_2_ToString_m1045680960 (KeyValuePair_2_t126004427 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t126004427 *, const RuntimeMethod*))KeyValuePair_2_ToString_m1045680960_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m51719720 (KeyValuePair_2_t255164838 * __this, TypedConstant_t714020897 ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t255164838 *, TypedConstant_t714020897 , RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m51719720_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::get_Key() inline TypedConstant_t714020897 KeyValuePair_2_get_Key_m3539669632 (KeyValuePair_2_t255164838 * __this, const RuntimeMethod* method) { return (( TypedConstant_t714020897 (*) (KeyValuePair_2_t255164838 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m3539669632_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m1745831214 (KeyValuePair_2_t255164838 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t255164838 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1745831214_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::ToString() inline String_t* KeyValuePair_2_ToString_m3201086771 (KeyValuePair_2_t255164838 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t255164838 *, const RuntimeMethod*))KeyValuePair_2_ToString_m3201086771_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m540400546 (KeyValuePair_2_t3422187268 * __this, RuntimeObject * ___key0, uint32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t3422187268 *, RuntimeObject *, uint32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m540400546_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m3802237574 (KeyValuePair_2_t3422187268 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t3422187268 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m3802237574_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::get_Value() inline uint32_t KeyValuePair_2_get_Value_m3608670336 (KeyValuePair_2_t3422187268 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_t3422187268 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m3608670336_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::ToString() inline String_t* KeyValuePair_2_ToString_m1093220260 (KeyValuePair_2_t3422187268 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t3422187268 *, const RuntimeMethod*))KeyValuePair_2_ToString_m1093220260_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m1860763818 (KeyValuePair_2_t4085865031 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t4085865031 *, RuntimeObject *, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m1860763818_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m2837550314 (KeyValuePair_2_t4085865031 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t4085865031 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m2837550314_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::get_Value() inline int32_t KeyValuePair_2_get_Value_m1430811576 (KeyValuePair_2_t4085865031 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t4085865031 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1430811576_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::ToString() inline String_t* KeyValuePair_2_ToString_m490808492 (KeyValuePair_2_t4085865031 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t4085865031 *, const RuntimeMethod*))KeyValuePair_2_ToString_m490808492_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m198529365 (KeyValuePair_2_t249061059 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t249061059 *, RuntimeObject *, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m198529365_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m3093971998 (KeyValuePair_2_t249061059 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t249061059 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m3093971998_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::get_Value() inline int32_t KeyValuePair_2_get_Value_m551864407 (KeyValuePair_2_t249061059 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t249061059 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m551864407_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::ToString() inline String_t* KeyValuePair_2_ToString_m675279023 (KeyValuePair_2_t249061059 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t249061059 *, const RuntimeMethod*))KeyValuePair_2_ToString_m675279023_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m1927988026 (KeyValuePair_2_t2255362622 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t2255362622 *, RuntimeObject *, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m1927988026_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m3745423128 (KeyValuePair_2_t2255362622 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t2255362622 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m3745423128_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::get_Value() inline int32_t KeyValuePair_2_get_Value_m963734252 (KeyValuePair_2_t2255362622 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t2255362622 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m963734252_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::ToString() inline String_t* KeyValuePair_2_ToString_m1774591758 (KeyValuePair_2_t2255362622 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t2255362622 *, const RuntimeMethod*))KeyValuePair_2_ToString_m1774591758_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m23191374 (KeyValuePair_2_t3842366416 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t3842366416 *, RuntimeObject *, bool, const RuntimeMethod*))KeyValuePair_2__ctor_m23191374_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m2106922848 (KeyValuePair_2_t3842366416 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t3842366416 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m2106922848_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Value() inline bool KeyValuePair_2_get_Value_m1669764045 (KeyValuePair_2_t3842366416 * __this, const RuntimeMethod* method) { return (( bool (*) (KeyValuePair_2_t3842366416 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1669764045_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::ToString() inline String_t* KeyValuePair_2_ToString_m2480962023 (KeyValuePair_2_t3842366416 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t3842366416 *, const RuntimeMethod*))KeyValuePair_2_ToString_m2480962023_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m880186442 (KeyValuePair_2_t2401056908 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t2401056908 *, RuntimeObject *, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m880186442_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m1055012466 (KeyValuePair_2_t2401056908 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t2401056908 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m1055012466_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() inline int32_t KeyValuePair_2_get_Value_m1308554439 (KeyValuePair_2_t2401056908 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t2401056908 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1308554439_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::ToString() inline String_t* KeyValuePair_2_ToString_m4231614106 (KeyValuePair_2_t2401056908 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t2401056908 *, const RuntimeMethod*))KeyValuePair_2_ToString_m4231614106_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m3716993270 (KeyValuePair_2_t2730400744 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t2730400744 *, RuntimeObject *, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m3716993270_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m4110334143 (KeyValuePair_2_t2730400744 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t2730400744 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m4110334143_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::get_Value() inline int32_t KeyValuePair_2_get_Value_m3734748706 (KeyValuePair_2_t2730400744 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t2730400744 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m3734748706_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::ToString() inline String_t* KeyValuePair_2_ToString_m3021632350 (KeyValuePair_2_t2730400744 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t2730400744 *, const RuntimeMethod*))KeyValuePair_2_ToString_m3021632350_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m727165395 (KeyValuePair_2_t2530217319 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t2530217319 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m727165395_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m4184817181 (KeyValuePair_2_t2530217319 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t2530217319 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m4184817181_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m1132502692 (KeyValuePair_2_t2530217319 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t2530217319 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1132502692_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::ToString() inline String_t* KeyValuePair_2_ToString_m510648957 (KeyValuePair_2_t2530217319 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t2530217319 *, const RuntimeMethod*))KeyValuePair_2_ToString_m510648957_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m877231462 (KeyValuePair_2_t3174081962 * __this, RuntimeObject * ___key0, ResourceLocator_t3723970807 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t3174081962 *, RuntimeObject *, ResourceLocator_t3723970807 , const RuntimeMethod*))KeyValuePair_2__ctor_m877231462_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m1914465694 (KeyValuePair_2_t3174081962 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t3174081962 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m1914465694_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() inline ResourceLocator_t3723970807 KeyValuePair_2_get_Value_m1048976747 (KeyValuePair_2_t3174081962 * __this, const RuntimeMethod* method) { return (( ResourceLocator_t3723970807 (*) (KeyValuePair_2_t3174081962 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1048976747_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::ToString() inline String_t* KeyValuePair_2_ToString_m225390547 (KeyValuePair_2_t3174081962 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t3174081962 *, const RuntimeMethod*))KeyValuePair_2_ToString_m225390547_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m52543417 (KeyValuePair_2_t2738617651 * __this, RuntimeObject * ___key0, EventRegistrationTokenList_t3288506496 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t2738617651 *, RuntimeObject *, EventRegistrationTokenList_t3288506496 , const RuntimeMethod*))KeyValuePair_2__ctor_m52543417_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m312793161 (KeyValuePair_2_t2738617651 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t2738617651 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m312793161_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Value() inline EventRegistrationTokenList_t3288506496 KeyValuePair_2_get_Value_m80964760 (KeyValuePair_2_t2738617651 * __this, const RuntimeMethod* method) { return (( EventRegistrationTokenList_t3288506496 (*) (KeyValuePair_2_t2738617651 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m80964760_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::ToString() inline String_t* KeyValuePair_2_ToString_m80164506 (KeyValuePair_2_t2738617651 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t2738617651 *, const RuntimeMethod*))KeyValuePair_2_ToString_m80164506_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m1054831967 (KeyValuePair_2_t4253942476 * __this, EventCacheKey_t3133620722 ___key0, EventCacheEntry_t156445199 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t4253942476 *, EventCacheKey_t3133620722 , EventCacheEntry_t156445199 , const RuntimeMethod*))KeyValuePair_2__ctor_m1054831967_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::get_Key() inline EventCacheKey_t3133620722 KeyValuePair_2_get_Key_m1029407593 (KeyValuePair_2_t4253942476 * __this, const RuntimeMethod* method) { return (( EventCacheKey_t3133620722 (*) (KeyValuePair_2_t4253942476 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m1029407593_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::get_Value() inline EventCacheEntry_t156445199 KeyValuePair_2_get_Value_m497513548 (KeyValuePair_2_t4253942476 * __this, const RuntimeMethod* method) { return (( EventCacheEntry_t156445199 (*) (KeyValuePair_2_t4253942476 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m497513548_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::ToString() inline String_t* KeyValuePair_2_ToString_m3941865661 (KeyValuePair_2_t4253942476 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t4253942476 *, const RuntimeMethod*))KeyValuePair_2_ToString_m3941865661_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m2398257575 (KeyValuePair_2_t1297193679 * __this, uint32_t ___key0, XboxControllerData_t1920221146 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t1297193679 *, uint32_t, XboxControllerData_t1920221146 , const RuntimeMethod*))KeyValuePair_2__ctor_m2398257575_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::get_Key() inline uint32_t KeyValuePair_2_get_Key_m784662759 (KeyValuePair_2_t1297193679 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_t1297193679 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m784662759_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::get_Value() inline XboxControllerData_t1920221146 KeyValuePair_2_get_Value_m3814993531 (KeyValuePair_2_t1297193679 * __this, const RuntimeMethod* method) { return (( XboxControllerData_t1920221146 (*) (KeyValuePair_2_t1297193679 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m3814993531_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::ToString() inline String_t* KeyValuePair_2_ToString_m601171314 (KeyValuePair_2_t1297193679 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t1297193679 *, const RuntimeMethod*))KeyValuePair_2_ToString_m601171314_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m1509212969 (KeyValuePair_2_t2457078697 * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t2457078697 *, uint32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m1509212969_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Key() inline uint32_t KeyValuePair_2_get_Key_m1662296104 (KeyValuePair_2_t2457078697 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_t2457078697 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m1662296104_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m1484005982 (KeyValuePair_2_t2457078697 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t2457078697 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1484005982_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::ToString() inline String_t* KeyValuePair_2_ToString_m816416158 (KeyValuePair_2_t2457078697 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t2457078697 *, const RuntimeMethod*))KeyValuePair_2_ToString_m816416158_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m2104774478 (KeyValuePair_2_t3099285997 * __this, uint32_t ___key0, Vector3_t3722313464 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t3099285997 *, uint32_t, Vector3_t3722313464 , const RuntimeMethod*))KeyValuePair_2__ctor_m2104774478_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::get_Key() inline uint32_t KeyValuePair_2_get_Key_m3603522588 (KeyValuePair_2_t3099285997 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_t3099285997 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m3603522588_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::get_Value() inline Vector3_t3722313464 KeyValuePair_2_get_Value_m2531951264 (KeyValuePair_2_t3099285997 * __this, const RuntimeMethod* method) { return (( Vector3_t3722313464 (*) (KeyValuePair_2_t3099285997 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m2531951264_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::ToString() inline String_t* KeyValuePair_2_ToString_m2956581269 (KeyValuePair_2_t3099285997 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t3099285997 *, const RuntimeMethod*))KeyValuePair_2_ToString_m2956581269_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m3305952680 (KeyValuePair_2_t1405028755 * __this, Vector3_t3722313464 ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t1405028755 *, Vector3_t3722313464 , RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m3305952680_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::get_Key() inline Vector3_t3722313464 KeyValuePair_2_get_Key_m310738991 (KeyValuePair_2_t1405028755 * __this, const RuntimeMethod* method) { return (( Vector3_t3722313464 (*) (KeyValuePair_2_t1405028755 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m310738991_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m585129253 (KeyValuePair_2_t1405028755 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t1405028755 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m585129253_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::ToString() inline String_t* KeyValuePair_2_ToString_m1525119967 (KeyValuePair_2_t1405028755 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t1405028755 *, const RuntimeMethod*))KeyValuePair_2_ToString_m1525119967_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m3554833245 (KeyValuePair_2_t4120547 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t4120547 *, int32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m3554833245_gshared)(__this, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::get_Key() inline int32_t KeyValuePair_2_get_Key_m1795574548 (KeyValuePair_2_t4120547 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t4120547 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m1795574548_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m1627240798 (KeyValuePair_2_t4120547 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t4120547 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1627240798_gshared)(__this, method); } // System.String System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::ToString() inline String_t* KeyValuePair_2_ToString_m3318177100 (KeyValuePair_2_t4120547 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t4120547 *, const RuntimeMethod*))KeyValuePair_2_ToString_m3318177100_gshared)(__this, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::.ctor(System.Int32) inline void LargeArrayBuilder_1__ctor_m2646351267 (LargeArrayBuilder_1_t3544813491 * __this, int32_t p0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3544813491 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m2646351267_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::.ctor(System.Boolean) inline void LargeArrayBuilder_1__ctor_m2700000537 (LargeArrayBuilder_1_t3544813491 * __this, bool ___initialize0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3544813491 *, bool, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m2700000537_gshared)(__this, ___initialize0, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Char>::get_Count() inline int32_t LargeArrayBuilder_1_get_Count_m498408020 (LargeArrayBuilder_1_t3544813491 * __this, const RuntimeMethod* method) { return (( int32_t (*) (LargeArrayBuilder_1_t3544813491 *, const RuntimeMethod*))LargeArrayBuilder_1_get_Count_m498408020_gshared)(__this, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::AllocateBuffer() inline void LargeArrayBuilder_1_AllocateBuffer_m3260867912 (LargeArrayBuilder_1_t3544813491 * __this, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3544813491 *, const RuntimeMethod*))LargeArrayBuilder_1_AllocateBuffer_m3260867912_gshared)(__this, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::Add(T) inline void LargeArrayBuilder_1_Add_m982046608 (LargeArrayBuilder_1_t3544813491 * __this, Il2CppChar ___item0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3544813491 *, Il2CppChar, const RuntimeMethod*))LargeArrayBuilder_1_Add_m982046608_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::AddRange(System.Collections.Generic.IEnumerable`1<T>) inline void LargeArrayBuilder_1_AddRange_m3208469990 (LargeArrayBuilder_1_t3544813491 * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3544813491 *, RuntimeObject*, const RuntimeMethod*))LargeArrayBuilder_1_AddRange_m3208469990_gshared)(__this, ___items0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Char>::GetBuffer(System.Int32) inline CharU5BU5D_t3528271667* LargeArrayBuilder_1_GetBuffer_m4278476894 (LargeArrayBuilder_1_t3544813491 * __this, int32_t p0, const RuntimeMethod* method) { return (( CharU5BU5D_t3528271667* (*) (LargeArrayBuilder_1_t3544813491 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_GetBuffer_m4278476894_gshared)(__this, p0, method); } // System.Int32 System.Math::Min(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Math_Min_m3468062251 (RuntimeObject * __this /* static, unused */, int32_t p0, int32_t p1, const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Copy_m344457298 (RuntimeObject * __this /* static, unused */, RuntimeArray * p0, int32_t p1, RuntimeArray * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::CopyTo(T[],System.Int32,System.Int32) inline void LargeArrayBuilder_1_CopyTo_m3784363977 (LargeArrayBuilder_1_t3544813491 * __this, CharU5BU5D_t3528271667* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3544813491 *, CharU5BU5D_t3528271667*, int32_t, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_CopyTo_m3784363977_gshared)(__this, ___array0, ___arrayIndex1, ___count2, method); } // System.Int32 System.Collections.Generic.CopyPosition::get_Row() extern "C" IL2CPP_METHOD_ATTR int32_t CopyPosition_get_Row_m806830178 (CopyPosition_t2993389481 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.CopyPosition::get_Column() extern "C" IL2CPP_METHOD_ATTR int32_t CopyPosition_get_Column_m2845754312 (CopyPosition_t2993389481 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.CopyPosition::.ctor(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void CopyPosition__ctor_m1131607009 (CopyPosition_t2993389481 * __this, int32_t ___row0, int32_t ___column1, const RuntimeMethod* method); // System.Collections.Generic.CopyPosition System.Collections.Generic.CopyPosition::Normalize(System.Int32) extern "C" IL2CPP_METHOD_ATTR CopyPosition_t2993389481 CopyPosition_Normalize_m4125119414 (CopyPosition_t2993389481 * __this, int32_t ___endColumn0, const RuntimeMethod* method); // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Char>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) inline CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3128527264 (LargeArrayBuilder_1_t3544813491 * __this, CopyPosition_t2993389481 ___position0, CharU5BU5D_t3528271667* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { return (( CopyPosition_t2993389481 (*) (LargeArrayBuilder_1_t3544813491 *, CopyPosition_t2993389481 , CharU5BU5D_t3528271667*, int32_t, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_CopyTo_m3128527264_gshared)(__this, ___position0, ___array1, ___arrayIndex2, ___count3, method); } // System.Int32 System.Collections.Generic.ArrayBuilder`1<System.Char[]>::get_Count() inline int32_t ArrayBuilder_1_get_Count_m867749940 (ArrayBuilder_1_t516401051 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ArrayBuilder_1_t516401051 *, const RuntimeMethod*))ArrayBuilder_1_get_Count_m3431094901_gshared)(__this, method); } // T System.Collections.Generic.ArrayBuilder`1<System.Char[]>::get_Item(System.Int32) inline CharU5BU5D_t3528271667* ArrayBuilder_1_get_Item_m3619644771 (ArrayBuilder_1_t516401051 * __this, int32_t p0, const RuntimeMethod* method) { return (( CharU5BU5D_t3528271667* (*) (ArrayBuilder_1_t516401051 *, int32_t, const RuntimeMethod*))ArrayBuilder_1_get_Item_m2217381838_gshared)(__this, p0, method); } // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Char>::TryMove(T[]&) inline bool LargeArrayBuilder_1_TryMove_m2654736575 (LargeArrayBuilder_1_t3544813491 * __this, CharU5BU5D_t3528271667** p0, const RuntimeMethod* method) { return (( bool (*) (LargeArrayBuilder_1_t3544813491 *, CharU5BU5D_t3528271667**, const RuntimeMethod*))LargeArrayBuilder_1_TryMove_m2654736575_gshared)(__this, p0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Char>::ToArray() inline CharU5BU5D_t3528271667* LargeArrayBuilder_1_ToArray_m1423820966 (LargeArrayBuilder_1_t3544813491 * __this, const RuntimeMethod* method) { return (( CharU5BU5D_t3528271667* (*) (LargeArrayBuilder_1_t3544813491 *, const RuntimeMethod*))LargeArrayBuilder_1_ToArray_m1423820966_gshared)(__this, method); } // System.Void System.Collections.Generic.ArrayBuilder`1<System.Char[]>::Add(T) inline void ArrayBuilder_1_Add_m1619176227 (ArrayBuilder_1_t516401051 * __this, CharU5BU5D_t3528271667* p0, const RuntimeMethod* method) { (( void (*) (ArrayBuilder_1_t516401051 *, CharU5BU5D_t3528271667*, const RuntimeMethod*))ArrayBuilder_1_Add_m1469477416_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::.ctor(System.Int32) inline void LargeArrayBuilder_1__ctor_m4215145640 (LargeArrayBuilder_1_t3034328659 * __this, int32_t p0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3034328659 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m4215145640_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::.ctor(System.Boolean) inline void LargeArrayBuilder_1__ctor_m3992711902 (LargeArrayBuilder_1_t3034328659 * __this, bool ___initialize0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3034328659 *, bool, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m3992711902_gshared)(__this, ___initialize0, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::get_Count() inline int32_t LargeArrayBuilder_1_get_Count_m3670631437 (LargeArrayBuilder_1_t3034328659 * __this, const RuntimeMethod* method) { return (( int32_t (*) (LargeArrayBuilder_1_t3034328659 *, const RuntimeMethod*))LargeArrayBuilder_1_get_Count_m3670631437_gshared)(__this, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::AllocateBuffer() inline void LargeArrayBuilder_1_AllocateBuffer_m2360349896 (LargeArrayBuilder_1_t3034328659 * __this, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3034328659 *, const RuntimeMethod*))LargeArrayBuilder_1_AllocateBuffer_m2360349896_gshared)(__this, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::Add(T) inline void LargeArrayBuilder_1_Add_m3654651254 (LargeArrayBuilder_1_t3034328659 * __this, DictionaryEntry_t3123975638 ___item0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3034328659 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))LargeArrayBuilder_1_Add_m3654651254_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::AddRange(System.Collections.Generic.IEnumerable`1<T>) inline void LargeArrayBuilder_1_AddRange_m522528651 (LargeArrayBuilder_1_t3034328659 * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3034328659 *, RuntimeObject*, const RuntimeMethod*))LargeArrayBuilder_1_AddRange_m522528651_gshared)(__this, ___items0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::GetBuffer(System.Int32) inline DictionaryEntryU5BU5D_t4217117203* LargeArrayBuilder_1_GetBuffer_m459509375 (LargeArrayBuilder_1_t3034328659 * __this, int32_t p0, const RuntimeMethod* method) { return (( DictionaryEntryU5BU5D_t4217117203* (*) (LargeArrayBuilder_1_t3034328659 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_GetBuffer_m459509375_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::CopyTo(T[],System.Int32,System.Int32) inline void LargeArrayBuilder_1_CopyTo_m4153360821 (LargeArrayBuilder_1_t3034328659 * __this, DictionaryEntryU5BU5D_t4217117203* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3034328659 *, DictionaryEntryU5BU5D_t4217117203*, int32_t, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_CopyTo_m4153360821_gshared)(__this, ___array0, ___arrayIndex1, ___count2, method); } // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) inline CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m27690272 (LargeArrayBuilder_1_t3034328659 * __this, CopyPosition_t2993389481 ___position0, DictionaryEntryU5BU5D_t4217117203* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { return (( CopyPosition_t2993389481 (*) (LargeArrayBuilder_1_t3034328659 *, CopyPosition_t2993389481 , DictionaryEntryU5BU5D_t4217117203*, int32_t, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_CopyTo_m27690272_gshared)(__this, ___position0, ___array1, ___arrayIndex2, ___count3, method); } // System.Int32 System.Collections.Generic.ArrayBuilder`1<System.Collections.DictionaryEntry[]>::get_Count() inline int32_t ArrayBuilder_1_get_Count_m1709634220 (ArrayBuilder_1_t1205246587 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ArrayBuilder_1_t1205246587 *, const RuntimeMethod*))ArrayBuilder_1_get_Count_m3431094901_gshared)(__this, method); } // T System.Collections.Generic.ArrayBuilder`1<System.Collections.DictionaryEntry[]>::get_Item(System.Int32) inline DictionaryEntryU5BU5D_t4217117203* ArrayBuilder_1_get_Item_m2464597816 (ArrayBuilder_1_t1205246587 * __this, int32_t p0, const RuntimeMethod* method) { return (( DictionaryEntryU5BU5D_t4217117203* (*) (ArrayBuilder_1_t1205246587 *, int32_t, const RuntimeMethod*))ArrayBuilder_1_get_Item_m2217381838_gshared)(__this, p0, method); } // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::TryMove(T[]&) inline bool LargeArrayBuilder_1_TryMove_m1874375871 (LargeArrayBuilder_1_t3034328659 * __this, DictionaryEntryU5BU5D_t4217117203** p0, const RuntimeMethod* method) { return (( bool (*) (LargeArrayBuilder_1_t3034328659 *, DictionaryEntryU5BU5D_t4217117203**, const RuntimeMethod*))LargeArrayBuilder_1_TryMove_m1874375871_gshared)(__this, p0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::ToArray() inline DictionaryEntryU5BU5D_t4217117203* LargeArrayBuilder_1_ToArray_m880301710 (LargeArrayBuilder_1_t3034328659 * __this, const RuntimeMethod* method) { return (( DictionaryEntryU5BU5D_t4217117203* (*) (LargeArrayBuilder_1_t3034328659 *, const RuntimeMethod*))LargeArrayBuilder_1_ToArray_m880301710_gshared)(__this, method); } // System.Void System.Collections.Generic.ArrayBuilder`1<System.Collections.DictionaryEntry[]>::Add(T) inline void ArrayBuilder_1_Add_m4108685891 (ArrayBuilder_1_t1205246587 * __this, DictionaryEntryU5BU5D_t4217117203* p0, const RuntimeMethod* method) { (( void (*) (ArrayBuilder_1_t1205246587 *, DictionaryEntryU5BU5D_t4217117203*, const RuntimeMethod*))ArrayBuilder_1_Add_m1469477416_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Int32) inline void LargeArrayBuilder_1__ctor_m4108096359 (LargeArrayBuilder_1_t2440570340 * __this, int32_t p0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2440570340 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m4108096359_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Boolean) inline void LargeArrayBuilder_1__ctor_m2226121364 (LargeArrayBuilder_1_t2440570340 * __this, bool ___initialize0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2440570340 *, bool, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m2226121364_gshared)(__this, ___initialize0, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Count() inline int32_t LargeArrayBuilder_1_get_Count_m2608056476 (LargeArrayBuilder_1_t2440570340 * __this, const RuntimeMethod* method) { return (( int32_t (*) (LargeArrayBuilder_1_t2440570340 *, const RuntimeMethod*))LargeArrayBuilder_1_get_Count_m2608056476_gshared)(__this, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::AllocateBuffer() inline void LargeArrayBuilder_1_AllocateBuffer_m2042007487 (LargeArrayBuilder_1_t2440570340 * __this, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2440570340 *, const RuntimeMethod*))LargeArrayBuilder_1_AllocateBuffer_m2042007487_gshared)(__this, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Add(T) inline void LargeArrayBuilder_1_Add_m982335036 (LargeArrayBuilder_1_t2440570340 * __this, KeyValuePair_2_t2530217319 ___item0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2440570340 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))LargeArrayBuilder_1_Add_m982335036_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::AddRange(System.Collections.Generic.IEnumerable`1<T>) inline void LargeArrayBuilder_1_AddRange_m271381180 (LargeArrayBuilder_1_t2440570340 * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2440570340 *, RuntimeObject*, const RuntimeMethod*))LargeArrayBuilder_1_AddRange_m271381180_gshared)(__this, ___items0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetBuffer(System.Int32) inline KeyValuePair_2U5BU5D_t118269214* LargeArrayBuilder_1_GetBuffer_m286061398 (LargeArrayBuilder_1_t2440570340 * __this, int32_t p0, const RuntimeMethod* method) { return (( KeyValuePair_2U5BU5D_t118269214* (*) (LargeArrayBuilder_1_t2440570340 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_GetBuffer_m286061398_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::CopyTo(T[],System.Int32,System.Int32) inline void LargeArrayBuilder_1_CopyTo_m3539229272 (LargeArrayBuilder_1_t2440570340 * __this, KeyValuePair_2U5BU5D_t118269214* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2440570340 *, KeyValuePair_2U5BU5D_t118269214*, int32_t, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_CopyTo_m3539229272_gshared)(__this, ___array0, ___arrayIndex1, ___count2, method); } // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) inline CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3291371982 (LargeArrayBuilder_1_t2440570340 * __this, CopyPosition_t2993389481 ___position0, KeyValuePair_2U5BU5D_t118269214* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { return (( CopyPosition_t2993389481 (*) (LargeArrayBuilder_1_t2440570340 *, CopyPosition_t2993389481 , KeyValuePair_2U5BU5D_t118269214*, int32_t, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_CopyTo_m3291371982_gshared)(__this, ___position0, ___array1, ___arrayIndex2, ___count3, method); } // System.Int32 System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]>::get_Count() inline int32_t ArrayBuilder_1_get_Count_m69798309 (ArrayBuilder_1_t1401365894 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ArrayBuilder_1_t1401365894 *, const RuntimeMethod*))ArrayBuilder_1_get_Count_m3431094901_gshared)(__this, method); } // T System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]>::get_Item(System.Int32) inline KeyValuePair_2U5BU5D_t118269214* ArrayBuilder_1_get_Item_m1865156785 (ArrayBuilder_1_t1401365894 * __this, int32_t p0, const RuntimeMethod* method) { return (( KeyValuePair_2U5BU5D_t118269214* (*) (ArrayBuilder_1_t1401365894 *, int32_t, const RuntimeMethod*))ArrayBuilder_1_get_Item_m2217381838_gshared)(__this, p0, method); } // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryMove(T[]&) inline bool LargeArrayBuilder_1_TryMove_m3030092322 (LargeArrayBuilder_1_t2440570340 * __this, KeyValuePair_2U5BU5D_t118269214** p0, const RuntimeMethod* method) { return (( bool (*) (LargeArrayBuilder_1_t2440570340 *, KeyValuePair_2U5BU5D_t118269214**, const RuntimeMethod*))LargeArrayBuilder_1_TryMove_m3030092322_gshared)(__this, p0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray() inline KeyValuePair_2U5BU5D_t118269214* LargeArrayBuilder_1_ToArray_m3030376891 (LargeArrayBuilder_1_t2440570340 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2U5BU5D_t118269214* (*) (LargeArrayBuilder_1_t2440570340 *, const RuntimeMethod*))LargeArrayBuilder_1_ToArray_m3030376891_gshared)(__this, method); } // System.Void System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]>::Add(T) inline void ArrayBuilder_1_Add_m3648459066 (ArrayBuilder_1_t1401365894 * __this, KeyValuePair_2U5BU5D_t118269214* p0, const RuntimeMethod* method) { (( void (*) (ArrayBuilder_1_t1401365894 *, KeyValuePair_2U5BU5D_t118269214*, const RuntimeMethod*))ArrayBuilder_1_Add_m1469477416_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::.ctor(System.Int32) inline void LargeArrayBuilder_1__ctor_m193325792 (LargeArrayBuilder_1_t2990459185 * __this, int32_t p0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2990459185 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m193325792_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::.ctor(System.Boolean) inline void LargeArrayBuilder_1__ctor_m104969882 (LargeArrayBuilder_1_t2990459185 * __this, bool ___initialize0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2990459185 *, bool, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m104969882_gshared)(__this, ___initialize0, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Object>::get_Count() inline int32_t LargeArrayBuilder_1_get_Count_m4249061733 (LargeArrayBuilder_1_t2990459185 * __this, const RuntimeMethod* method) { return (( int32_t (*) (LargeArrayBuilder_1_t2990459185 *, const RuntimeMethod*))LargeArrayBuilder_1_get_Count_m4249061733_gshared)(__this, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::AllocateBuffer() inline void LargeArrayBuilder_1_AllocateBuffer_m2677938218 (LargeArrayBuilder_1_t2990459185 * __this, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2990459185 *, const RuntimeMethod*))LargeArrayBuilder_1_AllocateBuffer_m2677938218_gshared)(__this, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::Add(T) inline void LargeArrayBuilder_1_Add_m3802412589 (LargeArrayBuilder_1_t2990459185 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2990459185 *, RuntimeObject *, const RuntimeMethod*))LargeArrayBuilder_1_Add_m3802412589_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::AddRange(System.Collections.Generic.IEnumerable`1<T>) inline void LargeArrayBuilder_1_AddRange_m1159522811 (LargeArrayBuilder_1_t2990459185 * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2990459185 *, RuntimeObject*, const RuntimeMethod*))LargeArrayBuilder_1_AddRange_m1159522811_gshared)(__this, ___items0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Object>::GetBuffer(System.Int32) inline ObjectU5BU5D_t2843939325* LargeArrayBuilder_1_GetBuffer_m3998549007 (LargeArrayBuilder_1_t2990459185 * __this, int32_t p0, const RuntimeMethod* method) { return (( ObjectU5BU5D_t2843939325* (*) (LargeArrayBuilder_1_t2990459185 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_GetBuffer_m3998549007_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::CopyTo(T[],System.Int32,System.Int32) inline void LargeArrayBuilder_1_CopyTo_m1253522307 (LargeArrayBuilder_1_t2990459185 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t2990459185 *, ObjectU5BU5D_t2843939325*, int32_t, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_CopyTo_m1253522307_gshared)(__this, ___array0, ___arrayIndex1, ___count2, method); } // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Object>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) inline CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3670488443 (LargeArrayBuilder_1_t2990459185 * __this, CopyPosition_t2993389481 ___position0, ObjectU5BU5D_t2843939325* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { return (( CopyPosition_t2993389481 (*) (LargeArrayBuilder_1_t2990459185 *, CopyPosition_t2993389481 , ObjectU5BU5D_t2843939325*, int32_t, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_CopyTo_m3670488443_gshared)(__this, ___position0, ___array1, ___arrayIndex2, ___count3, method); } // System.Int32 System.Collections.Generic.ArrayBuilder`1<System.Object[]>::get_Count() inline int32_t ArrayBuilder_1_get_Count_m1834044633 (ArrayBuilder_1_t4127036005 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ArrayBuilder_1_t4127036005 *, const RuntimeMethod*))ArrayBuilder_1_get_Count_m3431094901_gshared)(__this, method); } // T System.Collections.Generic.ArrayBuilder`1<System.Object[]>::get_Item(System.Int32) inline ObjectU5BU5D_t2843939325* ArrayBuilder_1_get_Item_m3774067509 (ArrayBuilder_1_t4127036005 * __this, int32_t p0, const RuntimeMethod* method) { return (( ObjectU5BU5D_t2843939325* (*) (ArrayBuilder_1_t4127036005 *, int32_t, const RuntimeMethod*))ArrayBuilder_1_get_Item_m2217381838_gshared)(__this, p0, method); } // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Object>::TryMove(T[]&) inline bool LargeArrayBuilder_1_TryMove_m950017932 (LargeArrayBuilder_1_t2990459185 * __this, ObjectU5BU5D_t2843939325** p0, const RuntimeMethod* method) { return (( bool (*) (LargeArrayBuilder_1_t2990459185 *, ObjectU5BU5D_t2843939325**, const RuntimeMethod*))LargeArrayBuilder_1_TryMove_m950017932_gshared)(__this, p0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Object>::ToArray() inline ObjectU5BU5D_t2843939325* LargeArrayBuilder_1_ToArray_m390648332 (LargeArrayBuilder_1_t2990459185 * __this, const RuntimeMethod* method) { return (( ObjectU5BU5D_t2843939325* (*) (LargeArrayBuilder_1_t2990459185 *, const RuntimeMethod*))LargeArrayBuilder_1_ToArray_m390648332_gshared)(__this, method); } // System.Void System.Collections.Generic.ArrayBuilder`1<System.Object[]>::Add(T) inline void ArrayBuilder_1_Add_m1163931654 (ArrayBuilder_1_t4127036005 * __this, ObjectU5BU5D_t2843939325* p0, const RuntimeMethod* method) { (( void (*) (ArrayBuilder_1_t4127036005 *, ObjectU5BU5D_t2843939325*, const RuntimeMethod*))ArrayBuilder_1_Add_m1469477416_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::.ctor(System.Int32) inline void LargeArrayBuilder_1__ctor_m2251031111 (LargeArrayBuilder_1_t3696204514 * __this, int32_t p0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3696204514 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m2251031111_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::.ctor(System.Boolean) inline void LargeArrayBuilder_1__ctor_m2621609802 (LargeArrayBuilder_1_t3696204514 * __this, bool ___initialize0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3696204514 *, bool, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m2621609802_gshared)(__this, ___initialize0, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::get_Count() inline int32_t LargeArrayBuilder_1_get_Count_m260774496 (LargeArrayBuilder_1_t3696204514 * __this, const RuntimeMethod* method) { return (( int32_t (*) (LargeArrayBuilder_1_t3696204514 *, const RuntimeMethod*))LargeArrayBuilder_1_get_Count_m260774496_gshared)(__this, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::AllocateBuffer() inline void LargeArrayBuilder_1_AllocateBuffer_m2894186751 (LargeArrayBuilder_1_t3696204514 * __this, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3696204514 *, const RuntimeMethod*))LargeArrayBuilder_1_AllocateBuffer_m2894186751_gshared)(__this, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::Add(T) inline void LargeArrayBuilder_1_Add_m3560339651 (LargeArrayBuilder_1_t3696204514 * __this, Ray_t3785851493 ___item0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3696204514 *, Ray_t3785851493 , const RuntimeMethod*))LargeArrayBuilder_1_Add_m3560339651_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::AddRange(System.Collections.Generic.IEnumerable`1<T>) inline void LargeArrayBuilder_1_AddRange_m3454702397 (LargeArrayBuilder_1_t3696204514 * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3696204514 *, RuntimeObject*, const RuntimeMethod*))LargeArrayBuilder_1_AddRange_m3454702397_gshared)(__this, ___items0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::GetBuffer(System.Int32) inline RayU5BU5D_t1836217960* LargeArrayBuilder_1_GetBuffer_m1764034806 (LargeArrayBuilder_1_t3696204514 * __this, int32_t p0, const RuntimeMethod* method) { return (( RayU5BU5D_t1836217960* (*) (LargeArrayBuilder_1_t3696204514 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_GetBuffer_m1764034806_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::CopyTo(T[],System.Int32,System.Int32) inline void LargeArrayBuilder_1_CopyTo_m12527799 (LargeArrayBuilder_1_t3696204514 * __this, RayU5BU5D_t1836217960* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { (( void (*) (LargeArrayBuilder_1_t3696204514 *, RayU5BU5D_t1836217960*, int32_t, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_CopyTo_m12527799_gshared)(__this, ___array0, ___arrayIndex1, ___count2, method); } // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) inline CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3393164995 (LargeArrayBuilder_1_t3696204514 * __this, CopyPosition_t2993389481 ___position0, RayU5BU5D_t1836217960* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { return (( CopyPosition_t2993389481 (*) (LargeArrayBuilder_1_t3696204514 *, CopyPosition_t2993389481 , RayU5BU5D_t1836217960*, int32_t, int32_t, const RuntimeMethod*))LargeArrayBuilder_1_CopyTo_m3393164995_gshared)(__this, ___position0, ___array1, ___arrayIndex2, ___count3, method); } // System.Int32 System.Collections.Generic.ArrayBuilder`1<UnityEngine.Ray[]>::get_Count() inline int32_t ArrayBuilder_1_get_Count_m2184078287 (ArrayBuilder_1_t3119314640 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ArrayBuilder_1_t3119314640 *, const RuntimeMethod*))ArrayBuilder_1_get_Count_m3431094901_gshared)(__this, method); } // T System.Collections.Generic.ArrayBuilder`1<UnityEngine.Ray[]>::get_Item(System.Int32) inline RayU5BU5D_t1836217960* ArrayBuilder_1_get_Item_m2918988053 (ArrayBuilder_1_t3119314640 * __this, int32_t p0, const RuntimeMethod* method) { return (( RayU5BU5D_t1836217960* (*) (ArrayBuilder_1_t3119314640 *, int32_t, const RuntimeMethod*))ArrayBuilder_1_get_Item_m2217381838_gshared)(__this, p0, method); } // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::TryMove(T[]&) inline bool LargeArrayBuilder_1_TryMove_m1622191087 (LargeArrayBuilder_1_t3696204514 * __this, RayU5BU5D_t1836217960** p0, const RuntimeMethod* method) { return (( bool (*) (LargeArrayBuilder_1_t3696204514 *, RayU5BU5D_t1836217960**, const RuntimeMethod*))LargeArrayBuilder_1_TryMove_m1622191087_gshared)(__this, p0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::ToArray() inline RayU5BU5D_t1836217960* LargeArrayBuilder_1_ToArray_m4051514523 (LargeArrayBuilder_1_t3696204514 * __this, const RuntimeMethod* method) { return (( RayU5BU5D_t1836217960* (*) (LargeArrayBuilder_1_t3696204514 *, const RuntimeMethod*))LargeArrayBuilder_1_ToArray_m4051514523_gshared)(__this, method); } // System.Void System.Collections.Generic.ArrayBuilder`1<UnityEngine.Ray[]>::Add(T) inline void ArrayBuilder_1_Add_m2406932454 (ArrayBuilder_1_t3119314640 * __this, RayU5BU5D_t1836217960* p0, const RuntimeMethod* method) { (( void (*) (ArrayBuilder_1_t3119314640 *, RayU5BU5D_t1836217960*, const RuntimeMethod*))ArrayBuilder_1_Add_m1469477416_gshared)(__this, p0, method); } // System.Void System.Object::.ctor() extern "C" IL2CPP_METHOD_ATTR void Object__ctor_m297566312 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.LinkedList`1<T>) inline void Enumerator__ctor_m2504641326 (Enumerator_t139379724 * __this, LinkedList_1_t1919752173 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t139379724 *, LinkedList_1_t1919752173 *, const RuntimeMethod*))Enumerator__ctor_m2504641326_gshared)(__this, ___list0, method); } // System.Void System.PlatformNotSupportedException::.ctor() extern "C" IL2CPP_METHOD_ATTR void PlatformNotSupportedException__ctor_m1787918017 (PlatformNotSupportedException_t3572244504 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) inline void Enumerator__ctor_m351918184 (Enumerator_t139379724 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) { (( void (*) (Enumerator_t139379724 *, SerializationInfo_t950877179 *, StreamingContext_t3711869237 , const RuntimeMethod*))Enumerator__ctor_m351918184_gshared)(__this, ___info0, ___context1, method); } // T System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_m2579293505 (Enumerator_t139379724 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t139379724 *, const RuntimeMethod*))Enumerator_get_Current_m2579293505_gshared)(__this, method); } // System.Void System.InvalidOperationException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m237278729 (InvalidOperationException_t56020091 * __this, String_t* p0, const RuntimeMethod* method); // System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3484854280 (Enumerator_t139379724 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t139379724 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3484854280_gshared)(__this, method); } // System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::MoveNext() inline bool Enumerator_MoveNext_m880141662 (Enumerator_t139379724 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t139379724 *, const RuntimeMethod*))Enumerator_MoveNext_m880141662_gshared)(__this, method); } // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2550940120 (Enumerator_t139379724 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t139379724 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2550940120_gshared)(__this, method); } // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::Dispose() inline void Enumerator_Dispose_m2375640141 (Enumerator_t139379724 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t139379724 *, const RuntimeMethod*))Enumerator_Dispose_m2375640141_gshared)(__this, method); } // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) inline void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m577802395 (Enumerator_t139379724 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) { (( void (*) (Enumerator_t139379724 *, SerializationInfo_t950877179 *, StreamingContext_t3711869237 , const RuntimeMethod*))Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m577802395_gshared)(__this, ___info0, ___context1, method); } // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) inline void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3768315530 (Enumerator_t139379724 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { (( void (*) (Enumerator_t139379724 *, RuntimeObject *, const RuntimeMethod*))Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3768315530_gshared)(__this, ___sender0, method); } // System.Void System.ArgumentNullException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m1170824041 (ArgumentNullException_t1615371798 * __this, String_t* p0, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m4164965325 (ArgumentOutOfRangeException_t777629997 * __this, String_t* p0, RuntimeObject * p1, String_t* p2, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1312628991 (ArgumentException_t132251570 * __this, String_t* p0, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int32) extern "C" IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m412754688 (SerializationInfo_t950877179 * __this, String_t* p0, int32_t p1, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) extern "C" IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m1620074514 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t3027515415 p0, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object,System.Type) extern "C" IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m3906743584 (SerializationInfo_t950877179 * __this, String_t* p0, RuntimeObject * p1, Type_t * p2, const RuntimeMethod* method); // System.Int32 System.Runtime.Serialization.SerializationInfo::GetInt32(System.String) extern "C" IL2CPP_METHOD_ATTR int32_t SerializationInfo_GetInt32_m2640574809 (SerializationInfo_t950877179 * __this, String_t* p0, const RuntimeMethod* method); // System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_m42271953 (SerializationInfo_t950877179 * __this, String_t* p0, Type_t * p1, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void SerializationException__ctor_m3862484944 (SerializationException_t3941511869 * __this, String_t* p0, const RuntimeMethod* method); // System.Int32 System.Array::get_Rank() extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m3448755881 (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1216717135 (ArgumentException_t132251570 * __this, String_t* p0, String_t* p1, const RuntimeMethod* method); // System.Int32 System.Array::GetLowerBound(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_m2045984623 (RuntimeArray * __this, int32_t p0, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Length_m21610649 (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m1650153849 (Enumerator_t828654543 * __this, List_1_t3234377962 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t828654543 *, List_1_t3234377962 *, const RuntimeMethod*))Enumerator__ctor_m1650153849_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Dispose() inline void Enumerator_Dispose_m3775550104 (Enumerator_t828654543 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t828654543 *, const RuntimeMethod*))Enumerator_Dispose_m3775550104_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1286425451 (Enumerator_t828654543 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t828654543 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1286425451_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::MoveNext() inline bool Enumerator_MoveNext_m4187863536 (Enumerator_t828654543 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t828654543 *, const RuntimeMethod*))Enumerator_MoveNext_m4187863536_gshared)(__this, method); } // System.Void System.ThrowHelper::ThrowInvalidOperationException(System.ExceptionResource) extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_ThrowInvalidOperationException_m782723829 (RuntimeObject * __this /* static, unused */, int32_t ___resource0, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::get_Current() inline PrefabToDataModel_t1762303220 Enumerator_get_Current_m2807483713 (Enumerator_t828654543 * __this, const RuntimeMethod* method) { return (( PrefabToDataModel_t1762303220 (*) (Enumerator_t828654543 *, const RuntimeMethod*))Enumerator_get_Current_m2807483713_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3718120238 (Enumerator_t828654543 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t828654543 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3718120238_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3700310574 (Enumerator_t828654543 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t828654543 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3700310574_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3121224682 (Enumerator_t3042159799 * __this, List_1_t1152915922 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3042159799 *, List_1_t1152915922 *, const RuntimeMethod*))Enumerator__ctor_m3121224682_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::Dispose() inline void Enumerator_Dispose_m1268664822 (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3042159799 *, const RuntimeMethod*))Enumerator_Dispose_m1268664822_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::MoveNextRare() inline bool Enumerator_MoveNextRare_m3847883246 (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3042159799 *, const RuntimeMethod*))Enumerator_MoveNextRare_m3847883246_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::MoveNext() inline bool Enumerator_MoveNext_m947041767 (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3042159799 *, const RuntimeMethod*))Enumerator_MoveNext_m947041767_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::get_Current() inline int32_t Enumerator_get_Current_m2788039444 (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t3042159799 *, const RuntimeMethod*))Enumerator_get_Current_m2788039444_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2498886067 (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3042159799 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2498886067_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m352654233 (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3042159799 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m352654233_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3137077068 (Enumerator_t3461346361 * __this, List_1_t1572102484 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3461346361 *, List_1_t1572102484 *, const RuntimeMethod*))Enumerator__ctor_m3137077068_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::Dispose() inline void Enumerator_Dispose_m2830230938 (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3461346361 *, const RuntimeMethod*))Enumerator_Dispose_m2830230938_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1508119060 (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3461346361 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1508119060_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::MoveNext() inline bool Enumerator_MoveNext_m2572614967 (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3461346361 *, const RuntimeMethod*))Enumerator_MoveNext_m2572614967_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::get_Current() inline InputSourceInfo_t100027742 Enumerator_get_Current_m2904821522 (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { return (( InputSourceInfo_t100027742 (*) (Enumerator_t3461346361 *, const RuntimeMethod*))Enumerator_get_Current_m2904821522_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1830420905 (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3461346361 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1830420905_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1847426218 (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3461346361 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1847426218_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m574521130 (Enumerator_t576456821 * __this, List_1_t2982180240 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t576456821 *, List_1_t2982180240 *, const RuntimeMethod*))Enumerator__ctor_m574521130_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Dispose() inline void Enumerator_Dispose_m1187956102 (Enumerator_t576456821 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t576456821 *, const RuntimeMethod*))Enumerator_Dispose_m1187956102_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1217953709 (Enumerator_t576456821 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t576456821 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1217953709_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::MoveNext() inline bool Enumerator_MoveNext_m2014372271 (Enumerator_t576456821 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t576456821 *, const RuntimeMethod*))Enumerator_MoveNext_m2014372271_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::get_Current() inline KeyCodeEventPair_t1510105498 Enumerator_get_Current_m1376590070 (Enumerator_t576456821 * __this, const RuntimeMethod* method) { return (( KeyCodeEventPair_t1510105498 (*) (Enumerator_t576456821 *, const RuntimeMethod*))Enumerator_get_Current_m1376590070_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m925648047 (Enumerator_t576456821 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t576456821 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m925648047_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1795417095 (Enumerator_t576456821 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t576456821 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1795417095_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m2470515090 (Enumerator_t1074336339 * __this, List_1_t3480059758 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1074336339 *, List_1_t3480059758 *, const RuntimeMethod*))Enumerator__ctor_m2470515090_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::Dispose() inline void Enumerator_Dispose_m1120213402 (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1074336339 *, const RuntimeMethod*))Enumerator_Dispose_m1120213402_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::MoveNextRare() inline bool Enumerator_MoveNextRare_m40727075 (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1074336339 *, const RuntimeMethod*))Enumerator_MoveNextRare_m40727075_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::MoveNext() inline bool Enumerator_MoveNext_m3002774773 (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1074336339 *, const RuntimeMethod*))Enumerator_MoveNext_m3002774773_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::get_Current() inline RaycastResultHelper_t2007985016 Enumerator_get_Current_m2291764410 (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { return (( RaycastResultHelper_t2007985016 (*) (Enumerator_t1074336339 *, const RuntimeMethod*))Enumerator_get_Current_m2291764410_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2043830421 (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1074336339 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2043830421_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2172564090 (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1074336339 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2172564090_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m394146094 (Enumerator_t3180766674 * __this, List_1_t1291522797 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3180766674 *, List_1_t1291522797 *, const RuntimeMethod*))Enumerator__ctor_m394146094_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::Dispose() inline void Enumerator_Dispose_m4010342378 (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3180766674 *, const RuntimeMethod*))Enumerator_Dispose_m4010342378_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2144276695 (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3180766674 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2144276695_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::MoveNext() inline bool Enumerator_MoveNext_m1736481079 (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3180766674 *, const RuntimeMethod*))Enumerator_MoveNext_m1736481079_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::get_Current() inline MeshData_t4114415351 Enumerator_get_Current_m1298642168 (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { return (( MeshData_t4114415351 (*) (Enumerator_t3180766674 *, const RuntimeMethod*))Enumerator_get_Current_m1298642168_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3842930208 (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3180766674 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3842930208_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m976222382 (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3180766674 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m976222382_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3682883020 (Enumerator_t1679591641 * __this, List_1_t4085315060 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1679591641 *, List_1_t4085315060 *, const RuntimeMethod*))Enumerator__ctor_m3682883020_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::Dispose() inline void Enumerator_Dispose_m2901420088 (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1679591641 *, const RuntimeMethod*))Enumerator_Dispose_m2901420088_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2588025538 (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1679591641 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2588025538_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::MoveNext() inline bool Enumerator_MoveNext_m773977532 (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1679591641 *, const RuntimeMethod*))Enumerator_MoveNext_m773977532_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::get_Current() inline SurfaceObject_t2613240318 Enumerator_get_Current_m1193228541 (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { return (( SurfaceObject_t2613240318 (*) (Enumerator_t1679591641 *, const RuntimeMethod*))Enumerator_get_Current_m1193228541_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2821435308 (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1679591641 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2821435308_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2907431841 (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1679591641 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2907431841_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m2866993495 (Enumerator_t2428186925 * __this, List_1_t538943048 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2428186925 *, List_1_t538943048 *, const RuntimeMethod*))Enumerator__ctor_m2866993495_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::Dispose() inline void Enumerator_Dispose_m988267940 (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2428186925 *, const RuntimeMethod*))Enumerator_Dispose_m988267940_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::MoveNextRare() inline bool Enumerator_MoveNextRare_m397533469 (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2428186925 *, const RuntimeMethod*))Enumerator_MoveNextRare_m397533469_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::MoveNext() inline bool Enumerator_MoveNext_m3778079963 (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2428186925 *, const RuntimeMethod*))Enumerator_MoveNext_m3778079963_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::get_Current() inline MeshData_t3361835602 Enumerator_get_Current_m3122840142 (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { return (( MeshData_t3361835602 (*) (Enumerator_t2428186925 *, const RuntimeMethod*))Enumerator_get_Current_m3122840142_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2353828253 (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2428186925 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2353828253_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3709599164 (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2428186925 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3709599164_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m1945446707 (Enumerator_t3308305058 * __this, List_1_t1419061181 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3308305058 *, List_1_t1419061181 *, const RuntimeMethod*))Enumerator__ctor_m1945446707_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::Dispose() inline void Enumerator_Dispose_m2651581068 (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3308305058 *, const RuntimeMethod*))Enumerator_Dispose_m2651581068_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::MoveNextRare() inline bool Enumerator_MoveNextRare_m519564709 (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3308305058 *, const RuntimeMethod*))Enumerator_MoveNextRare_m519564709_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::MoveNext() inline bool Enumerator_MoveNext_m1278747804 (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3308305058 *, const RuntimeMethod*))Enumerator_MoveNext_m1278747804_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::get_Current() inline ShapeComponentConstraint_t4241953735 Enumerator_get_Current_m3907500998 (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { return (( ShapeComponentConstraint_t4241953735 (*) (Enumerator_t3308305058 *, const RuntimeMethod*))Enumerator_get_Current_m3907500998_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m666374076 (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3308305058 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m666374076_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3419802080 (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3308305058 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3419802080_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3594547698 (Enumerator_t3123066813 * __this, List_1_t1233822936 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3123066813 *, List_1_t1233822936 *, const RuntimeMethod*))Enumerator__ctor_m3594547698_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::Dispose() inline void Enumerator_Dispose_m1314063771 (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3123066813 *, const RuntimeMethod*))Enumerator_Dispose_m1314063771_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::MoveNextRare() inline bool Enumerator_MoveNextRare_m576964629 (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3123066813 *, const RuntimeMethod*))Enumerator_MoveNextRare_m576964629_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::MoveNext() inline bool Enumerator_MoveNext_m1132334620 (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3123066813 *, const RuntimeMethod*))Enumerator_MoveNext_m1132334620_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::get_Current() inline TimerData_t4056715490 Enumerator_get_Current_m3905697669 (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { return (( TimerData_t4056715490 (*) (Enumerator_t3123066813 *, const RuntimeMethod*))Enumerator_get_Current_m3905697669_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4283618588 (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3123066813 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m4283618588_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m4053191751 (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3123066813 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m4053191751_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m1365743726 (Enumerator_t4282642524 * __this, List_1_t2393398647 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t4282642524 *, List_1_t2393398647 *, const RuntimeMethod*))Enumerator__ctor_m1365743726_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::Dispose() inline void Enumerator_Dispose_m2008828017 (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4282642524 *, const RuntimeMethod*))Enumerator_Dispose_m2008828017_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::MoveNextRare() inline bool Enumerator_MoveNextRare_m373526289 (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t4282642524 *, const RuntimeMethod*))Enumerator_MoveNextRare_m373526289_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::MoveNext() inline bool Enumerator_MoveNext_m4040824200 (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t4282642524 *, const RuntimeMethod*))Enumerator_MoveNext_m4040824200_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::get_Current() inline TimerIdPair_t921323905 Enumerator_get_Current_m2477026367 (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { return (( TimerIdPair_t921323905 (*) (Enumerator_t4282642524 *, const RuntimeMethod*))Enumerator_get_Current_m2477026367_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m25666464 (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t4282642524 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m25666464_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3006743742 (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4282642524 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3006743742_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m2172015230 (Enumerator_t2992316971 * __this, List_1_t1103073094 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2992316971 *, List_1_t1103073094 *, const RuntimeMethod*))Enumerator__ctor_m2172015230_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::Dispose() inline void Enumerator_Dispose_m3714308917 (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2992316971 *, const RuntimeMethod*))Enumerator_Dispose_m3714308917_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2064301628 (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2992316971 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2064301628_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::MoveNext() inline bool Enumerator_MoveNext_m3302057439 (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2992316971 *, const RuntimeMethod*))Enumerator_MoveNext_m3302057439_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::get_Current() inline ButtonTemplate_t3925965648 Enumerator_get_Current_m4115079866 (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { return (( ButtonTemplate_t3925965648 (*) (Enumerator_t2992316971 *, const RuntimeMethod*))Enumerator_get_Current_m4115079866_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1271664753 (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2992316971 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1271664753_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2424584660 (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2992316971 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2424584660_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m431339869 (Enumerator_t1594379037 * __this, List_1_t4000102456 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1594379037 *, List_1_t4000102456 *, const RuntimeMethod*))Enumerator__ctor_m431339869_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::Dispose() inline void Enumerator_Dispose_m3583473203 (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1594379037 *, const RuntimeMethod*))Enumerator_Dispose_m3583473203_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::MoveNextRare() inline bool Enumerator_MoveNextRare_m4051738861 (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1594379037 *, const RuntimeMethod*))Enumerator_MoveNextRare_m4051738861_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::MoveNext() inline bool Enumerator_MoveNext_m129038534 (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1594379037 *, const RuntimeMethod*))Enumerator_MoveNext_m129038534_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::get_Current() inline JsonPosition_t2528027714 Enumerator_get_Current_m3978296017 (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { return (( JsonPosition_t2528027714 (*) (Enumerator_t1594379037 *, const RuntimeMethod*))Enumerator_get_Current_m3978296017_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m563271522 (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1594379037 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m563271522_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3019374793 (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1594379037 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3019374793_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m2051462163 (Enumerator_t3458606584 * __this, List_1_t1569362707 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3458606584 *, List_1_t1569362707 *, const RuntimeMethod*))Enumerator__ctor_m2051462163_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::Dispose() inline void Enumerator_Dispose_m3633742184 (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3458606584 *, const RuntimeMethod*))Enumerator_Dispose_m3633742184_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2668710515 (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3458606584 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2668710515_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_m423288 (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3458606584 *, const RuntimeMethod*))Enumerator_MoveNext_m423288_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Boolean>::get_Current() inline bool Enumerator_get_Current_m2305210644 (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3458606584 *, const RuntimeMethod*))Enumerator_get_Current_m2305210644_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2237476582 (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3458606584 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2237476582_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1564381721 (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3458606584 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1564381721_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3246934289 (Enumerator_t200647699 * __this, List_1_t2606371118 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t200647699 *, List_1_t2606371118 *, const RuntimeMethod*))Enumerator__ctor_m3246934289_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::Dispose() inline void Enumerator_Dispose_m1812819993 (Enumerator_t200647699 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t200647699 *, const RuntimeMethod*))Enumerator_Dispose_m1812819993_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1012097514 (Enumerator_t200647699 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t200647699 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1012097514_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNext() inline bool Enumerator_MoveNext_m2041610666 (Enumerator_t200647699 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t200647699 *, const RuntimeMethod*))Enumerator_MoveNext_m2041610666_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Byte>::get_Current() inline uint8_t Enumerator_get_Current_m3044490399 (Enumerator_t200647699 * __this, const RuntimeMethod* method) { return (( uint8_t (*) (Enumerator_t200647699 *, const RuntimeMethod*))Enumerator_get_Current_m3044490399_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4168020981 (Enumerator_t200647699 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t200647699 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m4168020981_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3527407980 (Enumerator_t200647699 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t200647699 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3527407980_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m2263237050 (Enumerator_t2700811793 * __this, List_1_t811567916 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2700811793 *, List_1_t811567916 *, const RuntimeMethod*))Enumerator__ctor_m2263237050_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::Dispose() inline void Enumerator_Dispose_m3961787728 (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2700811793 *, const RuntimeMethod*))Enumerator_Dispose_m3961787728_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNextRare() inline bool Enumerator_MoveNextRare_m3819182280 (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2700811793 *, const RuntimeMethod*))Enumerator_MoveNextRare_m3819182280_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNext() inline bool Enumerator_MoveNext_m1940664149 (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2700811793 *, const RuntimeMethod*))Enumerator_MoveNext_m1940664149_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Char>::get_Current() inline Il2CppChar Enumerator_get_Current_m1436440636 (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { return (( Il2CppChar (*) (Enumerator_t2700811793 *, const RuntimeMethod*))Enumerator_get_Current_m1436440636_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1846615603 (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2700811793 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1846615603_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2394182378 (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2700811793 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2394182378_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m298503667 (Enumerator_t2190326961 * __this, List_1_t301083084 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2190326961 *, List_1_t301083084 *, const RuntimeMethod*))Enumerator__ctor_m298503667_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::Dispose() inline void Enumerator_Dispose_m2145973982 (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2190326961 *, const RuntimeMethod*))Enumerator_Dispose_m2145973982_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::MoveNextRare() inline bool Enumerator_MoveNextRare_m870041834 (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2190326961 *, const RuntimeMethod*))Enumerator_MoveNextRare_m870041834_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::MoveNext() inline bool Enumerator_MoveNext_m2875527037 (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2190326961 *, const RuntimeMethod*))Enumerator_MoveNext_m2875527037_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::get_Current() inline DictionaryEntry_t3123975638 Enumerator_get_Current_m3966199253 (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_t3123975638 (*) (Enumerator_t2190326961 *, const RuntimeMethod*))Enumerator_get_Current_m3966199253_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m429756051 (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2190326961 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m429756051_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2701100861 (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2190326961 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2701100861_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m2204179911 (Enumerator_t4232248905 * __this, List_1_t2343005028 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t4232248905 *, List_1_t2343005028 *, const RuntimeMethod*))Enumerator__ctor_m2204179911_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose() inline void Enumerator_Dispose_m648910407 (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4232248905 *, const RuntimeMethod*))Enumerator_Dispose_m648910407_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2415817588 (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t4232248905 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2415817588_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext() inline bool Enumerator_MoveNext_m603919753 (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t4232248905 *, const RuntimeMethod*))Enumerator_MoveNext_m603919753_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current() inline KeyValuePair_2_t870930286 Enumerator_get_Current_m1408947006 (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t870930286 (*) (Enumerator_t4232248905 *, const RuntimeMethod*))Enumerator_get_Current_m1408947006_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2758235416 (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t4232248905 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2758235416_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2636500527 (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4232248905 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2636500527_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3076576538 (Enumerator_t114485015 * __this, List_1_t2520208434 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t114485015 *, List_1_t2520208434 *, const RuntimeMethod*))Enumerator__ctor_m3076576538_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::Dispose() inline void Enumerator_Dispose_m533961586 (Enumerator_t114485015 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t114485015 *, const RuntimeMethod*))Enumerator_Dispose_m533961586_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::MoveNextRare() inline bool Enumerator_MoveNextRare_m3066504888 (Enumerator_t114485015 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t114485015 *, const RuntimeMethod*))Enumerator_MoveNextRare_m3066504888_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::MoveNext() inline bool Enumerator_MoveNext_m354715473 (Enumerator_t114485015 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t114485015 *, const RuntimeMethod*))Enumerator_MoveNext_m354715473_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::get_Current() inline KeyValuePair_2_t1048133692 Enumerator_get_Current_m3565126395 (Enumerator_t114485015 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t1048133692 (*) (Enumerator_t114485015 *, const RuntimeMethod*))Enumerator_get_Current_m3565126395_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m505121024 (Enumerator_t114485015 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t114485015 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m505121024_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m40414700 (Enumerator_t114485015 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t114485015 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m40414700_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3755364950 (Enumerator_t1596568642 * __this, List_1_t4002292061 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1596568642 *, List_1_t4002292061 *, const RuntimeMethod*))Enumerator__ctor_m3755364950_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() inline void Enumerator_Dispose_m1095364494 (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1596568642 *, const RuntimeMethod*))Enumerator_Dispose_m1095364494_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNextRare() inline bool Enumerator_MoveNextRare_m168524002 (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1596568642 *, const RuntimeMethod*))Enumerator_MoveNextRare_m168524002_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext() inline bool Enumerator_MoveNext_m1372561486 (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1596568642 *, const RuntimeMethod*))Enumerator_MoveNext_m1372561486_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() inline KeyValuePair_2_t2530217319 Enumerator_get_Current_m355309478 (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t2530217319 (*) (Enumerator_t1596568642 *, const RuntimeMethod*))Enumerator_get_Current_m355309478_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m793370193 (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1596568642 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m793370193_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m541923898 (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1596568642 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m541923898_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m138712765 (Enumerator_t2804881108 * __this, List_1_t915637231 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2804881108 *, List_1_t915637231 *, const RuntimeMethod*))Enumerator__ctor_m138712765_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::Dispose() inline void Enumerator_Dispose_m551339255 (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2804881108 *, const RuntimeMethod*))Enumerator_Dispose_m551339255_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1293148454 (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2804881108 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1293148454_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNext() inline bool Enumerator_MoveNext_m1063715261 (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2804881108 *, const RuntimeMethod*))Enumerator_MoveNext_m1063715261_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.DateTime>::get_Current() inline DateTime_t3738529785 Enumerator_get_Current_m3577653834 (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { return (( DateTime_t3738529785 (*) (Enumerator_t2804881108 *, const RuntimeMethod*))Enumerator_get_Current_m3577653834_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1335446329 (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2804881108 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1335446329_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3925432481 (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2804881108 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3925432481_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m773886775 (Enumerator_t2295638830 * __this, List_1_t406394953 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2295638830 *, List_1_t406394953 *, const RuntimeMethod*))Enumerator__ctor_m773886775_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::Dispose() inline void Enumerator_Dispose_m310444287 (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2295638830 *, const RuntimeMethod*))Enumerator_Dispose_m310444287_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNextRare() inline bool Enumerator_MoveNextRare_m4283024577 (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2295638830 *, const RuntimeMethod*))Enumerator_MoveNextRare_m4283024577_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNext() inline bool Enumerator_MoveNext_m2486915160 (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2295638830 *, const RuntimeMethod*))Enumerator_MoveNext_m2486915160_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::get_Current() inline DateTimeOffset_t3229287507 Enumerator_get_Current_m364159929 (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { return (( DateTimeOffset_t3229287507 (*) (Enumerator_t2295638830 *, const RuntimeMethod*))Enumerator_get_Current_m364159929_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2404343349 (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2295638830 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2404343349_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1398371920 (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2295638830 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1398371920_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3045324249 (Enumerator_t2014610703 * __this, List_1_t125366826 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2014610703 *, List_1_t125366826 *, const RuntimeMethod*))Enumerator__ctor_m3045324249_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::Dispose() inline void Enumerator_Dispose_m3605374108 (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2014610703 *, const RuntimeMethod*))Enumerator_Dispose_m3605374108_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNextRare() inline bool Enumerator_MoveNextRare_m4035682446 (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2014610703 *, const RuntimeMethod*))Enumerator_MoveNextRare_m4035682446_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNext() inline bool Enumerator_MoveNext_m3070898284 (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2014610703 *, const RuntimeMethod*))Enumerator_MoveNext_m3070898284_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Decimal>::get_Current() inline Decimal_t2948259380 Enumerator_get_Current_m3186922302 (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { return (( Decimal_t2948259380 (*) (Enumerator_t2014610703 *, const RuntimeMethod*))Enumerator_get_Current_m3186922302_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3691286518 (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2014610703 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3691286518_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1480554046 (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2014610703 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1480554046_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m1409034699 (Enumerator_t3955983982 * __this, List_1_t2066740105 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3955983982 *, List_1_t2066740105 *, const RuntimeMethod*))Enumerator__ctor_m1409034699_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::Dispose() inline void Enumerator_Dispose_m3437595106 (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3955983982 *, const RuntimeMethod*))Enumerator_Dispose_m3437595106_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNextRare() inline bool Enumerator_MoveNextRare_m3153309434 (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3955983982 *, const RuntimeMethod*))Enumerator_MoveNextRare_m3153309434_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNext() inline bool Enumerator_MoveNext_m3399714144 (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3955983982 *, const RuntimeMethod*))Enumerator_MoveNext_m3399714144_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Double>::get_Current() inline double Enumerator_get_Current_m544454941 (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { return (( double (*) (Enumerator_t3955983982 *, const RuntimeMethod*))Enumerator_get_Current_m544454941_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m773711846 (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3955983982 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m773711846_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1095275694 (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3955983982 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1095275694_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3160081948 (Enumerator_t1619171710 * __this, List_1_t4024895129 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1619171710 *, List_1_t4024895129 *, const RuntimeMethod*))Enumerator__ctor_m3160081948_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::Dispose() inline void Enumerator_Dispose_m499370896 (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1619171710 *, const RuntimeMethod*))Enumerator_Dispose_m499370896_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1925719897 (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1619171710 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1925719897_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNext() inline bool Enumerator_MoveNext_m725592978 (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1619171710 *, const RuntimeMethod*))Enumerator_MoveNext_m725592978_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Int16>::get_Current() inline int16_t Enumerator_get_Current_m4284377350 (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { return (( int16_t (*) (Enumerator_t1619171710 *, const RuntimeMethod*))Enumerator_get_Current_m4284377350_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m35820292 (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1619171710 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m35820292_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3106565210 (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1619171710 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3106565210_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m247851533 (Enumerator_t2017297076 * __this, List_1_t128053199 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2017297076 *, List_1_t128053199 *, const RuntimeMethod*))Enumerator__ctor_m247851533_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose() inline void Enumerator_Dispose_m222348240 (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2017297076 *, const RuntimeMethod*))Enumerator_Dispose_m222348240_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2666135731 (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2017297076 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2666135731_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m1050804954 (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2017297076 *, const RuntimeMethod*))Enumerator_MoveNext_m1050804954_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current() inline int32_t Enumerator_get_Current_m2612064142 (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t2017297076 *, const RuntimeMethod*))Enumerator_get_Current_m2612064142_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m323862414 (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2017297076 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m323862414_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m502339360 (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2017297076 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m502339360_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m14605281 (Enumerator_t2802918627 * __this, List_1_t913674750 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2802918627 *, List_1_t913674750 *, const RuntimeMethod*))Enumerator__ctor_m14605281_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::Dispose() inline void Enumerator_Dispose_m356810930 (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2802918627 *, const RuntimeMethod*))Enumerator_Dispose_m356810930_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNextRare() inline bool Enumerator_MoveNextRare_m3832676127 (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2802918627 *, const RuntimeMethod*))Enumerator_MoveNextRare_m3832676127_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNext() inline bool Enumerator_MoveNext_m3870894191 (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2802918627 *, const RuntimeMethod*))Enumerator_MoveNext_m3870894191_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Int64>::get_Current() inline int64_t Enumerator_get_Current_m2349305336 (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { return (( int64_t (*) (Enumerator_t2802918627 *, const RuntimeMethod*))Enumerator_get_Current_m2349305336_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1694256383 (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2802918627 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1694256383_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3387745361 (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2802918627 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3387745361_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m2636919835 (Enumerator_t2529877651 * __this, List_1_t640633774 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2529877651 *, List_1_t640633774 *, const RuntimeMethod*))Enumerator__ctor_m2636919835_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::Dispose() inline void Enumerator_Dispose_m895569904 (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2529877651 *, const RuntimeMethod*))Enumerator_Dispose_m895569904_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1987352430 (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2529877651 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1987352430_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::MoveNext() inline bool Enumerator_MoveNext_m3352869030 (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2529877651 *, const RuntimeMethod*))Enumerator_MoveNext_m3352869030_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::get_Current() inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 Enumerator_get_Current_m2730273305 (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { return (( Win32_IP_ADAPTER_ADDRESSES_t3463526328 (*) (Enumerator_t2529877651 *, const RuntimeMethod*))Enumerator_get_Current_m2730273305_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2195889862 (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2529877651 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2195889862_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3522081619 (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2529877651 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3522081619_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3170385166 (Enumerator_t2146457487 * __this, List_1_t257213610 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2146457487 *, List_1_t257213610 *, const RuntimeMethod*))Enumerator__ctor_m3170385166_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose() inline void Enumerator_Dispose_m3007748546 (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2146457487 *, const RuntimeMethod*))Enumerator_Dispose_m3007748546_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1088973935 (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2146457487 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1088973935_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext() inline bool Enumerator_MoveNext_m2142368520 (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2146457487 *, const RuntimeMethod*))Enumerator_MoveNext_m2142368520_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_m337713592 (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2146457487 *, const RuntimeMethod*))Enumerator_get_Current_m337713592_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3681948262 (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2146457487 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3681948262_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m959124362 (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2146457487 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m959124362_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m4140484736 (Enumerator_t2417789510 * __this, List_1_t528545633 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2417789510 *, List_1_t528545633 *, const RuntimeMethod*))Enumerator__ctor_m4140484736_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::Dispose() inline void Enumerator_Dispose_m4139153022 (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2417789510 *, const RuntimeMethod*))Enumerator_Dispose_m4139153022_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::MoveNextRare() inline bool Enumerator_MoveNextRare_m3052879222 (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2417789510 *, const RuntimeMethod*))Enumerator_MoveNextRare_m3052879222_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::MoveNext() inline bool Enumerator_MoveNext_m3073970556 (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2417789510 *, const RuntimeMethod*))Enumerator_MoveNext_m3073970556_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::get_Current() inline GCHandle_t3351438187 Enumerator_get_Current_m1124086041 (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { return (( GCHandle_t3351438187 (*) (Enumerator_t2417789510 *, const RuntimeMethod*))Enumerator_get_Current_m1124086041_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1523025272 (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2417789510 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1523025272_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m446259503 (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2417789510 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m446259503_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m1048599061 (Enumerator_t3680209407 * __this, List_1_t1790965530 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3680209407 *, List_1_t1790965530 *, const RuntimeMethod*))Enumerator__ctor_m1048599061_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::Dispose() inline void Enumerator_Dispose_m1566401219 (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3680209407 *, const RuntimeMethod*))Enumerator_Dispose_m1566401219_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1813959100 (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3680209407 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1813959100_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::MoveNext() inline bool Enumerator_MoveNext_m3964309034 (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3680209407 *, const RuntimeMethod*))Enumerator_MoveNext_m3964309034_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::get_Current() inline EventRegistrationToken_t318890788 Enumerator_get_Current_m2635610218 (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { return (( EventRegistrationToken_t318890788 (*) (Enumerator_t3680209407 *, const RuntimeMethod*))Enumerator_get_Current_m2635610218_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m704675993 (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3680209407 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m704675993_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2509888677 (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3680209407 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2509888677_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.SByte>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m1721949535 (Enumerator_t735928985 * __this, List_1_t3141652404 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t735928985 *, List_1_t3141652404 *, const RuntimeMethod*))Enumerator__ctor_m1721949535_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.SByte>::Dispose() inline void Enumerator_Dispose_m1015340444 (Enumerator_t735928985 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t735928985 *, const RuntimeMethod*))Enumerator_Dispose_m1015340444_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.SByte>::MoveNextRare() inline bool Enumerator_MoveNextRare_m3925873929 (Enumerator_t735928985 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t735928985 *, const RuntimeMethod*))Enumerator_MoveNextRare_m3925873929_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.SByte>::MoveNext() inline bool Enumerator_MoveNext_m3124826189 (Enumerator_t735928985 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t735928985 *, const RuntimeMethod*))Enumerator_MoveNext_m3124826189_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.SByte>::get_Current() inline int8_t Enumerator_get_Current_m3149433407 (Enumerator_t735928985 * __this, const RuntimeMethod* method) { return (( int8_t (*) (Enumerator_t735928985 *, const RuntimeMethod*))Enumerator_get_Current_m3149433407_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.SByte>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3493161884 (Enumerator_t735928985 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t735928985 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3493161884_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.SByte>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1118301326 (Enumerator_t735928985 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t735928985 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1118301326_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Single>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m113707524 (Enumerator_t463618097 * __this, List_1_t2869341516 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t463618097 *, List_1_t2869341516 *, const RuntimeMethod*))Enumerator__ctor_m113707524_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Single>::Dispose() inline void Enumerator_Dispose_m3204468515 (Enumerator_t463618097 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t463618097 *, const RuntimeMethod*))Enumerator_Dispose_m3204468515_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Single>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2844325332 (Enumerator_t463618097 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t463618097 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2844325332_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Single>::MoveNext() inline bool Enumerator_MoveNext_m3275886745 (Enumerator_t463618097 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t463618097 *, const RuntimeMethod*))Enumerator_MoveNext_m3275886745_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Single>::get_Current() inline float Enumerator_get_Current_m1091865704 (Enumerator_t463618097 * __this, const RuntimeMethod* method) { return (( float (*) (Enumerator_t463618097 *, const RuntimeMethod*))Enumerator_get_Current_m1091865704_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Single>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m495085386 (Enumerator_t463618097 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t463618097 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m495085386_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Single>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3951708793 (Enumerator_t463618097 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t463618097 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3951708793_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m671055880 (Enumerator_t3454164214 * __this, List_1_t1564920337 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3454164214 *, List_1_t1564920337 *, const RuntimeMethod*))Enumerator__ctor_m671055880_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::Dispose() inline void Enumerator_Dispose_m3062128061 (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3454164214 *, const RuntimeMethod*))Enumerator_Dispose_m3062128061_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::MoveNextRare() inline bool Enumerator_MoveNextRare_m441445789 (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3454164214 *, const RuntimeMethod*))Enumerator_MoveNextRare_m441445789_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::MoveNext() inline bool Enumerator_MoveNext_m2437531857 (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3454164214 *, const RuntimeMethod*))Enumerator_MoveNext_m2437531857_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::get_Current() inline int32_t Enumerator_get_Current_m2218931355 (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t3454164214 *, const RuntimeMethod*))Enumerator_get_Current_m2218931355_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3326453338 (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3454164214 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3326453338_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1292847408 (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3454164214 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1292847408_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3813920009 (Enumerator_t4242477868 * __this, List_1_t2353233991 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t4242477868 *, List_1_t2353233991 *, const RuntimeMethod*))Enumerator__ctor_m3813920009_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::Dispose() inline void Enumerator_Dispose_m1433828346 (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4242477868 *, const RuntimeMethod*))Enumerator_Dispose_m1433828346_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2054936041 (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t4242477868 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2054936041_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::MoveNext() inline bool Enumerator_MoveNext_m1040687014 (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t4242477868 *, const RuntimeMethod*))Enumerator_MoveNext_m1040687014_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::get_Current() inline TimeSpan_t881159249 Enumerator_get_Current_m3187927150 (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { return (( TimeSpan_t881159249 (*) (Enumerator_t4242477868 *, const RuntimeMethod*))Enumerator_get_Current_m3187927150_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m843419409 (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t4242477868 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m843419409_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1473965589 (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4242477868 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1473965589_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt16>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3545203873 (Enumerator_t1244076281 * __this, List_1_t3649799700 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1244076281 *, List_1_t3649799700 *, const RuntimeMethod*))Enumerator__ctor_m3545203873_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt16>::Dispose() inline void Enumerator_Dispose_m1708583765 (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1244076281 *, const RuntimeMethod*))Enumerator_Dispose_m1708583765_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt16>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2356633608 (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1244076281 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2356633608_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt16>::MoveNext() inline bool Enumerator_MoveNext_m2784653748 (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1244076281 *, const RuntimeMethod*))Enumerator_MoveNext_m2784653748_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.UInt16>::get_Current() inline uint16_t Enumerator_get_Current_m1796245645 (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { return (( uint16_t (*) (Enumerator_t1244076281 *, const RuntimeMethod*))Enumerator_get_Current_m1796245645_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.UInt16>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1918550569 (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1244076281 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1918550569_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt16>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1309703967 (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1244076281 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1309703967_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt32>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m387368542 (Enumerator_t1626413301 * __this, List_1_t4032136720 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1626413301 *, List_1_t4032136720 *, const RuntimeMethod*))Enumerator__ctor_m387368542_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt32>::Dispose() inline void Enumerator_Dispose_m2633022274 (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1626413301 *, const RuntimeMethod*))Enumerator_Dispose_m2633022274_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt32>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1813529066 (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1626413301 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1813529066_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt32>::MoveNext() inline bool Enumerator_MoveNext_m2507767888 (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1626413301 *, const RuntimeMethod*))Enumerator_MoveNext_m2507767888_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.UInt32>::get_Current() inline uint32_t Enumerator_get_Current_m4017011339 (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (Enumerator_t1626413301 *, const RuntimeMethod*))Enumerator_get_Current_m4017011339_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.UInt32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2555577014 (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1626413301 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2555577014_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m408884937 (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1626413301 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m408884937_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m1300801339 (Enumerator_t3200391415 * __this, List_1_t1311147538 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3200391415 *, List_1_t1311147538 *, const RuntimeMethod*))Enumerator__ctor_m1300801339_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::Dispose() inline void Enumerator_Dispose_m1751241548 (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3200391415 *, const RuntimeMethod*))Enumerator_Dispose_m1751241548_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt64>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2351054707 (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3200391415 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2351054707_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt64>::MoveNext() inline bool Enumerator_MoveNext_m2923158868 (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3200391415 *, const RuntimeMethod*))Enumerator_MoveNext_m2923158868_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.UInt64>::get_Current() inline uint64_t Enumerator_get_Current_m390703204 (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { return (( uint64_t (*) (Enumerator_t3200391415 *, const RuntimeMethod*))Enumerator_get_Current_m390703204_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.UInt64>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3660148336 (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3200391415 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3660148336_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m439305236 (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3200391415 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m439305236_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m2777927842 (Enumerator_t3951287555 * __this, List_1_t2062043678 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3951287555 *, List_1_t2062043678 *, const RuntimeMethod*))Enumerator__ctor_m2777927842_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::Dispose() inline void Enumerator_Dispose_m1986934951 (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3951287555 *, const RuntimeMethod*))Enumerator_Dispose_m1986934951_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::MoveNextRare() inline bool Enumerator_MoveNextRare_m4222641326 (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3951287555 *, const RuntimeMethod*))Enumerator_MoveNextRare_m4222641326_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::MoveNext() inline bool Enumerator_MoveNext_m114631604 (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3951287555 *, const RuntimeMethod*))Enumerator_MoveNext_m114631604_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::get_Current() inline RangePositionInfo_t589968936 Enumerator_get_Current_m2883538525 (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { return (( RangePositionInfo_t589968936 (*) (Enumerator_t3951287555 *, const RuntimeMethod*))Enumerator_get_Current_m2883538525_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3425090230 (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3951287555 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3425090230_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2460063187 (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3951287555 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2460063187_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m230384598 (Enumerator_t2411028294 * __this, List_1_t521784417 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2411028294 *, List_1_t521784417 *, const RuntimeMethod*))Enumerator__ctor_m230384598_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::Dispose() inline void Enumerator_Dispose_m38496378 (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2411028294 *, const RuntimeMethod*))Enumerator_Dispose_m38496378_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::MoveNextRare() inline bool Enumerator_MoveNextRare_m3991867153 (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2411028294 *, const RuntimeMethod*))Enumerator_MoveNextRare_m3991867153_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::MoveNext() inline bool Enumerator_MoveNext_m560796504 (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2411028294 *, const RuntimeMethod*))Enumerator_MoveNext_m560796504_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::get_Current() inline XmlSchemaObjectEntry_t3344676971 Enumerator_get_Current_m4185603630 (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { return (( XmlSchemaObjectEntry_t3344676971 (*) (Enumerator_t2411028294 *, const RuntimeMethod*))Enumerator_get_Current_m4185603630_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m441102969 (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2411028294 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m441102969_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3806771805 (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2411028294 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3806771805_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m504791950 (Enumerator_t652329154 * __this, List_1_t3058052573 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t652329154 *, List_1_t3058052573 *, const RuntimeMethod*))Enumerator__ctor_m504791950_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() inline void Enumerator_Dispose_m786980821 (Enumerator_t652329154 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t652329154 *, const RuntimeMethod*))Enumerator_Dispose_m786980821_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1820229297 (Enumerator_t652329154 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t652329154 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1820229297_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() inline bool Enumerator_MoveNext_m1177880931 (Enumerator_t652329154 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t652329154 *, const RuntimeMethod*))Enumerator_MoveNext_m1177880931_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() inline OrderBlock_t1585977831 Enumerator_get_Current_m2468920150 (Enumerator_t652329154 * __this, const RuntimeMethod* method) { return (( OrderBlock_t1585977831 (*) (Enumerator_t652329154 *, const RuntimeMethod*))Enumerator_get_Current_m2468920150_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m713684915 (Enumerator_t652329154 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t652329154 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m713684915_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m144072597 (Enumerator_t652329154 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t652329154 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m144072597_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m40451936 (Enumerator_t1666852615 * __this, List_1_t4072576034 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1666852615 *, List_1_t4072576034 *, const RuntimeMethod*))Enumerator__ctor_m40451936_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::Dispose() inline void Enumerator_Dispose_m951715887 (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1666852615 *, const RuntimeMethod*))Enumerator_Dispose_m951715887_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNextRare() inline bool Enumerator_MoveNextRare_m3401010412 (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1666852615 *, const RuntimeMethod*))Enumerator_MoveNextRare_m3401010412_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNext() inline bool Enumerator_MoveNext_m2407049913 (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1666852615 *, const RuntimeMethod*))Enumerator_MoveNext_m2407049913_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::get_Current() inline Color32_t2600501292 Enumerator_get_Current_m2808660251 (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { return (( Color32_t2600501292 (*) (Enumerator_t1666852615 *, const RuntimeMethod*))Enumerator_get_Current_m2808660251_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2339378585 (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1666852615 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2339378585_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m361915779 (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1666852615 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m361915779_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m145149276 (Enumerator_t1622037647 * __this, List_1_t4027761066 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1622037647 *, List_1_t4027761066 *, const RuntimeMethod*))Enumerator__ctor_m145149276_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::Dispose() inline void Enumerator_Dispose_m3373245193 (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1622037647 *, const RuntimeMethod*))Enumerator_Dispose_m3373245193_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1185429068 (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1622037647 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1185429068_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::MoveNext() inline bool Enumerator_MoveNext_m2916575364 (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1622037647 *, const RuntimeMethod*))Enumerator_MoveNext_m2916575364_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::get_Current() inline Color_t2555686324 Enumerator_get_Current_m3890687419 (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { return (( Color_t2555686324 (*) (Enumerator_t1622037647 *, const RuntimeMethod*))Enumerator_get_Current_m3890687419_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3498516727 (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1622037647 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3498516727_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m685208550 (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1622037647 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m685208550_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m378707842 (Enumerator_t2426658172 * __this, List_1_t537414295 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2426658172 *, List_1_t537414295 *, const RuntimeMethod*))Enumerator__ctor_m378707842_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::Dispose() inline void Enumerator_Dispose_m2531396701 (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2426658172 *, const RuntimeMethod*))Enumerator_Dispose_m2531396701_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::MoveNextRare() inline bool Enumerator_MoveNextRare_m642466636 (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2426658172 *, const RuntimeMethod*))Enumerator_MoveNextRare_m642466636_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::MoveNext() inline bool Enumerator_MoveNext_m1562562514 (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2426658172 *, const RuntimeMethod*))Enumerator_MoveNext_m1562562514_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::get_Current() inline RaycastResult_t3360306849 Enumerator_get_Current_m530189328 (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { return (( RaycastResult_t3360306849 (*) (Enumerator_t2426658172 *, const RuntimeMethod*))Enumerator_get_Current_m530189328_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3405349194 (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2426658172 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3405349194_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3057416204 (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2426658172 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3057416204_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3395048702 (Enumerator_t2852202816 * __this, List_1_t962958939 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2852202816 *, List_1_t962958939 *, const RuntimeMethod*))Enumerator__ctor_m3395048702_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::Dispose() inline void Enumerator_Dispose_m2723595929 (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2852202816 *, const RuntimeMethod*))Enumerator_Dispose_m2723595929_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2339712370 (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2852202816 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2339712370_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::MoveNext() inline bool Enumerator_MoveNext_m1697727539 (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2852202816 *, const RuntimeMethod*))Enumerator_MoveNext_m1697727539_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::get_Current() inline Ray_t3785851493 Enumerator_get_Current_m1622353285 (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { return (( Ray_t3785851493 (*) (Enumerator_t2852202816 *, const RuntimeMethod*))Enumerator_get_Current_m1622353285_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2446099888 (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2852202816 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2446099888_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m226384956 (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2852202816 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m226384956_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3431458266 (Enumerator_t3436819725 * __this, List_1_t1547575848 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3436819725 *, List_1_t1547575848 *, const RuntimeMethod*))Enumerator__ctor_m3431458266_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::Dispose() inline void Enumerator_Dispose_m2173500881 (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3436819725 *, const RuntimeMethod*))Enumerator_Dispose_m2173500881_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1486703814 (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3436819725 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1486703814_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::MoveNext() inline bool Enumerator_MoveNext_m4018122760 (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3436819725 *, const RuntimeMethod*))Enumerator_MoveNext_m4018122760_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::get_Current() inline UICharInfo_t75501106 Enumerator_get_Current_m535320420 (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { return (( UICharInfo_t75501106 (*) (Enumerator_t3436819725 *, const RuntimeMethod*))Enumerator_get_Current_m535320420_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1643543708 (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3436819725 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1643543708_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2915500989 (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3436819725 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2915500989_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3300941814 (Enumerator_t3261618133 * __this, List_1_t1372374256 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3261618133 *, List_1_t1372374256 *, const RuntimeMethod*))Enumerator__ctor_m3300941814_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::Dispose() inline void Enumerator_Dispose_m3432036959 (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3261618133 *, const RuntimeMethod*))Enumerator_Dispose_m3432036959_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::MoveNextRare() inline bool Enumerator_MoveNextRare_m4217249474 (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3261618133 *, const RuntimeMethod*))Enumerator_MoveNextRare_m4217249474_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::MoveNext() inline bool Enumerator_MoveNext_m1446151600 (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3261618133 *, const RuntimeMethod*))Enumerator_MoveNext_m1446151600_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::get_Current() inline UILineInfo_t4195266810 Enumerator_get_Current_m3382684163 (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { return (( UILineInfo_t4195266810 (*) (Enumerator_t3261618133 *, const RuntimeMethod*))Enumerator_get_Current_m3382684163_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2713159350 (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3261618133 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2713159350_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2747590098 (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3261618133 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2747590098_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m2029608698 (Enumerator_t3123848928 * __this, List_1_t1234605051 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3123848928 *, List_1_t1234605051 *, const RuntimeMethod*))Enumerator__ctor_m2029608698_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::Dispose() inline void Enumerator_Dispose_m2498245804 (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3123848928 *, const RuntimeMethod*))Enumerator_Dispose_m2498245804_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::MoveNextRare() inline bool Enumerator_MoveNextRare_m1917289061 (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3123848928 *, const RuntimeMethod*))Enumerator_MoveNextRare_m1917289061_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::MoveNext() inline bool Enumerator_MoveNext_m29052175 (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3123848928 *, const RuntimeMethod*))Enumerator_MoveNext_m29052175_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::get_Current() inline UIVertex_t4057497605 Enumerator_get_Current_m2538493517 (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { return (( UIVertex_t4057497605 (*) (Enumerator_t3123848928 *, const RuntimeMethod*))Enumerator_get_Current_m2538493517_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3594024719 (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3123848928 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3594024719_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2355925297 (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3123848928 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2355925297_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3875432026 (Enumerator_t1222580846 * __this, List_1_t3628304265 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1222580846 *, List_1_t3628304265 *, const RuntimeMethod*))Enumerator__ctor_m3875432026_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::Dispose() inline void Enumerator_Dispose_m2367629053 (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1222580846 *, const RuntimeMethod*))Enumerator_Dispose_m2367629053_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::MoveNextRare() inline bool Enumerator_MoveNextRare_m3690106538 (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1222580846 *, const RuntimeMethod*))Enumerator_MoveNextRare_m3690106538_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::MoveNext() inline bool Enumerator_MoveNext_m2595190390 (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1222580846 *, const RuntimeMethod*))Enumerator_MoveNext_m2595190390_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::get_Current() inline Vector2_t2156229523 Enumerator_get_Current_m1292806972 (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { return (( Vector2_t2156229523 (*) (Enumerator_t1222580846 *, const RuntimeMethod*))Enumerator_get_Current_m1292806972_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1540440674 (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1222580846 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1540440674_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m688431936 (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1222580846 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m688431936_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m3751722449 (Enumerator_t2788664787 * __this, List_1_t899420910 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2788664787 *, List_1_t899420910 *, const RuntimeMethod*))Enumerator__ctor_m3751722449_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::Dispose() inline void Enumerator_Dispose_m2367589020 (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2788664787 *, const RuntimeMethod*))Enumerator_Dispose_m2367589020_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::MoveNextRare() inline bool Enumerator_MoveNextRare_m2248864500 (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2788664787 *, const RuntimeMethod*))Enumerator_MoveNextRare_m2248864500_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::MoveNext() inline bool Enumerator_MoveNext_m1345201779 (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2788664787 *, const RuntimeMethod*))Enumerator_MoveNext_m1345201779_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::get_Current() inline Vector3_t3722313464 Enumerator_get_Current_m3157770427 (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { return (( Vector3_t3722313464 (*) (Enumerator_t2788664787 *, const RuntimeMethod*))Enumerator_get_Current_m3157770427_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m506196216 (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2788664787 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m506196216_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m2953002685 (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2788664787 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m2953002685_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::.ctor(System.Collections.Generic.List`1<T>) inline void Enumerator__ctor_m1346728491 (Enumerator_t2385380260 * __this, List_1_t496136383 * ___list0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2385380260 *, List_1_t496136383 *, const RuntimeMethod*))Enumerator__ctor_m1346728491_gshared)(__this, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::Dispose() inline void Enumerator_Dispose_m2367983719 (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2385380260 *, const RuntimeMethod*))Enumerator_Dispose_m2367983719_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::MoveNextRare() inline bool Enumerator_MoveNextRare_m522511488 (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2385380260 *, const RuntimeMethod*))Enumerator_MoveNextRare_m522511488_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::MoveNext() inline bool Enumerator_MoveNext_m625797905 (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2385380260 *, const RuntimeMethod*))Enumerator_MoveNext_m625797905_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::get_Current() inline Vector4_t3319028937 Enumerator_get_Current_m1210327282 (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { return (( Vector4_t3319028937 (*) (Enumerator_t2385380260 *, const RuntimeMethod*))Enumerator_get_Current_m1210327282_gshared)(__this, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m209407522 (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2385380260 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m209407522_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m3754523291 (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2385380260 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3754523291_gshared)(__this, method); } // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument,System.ExceptionResource) extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726 (RuntimeObject * __this /* static, unused */, int32_t ___argument0, int32_t ___resource1, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentNullException(System.ExceptionArgument) extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m2415499580 (RuntimeObject * __this /* static, unused */, int32_t ___argument0, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowWrongValueTypeArgumentException(System.Object,System.Type) extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, Type_t * ___targetType1, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentException(System.ExceptionResource) extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_m3817859433 (RuntimeObject * __this /* static, unused */, int32_t ___resource0, const RuntimeMethod* method); // System.Void System.Array::Clear(System.Array,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Clear_m2231608178 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method); // System.Void System.Array::CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_CopyTo_m225704097 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m932279514_gshared (KeyValuePair_2_t4237331251 * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___key0; __this->set_key_0(L_0); int32_t L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m932279514_AdjustorThunk (RuntimeObject * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method) { KeyValuePair_2_t4237331251 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4237331251 *>(__this + 1); KeyValuePair_2__ctor_m932279514(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Key() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m2635782095_gshared (KeyValuePair_2_t4237331251 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return L_0; } } extern "C" int32_t KeyValuePair_2_get_Key_m2635782095_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4237331251 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4237331251 *>(__this + 1); return KeyValuePair_2_get_Key_m2635782095(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m1804680087_gshared (KeyValuePair_2_t4237331251 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return L_0; } } extern "C" int32_t KeyValuePair_2_get_Value_m1804680087_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4237331251 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4237331251 *>(__this + 1); return KeyValuePair_2_get_Value_m1804680087(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m65692449_gshared (KeyValuePair_2_t4237331251 * __this, const RuntimeMethod* method) { { int32_t L_0 = KeyValuePair_2_get_Key_m2635782095((KeyValuePair_2_t4237331251 *)(KeyValuePair_2_t4237331251 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); int32_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); int32_t L_3 = KeyValuePair_2_get_Value_m1804680087((KeyValuePair_2_t4237331251 *)(KeyValuePair_2_t4237331251 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_4); String_t* L_6 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_2, (RuntimeObject *)L_5, /*hidden argument*/NULL); return L_6; } } extern "C" String_t* KeyValuePair_2_ToString_m65692449_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4237331251 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4237331251 *>(__this + 1); return KeyValuePair_2_ToString_m65692449(_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.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m2118224448_gshared (KeyValuePair_2_t71524366 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___key0; __this->set_key_0(L_0); RuntimeObject * L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m2118224448_AdjustorThunk (RuntimeObject * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { KeyValuePair_2_t71524366 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t71524366 *>(__this + 1); KeyValuePair_2__ctor_m2118224448(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m1839753989_gshared (KeyValuePair_2_t71524366 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return L_0; } } extern "C" int32_t KeyValuePair_2_get_Key_m1839753989_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t71524366 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t71524366 *>(__this + 1); return KeyValuePair_2_get_Key_m1839753989(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m3495598764_gshared (KeyValuePair_2_t71524366 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Value_m3495598764_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t71524366 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t71524366 *>(__this + 1); return KeyValuePair_2_get_Value_m3495598764(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m1238786018_gshared (KeyValuePair_2_t71524366 * __this, const RuntimeMethod* method) { { int32_t L_0 = KeyValuePair_2_get_Key_m1839753989((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); int32_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); RuntimeObject * L_3 = KeyValuePair_2_get_Value_m3495598764((KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_2, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m1238786018_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t71524366 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t71524366 *>(__this + 1); return KeyValuePair_2_ToString_m1238786018(_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.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m2056996813_gshared (KeyValuePair_2_t2245450819 * __this, int64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { int64_t L_0 = ___key0; __this->set_key_0(L_0); RuntimeObject * L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m2056996813_AdjustorThunk (RuntimeObject * __this, int64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { KeyValuePair_2_t2245450819 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2245450819 *>(__this + 1); KeyValuePair_2__ctor_m2056996813(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Key_m635992374_gshared (KeyValuePair_2_t2245450819 * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_key_0(); return L_0; } } extern "C" int64_t KeyValuePair_2_get_Key_m635992374_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2245450819 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2245450819 *>(__this + 1); return KeyValuePair_2_get_Key_m635992374(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m392474074_gshared (KeyValuePair_2_t2245450819 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Value_m392474074_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2245450819 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2245450819 *>(__this + 1); return KeyValuePair_2_get_Value_m392474074(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m3013572783_gshared (KeyValuePair_2_t2245450819 * __this, const RuntimeMethod* method) { { int64_t L_0 = KeyValuePair_2_get_Key_m635992374((KeyValuePair_2_t2245450819 *)(KeyValuePair_2_t2245450819 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); int64_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); RuntimeObject * L_3 = KeyValuePair_2_get_Value_m392474074((KeyValuePair_2_t2245450819 *)(KeyValuePair_2_t2245450819 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_2, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m3013572783_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2245450819 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2245450819 *>(__this + 1); return KeyValuePair_2_ToString_m3013572783(_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.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m3967312370_gshared (KeyValuePair_2_t126004427 * __this, TypedConstant_t714020897 ___key0, int32_t ___value1, const RuntimeMethod* method) { { TypedConstant_t714020897 L_0 = ___key0; __this->set_key_0(L_0); int32_t L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m3967312370_AdjustorThunk (RuntimeObject * __this, TypedConstant_t714020897 ___key0, int32_t ___value1, const RuntimeMethod* method) { KeyValuePair_2_t126004427 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t126004427 *>(__this + 1); KeyValuePair_2__ctor_m3967312370(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::get_Key() extern "C" IL2CPP_METHOD_ATTR TypedConstant_t714020897 KeyValuePair_2_get_Key_m2623710737_gshared (KeyValuePair_2_t126004427 * __this, const RuntimeMethod* method) { { TypedConstant_t714020897 L_0 = (TypedConstant_t714020897 )__this->get_key_0(); return L_0; } } extern "C" TypedConstant_t714020897 KeyValuePair_2_get_Key_m2623710737_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t126004427 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t126004427 *>(__this + 1); return KeyValuePair_2_get_Key_m2623710737(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m3418326370_gshared (KeyValuePair_2_t126004427 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return L_0; } } extern "C" int32_t KeyValuePair_2_get_Value_m3418326370_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t126004427 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t126004427 *>(__this + 1); return KeyValuePair_2_get_Value_m3418326370(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Int32>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m1045680960_gshared (KeyValuePair_2_t126004427 * __this, const RuntimeMethod* method) { { TypedConstant_t714020897 L_0 = KeyValuePair_2_get_Key_m2623710737((KeyValuePair_2_t126004427 *)(KeyValuePair_2_t126004427 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); TypedConstant_t714020897 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); int32_t L_3 = KeyValuePair_2_get_Value_m3418326370((KeyValuePair_2_t126004427 *)(KeyValuePair_2_t126004427 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_4); String_t* L_6 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_2, (RuntimeObject *)L_5, /*hidden argument*/NULL); return L_6; } } extern "C" String_t* KeyValuePair_2_ToString_m1045680960_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t126004427 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t126004427 *>(__this + 1); return KeyValuePair_2_ToString_m1045680960(_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.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m51719720_gshared (KeyValuePair_2_t255164838 * __this, TypedConstant_t714020897 ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { TypedConstant_t714020897 L_0 = ___key0; __this->set_key_0(L_0); RuntimeObject * L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m51719720_AdjustorThunk (RuntimeObject * __this, TypedConstant_t714020897 ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { KeyValuePair_2_t255164838 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t255164838 *>(__this + 1); KeyValuePair_2__ctor_m51719720(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR TypedConstant_t714020897 KeyValuePair_2_get_Key_m3539669632_gshared (KeyValuePair_2_t255164838 * __this, const RuntimeMethod* method) { { TypedConstant_t714020897 L_0 = (TypedConstant_t714020897 )__this->get_key_0(); return L_0; } } extern "C" TypedConstant_t714020897 KeyValuePair_2_get_Key_m3539669632_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t255164838 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t255164838 *>(__this + 1); return KeyValuePair_2_get_Key_m3539669632(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1745831214_gshared (KeyValuePair_2_t255164838 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Value_m1745831214_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t255164838 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t255164838 *>(__this + 1); return KeyValuePair_2_get_Value_m1745831214(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Linq.Expressions.Compiler.BoundConstants/TypedConstant,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m3201086771_gshared (KeyValuePair_2_t255164838 * __this, const RuntimeMethod* method) { { TypedConstant_t714020897 L_0 = KeyValuePair_2_get_Key_m3539669632((KeyValuePair_2_t255164838 *)(KeyValuePair_2_t255164838 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); TypedConstant_t714020897 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); RuntimeObject * L_3 = KeyValuePair_2_get_Value_m1745831214((KeyValuePair_2_t255164838 *)(KeyValuePair_2_t255164838 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_2, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m3201086771_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t255164838 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t255164838 *>(__this + 1); return KeyValuePair_2_ToString_m3201086771(_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.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m540400546_gshared (KeyValuePair_2_t3422187268 * __this, RuntimeObject * ___key0, uint32_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; __this->set_key_0(L_0); uint32_t L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m540400546_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, uint32_t ___value1, const RuntimeMethod* method) { KeyValuePair_2_t3422187268 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3422187268 *>(__this + 1); KeyValuePair_2__ctor_m540400546(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m3802237574_gshared (KeyValuePair_2_t3422187268 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Key_m3802237574_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3422187268 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3422187268 *>(__this + 1); return KeyValuePair_2_get_Key_m3802237574(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::get_Value() extern "C" IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Value_m3608670336_gshared (KeyValuePair_2_t3422187268 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_value_1(); return L_0; } } extern "C" uint32_t KeyValuePair_2_get_Value_m3608670336_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3422187268 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3422187268 *>(__this + 1); return KeyValuePair_2_get_Value_m3608670336(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.CSharp.RuntimeBinder.Syntax.PredefinedType>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m1093220260_gshared (KeyValuePair_2_t3422187268 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m3802237574((KeyValuePair_2_t3422187268 *)(KeyValuePair_2_t3422187268 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); uint32_t L_1 = KeyValuePair_2_get_Value_m3608670336((KeyValuePair_2_t3422187268 *)(KeyValuePair_2_t3422187268 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_2); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m1093220260_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3422187268 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3422187268 *>(__this + 1); return KeyValuePair_2_ToString_m1093220260(_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.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m1860763818_gshared (KeyValuePair_2_t4085865031 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; __this->set_key_0(L_0); int32_t L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m1860763818_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { KeyValuePair_2_t4085865031 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4085865031 *>(__this + 1); KeyValuePair_2__ctor_m1860763818(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m2837550314_gshared (KeyValuePair_2_t4085865031 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Key_m2837550314_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4085865031 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4085865031 *>(__this + 1); return KeyValuePair_2_get_Key_m2837550314(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m1430811576_gshared (KeyValuePair_2_t4085865031 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return L_0; } } extern "C" int32_t KeyValuePair_2_get_Value_m1430811576_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4085865031 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4085865031 *>(__this + 1); return KeyValuePair_2_get_Value_m1430811576(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.ReadType>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m490808492_gshared (KeyValuePair_2_t4085865031 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m2837550314((KeyValuePair_2_t4085865031 *)(KeyValuePair_2_t4085865031 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); int32_t L_1 = KeyValuePair_2_get_Value_m1430811576((KeyValuePair_2_t4085865031 *)(KeyValuePair_2_t4085865031 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_2); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m490808492_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4085865031 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4085865031 *>(__this + 1); return KeyValuePair_2_ToString_m490808492(_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.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m198529365_gshared (KeyValuePair_2_t249061059 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; __this->set_key_0(L_0); int32_t L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m198529365_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { KeyValuePair_2_t249061059 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t249061059 *>(__this + 1); KeyValuePair_2__ctor_m198529365(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m3093971998_gshared (KeyValuePair_2_t249061059 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Key_m3093971998_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t249061059 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t249061059 *>(__this + 1); return KeyValuePair_2_get_Key_m3093971998(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m551864407_gshared (KeyValuePair_2_t249061059 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return L_0; } } extern "C" int32_t KeyValuePair_2_get_Value_m551864407_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t249061059 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t249061059 *>(__this + 1); return KeyValuePair_2_get_Value_m551864407(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m675279023_gshared (KeyValuePair_2_t249061059 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m3093971998((KeyValuePair_2_t249061059 *)(KeyValuePair_2_t249061059 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); int32_t L_1 = KeyValuePair_2_get_Value_m551864407((KeyValuePair_2_t249061059 *)(KeyValuePair_2_t249061059 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_2); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m675279023_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t249061059 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t249061059 *>(__this + 1); return KeyValuePair_2_ToString_m675279023(_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.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m1927988026_gshared (KeyValuePair_2_t2255362622 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; __this->set_key_0(L_0); int32_t L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m1927988026_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { KeyValuePair_2_t2255362622 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2255362622 *>(__this + 1); KeyValuePair_2__ctor_m1927988026(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m3745423128_gshared (KeyValuePair_2_t2255362622 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Key_m3745423128_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2255362622 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2255362622 *>(__this + 1); return KeyValuePair_2_get_Key_m3745423128(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m963734252_gshared (KeyValuePair_2_t2255362622 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return L_0; } } extern "C" int32_t KeyValuePair_2_get_Value_m963734252_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2255362622 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2255362622 *>(__this + 1); return KeyValuePair_2_get_Value_m963734252(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m1774591758_gshared (KeyValuePair_2_t2255362622 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m3745423128((KeyValuePair_2_t2255362622 *)(KeyValuePair_2_t2255362622 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); int32_t L_1 = KeyValuePair_2_get_Value_m963734252((KeyValuePair_2_t2255362622 *)(KeyValuePair_2_t2255362622 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_2); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m1774591758_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2255362622 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2255362622 *>(__this + 1); return KeyValuePair_2_ToString_m1774591758(_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.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m23191374_gshared (KeyValuePair_2_t3842366416 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; __this->set_key_0(L_0); bool L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m23191374_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method) { KeyValuePair_2_t3842366416 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3842366416 *>(__this + 1); KeyValuePair_2__ctor_m23191374(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m2106922848_gshared (KeyValuePair_2_t3842366416 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Key_m2106922848_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3842366416 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3842366416 *>(__this + 1); return KeyValuePair_2_get_Key_m2106922848(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Value() extern "C" IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m1669764045_gshared (KeyValuePair_2_t3842366416 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_value_1(); return L_0; } } extern "C" bool KeyValuePair_2_get_Value_m1669764045_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3842366416 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3842366416 *>(__this + 1); return KeyValuePair_2_get_Value_m1669764045(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m2480962023_gshared (KeyValuePair_2_t3842366416 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m2106922848((KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); bool L_1 = KeyValuePair_2_get_Value_m1669764045((KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); bool L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_2); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m2480962023_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3842366416 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3842366416 *>(__this + 1); return KeyValuePair_2_ToString_m2480962023(_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.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m880186442_gshared (KeyValuePair_2_t2401056908 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; __this->set_key_0(L_0); int32_t L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m880186442_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { KeyValuePair_2_t2401056908 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2401056908 *>(__this + 1); KeyValuePair_2__ctor_m880186442(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m1055012466_gshared (KeyValuePair_2_t2401056908 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Key_m1055012466_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2401056908 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2401056908 *>(__this + 1); return KeyValuePair_2_get_Key_m1055012466(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m1308554439_gshared (KeyValuePair_2_t2401056908 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return L_0; } } extern "C" int32_t KeyValuePair_2_get_Value_m1308554439_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2401056908 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2401056908 *>(__this + 1); return KeyValuePair_2_get_Value_m1308554439(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m4231614106_gshared (KeyValuePair_2_t2401056908 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m1055012466((KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); int32_t L_1 = KeyValuePair_2_get_Value_m1308554439((KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_2); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m4231614106_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2401056908 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2401056908 *>(__this + 1); return KeyValuePair_2_ToString_m4231614106(_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.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m3716993270_gshared (KeyValuePair_2_t2730400744 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; __this->set_key_0(L_0); int32_t L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m3716993270_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { KeyValuePair_2_t2730400744 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2730400744 *>(__this + 1); KeyValuePair_2__ctor_m3716993270(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m4110334143_gshared (KeyValuePair_2_t2730400744 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Key_m4110334143_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2730400744 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2730400744 *>(__this + 1); return KeyValuePair_2_get_Key_m4110334143(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m3734748706_gshared (KeyValuePair_2_t2730400744 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return L_0; } } extern "C" int32_t KeyValuePair_2_get_Value_m3734748706_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2730400744 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2730400744 *>(__this + 1); return KeyValuePair_2_get_Value_m3734748706(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Linq.Expressions.Compiler.VariableStorageKind>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m3021632350_gshared (KeyValuePair_2_t2730400744 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m4110334143((KeyValuePair_2_t2730400744 *)(KeyValuePair_2_t2730400744 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); int32_t L_1 = KeyValuePair_2_get_Value_m3734748706((KeyValuePair_2_t2730400744 *)(KeyValuePair_2_t2730400744 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_2); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m3021632350_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2730400744 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2730400744 *>(__this + 1); return KeyValuePair_2_ToString_m3021632350(_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.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m727165395_gshared (KeyValuePair_2_t2530217319 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; __this->set_key_0(L_0); RuntimeObject * L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m727165395_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { KeyValuePair_2_t2530217319 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2530217319 *>(__this + 1); KeyValuePair_2__ctor_m727165395(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m4184817181_gshared (KeyValuePair_2_t2530217319 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Key_m4184817181_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2530217319 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2530217319 *>(__this + 1); return KeyValuePair_2_get_Key_m4184817181(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1132502692_gshared (KeyValuePair_2_t2530217319 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Value_m1132502692_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2530217319 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2530217319 *>(__this + 1); return KeyValuePair_2_get_Value_m1132502692(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m510648957_gshared (KeyValuePair_2_t2530217319 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m4184817181((KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); RuntimeObject * L_1 = KeyValuePair_2_get_Value_m1132502692((KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); String_t* L_2 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_0, (RuntimeObject *)L_1, /*hidden argument*/NULL); return L_2; } } extern "C" String_t* KeyValuePair_2_ToString_m510648957_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2530217319 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2530217319 *>(__this + 1); return KeyValuePair_2_ToString_m510648957(_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.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m877231462_gshared (KeyValuePair_2_t3174081962 * __this, RuntimeObject * ___key0, ResourceLocator_t3723970807 ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; __this->set_key_0(L_0); ResourceLocator_t3723970807 L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m877231462_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, ResourceLocator_t3723970807 ___value1, const RuntimeMethod* method) { KeyValuePair_2_t3174081962 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3174081962 *>(__this + 1); KeyValuePair_2__ctor_m877231462(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m1914465694_gshared (KeyValuePair_2_t3174081962 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Key_m1914465694_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3174081962 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3174081962 *>(__this + 1); return KeyValuePair_2_get_Key_m1914465694(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() extern "C" IL2CPP_METHOD_ATTR ResourceLocator_t3723970807 KeyValuePair_2_get_Value_m1048976747_gshared (KeyValuePair_2_t3174081962 * __this, const RuntimeMethod* method) { { ResourceLocator_t3723970807 L_0 = (ResourceLocator_t3723970807 )__this->get_value_1(); return L_0; } } extern "C" ResourceLocator_t3723970807 KeyValuePair_2_get_Value_m1048976747_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3174081962 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3174081962 *>(__this + 1); return KeyValuePair_2_get_Value_m1048976747(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m225390547_gshared (KeyValuePair_2_t3174081962 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m1914465694((KeyValuePair_2_t3174081962 *)(KeyValuePair_2_t3174081962 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ResourceLocator_t3723970807 L_1 = KeyValuePair_2_get_Value_m1048976747((KeyValuePair_2_t3174081962 *)(KeyValuePair_2_t3174081962 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); ResourceLocator_t3723970807 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_2); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m225390547_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3174081962 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3174081962 *>(__this + 1); return KeyValuePair_2_ToString_m225390547(_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.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m52543417_gshared (KeyValuePair_2_t2738617651 * __this, RuntimeObject * ___key0, EventRegistrationTokenList_t3288506496 ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; __this->set_key_0(L_0); EventRegistrationTokenList_t3288506496 L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m52543417_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, EventRegistrationTokenList_t3288506496 ___value1, const RuntimeMethod* method) { KeyValuePair_2_t2738617651 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2738617651 *>(__this + 1); KeyValuePair_2__ctor_m52543417(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m312793161_gshared (KeyValuePair_2_t2738617651 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Key_m312793161_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2738617651 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2738617651 *>(__this + 1); return KeyValuePair_2_get_Key_m312793161(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Value() extern "C" IL2CPP_METHOD_ATTR EventRegistrationTokenList_t3288506496 KeyValuePair_2_get_Value_m80964760_gshared (KeyValuePair_2_t2738617651 * __this, const RuntimeMethod* method) { { EventRegistrationTokenList_t3288506496 L_0 = (EventRegistrationTokenList_t3288506496 )__this->get_value_1(); return L_0; } } extern "C" EventRegistrationTokenList_t3288506496 KeyValuePair_2_get_Value_m80964760_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2738617651 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2738617651 *>(__this + 1); return KeyValuePair_2_get_Value_m80964760(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m80164506_gshared (KeyValuePair_2_t2738617651 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m312793161((KeyValuePair_2_t2738617651 *)(KeyValuePair_2_t2738617651 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); EventRegistrationTokenList_t3288506496 L_1 = KeyValuePair_2_get_Value_m80964760((KeyValuePair_2_t2738617651 *)(KeyValuePair_2_t2738617651 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); EventRegistrationTokenList_t3288506496 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_2); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m80164506_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2738617651 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2738617651 *>(__this + 1); return KeyValuePair_2_ToString_m80164506(_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.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m1054831967_gshared (KeyValuePair_2_t4253942476 * __this, EventCacheKey_t3133620722 ___key0, EventCacheEntry_t156445199 ___value1, const RuntimeMethod* method) { { EventCacheKey_t3133620722 L_0 = ___key0; __this->set_key_0(L_0); EventCacheEntry_t156445199 L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m1054831967_AdjustorThunk (RuntimeObject * __this, EventCacheKey_t3133620722 ___key0, EventCacheEntry_t156445199 ___value1, const RuntimeMethod* method) { KeyValuePair_2_t4253942476 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4253942476 *>(__this + 1); KeyValuePair_2__ctor_m1054831967(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::get_Key() extern "C" IL2CPP_METHOD_ATTR EventCacheKey_t3133620722 KeyValuePair_2_get_Key_m1029407593_gshared (KeyValuePair_2_t4253942476 * __this, const RuntimeMethod* method) { { EventCacheKey_t3133620722 L_0 = (EventCacheKey_t3133620722 )__this->get_key_0(); return L_0; } } extern "C" EventCacheKey_t3133620722 KeyValuePair_2_get_Key_m1029407593_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4253942476 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4253942476 *>(__this + 1); return KeyValuePair_2_get_Key_m1029407593(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::get_Value() extern "C" IL2CPP_METHOD_ATTR EventCacheEntry_t156445199 KeyValuePair_2_get_Value_m497513548_gshared (KeyValuePair_2_t4253942476 * __this, const RuntimeMethod* method) { { EventCacheEntry_t156445199 L_0 = (EventCacheEntry_t156445199 )__this->get_value_1(); return L_0; } } extern "C" EventCacheEntry_t156445199 KeyValuePair_2_get_Value_m497513548_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4253942476 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4253942476 *>(__this + 1); return KeyValuePair_2_get_Value_m497513548(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m3941865661_gshared (KeyValuePair_2_t4253942476 * __this, const RuntimeMethod* method) { { EventCacheKey_t3133620722 L_0 = KeyValuePair_2_get_Key_m1029407593((KeyValuePair_2_t4253942476 *)(KeyValuePair_2_t4253942476 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); EventCacheKey_t3133620722 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); EventCacheEntry_t156445199 L_3 = KeyValuePair_2_get_Value_m497513548((KeyValuePair_2_t4253942476 *)(KeyValuePair_2_t4253942476 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); EventCacheEntry_t156445199 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_4); String_t* L_6 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_2, (RuntimeObject *)L_5, /*hidden argument*/NULL); return L_6; } } extern "C" String_t* KeyValuePair_2_ToString_m3941865661_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4253942476 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4253942476 *>(__this + 1); return KeyValuePair_2_ToString_m3941865661(_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.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m2398257575_gshared (KeyValuePair_2_t1297193679 * __this, uint32_t ___key0, XboxControllerData_t1920221146 ___value1, const RuntimeMethod* method) { { uint32_t L_0 = ___key0; __this->set_key_0(L_0); XboxControllerData_t1920221146 L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m2398257575_AdjustorThunk (RuntimeObject * __this, uint32_t ___key0, XboxControllerData_t1920221146 ___value1, const RuntimeMethod* method) { KeyValuePair_2_t1297193679 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t1297193679 *>(__this + 1); KeyValuePair_2__ctor_m2398257575(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::get_Key() extern "C" IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m784662759_gshared (KeyValuePair_2_t1297193679 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_key_0(); return L_0; } } extern "C" uint32_t KeyValuePair_2_get_Key_m784662759_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t1297193679 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t1297193679 *>(__this + 1); return KeyValuePair_2_get_Key_m784662759(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::get_Value() extern "C" IL2CPP_METHOD_ATTR XboxControllerData_t1920221146 KeyValuePair_2_get_Value_m3814993531_gshared (KeyValuePair_2_t1297193679 * __this, const RuntimeMethod* method) { { XboxControllerData_t1920221146 L_0 = (XboxControllerData_t1920221146 )__this->get_value_1(); return L_0; } } extern "C" XboxControllerData_t1920221146 KeyValuePair_2_get_Value_m3814993531_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t1297193679 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t1297193679 *>(__this + 1); return KeyValuePair_2_get_Value_m3814993531(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.UInt32,HoloToolkit.Unity.InputModule.XboxControllerData>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m601171314_gshared (KeyValuePair_2_t1297193679 * __this, const RuntimeMethod* method) { { uint32_t L_0 = KeyValuePair_2_get_Key_m784662759((KeyValuePair_2_t1297193679 *)(KeyValuePair_2_t1297193679 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); uint32_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); XboxControllerData_t1920221146 L_3 = KeyValuePair_2_get_Value_m3814993531((KeyValuePair_2_t1297193679 *)(KeyValuePair_2_t1297193679 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); XboxControllerData_t1920221146 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_4); String_t* L_6 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_2, (RuntimeObject *)L_5, /*hidden argument*/NULL); return L_6; } } extern "C" String_t* KeyValuePair_2_ToString_m601171314_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t1297193679 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t1297193679 *>(__this + 1); return KeyValuePair_2_ToString_m601171314(_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.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m1509212969_gshared (KeyValuePair_2_t2457078697 * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { uint32_t L_0 = ___key0; __this->set_key_0(L_0); RuntimeObject * L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m1509212969_AdjustorThunk (RuntimeObject * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { KeyValuePair_2_t2457078697 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2457078697 *>(__this + 1); KeyValuePair_2__ctor_m1509212969(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m1662296104_gshared (KeyValuePair_2_t2457078697 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_key_0(); return L_0; } } extern "C" uint32_t KeyValuePair_2_get_Key_m1662296104_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2457078697 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2457078697 *>(__this + 1); return KeyValuePair_2_get_Key_m1662296104(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1484005982_gshared (KeyValuePair_2_t2457078697 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Value_m1484005982_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2457078697 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2457078697 *>(__this + 1); return KeyValuePair_2_get_Value_m1484005982(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m816416158_gshared (KeyValuePair_2_t2457078697 * __this, const RuntimeMethod* method) { { uint32_t L_0 = KeyValuePair_2_get_Key_m1662296104((KeyValuePair_2_t2457078697 *)(KeyValuePair_2_t2457078697 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); uint32_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); RuntimeObject * L_3 = KeyValuePair_2_get_Value_m1484005982((KeyValuePair_2_t2457078697 *)(KeyValuePair_2_t2457078697 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_2, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m816416158_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t2457078697 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t2457078697 *>(__this + 1); return KeyValuePair_2_ToString_m816416158(_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.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m2104774478_gshared (KeyValuePair_2_t3099285997 * __this, uint32_t ___key0, Vector3_t3722313464 ___value1, const RuntimeMethod* method) { { uint32_t L_0 = ___key0; __this->set_key_0(L_0); Vector3_t3722313464 L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m2104774478_AdjustorThunk (RuntimeObject * __this, uint32_t ___key0, Vector3_t3722313464 ___value1, const RuntimeMethod* method) { KeyValuePair_2_t3099285997 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3099285997 *>(__this + 1); KeyValuePair_2__ctor_m2104774478(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::get_Key() extern "C" IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m3603522588_gshared (KeyValuePair_2_t3099285997 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_key_0(); return L_0; } } extern "C" uint32_t KeyValuePair_2_get_Key_m3603522588_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3099285997 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3099285997 *>(__this + 1); return KeyValuePair_2_get_Key_m3603522588(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::get_Value() extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 KeyValuePair_2_get_Value_m2531951264_gshared (KeyValuePair_2_t3099285997 * __this, const RuntimeMethod* method) { { Vector3_t3722313464 L_0 = (Vector3_t3722313464 )__this->get_value_1(); return L_0; } } extern "C" Vector3_t3722313464 KeyValuePair_2_get_Value_m2531951264_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3099285997 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3099285997 *>(__this + 1); return KeyValuePair_2_get_Value_m2531951264(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m2956581269_gshared (KeyValuePair_2_t3099285997 * __this, const RuntimeMethod* method) { { uint32_t L_0 = KeyValuePair_2_get_Key_m3603522588((KeyValuePair_2_t3099285997 *)(KeyValuePair_2_t3099285997 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); uint32_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); Vector3_t3722313464 L_3 = KeyValuePair_2_get_Value_m2531951264((KeyValuePair_2_t3099285997 *)(KeyValuePair_2_t3099285997 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); Vector3_t3722313464 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_4); String_t* L_6 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_2, (RuntimeObject *)L_5, /*hidden argument*/NULL); return L_6; } } extern "C" String_t* KeyValuePair_2_ToString_m2956581269_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t3099285997 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t3099285997 *>(__this + 1); return KeyValuePair_2_ToString_m2956581269(_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.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m3305952680_gshared (KeyValuePair_2_t1405028755 * __this, Vector3_t3722313464 ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { Vector3_t3722313464 L_0 = ___key0; __this->set_key_0(L_0); RuntimeObject * L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m3305952680_AdjustorThunk (RuntimeObject * __this, Vector3_t3722313464 ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { KeyValuePair_2_t1405028755 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t1405028755 *>(__this + 1); KeyValuePair_2__ctor_m3305952680(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 KeyValuePair_2_get_Key_m310738991_gshared (KeyValuePair_2_t1405028755 * __this, const RuntimeMethod* method) { { Vector3_t3722313464 L_0 = (Vector3_t3722313464 )__this->get_key_0(); return L_0; } } extern "C" Vector3_t3722313464 KeyValuePair_2_get_Key_m310738991_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t1405028755 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t1405028755 *>(__this + 1); return KeyValuePair_2_get_Key_m310738991(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m585129253_gshared (KeyValuePair_2_t1405028755 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Value_m585129253_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t1405028755 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t1405028755 *>(__this + 1); return KeyValuePair_2_get_Value_m585129253(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m1525119967_gshared (KeyValuePair_2_t1405028755 * __this, const RuntimeMethod* method) { { Vector3_t3722313464 L_0 = KeyValuePair_2_get_Key_m310738991((KeyValuePair_2_t1405028755 *)(KeyValuePair_2_t1405028755 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); Vector3_t3722313464 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); RuntimeObject * L_3 = KeyValuePair_2_get_Value_m585129253((KeyValuePair_2_t1405028755 *)(KeyValuePair_2_t1405028755 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_2, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m1525119967_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t1405028755 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t1405028755 *>(__this + 1); return KeyValuePair_2_ToString_m1525119967(_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.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m3554833245_gshared (KeyValuePair_2_t4120547 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___key0; __this->set_key_0(L_0); RuntimeObject * L_1 = ___value1; __this->set_value_1(L_1); return; } } extern "C" void KeyValuePair_2__ctor_m3554833245_AdjustorThunk (RuntimeObject * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { KeyValuePair_2_t4120547 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4120547 *>(__this + 1); KeyValuePair_2__ctor_m3554833245(_thisAdjusted, ___key0, ___value1, method); } // TKey System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m1795574548_gshared (KeyValuePair_2_t4120547 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return L_0; } } extern "C" int32_t KeyValuePair_2_get_Key_m1795574548_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4120547 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4120547 *>(__this + 1); return KeyValuePair_2_get_Key_m1795574548(_thisAdjusted, method); } // TValue System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1627240798_gshared (KeyValuePair_2_t4120547 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } } extern "C" RuntimeObject * KeyValuePair_2_get_Value_m1627240798_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4120547 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4120547 *>(__this + 1); return KeyValuePair_2_get_Value_m1627240798(_thisAdjusted, method); } // System.String System.Collections.Generic.KeyValuePair`2<UnityGLTF.GLTFSceneImporter/MaterialType,System.Object>::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_m3318177100_gshared (KeyValuePair_2_t4120547 * __this, const RuntimeMethod* method) { { int32_t L_0 = KeyValuePair_2_get_Key_m1795574548((KeyValuePair_2_t4120547 *)(KeyValuePair_2_t4120547 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); int32_t L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_1); RuntimeObject * L_3 = KeyValuePair_2_get_Value_m1627240798((KeyValuePair_2_t4120547 *)(KeyValuePair_2_t4120547 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); String_t* L_4 = KeyValuePair_PairToString_m4006145442(NULL /*static, unused*/, (RuntimeObject *)L_2, (RuntimeObject *)L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* KeyValuePair_2_ToString_m3318177100_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { KeyValuePair_2_t4120547 * _thisAdjusted = reinterpret_cast<KeyValuePair_2_t4120547 *>(__this + 1); return KeyValuePair_2_ToString_m3318177100(_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 #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.Collections.Generic.LargeArrayBuilder`1<System.Char>::.ctor(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m2700000537_gshared (LargeArrayBuilder_1_t3544813491 * __this, bool ___initialize0, const RuntimeMethod* method) { { LargeArrayBuilder_1__ctor_m2646351267((LargeArrayBuilder_1_t3544813491 *)(LargeArrayBuilder_1_t3544813491 *)__this, (int32_t)((int32_t)2147483647LL), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return; } } extern "C" void LargeArrayBuilder_1__ctor_m2700000537_AdjustorThunk (RuntimeObject * __this, bool ___initialize0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3544813491 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3544813491 *>(__this + 1); LargeArrayBuilder_1__ctor_m2700000537(_thisAdjusted, ___initialize0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m2646351267_gshared (LargeArrayBuilder_1_t3544813491 * __this, int32_t ___maxCapacity0, const RuntimeMethod* method) { CharU5BU5D_t3528271667* V_0 = NULL; { il2cpp_codegen_initobj(__this, sizeof(LargeArrayBuilder_1_t3544813491 )); CharU5BU5D_t3528271667* L_0 = (( CharU5BU5D_t3528271667* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); CharU5BU5D_t3528271667* L_1 = (CharU5BU5D_t3528271667*)L_0; V_0 = (CharU5BU5D_t3528271667*)L_1; __this->set__current_3(L_1); CharU5BU5D_t3528271667* L_2 = V_0; __this->set__first_1(L_2); int32_t L_3 = ___maxCapacity0; __this->set__maxCapacity_0(L_3); return; } } extern "C" void LargeArrayBuilder_1__ctor_m2646351267_AdjustorThunk (RuntimeObject * __this, int32_t ___maxCapacity0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3544813491 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3544813491 *>(__this + 1); LargeArrayBuilder_1__ctor_m2646351267(_thisAdjusted, ___maxCapacity0, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Char>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_get_Count_m498408020_gshared (LargeArrayBuilder_1_t3544813491 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__count_5(); return L_0; } } extern "C" int32_t LargeArrayBuilder_1_get_Count_m498408020_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t3544813491 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3544813491 *>(__this + 1); return LargeArrayBuilder_1_get_Count_m498408020(_thisAdjusted, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::Add(T) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_Add_m982046608_gshared (LargeArrayBuilder_1_t3544813491 * __this, Il2CppChar ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get__index_4(); CharU5BU5D_t3528271667* L_1 = (CharU5BU5D_t3528271667*)__this->get__current_3(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_0016; } } { LargeArrayBuilder_1_AllocateBuffer_m3260867912((LargeArrayBuilder_1_t3544813491 *)(LargeArrayBuilder_1_t3544813491 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); } IL_0016: { CharU5BU5D_t3528271667* L_2 = (CharU5BU5D_t3528271667*)__this->get__current_3(); int32_t L_3 = (int32_t)__this->get__index_4(); V_0 = (int32_t)L_3; int32_t L_4 = V_0; __this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int32_t L_5 = V_0; Il2CppChar L_6 = ___item0; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (Il2CppChar)L_6); int32_t L_7 = (int32_t)__this->get__count_5(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); return; } } extern "C" void LargeArrayBuilder_1_Add_m982046608_AdjustorThunk (RuntimeObject * __this, Il2CppChar ___item0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3544813491 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3544813491 *>(__this + 1); LargeArrayBuilder_1_Add_m982046608(_thisAdjusted, ___item0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AddRange_m3208469990_gshared (LargeArrayBuilder_1_t3544813491 * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_AddRange_m3208469990_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; CharU5BU5D_t3528271667* V_1 = NULL; int32_t V_2 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___items0; NullCheck((RuntimeObject*)L_0); RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Char>::GetEnumerator() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), (RuntimeObject*)L_0); V_0 = (RuntimeObject*)L_1; } IL_0007: try { // begin try (depth: 1) { CharU5BU5D_t3528271667* L_2 = (CharU5BU5D_t3528271667*)__this->get__current_3(); V_1 = (CharU5BU5D_t3528271667*)L_2; int32_t L_3 = (int32_t)__this->get__index_4(); V_2 = (int32_t)L_3; goto IL_005e; } IL_0017: { int32_t L_4 = V_2; CharU5BU5D_t3528271667* L_5 = V_1; NullCheck(L_5); if ((!(((uint32_t)L_4) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length)))))))) { goto IL_004d; } } IL_001d: { int32_t L_6 = (int32_t)__this->get__count_5(); int32_t L_7 = V_2; int32_t L_8 = (int32_t)__this->get__index_4(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))))); int32_t L_9 = V_2; __this->set__index_4(L_9); LargeArrayBuilder_1_AllocateBuffer_m3260867912((LargeArrayBuilder_1_t3544813491 *)(LargeArrayBuilder_1_t3544813491 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); CharU5BU5D_t3528271667* L_10 = (CharU5BU5D_t3528271667*)__this->get__current_3(); V_1 = (CharU5BU5D_t3528271667*)L_10; int32_t L_11 = (int32_t)__this->get__index_4(); V_2 = (int32_t)L_11; } IL_004d: { CharU5BU5D_t3528271667* L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = (int32_t)L_13; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); RuntimeObject* L_15 = V_0; NullCheck((RuntimeObject*)L_15); Il2CppChar L_16 = InterfaceFuncInvoker0< Il2CppChar >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Char>::get_Current() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4), (RuntimeObject*)L_15); NullCheck(L_12); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (Il2CppChar)L_16); } IL_005e: { RuntimeObject* L_17 = V_0; NullCheck((RuntimeObject*)L_17); bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_17); if (L_18) { goto IL_0017; } } IL_0066: { int32_t L_19 = (int32_t)__this->get__count_5(); int32_t L_20 = V_2; int32_t L_21 = (int32_t)__this->get__index_4(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21))))); int32_t L_22 = V_2; __this->set__index_4(L_22); IL2CPP_LEAVE(0x8E, FINALLY_0084); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0084; } FINALLY_0084: { // begin finally (depth: 1) { RuntimeObject* L_23 = V_0; if (!L_23) { goto IL_008d; } } IL_0087: { RuntimeObject* L_24 = V_0; NullCheck((RuntimeObject*)L_24); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_24); } IL_008d: { IL2CPP_END_FINALLY(132) } } // end finally (depth: 1) IL2CPP_CLEANUP(132) { IL2CPP_JUMP_TBL(0x8E, IL_008e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_008e: { return; } } extern "C" void LargeArrayBuilder_1_AddRange_m3208469990_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3544813491 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3544813491 *>(__this + 1); LargeArrayBuilder_1_AddRange_m3208469990(_thisAdjusted, ___items0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::CopyTo(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_CopyTo_m3784363977_gshared (LargeArrayBuilder_1_t3544813491 * __this, CharU5BU5D_t3528271667* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_CopyTo_m3784363977_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CharU5BU5D_t3528271667* V_1 = NULL; int32_t V_2 = 0; { V_0 = (int32_t)0; goto IL_002e; } IL_0004: { int32_t L_0 = V_0; CharU5BU5D_t3528271667* L_1 = LargeArrayBuilder_1_GetBuffer_m4278476894((LargeArrayBuilder_1_t3544813491 *)(LargeArrayBuilder_1_t3544813491 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_1 = (CharU5BU5D_t3528271667*)L_1; int32_t L_2 = ___count2; CharU5BU5D_t3528271667* L_3 = V_1; NullCheck(L_3); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)L_2, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), /*hidden argument*/NULL); V_2 = (int32_t)L_4; CharU5BU5D_t3528271667* L_5 = V_1; CharU5BU5D_t3528271667* L_6 = ___array0; int32_t L_7 = ___arrayIndex1; int32_t L_8 = V_2; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/NULL); int32_t L_9 = ___count2; int32_t L_10 = V_2; ___count2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)); int32_t L_11 = ___arrayIndex1; int32_t L_12 = V_2; ___arrayIndex1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)); int32_t L_13 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_002e: { int32_t L_14 = ___count2; if ((((int32_t)L_14) > ((int32_t)0))) { goto IL_0004; } } { return; } } extern "C" void LargeArrayBuilder_1_CopyTo_m3784363977_AdjustorThunk (RuntimeObject * __this, CharU5BU5D_t3528271667* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { LargeArrayBuilder_1_t3544813491 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3544813491 *>(__this + 1); LargeArrayBuilder_1_CopyTo_m3784363977(_thisAdjusted, ___array0, ___arrayIndex1, ___count2, method); } // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Char>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3128527264_gshared (LargeArrayBuilder_1_t3544813491 * __this, CopyPosition_t2993389481 ___position0, CharU5BU5D_t3528271667* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { U3CU3Ec__DisplayClass15_0_t623179283 V_0; memset(&V_0, 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; CharU5BU5D_t3528271667* V_3 = NULL; int32_t V_4 = 0; CopyPosition_t2993389481 V_5; memset(&V_5, 0, sizeof(V_5)); { int32_t L_0 = ___count3; (&V_0)->set_count_0(L_0); CharU5BU5D_t3528271667* L_1 = ___array1; (&V_0)->set_array_1(L_1); int32_t L_2 = ___arrayIndex2; (&V_0)->set_arrayIndex_2(L_2); int32_t L_3 = CopyPosition_get_Row_m806830178((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&___position0), /*hidden argument*/NULL); V_1 = (int32_t)L_3; int32_t L_4 = CopyPosition_get_Column_m2845754312((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&___position0), /*hidden argument*/NULL); V_2 = (int32_t)L_4; int32_t L_5 = V_1; CharU5BU5D_t3528271667* L_6 = LargeArrayBuilder_1_GetBuffer_m4278476894((LargeArrayBuilder_1_t3544813491 *)(LargeArrayBuilder_1_t3544813491 *)__this, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_3 = (CharU5BU5D_t3528271667*)L_6; CharU5BU5D_t3528271667* L_7 = V_3; int32_t L_8 = V_2; int32_t L_9 = (( int32_t (*) (RuntimeObject * /* static, unused */, CharU5BU5D_t3528271667*, int32_t, U3CU3Ec__DisplayClass15_0_t623179283 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (CharU5BU5D_t3528271667*)L_7, (int32_t)L_8, (U3CU3Ec__DisplayClass15_0_t623179283 *)(U3CU3Ec__DisplayClass15_0_t623179283 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); V_4 = (int32_t)L_9; U3CU3Ec__DisplayClass15_0_t623179283 L_10 = V_0; int32_t L_11 = (int32_t)L_10.get_count_0(); if (L_11) { goto IL_005b; } } { int32_t L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = V_4; CopyPosition_t2993389481 L_15; memset(&L_15, 0, sizeof(L_15)); CopyPosition__ctor_m1131607009((&L_15), (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), /*hidden argument*/NULL); V_5 = (CopyPosition_t2993389481 )L_15; CharU5BU5D_t3528271667* L_16 = V_3; NullCheck(L_16); CopyPosition_t2993389481 L_17 = CopyPosition_Normalize_m4125119414((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&V_5), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))), /*hidden argument*/NULL); return L_17; } IL_005b: { int32_t L_18 = V_1; int32_t L_19 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); V_1 = (int32_t)L_19; CharU5BU5D_t3528271667* L_20 = LargeArrayBuilder_1_GetBuffer_m4278476894((LargeArrayBuilder_1_t3544813491 *)(LargeArrayBuilder_1_t3544813491 *)__this, (int32_t)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_3 = (CharU5BU5D_t3528271667*)L_20; CharU5BU5D_t3528271667* L_21 = V_3; int32_t L_22 = (( int32_t (*) (RuntimeObject * /* static, unused */, CharU5BU5D_t3528271667*, int32_t, U3CU3Ec__DisplayClass15_0_t623179283 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (CharU5BU5D_t3528271667*)L_21, (int32_t)0, (U3CU3Ec__DisplayClass15_0_t623179283 *)(U3CU3Ec__DisplayClass15_0_t623179283 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); V_4 = (int32_t)L_22; U3CU3Ec__DisplayClass15_0_t623179283 L_23 = V_0; int32_t L_24 = (int32_t)L_23.get_count_0(); if ((((int32_t)L_24) > ((int32_t)0))) { goto IL_005b; } } { int32_t L_25 = V_1; int32_t L_26 = V_4; CopyPosition_t2993389481 L_27; memset(&L_27, 0, sizeof(L_27)); CopyPosition__ctor_m1131607009((&L_27), (int32_t)L_25, (int32_t)L_26, /*hidden argument*/NULL); V_5 = (CopyPosition_t2993389481 )L_27; CharU5BU5D_t3528271667* L_28 = V_3; NullCheck(L_28); CopyPosition_t2993389481 L_29 = CopyPosition_Normalize_m4125119414((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&V_5), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_28)->max_length)))), /*hidden argument*/NULL); return L_29; } } extern "C" CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3128527264_AdjustorThunk (RuntimeObject * __this, CopyPosition_t2993389481 ___position0, CharU5BU5D_t3528271667* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { LargeArrayBuilder_1_t3544813491 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3544813491 *>(__this + 1); return LargeArrayBuilder_1_CopyTo_m3128527264(_thisAdjusted, ___position0, ___array1, ___arrayIndex2, ___count3, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Char>::GetBuffer(System.Int32) extern "C" IL2CPP_METHOD_ATTR CharU5BU5D_t3528271667* LargeArrayBuilder_1_GetBuffer_m4278476894_gshared (LargeArrayBuilder_1_t3544813491 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if (!L_0) { goto IL_0027; } } { int32_t L_1 = ___index0; ArrayBuilder_1_t516401051 * L_2 = (ArrayBuilder_1_t516401051 *)__this->get_address_of__buffers_2(); int32_t L_3 = ArrayBuilder_1_get_Count_m867749940((ArrayBuilder_1_t516401051 *)(ArrayBuilder_1_t516401051 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); if ((((int32_t)L_1) <= ((int32_t)L_3))) { goto IL_0018; } } { CharU5BU5D_t3528271667* L_4 = (CharU5BU5D_t3528271667*)__this->get__current_3(); return L_4; } IL_0018: { ArrayBuilder_1_t516401051 * L_5 = (ArrayBuilder_1_t516401051 *)__this->get_address_of__buffers_2(); int32_t L_6 = ___index0; CharU5BU5D_t3528271667* L_7 = ArrayBuilder_1_get_Item_m3619644771((ArrayBuilder_1_t516401051 *)(ArrayBuilder_1_t516401051 *)L_5, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); return L_7; } IL_0027: { CharU5BU5D_t3528271667* L_8 = (CharU5BU5D_t3528271667*)__this->get__first_1(); return L_8; } } extern "C" CharU5BU5D_t3528271667* LargeArrayBuilder_1_GetBuffer_m4278476894_AdjustorThunk (RuntimeObject * __this, int32_t ___index0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3544813491 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3544813491 *>(__this + 1); return LargeArrayBuilder_1_GetBuffer_m4278476894(_thisAdjusted, ___index0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Char>::ToArray() extern "C" IL2CPP_METHOD_ATTR CharU5BU5D_t3528271667* LargeArrayBuilder_1_ToArray_m1423820966_gshared (LargeArrayBuilder_1_t3544813491 * __this, const RuntimeMethod* method) { CharU5BU5D_t3528271667* V_0 = NULL; { bool L_0 = LargeArrayBuilder_1_TryMove_m2654736575((LargeArrayBuilder_1_t3544813491 *)(LargeArrayBuilder_1_t3544813491 *)__this, (CharU5BU5D_t3528271667**)(CharU5BU5D_t3528271667**)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); if (!L_0) { goto IL_000c; } } { CharU5BU5D_t3528271667* L_1 = V_0; return L_1; } IL_000c: { int32_t L_2 = (int32_t)__this->get__count_5(); CharU5BU5D_t3528271667* L_3 = (CharU5BU5D_t3528271667*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_2); V_0 = (CharU5BU5D_t3528271667*)L_3; CharU5BU5D_t3528271667* L_4 = V_0; int32_t L_5 = (int32_t)__this->get__count_5(); LargeArrayBuilder_1_CopyTo_m3784363977((LargeArrayBuilder_1_t3544813491 *)(LargeArrayBuilder_1_t3544813491 *)__this, (CharU5BU5D_t3528271667*)L_4, (int32_t)0, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)); CharU5BU5D_t3528271667* L_6 = V_0; return L_6; } } extern "C" CharU5BU5D_t3528271667* LargeArrayBuilder_1_ToArray_m1423820966_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t3544813491 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3544813491 *>(__this + 1); return LargeArrayBuilder_1_ToArray_m1423820966(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Char>::TryMove(T[]&) extern "C" IL2CPP_METHOD_ATTR bool LargeArrayBuilder_1_TryMove_m2654736575_gshared (LargeArrayBuilder_1_t3544813491 * __this, CharU5BU5D_t3528271667** ___array0, const RuntimeMethod* method) { { CharU5BU5D_t3528271667** L_0 = ___array0; CharU5BU5D_t3528271667* L_1 = (CharU5BU5D_t3528271667*)__this->get__first_1(); *((RuntimeObject **)L_0) = (RuntimeObject *)L_1; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_0, (RuntimeObject *)L_1); int32_t L_2 = (int32_t)__this->get__count_5(); CharU5BU5D_t3528271667* L_3 = (CharU5BU5D_t3528271667*)__this->get__first_1(); NullCheck(L_3); return (bool)((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))))? 1 : 0); } } extern "C" bool LargeArrayBuilder_1_TryMove_m2654736575_AdjustorThunk (RuntimeObject * __this, CharU5BU5D_t3528271667** ___array0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3544813491 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3544813491 *>(__this + 1); return LargeArrayBuilder_1_TryMove_m2654736575(_thisAdjusted, ___array0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::AllocateBuffer() extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AllocateBuffer_m3260867912_gshared (LargeArrayBuilder_1_t3544813491 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_AllocateBuffer_m3260867912_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B4_0 = 0; { int32_t L_0 = (int32_t)__this->get__count_5(); if ((!(((uint32_t)L_0) < ((uint32_t)8)))) { goto IL_005a; } } { int32_t L_1 = (int32_t)__this->get__count_5(); if (!L_1) { goto IL_001b; } } { int32_t L_2 = (int32_t)__this->get__count_5(); G_B4_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_2, (int32_t)2)); goto IL_001c; } IL_001b: { G_B4_0 = 4; } IL_001c: { int32_t L_3 = (int32_t)__this->get__maxCapacity_0(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)G_B4_0, (int32_t)L_3, /*hidden argument*/NULL); V_0 = (int32_t)L_4; int32_t L_5 = V_0; CharU5BU5D_t3528271667* L_6 = (CharU5BU5D_t3528271667*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_5); __this->set__current_3(L_6); CharU5BU5D_t3528271667* L_7 = (CharU5BU5D_t3528271667*)__this->get__first_1(); CharU5BU5D_t3528271667* L_8 = (CharU5BU5D_t3528271667*)__this->get__current_3(); int32_t L_9 = (int32_t)__this->get__count_5(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)0, (int32_t)L_9, /*hidden argument*/NULL); CharU5BU5D_t3528271667* L_10 = (CharU5BU5D_t3528271667*)__this->get__current_3(); __this->set__first_1(L_10); return; } IL_005a: { int32_t L_11 = (int32_t)__this->get__count_5(); if ((!(((uint32_t)L_11) == ((uint32_t)8)))) { goto IL_0067; } } { V_1 = (int32_t)8; goto IL_0091; } IL_0067: { ArrayBuilder_1_t516401051 * L_12 = (ArrayBuilder_1_t516401051 *)__this->get_address_of__buffers_2(); CharU5BU5D_t3528271667* L_13 = (CharU5BU5D_t3528271667*)__this->get__current_3(); ArrayBuilder_1_Add_m1619176227((ArrayBuilder_1_t516401051 *)(ArrayBuilder_1_t516401051 *)L_12, (CharU5BU5D_t3528271667*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); int32_t L_14 = (int32_t)__this->get__count_5(); int32_t L_15 = (int32_t)__this->get__maxCapacity_0(); int32_t L_16 = (int32_t)__this->get__count_5(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_17 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); V_1 = (int32_t)L_17; } IL_0091: { int32_t L_18 = V_1; CharU5BU5D_t3528271667* L_19 = (CharU5BU5D_t3528271667*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_18); __this->set__current_3(L_19); __this->set__index_4(0); return; } } extern "C" void LargeArrayBuilder_1_AllocateBuffer_m3260867912_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t3544813491 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3544813491 *>(__this + 1); LargeArrayBuilder_1_AllocateBuffer_m3260867912(_thisAdjusted, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Char>::<CopyTo>g__CopyToCore|15_0(T[],System.Int32,System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0<T>&) extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m720436240_gshared (RuntimeObject * __this /* static, unused */, CharU5BU5D_t3528271667* ___sourceBuffer0, int32_t ___sourceIndex1, U3CU3Ec__DisplayClass15_0_t623179283 * p2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m720436240_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { CharU5BU5D_t3528271667* L_0 = ___sourceBuffer0; NullCheck(L_0); int32_t L_1 = ___sourceIndex1; U3CU3Ec__DisplayClass15_0_t623179283 * L_2 = p2; int32_t L_3 = (int32_t)L_2->get_count_0(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), (int32_t)L_1)), (int32_t)L_3, /*hidden argument*/NULL); V_0 = (int32_t)L_4; CharU5BU5D_t3528271667* L_5 = ___sourceBuffer0; int32_t L_6 = ___sourceIndex1; U3CU3Ec__DisplayClass15_0_t623179283 * L_7 = p2; CharU5BU5D_t3528271667* L_8 = (CharU5BU5D_t3528271667*)L_7->get_array_1(); U3CU3Ec__DisplayClass15_0_t623179283 * L_9 = p2; int32_t L_10 = (int32_t)L_9->get_arrayIndex_2(); int32_t L_11 = V_0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)L_10, (int32_t)L_11, /*hidden argument*/NULL); U3CU3Ec__DisplayClass15_0_t623179283 * L_12 = p2; U3CU3Ec__DisplayClass15_0_t623179283 * L_13 = p2; int32_t L_14 = (int32_t)L_13->get_arrayIndex_2(); int32_t L_15 = V_0; L_12->set_arrayIndex_2(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15))); U3CU3Ec__DisplayClass15_0_t623179283 * L_16 = p2; U3CU3Ec__DisplayClass15_0_t623179283 * L_17 = p2; int32_t L_18 = (int32_t)L_17->get_count_0(); int32_t L_19 = V_0; L_16->set_count_0(((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19))); int32_t L_20 = V_0; return L_20; } } #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.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::.ctor(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m3992711902_gshared (LargeArrayBuilder_1_t3034328659 * __this, bool ___initialize0, const RuntimeMethod* method) { { LargeArrayBuilder_1__ctor_m4215145640((LargeArrayBuilder_1_t3034328659 *)(LargeArrayBuilder_1_t3034328659 *)__this, (int32_t)((int32_t)2147483647LL), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return; } } extern "C" void LargeArrayBuilder_1__ctor_m3992711902_AdjustorThunk (RuntimeObject * __this, bool ___initialize0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3034328659 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3034328659 *>(__this + 1); LargeArrayBuilder_1__ctor_m3992711902(_thisAdjusted, ___initialize0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m4215145640_gshared (LargeArrayBuilder_1_t3034328659 * __this, int32_t ___maxCapacity0, const RuntimeMethod* method) { DictionaryEntryU5BU5D_t4217117203* V_0 = NULL; { il2cpp_codegen_initobj(__this, sizeof(LargeArrayBuilder_1_t3034328659 )); DictionaryEntryU5BU5D_t4217117203* L_0 = (( DictionaryEntryU5BU5D_t4217117203* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); DictionaryEntryU5BU5D_t4217117203* L_1 = (DictionaryEntryU5BU5D_t4217117203*)L_0; V_0 = (DictionaryEntryU5BU5D_t4217117203*)L_1; __this->set__current_3(L_1); DictionaryEntryU5BU5D_t4217117203* L_2 = V_0; __this->set__first_1(L_2); int32_t L_3 = ___maxCapacity0; __this->set__maxCapacity_0(L_3); return; } } extern "C" void LargeArrayBuilder_1__ctor_m4215145640_AdjustorThunk (RuntimeObject * __this, int32_t ___maxCapacity0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3034328659 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3034328659 *>(__this + 1); LargeArrayBuilder_1__ctor_m4215145640(_thisAdjusted, ___maxCapacity0, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_get_Count_m3670631437_gshared (LargeArrayBuilder_1_t3034328659 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__count_5(); return L_0; } } extern "C" int32_t LargeArrayBuilder_1_get_Count_m3670631437_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t3034328659 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3034328659 *>(__this + 1); return LargeArrayBuilder_1_get_Count_m3670631437(_thisAdjusted, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::Add(T) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_Add_m3654651254_gshared (LargeArrayBuilder_1_t3034328659 * __this, DictionaryEntry_t3123975638 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get__index_4(); DictionaryEntryU5BU5D_t4217117203* L_1 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__current_3(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_0016; } } { LargeArrayBuilder_1_AllocateBuffer_m2360349896((LargeArrayBuilder_1_t3034328659 *)(LargeArrayBuilder_1_t3034328659 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); } IL_0016: { DictionaryEntryU5BU5D_t4217117203* L_2 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__current_3(); int32_t L_3 = (int32_t)__this->get__index_4(); V_0 = (int32_t)L_3; int32_t L_4 = V_0; __this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int32_t L_5 = V_0; DictionaryEntry_t3123975638 L_6 = ___item0; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (DictionaryEntry_t3123975638 )L_6); int32_t L_7 = (int32_t)__this->get__count_5(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); return; } } extern "C" void LargeArrayBuilder_1_Add_m3654651254_AdjustorThunk (RuntimeObject * __this, DictionaryEntry_t3123975638 ___item0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3034328659 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3034328659 *>(__this + 1); LargeArrayBuilder_1_Add_m3654651254(_thisAdjusted, ___item0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AddRange_m522528651_gshared (LargeArrayBuilder_1_t3034328659 * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_AddRange_m522528651_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; DictionaryEntryU5BU5D_t4217117203* V_1 = NULL; int32_t V_2 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___items0; NullCheck((RuntimeObject*)L_0); RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), (RuntimeObject*)L_0); V_0 = (RuntimeObject*)L_1; } IL_0007: try { // begin try (depth: 1) { DictionaryEntryU5BU5D_t4217117203* L_2 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__current_3(); V_1 = (DictionaryEntryU5BU5D_t4217117203*)L_2; int32_t L_3 = (int32_t)__this->get__index_4(); V_2 = (int32_t)L_3; goto IL_005e; } IL_0017: { int32_t L_4 = V_2; DictionaryEntryU5BU5D_t4217117203* L_5 = V_1; NullCheck(L_5); if ((!(((uint32_t)L_4) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length)))))))) { goto IL_004d; } } IL_001d: { int32_t L_6 = (int32_t)__this->get__count_5(); int32_t L_7 = V_2; int32_t L_8 = (int32_t)__this->get__index_4(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))))); int32_t L_9 = V_2; __this->set__index_4(L_9); LargeArrayBuilder_1_AllocateBuffer_m2360349896((LargeArrayBuilder_1_t3034328659 *)(LargeArrayBuilder_1_t3034328659 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); DictionaryEntryU5BU5D_t4217117203* L_10 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__current_3(); V_1 = (DictionaryEntryU5BU5D_t4217117203*)L_10; int32_t L_11 = (int32_t)__this->get__index_4(); V_2 = (int32_t)L_11; } IL_004d: { DictionaryEntryU5BU5D_t4217117203* L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = (int32_t)L_13; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); RuntimeObject* L_15 = V_0; NullCheck((RuntimeObject*)L_15); DictionaryEntry_t3123975638 L_16 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4), (RuntimeObject*)L_15); NullCheck(L_12); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (DictionaryEntry_t3123975638 )L_16); } IL_005e: { RuntimeObject* L_17 = V_0; NullCheck((RuntimeObject*)L_17); bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_17); if (L_18) { goto IL_0017; } } IL_0066: { int32_t L_19 = (int32_t)__this->get__count_5(); int32_t L_20 = V_2; int32_t L_21 = (int32_t)__this->get__index_4(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21))))); int32_t L_22 = V_2; __this->set__index_4(L_22); IL2CPP_LEAVE(0x8E, FINALLY_0084); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0084; } FINALLY_0084: { // begin finally (depth: 1) { RuntimeObject* L_23 = V_0; if (!L_23) { goto IL_008d; } } IL_0087: { RuntimeObject* L_24 = V_0; NullCheck((RuntimeObject*)L_24); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_24); } IL_008d: { IL2CPP_END_FINALLY(132) } } // end finally (depth: 1) IL2CPP_CLEANUP(132) { IL2CPP_JUMP_TBL(0x8E, IL_008e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_008e: { return; } } extern "C" void LargeArrayBuilder_1_AddRange_m522528651_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3034328659 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3034328659 *>(__this + 1); LargeArrayBuilder_1_AddRange_m522528651(_thisAdjusted, ___items0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::CopyTo(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_CopyTo_m4153360821_gshared (LargeArrayBuilder_1_t3034328659 * __this, DictionaryEntryU5BU5D_t4217117203* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_CopyTo_m4153360821_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; DictionaryEntryU5BU5D_t4217117203* V_1 = NULL; int32_t V_2 = 0; { V_0 = (int32_t)0; goto IL_002e; } IL_0004: { int32_t L_0 = V_0; DictionaryEntryU5BU5D_t4217117203* L_1 = LargeArrayBuilder_1_GetBuffer_m459509375((LargeArrayBuilder_1_t3034328659 *)(LargeArrayBuilder_1_t3034328659 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_1 = (DictionaryEntryU5BU5D_t4217117203*)L_1; int32_t L_2 = ___count2; DictionaryEntryU5BU5D_t4217117203* L_3 = V_1; NullCheck(L_3); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)L_2, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), /*hidden argument*/NULL); V_2 = (int32_t)L_4; DictionaryEntryU5BU5D_t4217117203* L_5 = V_1; DictionaryEntryU5BU5D_t4217117203* L_6 = ___array0; int32_t L_7 = ___arrayIndex1; int32_t L_8 = V_2; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/NULL); int32_t L_9 = ___count2; int32_t L_10 = V_2; ___count2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)); int32_t L_11 = ___arrayIndex1; int32_t L_12 = V_2; ___arrayIndex1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)); int32_t L_13 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_002e: { int32_t L_14 = ___count2; if ((((int32_t)L_14) > ((int32_t)0))) { goto IL_0004; } } { return; } } extern "C" void LargeArrayBuilder_1_CopyTo_m4153360821_AdjustorThunk (RuntimeObject * __this, DictionaryEntryU5BU5D_t4217117203* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { LargeArrayBuilder_1_t3034328659 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3034328659 *>(__this + 1); LargeArrayBuilder_1_CopyTo_m4153360821(_thisAdjusted, ___array0, ___arrayIndex1, ___count2, method); } // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m27690272_gshared (LargeArrayBuilder_1_t3034328659 * __this, CopyPosition_t2993389481 ___position0, DictionaryEntryU5BU5D_t4217117203* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { U3CU3Ec__DisplayClass15_0_t112694451 V_0; memset(&V_0, 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; DictionaryEntryU5BU5D_t4217117203* V_3 = NULL; int32_t V_4 = 0; CopyPosition_t2993389481 V_5; memset(&V_5, 0, sizeof(V_5)); { int32_t L_0 = ___count3; (&V_0)->set_count_0(L_0); DictionaryEntryU5BU5D_t4217117203* L_1 = ___array1; (&V_0)->set_array_1(L_1); int32_t L_2 = ___arrayIndex2; (&V_0)->set_arrayIndex_2(L_2); int32_t L_3 = CopyPosition_get_Row_m806830178((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&___position0), /*hidden argument*/NULL); V_1 = (int32_t)L_3; int32_t L_4 = CopyPosition_get_Column_m2845754312((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&___position0), /*hidden argument*/NULL); V_2 = (int32_t)L_4; int32_t L_5 = V_1; DictionaryEntryU5BU5D_t4217117203* L_6 = LargeArrayBuilder_1_GetBuffer_m459509375((LargeArrayBuilder_1_t3034328659 *)(LargeArrayBuilder_1_t3034328659 *)__this, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_3 = (DictionaryEntryU5BU5D_t4217117203*)L_6; DictionaryEntryU5BU5D_t4217117203* L_7 = V_3; int32_t L_8 = V_2; int32_t L_9 = (( int32_t (*) (RuntimeObject * /* static, unused */, DictionaryEntryU5BU5D_t4217117203*, int32_t, U3CU3Ec__DisplayClass15_0_t112694451 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (DictionaryEntryU5BU5D_t4217117203*)L_7, (int32_t)L_8, (U3CU3Ec__DisplayClass15_0_t112694451 *)(U3CU3Ec__DisplayClass15_0_t112694451 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); V_4 = (int32_t)L_9; U3CU3Ec__DisplayClass15_0_t112694451 L_10 = V_0; int32_t L_11 = (int32_t)L_10.get_count_0(); if (L_11) { goto IL_005b; } } { int32_t L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = V_4; CopyPosition_t2993389481 L_15; memset(&L_15, 0, sizeof(L_15)); CopyPosition__ctor_m1131607009((&L_15), (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), /*hidden argument*/NULL); V_5 = (CopyPosition_t2993389481 )L_15; DictionaryEntryU5BU5D_t4217117203* L_16 = V_3; NullCheck(L_16); CopyPosition_t2993389481 L_17 = CopyPosition_Normalize_m4125119414((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&V_5), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))), /*hidden argument*/NULL); return L_17; } IL_005b: { int32_t L_18 = V_1; int32_t L_19 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); V_1 = (int32_t)L_19; DictionaryEntryU5BU5D_t4217117203* L_20 = LargeArrayBuilder_1_GetBuffer_m459509375((LargeArrayBuilder_1_t3034328659 *)(LargeArrayBuilder_1_t3034328659 *)__this, (int32_t)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_3 = (DictionaryEntryU5BU5D_t4217117203*)L_20; DictionaryEntryU5BU5D_t4217117203* L_21 = V_3; int32_t L_22 = (( int32_t (*) (RuntimeObject * /* static, unused */, DictionaryEntryU5BU5D_t4217117203*, int32_t, U3CU3Ec__DisplayClass15_0_t112694451 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (DictionaryEntryU5BU5D_t4217117203*)L_21, (int32_t)0, (U3CU3Ec__DisplayClass15_0_t112694451 *)(U3CU3Ec__DisplayClass15_0_t112694451 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); V_4 = (int32_t)L_22; U3CU3Ec__DisplayClass15_0_t112694451 L_23 = V_0; int32_t L_24 = (int32_t)L_23.get_count_0(); if ((((int32_t)L_24) > ((int32_t)0))) { goto IL_005b; } } { int32_t L_25 = V_1; int32_t L_26 = V_4; CopyPosition_t2993389481 L_27; memset(&L_27, 0, sizeof(L_27)); CopyPosition__ctor_m1131607009((&L_27), (int32_t)L_25, (int32_t)L_26, /*hidden argument*/NULL); V_5 = (CopyPosition_t2993389481 )L_27; DictionaryEntryU5BU5D_t4217117203* L_28 = V_3; NullCheck(L_28); CopyPosition_t2993389481 L_29 = CopyPosition_Normalize_m4125119414((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&V_5), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_28)->max_length)))), /*hidden argument*/NULL); return L_29; } } extern "C" CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m27690272_AdjustorThunk (RuntimeObject * __this, CopyPosition_t2993389481 ___position0, DictionaryEntryU5BU5D_t4217117203* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { LargeArrayBuilder_1_t3034328659 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3034328659 *>(__this + 1); return LargeArrayBuilder_1_CopyTo_m27690272(_thisAdjusted, ___position0, ___array1, ___arrayIndex2, ___count3, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::GetBuffer(System.Int32) extern "C" IL2CPP_METHOD_ATTR DictionaryEntryU5BU5D_t4217117203* LargeArrayBuilder_1_GetBuffer_m459509375_gshared (LargeArrayBuilder_1_t3034328659 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if (!L_0) { goto IL_0027; } } { int32_t L_1 = ___index0; ArrayBuilder_1_t1205246587 * L_2 = (ArrayBuilder_1_t1205246587 *)__this->get_address_of__buffers_2(); int32_t L_3 = ArrayBuilder_1_get_Count_m1709634220((ArrayBuilder_1_t1205246587 *)(ArrayBuilder_1_t1205246587 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); if ((((int32_t)L_1) <= ((int32_t)L_3))) { goto IL_0018; } } { DictionaryEntryU5BU5D_t4217117203* L_4 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__current_3(); return L_4; } IL_0018: { ArrayBuilder_1_t1205246587 * L_5 = (ArrayBuilder_1_t1205246587 *)__this->get_address_of__buffers_2(); int32_t L_6 = ___index0; DictionaryEntryU5BU5D_t4217117203* L_7 = ArrayBuilder_1_get_Item_m2464597816((ArrayBuilder_1_t1205246587 *)(ArrayBuilder_1_t1205246587 *)L_5, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); return L_7; } IL_0027: { DictionaryEntryU5BU5D_t4217117203* L_8 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__first_1(); return L_8; } } extern "C" DictionaryEntryU5BU5D_t4217117203* LargeArrayBuilder_1_GetBuffer_m459509375_AdjustorThunk (RuntimeObject * __this, int32_t ___index0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3034328659 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3034328659 *>(__this + 1); return LargeArrayBuilder_1_GetBuffer_m459509375(_thisAdjusted, ___index0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::ToArray() extern "C" IL2CPP_METHOD_ATTR DictionaryEntryU5BU5D_t4217117203* LargeArrayBuilder_1_ToArray_m880301710_gshared (LargeArrayBuilder_1_t3034328659 * __this, const RuntimeMethod* method) { DictionaryEntryU5BU5D_t4217117203* V_0 = NULL; { bool L_0 = LargeArrayBuilder_1_TryMove_m1874375871((LargeArrayBuilder_1_t3034328659 *)(LargeArrayBuilder_1_t3034328659 *)__this, (DictionaryEntryU5BU5D_t4217117203**)(DictionaryEntryU5BU5D_t4217117203**)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); if (!L_0) { goto IL_000c; } } { DictionaryEntryU5BU5D_t4217117203* L_1 = V_0; return L_1; } IL_000c: { int32_t L_2 = (int32_t)__this->get__count_5(); DictionaryEntryU5BU5D_t4217117203* L_3 = (DictionaryEntryU5BU5D_t4217117203*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_2); V_0 = (DictionaryEntryU5BU5D_t4217117203*)L_3; DictionaryEntryU5BU5D_t4217117203* L_4 = V_0; int32_t L_5 = (int32_t)__this->get__count_5(); LargeArrayBuilder_1_CopyTo_m4153360821((LargeArrayBuilder_1_t3034328659 *)(LargeArrayBuilder_1_t3034328659 *)__this, (DictionaryEntryU5BU5D_t4217117203*)L_4, (int32_t)0, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)); DictionaryEntryU5BU5D_t4217117203* L_6 = V_0; return L_6; } } extern "C" DictionaryEntryU5BU5D_t4217117203* LargeArrayBuilder_1_ToArray_m880301710_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t3034328659 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3034328659 *>(__this + 1); return LargeArrayBuilder_1_ToArray_m880301710(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::TryMove(T[]&) extern "C" IL2CPP_METHOD_ATTR bool LargeArrayBuilder_1_TryMove_m1874375871_gshared (LargeArrayBuilder_1_t3034328659 * __this, DictionaryEntryU5BU5D_t4217117203** ___array0, const RuntimeMethod* method) { { DictionaryEntryU5BU5D_t4217117203** L_0 = ___array0; DictionaryEntryU5BU5D_t4217117203* L_1 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__first_1(); *((RuntimeObject **)L_0) = (RuntimeObject *)L_1; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_0, (RuntimeObject *)L_1); int32_t L_2 = (int32_t)__this->get__count_5(); DictionaryEntryU5BU5D_t4217117203* L_3 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__first_1(); NullCheck(L_3); return (bool)((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))))? 1 : 0); } } extern "C" bool LargeArrayBuilder_1_TryMove_m1874375871_AdjustorThunk (RuntimeObject * __this, DictionaryEntryU5BU5D_t4217117203** ___array0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3034328659 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3034328659 *>(__this + 1); return LargeArrayBuilder_1_TryMove_m1874375871(_thisAdjusted, ___array0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::AllocateBuffer() extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AllocateBuffer_m2360349896_gshared (LargeArrayBuilder_1_t3034328659 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_AllocateBuffer_m2360349896_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B4_0 = 0; { int32_t L_0 = (int32_t)__this->get__count_5(); if ((!(((uint32_t)L_0) < ((uint32_t)8)))) { goto IL_005a; } } { int32_t L_1 = (int32_t)__this->get__count_5(); if (!L_1) { goto IL_001b; } } { int32_t L_2 = (int32_t)__this->get__count_5(); G_B4_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_2, (int32_t)2)); goto IL_001c; } IL_001b: { G_B4_0 = 4; } IL_001c: { int32_t L_3 = (int32_t)__this->get__maxCapacity_0(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)G_B4_0, (int32_t)L_3, /*hidden argument*/NULL); V_0 = (int32_t)L_4; int32_t L_5 = V_0; DictionaryEntryU5BU5D_t4217117203* L_6 = (DictionaryEntryU5BU5D_t4217117203*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_5); __this->set__current_3(L_6); DictionaryEntryU5BU5D_t4217117203* L_7 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__first_1(); DictionaryEntryU5BU5D_t4217117203* L_8 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__current_3(); int32_t L_9 = (int32_t)__this->get__count_5(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)0, (int32_t)L_9, /*hidden argument*/NULL); DictionaryEntryU5BU5D_t4217117203* L_10 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__current_3(); __this->set__first_1(L_10); return; } IL_005a: { int32_t L_11 = (int32_t)__this->get__count_5(); if ((!(((uint32_t)L_11) == ((uint32_t)8)))) { goto IL_0067; } } { V_1 = (int32_t)8; goto IL_0091; } IL_0067: { ArrayBuilder_1_t1205246587 * L_12 = (ArrayBuilder_1_t1205246587 *)__this->get_address_of__buffers_2(); DictionaryEntryU5BU5D_t4217117203* L_13 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__current_3(); ArrayBuilder_1_Add_m4108685891((ArrayBuilder_1_t1205246587 *)(ArrayBuilder_1_t1205246587 *)L_12, (DictionaryEntryU5BU5D_t4217117203*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); int32_t L_14 = (int32_t)__this->get__count_5(); int32_t L_15 = (int32_t)__this->get__maxCapacity_0(); int32_t L_16 = (int32_t)__this->get__count_5(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_17 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); V_1 = (int32_t)L_17; } IL_0091: { int32_t L_18 = V_1; DictionaryEntryU5BU5D_t4217117203* L_19 = (DictionaryEntryU5BU5D_t4217117203*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_18); __this->set__current_3(L_19); __this->set__index_4(0); return; } } extern "C" void LargeArrayBuilder_1_AllocateBuffer_m2360349896_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t3034328659 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3034328659 *>(__this + 1); LargeArrayBuilder_1_AllocateBuffer_m2360349896(_thisAdjusted, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::<CopyTo>g__CopyToCore|15_0(T[],System.Int32,System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0<T>&) extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m2330126167_gshared (RuntimeObject * __this /* static, unused */, DictionaryEntryU5BU5D_t4217117203* ___sourceBuffer0, int32_t ___sourceIndex1, U3CU3Ec__DisplayClass15_0_t112694451 * p2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m2330126167_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { DictionaryEntryU5BU5D_t4217117203* L_0 = ___sourceBuffer0; NullCheck(L_0); int32_t L_1 = ___sourceIndex1; U3CU3Ec__DisplayClass15_0_t112694451 * L_2 = p2; int32_t L_3 = (int32_t)L_2->get_count_0(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), (int32_t)L_1)), (int32_t)L_3, /*hidden argument*/NULL); V_0 = (int32_t)L_4; DictionaryEntryU5BU5D_t4217117203* L_5 = ___sourceBuffer0; int32_t L_6 = ___sourceIndex1; U3CU3Ec__DisplayClass15_0_t112694451 * L_7 = p2; DictionaryEntryU5BU5D_t4217117203* L_8 = (DictionaryEntryU5BU5D_t4217117203*)L_7->get_array_1(); U3CU3Ec__DisplayClass15_0_t112694451 * L_9 = p2; int32_t L_10 = (int32_t)L_9->get_arrayIndex_2(); int32_t L_11 = V_0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)L_10, (int32_t)L_11, /*hidden argument*/NULL); U3CU3Ec__DisplayClass15_0_t112694451 * L_12 = p2; U3CU3Ec__DisplayClass15_0_t112694451 * L_13 = p2; int32_t L_14 = (int32_t)L_13->get_arrayIndex_2(); int32_t L_15 = V_0; L_12->set_arrayIndex_2(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15))); U3CU3Ec__DisplayClass15_0_t112694451 * L_16 = p2; U3CU3Ec__DisplayClass15_0_t112694451 * L_17 = p2; int32_t L_18 = (int32_t)L_17->get_count_0(); int32_t L_19 = V_0; L_16->set_count_0(((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19))); int32_t L_20 = V_0; return L_20; } } #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.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m2226121364_gshared (LargeArrayBuilder_1_t2440570340 * __this, bool ___initialize0, const RuntimeMethod* method) { { LargeArrayBuilder_1__ctor_m4108096359((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)__this, (int32_t)((int32_t)2147483647LL), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return; } } extern "C" void LargeArrayBuilder_1__ctor_m2226121364_AdjustorThunk (RuntimeObject * __this, bool ___initialize0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2440570340 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2440570340 *>(__this + 1); LargeArrayBuilder_1__ctor_m2226121364(_thisAdjusted, ___initialize0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m4108096359_gshared (LargeArrayBuilder_1_t2440570340 * __this, int32_t ___maxCapacity0, const RuntimeMethod* method) { KeyValuePair_2U5BU5D_t118269214* V_0 = NULL; { il2cpp_codegen_initobj(__this, sizeof(LargeArrayBuilder_1_t2440570340 )); KeyValuePair_2U5BU5D_t118269214* L_0 = (( KeyValuePair_2U5BU5D_t118269214* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2U5BU5D_t118269214* L_1 = (KeyValuePair_2U5BU5D_t118269214*)L_0; V_0 = (KeyValuePair_2U5BU5D_t118269214*)L_1; __this->set__current_3(L_1); KeyValuePair_2U5BU5D_t118269214* L_2 = V_0; __this->set__first_1(L_2); int32_t L_3 = ___maxCapacity0; __this->set__maxCapacity_0(L_3); return; } } extern "C" void LargeArrayBuilder_1__ctor_m4108096359_AdjustorThunk (RuntimeObject * __this, int32_t ___maxCapacity0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2440570340 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2440570340 *>(__this + 1); LargeArrayBuilder_1__ctor_m4108096359(_thisAdjusted, ___maxCapacity0, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_get_Count_m2608056476_gshared (LargeArrayBuilder_1_t2440570340 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__count_5(); return L_0; } } extern "C" int32_t LargeArrayBuilder_1_get_Count_m2608056476_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t2440570340 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2440570340 *>(__this + 1); return LargeArrayBuilder_1_get_Count_m2608056476(_thisAdjusted, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Add(T) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_Add_m982335036_gshared (LargeArrayBuilder_1_t2440570340 * __this, KeyValuePair_2_t2530217319 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get__index_4(); KeyValuePair_2U5BU5D_t118269214* L_1 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__current_3(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_0016; } } { LargeArrayBuilder_1_AllocateBuffer_m2042007487((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); } IL_0016: { KeyValuePair_2U5BU5D_t118269214* L_2 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__current_3(); int32_t L_3 = (int32_t)__this->get__index_4(); V_0 = (int32_t)L_3; int32_t L_4 = V_0; __this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int32_t L_5 = V_0; KeyValuePair_2_t2530217319 L_6 = ___item0; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (KeyValuePair_2_t2530217319 )L_6); int32_t L_7 = (int32_t)__this->get__count_5(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); return; } } extern "C" void LargeArrayBuilder_1_Add_m982335036_AdjustorThunk (RuntimeObject * __this, KeyValuePair_2_t2530217319 ___item0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2440570340 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2440570340 *>(__this + 1); LargeArrayBuilder_1_Add_m982335036(_thisAdjusted, ___item0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AddRange_m271381180_gshared (LargeArrayBuilder_1_t2440570340 * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_AddRange_m271381180_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; KeyValuePair_2U5BU5D_t118269214* V_1 = NULL; int32_t V_2 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___items0; NullCheck((RuntimeObject*)L_0); RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), (RuntimeObject*)L_0); V_0 = (RuntimeObject*)L_1; } IL_0007: try { // begin try (depth: 1) { KeyValuePair_2U5BU5D_t118269214* L_2 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__current_3(); V_1 = (KeyValuePair_2U5BU5D_t118269214*)L_2; int32_t L_3 = (int32_t)__this->get__index_4(); V_2 = (int32_t)L_3; goto IL_005e; } IL_0017: { int32_t L_4 = V_2; KeyValuePair_2U5BU5D_t118269214* L_5 = V_1; NullCheck(L_5); if ((!(((uint32_t)L_4) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length)))))))) { goto IL_004d; } } IL_001d: { int32_t L_6 = (int32_t)__this->get__count_5(); int32_t L_7 = V_2; int32_t L_8 = (int32_t)__this->get__index_4(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))))); int32_t L_9 = V_2; __this->set__index_4(L_9); LargeArrayBuilder_1_AllocateBuffer_m2042007487((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2U5BU5D_t118269214* L_10 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__current_3(); V_1 = (KeyValuePair_2U5BU5D_t118269214*)L_10; int32_t L_11 = (int32_t)__this->get__index_4(); V_2 = (int32_t)L_11; } IL_004d: { KeyValuePair_2U5BU5D_t118269214* L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = (int32_t)L_13; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); RuntimeObject* L_15 = V_0; NullCheck((RuntimeObject*)L_15); KeyValuePair_2_t2530217319 L_16 = InterfaceFuncInvoker0< KeyValuePair_2_t2530217319 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4), (RuntimeObject*)L_15); NullCheck(L_12); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (KeyValuePair_2_t2530217319 )L_16); } IL_005e: { RuntimeObject* L_17 = V_0; NullCheck((RuntimeObject*)L_17); bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_17); if (L_18) { goto IL_0017; } } IL_0066: { int32_t L_19 = (int32_t)__this->get__count_5(); int32_t L_20 = V_2; int32_t L_21 = (int32_t)__this->get__index_4(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21))))); int32_t L_22 = V_2; __this->set__index_4(L_22); IL2CPP_LEAVE(0x8E, FINALLY_0084); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0084; } FINALLY_0084: { // begin finally (depth: 1) { RuntimeObject* L_23 = V_0; if (!L_23) { goto IL_008d; } } IL_0087: { RuntimeObject* L_24 = V_0; NullCheck((RuntimeObject*)L_24); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_24); } IL_008d: { IL2CPP_END_FINALLY(132) } } // end finally (depth: 1) IL2CPP_CLEANUP(132) { IL2CPP_JUMP_TBL(0x8E, IL_008e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_008e: { return; } } extern "C" void LargeArrayBuilder_1_AddRange_m271381180_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2440570340 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2440570340 *>(__this + 1); LargeArrayBuilder_1_AddRange_m271381180(_thisAdjusted, ___items0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::CopyTo(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_CopyTo_m3539229272_gshared (LargeArrayBuilder_1_t2440570340 * __this, KeyValuePair_2U5BU5D_t118269214* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_CopyTo_m3539229272_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; KeyValuePair_2U5BU5D_t118269214* V_1 = NULL; int32_t V_2 = 0; { V_0 = (int32_t)0; goto IL_002e; } IL_0004: { int32_t L_0 = V_0; KeyValuePair_2U5BU5D_t118269214* L_1 = LargeArrayBuilder_1_GetBuffer_m286061398((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_1 = (KeyValuePair_2U5BU5D_t118269214*)L_1; int32_t L_2 = ___count2; KeyValuePair_2U5BU5D_t118269214* L_3 = V_1; NullCheck(L_3); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)L_2, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), /*hidden argument*/NULL); V_2 = (int32_t)L_4; KeyValuePair_2U5BU5D_t118269214* L_5 = V_1; KeyValuePair_2U5BU5D_t118269214* L_6 = ___array0; int32_t L_7 = ___arrayIndex1; int32_t L_8 = V_2; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/NULL); int32_t L_9 = ___count2; int32_t L_10 = V_2; ___count2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)); int32_t L_11 = ___arrayIndex1; int32_t L_12 = V_2; ___arrayIndex1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)); int32_t L_13 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_002e: { int32_t L_14 = ___count2; if ((((int32_t)L_14) > ((int32_t)0))) { goto IL_0004; } } { return; } } extern "C" void LargeArrayBuilder_1_CopyTo_m3539229272_AdjustorThunk (RuntimeObject * __this, KeyValuePair_2U5BU5D_t118269214* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { LargeArrayBuilder_1_t2440570340 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2440570340 *>(__this + 1); LargeArrayBuilder_1_CopyTo_m3539229272(_thisAdjusted, ___array0, ___arrayIndex1, ___count2, method); } // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3291371982_gshared (LargeArrayBuilder_1_t2440570340 * __this, CopyPosition_t2993389481 ___position0, KeyValuePair_2U5BU5D_t118269214* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { U3CU3Ec__DisplayClass15_0_t3813903428 V_0; memset(&V_0, 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_t118269214* V_3 = NULL; int32_t V_4 = 0; CopyPosition_t2993389481 V_5; memset(&V_5, 0, sizeof(V_5)); { int32_t L_0 = ___count3; (&V_0)->set_count_0(L_0); KeyValuePair_2U5BU5D_t118269214* L_1 = ___array1; (&V_0)->set_array_1(L_1); int32_t L_2 = ___arrayIndex2; (&V_0)->set_arrayIndex_2(L_2); int32_t L_3 = CopyPosition_get_Row_m806830178((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&___position0), /*hidden argument*/NULL); V_1 = (int32_t)L_3; int32_t L_4 = CopyPosition_get_Column_m2845754312((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&___position0), /*hidden argument*/NULL); V_2 = (int32_t)L_4; int32_t L_5 = V_1; KeyValuePair_2U5BU5D_t118269214* L_6 = LargeArrayBuilder_1_GetBuffer_m286061398((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)__this, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_3 = (KeyValuePair_2U5BU5D_t118269214*)L_6; KeyValuePair_2U5BU5D_t118269214* L_7 = V_3; int32_t L_8 = V_2; int32_t L_9 = (( int32_t (*) (RuntimeObject * /* static, unused */, KeyValuePair_2U5BU5D_t118269214*, int32_t, U3CU3Ec__DisplayClass15_0_t3813903428 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (KeyValuePair_2U5BU5D_t118269214*)L_7, (int32_t)L_8, (U3CU3Ec__DisplayClass15_0_t3813903428 *)(U3CU3Ec__DisplayClass15_0_t3813903428 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); V_4 = (int32_t)L_9; U3CU3Ec__DisplayClass15_0_t3813903428 L_10 = V_0; int32_t L_11 = (int32_t)L_10.get_count_0(); if (L_11) { goto IL_005b; } } { int32_t L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = V_4; CopyPosition_t2993389481 L_15; memset(&L_15, 0, sizeof(L_15)); CopyPosition__ctor_m1131607009((&L_15), (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), /*hidden argument*/NULL); V_5 = (CopyPosition_t2993389481 )L_15; KeyValuePair_2U5BU5D_t118269214* L_16 = V_3; NullCheck(L_16); CopyPosition_t2993389481 L_17 = CopyPosition_Normalize_m4125119414((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&V_5), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))), /*hidden argument*/NULL); return L_17; } IL_005b: { int32_t L_18 = V_1; int32_t L_19 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); V_1 = (int32_t)L_19; KeyValuePair_2U5BU5D_t118269214* L_20 = LargeArrayBuilder_1_GetBuffer_m286061398((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)__this, (int32_t)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_3 = (KeyValuePair_2U5BU5D_t118269214*)L_20; KeyValuePair_2U5BU5D_t118269214* L_21 = V_3; int32_t L_22 = (( int32_t (*) (RuntimeObject * /* static, unused */, KeyValuePair_2U5BU5D_t118269214*, int32_t, U3CU3Ec__DisplayClass15_0_t3813903428 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (KeyValuePair_2U5BU5D_t118269214*)L_21, (int32_t)0, (U3CU3Ec__DisplayClass15_0_t3813903428 *)(U3CU3Ec__DisplayClass15_0_t3813903428 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); V_4 = (int32_t)L_22; U3CU3Ec__DisplayClass15_0_t3813903428 L_23 = V_0; int32_t L_24 = (int32_t)L_23.get_count_0(); if ((((int32_t)L_24) > ((int32_t)0))) { goto IL_005b; } } { int32_t L_25 = V_1; int32_t L_26 = V_4; CopyPosition_t2993389481 L_27; memset(&L_27, 0, sizeof(L_27)); CopyPosition__ctor_m1131607009((&L_27), (int32_t)L_25, (int32_t)L_26, /*hidden argument*/NULL); V_5 = (CopyPosition_t2993389481 )L_27; KeyValuePair_2U5BU5D_t118269214* L_28 = V_3; NullCheck(L_28); CopyPosition_t2993389481 L_29 = CopyPosition_Normalize_m4125119414((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&V_5), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_28)->max_length)))), /*hidden argument*/NULL); return L_29; } } extern "C" CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3291371982_AdjustorThunk (RuntimeObject * __this, CopyPosition_t2993389481 ___position0, KeyValuePair_2U5BU5D_t118269214* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { LargeArrayBuilder_1_t2440570340 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2440570340 *>(__this + 1); return LargeArrayBuilder_1_CopyTo_m3291371982(_thisAdjusted, ___position0, ___array1, ___arrayIndex2, ___count3, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetBuffer(System.Int32) extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t118269214* LargeArrayBuilder_1_GetBuffer_m286061398_gshared (LargeArrayBuilder_1_t2440570340 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if (!L_0) { goto IL_0027; } } { int32_t L_1 = ___index0; ArrayBuilder_1_t1401365894 * L_2 = (ArrayBuilder_1_t1401365894 *)__this->get_address_of__buffers_2(); int32_t L_3 = ArrayBuilder_1_get_Count_m69798309((ArrayBuilder_1_t1401365894 *)(ArrayBuilder_1_t1401365894 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); if ((((int32_t)L_1) <= ((int32_t)L_3))) { goto IL_0018; } } { KeyValuePair_2U5BU5D_t118269214* L_4 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__current_3(); return L_4; } IL_0018: { ArrayBuilder_1_t1401365894 * L_5 = (ArrayBuilder_1_t1401365894 *)__this->get_address_of__buffers_2(); int32_t L_6 = ___index0; KeyValuePair_2U5BU5D_t118269214* L_7 = ArrayBuilder_1_get_Item_m1865156785((ArrayBuilder_1_t1401365894 *)(ArrayBuilder_1_t1401365894 *)L_5, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); return L_7; } IL_0027: { KeyValuePair_2U5BU5D_t118269214* L_8 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__first_1(); return L_8; } } extern "C" KeyValuePair_2U5BU5D_t118269214* LargeArrayBuilder_1_GetBuffer_m286061398_AdjustorThunk (RuntimeObject * __this, int32_t ___index0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2440570340 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2440570340 *>(__this + 1); return LargeArrayBuilder_1_GetBuffer_m286061398(_thisAdjusted, ___index0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray() extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t118269214* LargeArrayBuilder_1_ToArray_m3030376891_gshared (LargeArrayBuilder_1_t2440570340 * __this, const RuntimeMethod* method) { KeyValuePair_2U5BU5D_t118269214* V_0 = NULL; { bool L_0 = LargeArrayBuilder_1_TryMove_m3030092322((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)__this, (KeyValuePair_2U5BU5D_t118269214**)(KeyValuePair_2U5BU5D_t118269214**)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); if (!L_0) { goto IL_000c; } } { KeyValuePair_2U5BU5D_t118269214* L_1 = V_0; return L_1; } IL_000c: { int32_t L_2 = (int32_t)__this->get__count_5(); KeyValuePair_2U5BU5D_t118269214* L_3 = (KeyValuePair_2U5BU5D_t118269214*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_2); V_0 = (KeyValuePair_2U5BU5D_t118269214*)L_3; KeyValuePair_2U5BU5D_t118269214* L_4 = V_0; int32_t L_5 = (int32_t)__this->get__count_5(); LargeArrayBuilder_1_CopyTo_m3539229272((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)__this, (KeyValuePair_2U5BU5D_t118269214*)L_4, (int32_t)0, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)); KeyValuePair_2U5BU5D_t118269214* L_6 = V_0; return L_6; } } extern "C" KeyValuePair_2U5BU5D_t118269214* LargeArrayBuilder_1_ToArray_m3030376891_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t2440570340 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2440570340 *>(__this + 1); return LargeArrayBuilder_1_ToArray_m3030376891(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryMove(T[]&) extern "C" IL2CPP_METHOD_ATTR bool LargeArrayBuilder_1_TryMove_m3030092322_gshared (LargeArrayBuilder_1_t2440570340 * __this, KeyValuePair_2U5BU5D_t118269214** ___array0, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t118269214** L_0 = ___array0; KeyValuePair_2U5BU5D_t118269214* L_1 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__first_1(); *((RuntimeObject **)L_0) = (RuntimeObject *)L_1; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_0, (RuntimeObject *)L_1); int32_t L_2 = (int32_t)__this->get__count_5(); KeyValuePair_2U5BU5D_t118269214* L_3 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__first_1(); NullCheck(L_3); return (bool)((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))))? 1 : 0); } } extern "C" bool LargeArrayBuilder_1_TryMove_m3030092322_AdjustorThunk (RuntimeObject * __this, KeyValuePair_2U5BU5D_t118269214** ___array0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2440570340 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2440570340 *>(__this + 1); return LargeArrayBuilder_1_TryMove_m3030092322(_thisAdjusted, ___array0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::AllocateBuffer() extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AllocateBuffer_m2042007487_gshared (LargeArrayBuilder_1_t2440570340 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_AllocateBuffer_m2042007487_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B4_0 = 0; { int32_t L_0 = (int32_t)__this->get__count_5(); if ((!(((uint32_t)L_0) < ((uint32_t)8)))) { goto IL_005a; } } { int32_t L_1 = (int32_t)__this->get__count_5(); if (!L_1) { goto IL_001b; } } { int32_t L_2 = (int32_t)__this->get__count_5(); G_B4_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_2, (int32_t)2)); goto IL_001c; } IL_001b: { G_B4_0 = 4; } IL_001c: { int32_t L_3 = (int32_t)__this->get__maxCapacity_0(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)G_B4_0, (int32_t)L_3, /*hidden argument*/NULL); V_0 = (int32_t)L_4; int32_t L_5 = V_0; KeyValuePair_2U5BU5D_t118269214* L_6 = (KeyValuePair_2U5BU5D_t118269214*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_5); __this->set__current_3(L_6); KeyValuePair_2U5BU5D_t118269214* L_7 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__first_1(); KeyValuePair_2U5BU5D_t118269214* L_8 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__current_3(); int32_t L_9 = (int32_t)__this->get__count_5(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)0, (int32_t)L_9, /*hidden argument*/NULL); KeyValuePair_2U5BU5D_t118269214* L_10 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__current_3(); __this->set__first_1(L_10); return; } IL_005a: { int32_t L_11 = (int32_t)__this->get__count_5(); if ((!(((uint32_t)L_11) == ((uint32_t)8)))) { goto IL_0067; } } { V_1 = (int32_t)8; goto IL_0091; } IL_0067: { ArrayBuilder_1_t1401365894 * L_12 = (ArrayBuilder_1_t1401365894 *)__this->get_address_of__buffers_2(); KeyValuePair_2U5BU5D_t118269214* L_13 = (KeyValuePair_2U5BU5D_t118269214*)__this->get__current_3(); ArrayBuilder_1_Add_m3648459066((ArrayBuilder_1_t1401365894 *)(ArrayBuilder_1_t1401365894 *)L_12, (KeyValuePair_2U5BU5D_t118269214*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); int32_t L_14 = (int32_t)__this->get__count_5(); int32_t L_15 = (int32_t)__this->get__maxCapacity_0(); int32_t L_16 = (int32_t)__this->get__count_5(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_17 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); V_1 = (int32_t)L_17; } IL_0091: { int32_t L_18 = V_1; KeyValuePair_2U5BU5D_t118269214* L_19 = (KeyValuePair_2U5BU5D_t118269214*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_18); __this->set__current_3(L_19); __this->set__index_4(0); return; } } extern "C" void LargeArrayBuilder_1_AllocateBuffer_m2042007487_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t2440570340 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2440570340 *>(__this + 1); LargeArrayBuilder_1_AllocateBuffer_m2042007487(_thisAdjusted, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::<CopyTo>g__CopyToCore|15_0(T[],System.Int32,System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0<T>&) extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m2625366957_gshared (RuntimeObject * __this /* static, unused */, KeyValuePair_2U5BU5D_t118269214* ___sourceBuffer0, int32_t ___sourceIndex1, U3CU3Ec__DisplayClass15_0_t3813903428 * p2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m2625366957_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { KeyValuePair_2U5BU5D_t118269214* L_0 = ___sourceBuffer0; NullCheck(L_0); int32_t L_1 = ___sourceIndex1; U3CU3Ec__DisplayClass15_0_t3813903428 * L_2 = p2; int32_t L_3 = (int32_t)L_2->get_count_0(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), (int32_t)L_1)), (int32_t)L_3, /*hidden argument*/NULL); V_0 = (int32_t)L_4; KeyValuePair_2U5BU5D_t118269214* L_5 = ___sourceBuffer0; int32_t L_6 = ___sourceIndex1; U3CU3Ec__DisplayClass15_0_t3813903428 * L_7 = p2; KeyValuePair_2U5BU5D_t118269214* L_8 = (KeyValuePair_2U5BU5D_t118269214*)L_7->get_array_1(); U3CU3Ec__DisplayClass15_0_t3813903428 * L_9 = p2; int32_t L_10 = (int32_t)L_9->get_arrayIndex_2(); int32_t L_11 = V_0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)L_10, (int32_t)L_11, /*hidden argument*/NULL); U3CU3Ec__DisplayClass15_0_t3813903428 * L_12 = p2; U3CU3Ec__DisplayClass15_0_t3813903428 * L_13 = p2; int32_t L_14 = (int32_t)L_13->get_arrayIndex_2(); int32_t L_15 = V_0; L_12->set_arrayIndex_2(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15))); U3CU3Ec__DisplayClass15_0_t3813903428 * L_16 = p2; U3CU3Ec__DisplayClass15_0_t3813903428 * L_17 = p2; int32_t L_18 = (int32_t)L_17->get_count_0(); int32_t L_19 = V_0; L_16->set_count_0(((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19))); int32_t L_20 = V_0; return L_20; } } #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.Collections.Generic.LargeArrayBuilder`1<System.Object>::.ctor(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m104969882_gshared (LargeArrayBuilder_1_t2990459185 * __this, bool ___initialize0, const RuntimeMethod* method) { { LargeArrayBuilder_1__ctor_m193325792((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)__this, (int32_t)((int32_t)2147483647LL), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return; } } extern "C" void LargeArrayBuilder_1__ctor_m104969882_AdjustorThunk (RuntimeObject * __this, bool ___initialize0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2990459185 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2990459185 *>(__this + 1); LargeArrayBuilder_1__ctor_m104969882(_thisAdjusted, ___initialize0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m193325792_gshared (LargeArrayBuilder_1_t2990459185 * __this, int32_t ___maxCapacity0, const RuntimeMethod* method) { ObjectU5BU5D_t2843939325* V_0 = NULL; { il2cpp_codegen_initobj(__this, sizeof(LargeArrayBuilder_1_t2990459185 )); ObjectU5BU5D_t2843939325* L_0 = (( ObjectU5BU5D_t2843939325* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)L_0; V_0 = (ObjectU5BU5D_t2843939325*)L_1; __this->set__current_3(L_1); ObjectU5BU5D_t2843939325* L_2 = V_0; __this->set__first_1(L_2); int32_t L_3 = ___maxCapacity0; __this->set__maxCapacity_0(L_3); return; } } extern "C" void LargeArrayBuilder_1__ctor_m193325792_AdjustorThunk (RuntimeObject * __this, int32_t ___maxCapacity0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2990459185 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2990459185 *>(__this + 1); LargeArrayBuilder_1__ctor_m193325792(_thisAdjusted, ___maxCapacity0, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Object>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_get_Count_m4249061733_gshared (LargeArrayBuilder_1_t2990459185 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__count_5(); return L_0; } } extern "C" int32_t LargeArrayBuilder_1_get_Count_m4249061733_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t2990459185 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2990459185 *>(__this + 1); return LargeArrayBuilder_1_get_Count_m4249061733(_thisAdjusted, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::Add(T) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_Add_m3802412589_gshared (LargeArrayBuilder_1_t2990459185 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get__index_4(); ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__current_3(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_0016; } } { LargeArrayBuilder_1_AllocateBuffer_m2677938218((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); } IL_0016: { ObjectU5BU5D_t2843939325* L_2 = (ObjectU5BU5D_t2843939325*)__this->get__current_3(); int32_t L_3 = (int32_t)__this->get__index_4(); V_0 = (int32_t)L_3; int32_t L_4 = V_0; __this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int32_t L_5 = V_0; RuntimeObject * L_6 = ___item0; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_6); int32_t L_7 = (int32_t)__this->get__count_5(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); return; } } extern "C" void LargeArrayBuilder_1_Add_m3802412589_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2990459185 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2990459185 *>(__this + 1); LargeArrayBuilder_1_Add_m3802412589(_thisAdjusted, ___item0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AddRange_m1159522811_gshared (LargeArrayBuilder_1_t2990459185 * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_AddRange_m1159522811_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; ObjectU5BU5D_t2843939325* V_1 = NULL; int32_t V_2 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___items0; NullCheck((RuntimeObject*)L_0); RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), (RuntimeObject*)L_0); V_0 = (RuntimeObject*)L_1; } IL_0007: try { // begin try (depth: 1) { ObjectU5BU5D_t2843939325* L_2 = (ObjectU5BU5D_t2843939325*)__this->get__current_3(); V_1 = (ObjectU5BU5D_t2843939325*)L_2; int32_t L_3 = (int32_t)__this->get__index_4(); V_2 = (int32_t)L_3; goto IL_005e; } IL_0017: { int32_t L_4 = V_2; ObjectU5BU5D_t2843939325* L_5 = V_1; NullCheck(L_5); if ((!(((uint32_t)L_4) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length)))))))) { goto IL_004d; } } IL_001d: { int32_t L_6 = (int32_t)__this->get__count_5(); int32_t L_7 = V_2; int32_t L_8 = (int32_t)__this->get__index_4(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))))); int32_t L_9 = V_2; __this->set__index_4(L_9); LargeArrayBuilder_1_AllocateBuffer_m2677938218((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); ObjectU5BU5D_t2843939325* L_10 = (ObjectU5BU5D_t2843939325*)__this->get__current_3(); V_1 = (ObjectU5BU5D_t2843939325*)L_10; int32_t L_11 = (int32_t)__this->get__index_4(); V_2 = (int32_t)L_11; } IL_004d: { ObjectU5BU5D_t2843939325* L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = (int32_t)L_13; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); RuntimeObject* L_15 = V_0; NullCheck((RuntimeObject*)L_15); RuntimeObject * L_16 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4), (RuntimeObject*)L_15); NullCheck(L_12); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (RuntimeObject *)L_16); } IL_005e: { RuntimeObject* L_17 = V_0; NullCheck((RuntimeObject*)L_17); bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_17); if (L_18) { goto IL_0017; } } IL_0066: { int32_t L_19 = (int32_t)__this->get__count_5(); int32_t L_20 = V_2; int32_t L_21 = (int32_t)__this->get__index_4(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21))))); int32_t L_22 = V_2; __this->set__index_4(L_22); IL2CPP_LEAVE(0x8E, FINALLY_0084); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0084; } FINALLY_0084: { // begin finally (depth: 1) { RuntimeObject* L_23 = V_0; if (!L_23) { goto IL_008d; } } IL_0087: { RuntimeObject* L_24 = V_0; NullCheck((RuntimeObject*)L_24); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_24); } IL_008d: { IL2CPP_END_FINALLY(132) } } // end finally (depth: 1) IL2CPP_CLEANUP(132) { IL2CPP_JUMP_TBL(0x8E, IL_008e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_008e: { return; } } extern "C" void LargeArrayBuilder_1_AddRange_m1159522811_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2990459185 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2990459185 *>(__this + 1); LargeArrayBuilder_1_AddRange_m1159522811(_thisAdjusted, ___items0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::CopyTo(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_CopyTo_m1253522307_gshared (LargeArrayBuilder_1_t2990459185 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_CopyTo_m1253522307_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ObjectU5BU5D_t2843939325* V_1 = NULL; int32_t V_2 = 0; { V_0 = (int32_t)0; goto IL_002e; } IL_0004: { int32_t L_0 = V_0; ObjectU5BU5D_t2843939325* L_1 = LargeArrayBuilder_1_GetBuffer_m3998549007((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_1 = (ObjectU5BU5D_t2843939325*)L_1; int32_t L_2 = ___count2; ObjectU5BU5D_t2843939325* L_3 = V_1; NullCheck(L_3); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)L_2, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), /*hidden argument*/NULL); V_2 = (int32_t)L_4; ObjectU5BU5D_t2843939325* L_5 = V_1; ObjectU5BU5D_t2843939325* L_6 = ___array0; int32_t L_7 = ___arrayIndex1; int32_t L_8 = V_2; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/NULL); int32_t L_9 = ___count2; int32_t L_10 = V_2; ___count2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)); int32_t L_11 = ___arrayIndex1; int32_t L_12 = V_2; ___arrayIndex1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)); int32_t L_13 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_002e: { int32_t L_14 = ___count2; if ((((int32_t)L_14) > ((int32_t)0))) { goto IL_0004; } } { return; } } extern "C" void LargeArrayBuilder_1_CopyTo_m1253522307_AdjustorThunk (RuntimeObject * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { LargeArrayBuilder_1_t2990459185 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2990459185 *>(__this + 1); LargeArrayBuilder_1_CopyTo_m1253522307(_thisAdjusted, ___array0, ___arrayIndex1, ___count2, method); } // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<System.Object>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3670488443_gshared (LargeArrayBuilder_1_t2990459185 * __this, CopyPosition_t2993389481 ___position0, ObjectU5BU5D_t2843939325* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { U3CU3Ec__DisplayClass15_0_t68824977 V_0; memset(&V_0, 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; ObjectU5BU5D_t2843939325* V_3 = NULL; int32_t V_4 = 0; CopyPosition_t2993389481 V_5; memset(&V_5, 0, sizeof(V_5)); { int32_t L_0 = ___count3; (&V_0)->set_count_0(L_0); ObjectU5BU5D_t2843939325* L_1 = ___array1; (&V_0)->set_array_1(L_1); int32_t L_2 = ___arrayIndex2; (&V_0)->set_arrayIndex_2(L_2); int32_t L_3 = CopyPosition_get_Row_m806830178((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&___position0), /*hidden argument*/NULL); V_1 = (int32_t)L_3; int32_t L_4 = CopyPosition_get_Column_m2845754312((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&___position0), /*hidden argument*/NULL); V_2 = (int32_t)L_4; int32_t L_5 = V_1; ObjectU5BU5D_t2843939325* L_6 = LargeArrayBuilder_1_GetBuffer_m3998549007((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)__this, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_3 = (ObjectU5BU5D_t2843939325*)L_6; ObjectU5BU5D_t2843939325* L_7 = V_3; int32_t L_8 = V_2; int32_t L_9 = (( int32_t (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325*, int32_t, U3CU3Ec__DisplayClass15_0_t68824977 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325*)L_7, (int32_t)L_8, (U3CU3Ec__DisplayClass15_0_t68824977 *)(U3CU3Ec__DisplayClass15_0_t68824977 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); V_4 = (int32_t)L_9; U3CU3Ec__DisplayClass15_0_t68824977 L_10 = V_0; int32_t L_11 = (int32_t)L_10.get_count_0(); if (L_11) { goto IL_005b; } } { int32_t L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = V_4; CopyPosition_t2993389481 L_15; memset(&L_15, 0, sizeof(L_15)); CopyPosition__ctor_m1131607009((&L_15), (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), /*hidden argument*/NULL); V_5 = (CopyPosition_t2993389481 )L_15; ObjectU5BU5D_t2843939325* L_16 = V_3; NullCheck(L_16); CopyPosition_t2993389481 L_17 = CopyPosition_Normalize_m4125119414((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&V_5), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))), /*hidden argument*/NULL); return L_17; } IL_005b: { int32_t L_18 = V_1; int32_t L_19 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); V_1 = (int32_t)L_19; ObjectU5BU5D_t2843939325* L_20 = LargeArrayBuilder_1_GetBuffer_m3998549007((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)__this, (int32_t)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_3 = (ObjectU5BU5D_t2843939325*)L_20; ObjectU5BU5D_t2843939325* L_21 = V_3; int32_t L_22 = (( int32_t (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325*, int32_t, U3CU3Ec__DisplayClass15_0_t68824977 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325*)L_21, (int32_t)0, (U3CU3Ec__DisplayClass15_0_t68824977 *)(U3CU3Ec__DisplayClass15_0_t68824977 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); V_4 = (int32_t)L_22; U3CU3Ec__DisplayClass15_0_t68824977 L_23 = V_0; int32_t L_24 = (int32_t)L_23.get_count_0(); if ((((int32_t)L_24) > ((int32_t)0))) { goto IL_005b; } } { int32_t L_25 = V_1; int32_t L_26 = V_4; CopyPosition_t2993389481 L_27; memset(&L_27, 0, sizeof(L_27)); CopyPosition__ctor_m1131607009((&L_27), (int32_t)L_25, (int32_t)L_26, /*hidden argument*/NULL); V_5 = (CopyPosition_t2993389481 )L_27; ObjectU5BU5D_t2843939325* L_28 = V_3; NullCheck(L_28); CopyPosition_t2993389481 L_29 = CopyPosition_Normalize_m4125119414((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&V_5), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_28)->max_length)))), /*hidden argument*/NULL); return L_29; } } extern "C" CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3670488443_AdjustorThunk (RuntimeObject * __this, CopyPosition_t2993389481 ___position0, ObjectU5BU5D_t2843939325* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { LargeArrayBuilder_1_t2990459185 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2990459185 *>(__this + 1); return LargeArrayBuilder_1_CopyTo_m3670488443(_thisAdjusted, ___position0, ___array1, ___arrayIndex2, ___count3, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Object>::GetBuffer(System.Int32) extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* LargeArrayBuilder_1_GetBuffer_m3998549007_gshared (LargeArrayBuilder_1_t2990459185 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if (!L_0) { goto IL_0027; } } { int32_t L_1 = ___index0; ArrayBuilder_1_t4127036005 * L_2 = (ArrayBuilder_1_t4127036005 *)__this->get_address_of__buffers_2(); int32_t L_3 = ArrayBuilder_1_get_Count_m1834044633((ArrayBuilder_1_t4127036005 *)(ArrayBuilder_1_t4127036005 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); if ((((int32_t)L_1) <= ((int32_t)L_3))) { goto IL_0018; } } { ObjectU5BU5D_t2843939325* L_4 = (ObjectU5BU5D_t2843939325*)__this->get__current_3(); return L_4; } IL_0018: { ArrayBuilder_1_t4127036005 * L_5 = (ArrayBuilder_1_t4127036005 *)__this->get_address_of__buffers_2(); int32_t L_6 = ___index0; ObjectU5BU5D_t2843939325* L_7 = ArrayBuilder_1_get_Item_m3774067509((ArrayBuilder_1_t4127036005 *)(ArrayBuilder_1_t4127036005 *)L_5, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); return L_7; } IL_0027: { ObjectU5BU5D_t2843939325* L_8 = (ObjectU5BU5D_t2843939325*)__this->get__first_1(); return L_8; } } extern "C" ObjectU5BU5D_t2843939325* LargeArrayBuilder_1_GetBuffer_m3998549007_AdjustorThunk (RuntimeObject * __this, int32_t ___index0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2990459185 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2990459185 *>(__this + 1); return LargeArrayBuilder_1_GetBuffer_m3998549007(_thisAdjusted, ___index0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<System.Object>::ToArray() extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* LargeArrayBuilder_1_ToArray_m390648332_gshared (LargeArrayBuilder_1_t2990459185 * __this, const RuntimeMethod* method) { ObjectU5BU5D_t2843939325* V_0 = NULL; { bool L_0 = LargeArrayBuilder_1_TryMove_m950017932((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)__this, (ObjectU5BU5D_t2843939325**)(ObjectU5BU5D_t2843939325**)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); if (!L_0) { goto IL_000c; } } { ObjectU5BU5D_t2843939325* L_1 = V_0; return L_1; } IL_000c: { int32_t L_2 = (int32_t)__this->get__count_5(); ObjectU5BU5D_t2843939325* L_3 = (ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_2); V_0 = (ObjectU5BU5D_t2843939325*)L_3; ObjectU5BU5D_t2843939325* L_4 = V_0; int32_t L_5 = (int32_t)__this->get__count_5(); LargeArrayBuilder_1_CopyTo_m1253522307((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)__this, (ObjectU5BU5D_t2843939325*)L_4, (int32_t)0, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)); ObjectU5BU5D_t2843939325* L_6 = V_0; return L_6; } } extern "C" ObjectU5BU5D_t2843939325* LargeArrayBuilder_1_ToArray_m390648332_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t2990459185 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2990459185 *>(__this + 1); return LargeArrayBuilder_1_ToArray_m390648332(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<System.Object>::TryMove(T[]&) extern "C" IL2CPP_METHOD_ATTR bool LargeArrayBuilder_1_TryMove_m950017932_gshared (LargeArrayBuilder_1_t2990459185 * __this, ObjectU5BU5D_t2843939325** ___array0, const RuntimeMethod* method) { { ObjectU5BU5D_t2843939325** L_0 = ___array0; ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__first_1(); *((RuntimeObject **)L_0) = (RuntimeObject *)L_1; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_0, (RuntimeObject *)L_1); int32_t L_2 = (int32_t)__this->get__count_5(); ObjectU5BU5D_t2843939325* L_3 = (ObjectU5BU5D_t2843939325*)__this->get__first_1(); NullCheck(L_3); return (bool)((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))))? 1 : 0); } } extern "C" bool LargeArrayBuilder_1_TryMove_m950017932_AdjustorThunk (RuntimeObject * __this, ObjectU5BU5D_t2843939325** ___array0, const RuntimeMethod* method) { LargeArrayBuilder_1_t2990459185 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2990459185 *>(__this + 1); return LargeArrayBuilder_1_TryMove_m950017932(_thisAdjusted, ___array0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::AllocateBuffer() extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AllocateBuffer_m2677938218_gshared (LargeArrayBuilder_1_t2990459185 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_AllocateBuffer_m2677938218_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B4_0 = 0; { int32_t L_0 = (int32_t)__this->get__count_5(); if ((!(((uint32_t)L_0) < ((uint32_t)8)))) { goto IL_005a; } } { int32_t L_1 = (int32_t)__this->get__count_5(); if (!L_1) { goto IL_001b; } } { int32_t L_2 = (int32_t)__this->get__count_5(); G_B4_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_2, (int32_t)2)); goto IL_001c; } IL_001b: { G_B4_0 = 4; } IL_001c: { int32_t L_3 = (int32_t)__this->get__maxCapacity_0(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)G_B4_0, (int32_t)L_3, /*hidden argument*/NULL); V_0 = (int32_t)L_4; int32_t L_5 = V_0; ObjectU5BU5D_t2843939325* L_6 = (ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_5); __this->set__current_3(L_6); ObjectU5BU5D_t2843939325* L_7 = (ObjectU5BU5D_t2843939325*)__this->get__first_1(); ObjectU5BU5D_t2843939325* L_8 = (ObjectU5BU5D_t2843939325*)__this->get__current_3(); int32_t L_9 = (int32_t)__this->get__count_5(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)0, (int32_t)L_9, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_10 = (ObjectU5BU5D_t2843939325*)__this->get__current_3(); __this->set__first_1(L_10); return; } IL_005a: { int32_t L_11 = (int32_t)__this->get__count_5(); if ((!(((uint32_t)L_11) == ((uint32_t)8)))) { goto IL_0067; } } { V_1 = (int32_t)8; goto IL_0091; } IL_0067: { ArrayBuilder_1_t4127036005 * L_12 = (ArrayBuilder_1_t4127036005 *)__this->get_address_of__buffers_2(); ObjectU5BU5D_t2843939325* L_13 = (ObjectU5BU5D_t2843939325*)__this->get__current_3(); ArrayBuilder_1_Add_m1163931654((ArrayBuilder_1_t4127036005 *)(ArrayBuilder_1_t4127036005 *)L_12, (ObjectU5BU5D_t2843939325*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); int32_t L_14 = (int32_t)__this->get__count_5(); int32_t L_15 = (int32_t)__this->get__maxCapacity_0(); int32_t L_16 = (int32_t)__this->get__count_5(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_17 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); V_1 = (int32_t)L_17; } IL_0091: { int32_t L_18 = V_1; ObjectU5BU5D_t2843939325* L_19 = (ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_18); __this->set__current_3(L_19); __this->set__index_4(0); return; } } extern "C" void LargeArrayBuilder_1_AllocateBuffer_m2677938218_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t2990459185 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t2990459185 *>(__this + 1); LargeArrayBuilder_1_AllocateBuffer_m2677938218(_thisAdjusted, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<System.Object>::<CopyTo>g__CopyToCore|15_0(T[],System.Int32,System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0<T>&) extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m1834757906_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___sourceBuffer0, int32_t ___sourceIndex1, U3CU3Ec__DisplayClass15_0_t68824977 * p2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m1834757906_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ObjectU5BU5D_t2843939325* L_0 = ___sourceBuffer0; NullCheck(L_0); int32_t L_1 = ___sourceIndex1; U3CU3Ec__DisplayClass15_0_t68824977 * L_2 = p2; int32_t L_3 = (int32_t)L_2->get_count_0(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), (int32_t)L_1)), (int32_t)L_3, /*hidden argument*/NULL); V_0 = (int32_t)L_4; ObjectU5BU5D_t2843939325* L_5 = ___sourceBuffer0; int32_t L_6 = ___sourceIndex1; U3CU3Ec__DisplayClass15_0_t68824977 * L_7 = p2; ObjectU5BU5D_t2843939325* L_8 = (ObjectU5BU5D_t2843939325*)L_7->get_array_1(); U3CU3Ec__DisplayClass15_0_t68824977 * L_9 = p2; int32_t L_10 = (int32_t)L_9->get_arrayIndex_2(); int32_t L_11 = V_0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)L_10, (int32_t)L_11, /*hidden argument*/NULL); U3CU3Ec__DisplayClass15_0_t68824977 * L_12 = p2; U3CU3Ec__DisplayClass15_0_t68824977 * L_13 = p2; int32_t L_14 = (int32_t)L_13->get_arrayIndex_2(); int32_t L_15 = V_0; L_12->set_arrayIndex_2(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15))); U3CU3Ec__DisplayClass15_0_t68824977 * L_16 = p2; U3CU3Ec__DisplayClass15_0_t68824977 * L_17 = p2; int32_t L_18 = (int32_t)L_17->get_count_0(); int32_t L_19 = V_0; L_16->set_count_0(((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19))); int32_t L_20 = V_0; return L_20; } } #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.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::.ctor(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m2621609802_gshared (LargeArrayBuilder_1_t3696204514 * __this, bool ___initialize0, const RuntimeMethod* method) { { LargeArrayBuilder_1__ctor_m2251031111((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)__this, (int32_t)((int32_t)2147483647LL), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return; } } extern "C" void LargeArrayBuilder_1__ctor_m2621609802_AdjustorThunk (RuntimeObject * __this, bool ___initialize0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3696204514 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3696204514 *>(__this + 1); LargeArrayBuilder_1__ctor_m2621609802(_thisAdjusted, ___initialize0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1__ctor_m2251031111_gshared (LargeArrayBuilder_1_t3696204514 * __this, int32_t ___maxCapacity0, const RuntimeMethod* method) { RayU5BU5D_t1836217960* V_0 = NULL; { il2cpp_codegen_initobj(__this, sizeof(LargeArrayBuilder_1_t3696204514 )); RayU5BU5D_t1836217960* L_0 = (( RayU5BU5D_t1836217960* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); RayU5BU5D_t1836217960* L_1 = (RayU5BU5D_t1836217960*)L_0; V_0 = (RayU5BU5D_t1836217960*)L_1; __this->set__current_3(L_1); RayU5BU5D_t1836217960* L_2 = V_0; __this->set__first_1(L_2); int32_t L_3 = ___maxCapacity0; __this->set__maxCapacity_0(L_3); return; } } extern "C" void LargeArrayBuilder_1__ctor_m2251031111_AdjustorThunk (RuntimeObject * __this, int32_t ___maxCapacity0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3696204514 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3696204514 *>(__this + 1); LargeArrayBuilder_1__ctor_m2251031111(_thisAdjusted, ___maxCapacity0, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_get_Count_m260774496_gshared (LargeArrayBuilder_1_t3696204514 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__count_5(); return L_0; } } extern "C" int32_t LargeArrayBuilder_1_get_Count_m260774496_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t3696204514 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3696204514 *>(__this + 1); return LargeArrayBuilder_1_get_Count_m260774496(_thisAdjusted, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::Add(T) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_Add_m3560339651_gshared (LargeArrayBuilder_1_t3696204514 * __this, Ray_t3785851493 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get__index_4(); RayU5BU5D_t1836217960* L_1 = (RayU5BU5D_t1836217960*)__this->get__current_3(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_0016; } } { LargeArrayBuilder_1_AllocateBuffer_m2894186751((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); } IL_0016: { RayU5BU5D_t1836217960* L_2 = (RayU5BU5D_t1836217960*)__this->get__current_3(); int32_t L_3 = (int32_t)__this->get__index_4(); V_0 = (int32_t)L_3; int32_t L_4 = V_0; __this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int32_t L_5 = V_0; Ray_t3785851493 L_6 = ___item0; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (Ray_t3785851493 )L_6); int32_t L_7 = (int32_t)__this->get__count_5(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); return; } } extern "C" void LargeArrayBuilder_1_Add_m3560339651_AdjustorThunk (RuntimeObject * __this, Ray_t3785851493 ___item0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3696204514 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3696204514 *>(__this + 1); LargeArrayBuilder_1_Add_m3560339651(_thisAdjusted, ___item0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AddRange_m3454702397_gshared (LargeArrayBuilder_1_t3696204514 * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_AddRange_m3454702397_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RayU5BU5D_t1836217960* V_1 = NULL; int32_t V_2 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___items0; NullCheck((RuntimeObject*)L_0); RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<UnityEngine.Ray>::GetEnumerator() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), (RuntimeObject*)L_0); V_0 = (RuntimeObject*)L_1; } IL_0007: try { // begin try (depth: 1) { RayU5BU5D_t1836217960* L_2 = (RayU5BU5D_t1836217960*)__this->get__current_3(); V_1 = (RayU5BU5D_t1836217960*)L_2; int32_t L_3 = (int32_t)__this->get__index_4(); V_2 = (int32_t)L_3; goto IL_005e; } IL_0017: { int32_t L_4 = V_2; RayU5BU5D_t1836217960* L_5 = V_1; NullCheck(L_5); if ((!(((uint32_t)L_4) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length)))))))) { goto IL_004d; } } IL_001d: { int32_t L_6 = (int32_t)__this->get__count_5(); int32_t L_7 = V_2; int32_t L_8 = (int32_t)__this->get__index_4(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))))); int32_t L_9 = V_2; __this->set__index_4(L_9); LargeArrayBuilder_1_AllocateBuffer_m2894186751((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); RayU5BU5D_t1836217960* L_10 = (RayU5BU5D_t1836217960*)__this->get__current_3(); V_1 = (RayU5BU5D_t1836217960*)L_10; int32_t L_11 = (int32_t)__this->get__index_4(); V_2 = (int32_t)L_11; } IL_004d: { RayU5BU5D_t1836217960* L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = (int32_t)L_13; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); RuntimeObject* L_15 = V_0; NullCheck((RuntimeObject*)L_15); Ray_t3785851493 L_16 = InterfaceFuncInvoker0< Ray_t3785851493 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<UnityEngine.Ray>::get_Current() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4), (RuntimeObject*)L_15); NullCheck(L_12); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (Ray_t3785851493 )L_16); } IL_005e: { RuntimeObject* L_17 = V_0; NullCheck((RuntimeObject*)L_17); bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_17); if (L_18) { goto IL_0017; } } IL_0066: { int32_t L_19 = (int32_t)__this->get__count_5(); int32_t L_20 = V_2; int32_t L_21 = (int32_t)__this->get__index_4(); __this->set__count_5(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21))))); int32_t L_22 = V_2; __this->set__index_4(L_22); IL2CPP_LEAVE(0x8E, FINALLY_0084); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0084; } FINALLY_0084: { // begin finally (depth: 1) { RuntimeObject* L_23 = V_0; if (!L_23) { goto IL_008d; } } IL_0087: { RuntimeObject* L_24 = V_0; NullCheck((RuntimeObject*)L_24); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_24); } IL_008d: { IL2CPP_END_FINALLY(132) } } // end finally (depth: 1) IL2CPP_CLEANUP(132) { IL2CPP_JUMP_TBL(0x8E, IL_008e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_008e: { return; } } extern "C" void LargeArrayBuilder_1_AddRange_m3454702397_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___items0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3696204514 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3696204514 *>(__this + 1); LargeArrayBuilder_1_AddRange_m3454702397(_thisAdjusted, ___items0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::CopyTo(T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_CopyTo_m12527799_gshared (LargeArrayBuilder_1_t3696204514 * __this, RayU5BU5D_t1836217960* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_CopyTo_m12527799_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RayU5BU5D_t1836217960* V_1 = NULL; int32_t V_2 = 0; { V_0 = (int32_t)0; goto IL_002e; } IL_0004: { int32_t L_0 = V_0; RayU5BU5D_t1836217960* L_1 = LargeArrayBuilder_1_GetBuffer_m1764034806((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_1 = (RayU5BU5D_t1836217960*)L_1; int32_t L_2 = ___count2; RayU5BU5D_t1836217960* L_3 = V_1; NullCheck(L_3); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)L_2, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), /*hidden argument*/NULL); V_2 = (int32_t)L_4; RayU5BU5D_t1836217960* L_5 = V_1; RayU5BU5D_t1836217960* L_6 = ___array0; int32_t L_7 = ___arrayIndex1; int32_t L_8 = V_2; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/NULL); int32_t L_9 = ___count2; int32_t L_10 = V_2; ___count2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)); int32_t L_11 = ___arrayIndex1; int32_t L_12 = V_2; ___arrayIndex1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)); int32_t L_13 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_002e: { int32_t L_14 = ___count2; if ((((int32_t)L_14) > ((int32_t)0))) { goto IL_0004; } } { return; } } extern "C" void LargeArrayBuilder_1_CopyTo_m12527799_AdjustorThunk (RuntimeObject * __this, RayU5BU5D_t1836217960* ___array0, int32_t ___arrayIndex1, int32_t ___count2, const RuntimeMethod* method) { LargeArrayBuilder_1_t3696204514 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3696204514 *>(__this + 1); LargeArrayBuilder_1_CopyTo_m12527799(_thisAdjusted, ___array0, ___arrayIndex1, ___count2, method); } // System.Collections.Generic.CopyPosition System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::CopyTo(System.Collections.Generic.CopyPosition,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3393164995_gshared (LargeArrayBuilder_1_t3696204514 * __this, CopyPosition_t2993389481 ___position0, RayU5BU5D_t1836217960* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { U3CU3Ec__DisplayClass15_0_t774570306 V_0; memset(&V_0, 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; RayU5BU5D_t1836217960* V_3 = NULL; int32_t V_4 = 0; CopyPosition_t2993389481 V_5; memset(&V_5, 0, sizeof(V_5)); { int32_t L_0 = ___count3; (&V_0)->set_count_0(L_0); RayU5BU5D_t1836217960* L_1 = ___array1; (&V_0)->set_array_1(L_1); int32_t L_2 = ___arrayIndex2; (&V_0)->set_arrayIndex_2(L_2); int32_t L_3 = CopyPosition_get_Row_m806830178((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&___position0), /*hidden argument*/NULL); V_1 = (int32_t)L_3; int32_t L_4 = CopyPosition_get_Column_m2845754312((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&___position0), /*hidden argument*/NULL); V_2 = (int32_t)L_4; int32_t L_5 = V_1; RayU5BU5D_t1836217960* L_6 = LargeArrayBuilder_1_GetBuffer_m1764034806((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)__this, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_3 = (RayU5BU5D_t1836217960*)L_6; RayU5BU5D_t1836217960* L_7 = V_3; int32_t L_8 = V_2; int32_t L_9 = (( int32_t (*) (RuntimeObject * /* static, unused */, RayU5BU5D_t1836217960*, int32_t, U3CU3Ec__DisplayClass15_0_t774570306 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (RayU5BU5D_t1836217960*)L_7, (int32_t)L_8, (U3CU3Ec__DisplayClass15_0_t774570306 *)(U3CU3Ec__DisplayClass15_0_t774570306 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); V_4 = (int32_t)L_9; U3CU3Ec__DisplayClass15_0_t774570306 L_10 = V_0; int32_t L_11 = (int32_t)L_10.get_count_0(); if (L_11) { goto IL_005b; } } { int32_t L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = V_4; CopyPosition_t2993389481 L_15; memset(&L_15, 0, sizeof(L_15)); CopyPosition__ctor_m1131607009((&L_15), (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), /*hidden argument*/NULL); V_5 = (CopyPosition_t2993389481 )L_15; RayU5BU5D_t1836217960* L_16 = V_3; NullCheck(L_16); CopyPosition_t2993389481 L_17 = CopyPosition_Normalize_m4125119414((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&V_5), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))), /*hidden argument*/NULL); return L_17; } IL_005b: { int32_t L_18 = V_1; int32_t L_19 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); V_1 = (int32_t)L_19; RayU5BU5D_t1836217960* L_20 = LargeArrayBuilder_1_GetBuffer_m1764034806((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)__this, (int32_t)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); V_3 = (RayU5BU5D_t1836217960*)L_20; RayU5BU5D_t1836217960* L_21 = V_3; int32_t L_22 = (( int32_t (*) (RuntimeObject * /* static, unused */, RayU5BU5D_t1836217960*, int32_t, U3CU3Ec__DisplayClass15_0_t774570306 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(NULL /*static, unused*/, (RayU5BU5D_t1836217960*)L_21, (int32_t)0, (U3CU3Ec__DisplayClass15_0_t774570306 *)(U3CU3Ec__DisplayClass15_0_t774570306 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); V_4 = (int32_t)L_22; U3CU3Ec__DisplayClass15_0_t774570306 L_23 = V_0; int32_t L_24 = (int32_t)L_23.get_count_0(); if ((((int32_t)L_24) > ((int32_t)0))) { goto IL_005b; } } { int32_t L_25 = V_1; int32_t L_26 = V_4; CopyPosition_t2993389481 L_27; memset(&L_27, 0, sizeof(L_27)); CopyPosition__ctor_m1131607009((&L_27), (int32_t)L_25, (int32_t)L_26, /*hidden argument*/NULL); V_5 = (CopyPosition_t2993389481 )L_27; RayU5BU5D_t1836217960* L_28 = V_3; NullCheck(L_28); CopyPosition_t2993389481 L_29 = CopyPosition_Normalize_m4125119414((CopyPosition_t2993389481 *)(CopyPosition_t2993389481 *)(&V_5), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_28)->max_length)))), /*hidden argument*/NULL); return L_29; } } extern "C" CopyPosition_t2993389481 LargeArrayBuilder_1_CopyTo_m3393164995_AdjustorThunk (RuntimeObject * __this, CopyPosition_t2993389481 ___position0, RayU5BU5D_t1836217960* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { LargeArrayBuilder_1_t3696204514 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3696204514 *>(__this + 1); return LargeArrayBuilder_1_CopyTo_m3393164995(_thisAdjusted, ___position0, ___array1, ___arrayIndex2, ___count3, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::GetBuffer(System.Int32) extern "C" IL2CPP_METHOD_ATTR RayU5BU5D_t1836217960* LargeArrayBuilder_1_GetBuffer_m1764034806_gshared (LargeArrayBuilder_1_t3696204514 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if (!L_0) { goto IL_0027; } } { int32_t L_1 = ___index0; ArrayBuilder_1_t3119314640 * L_2 = (ArrayBuilder_1_t3119314640 *)__this->get_address_of__buffers_2(); int32_t L_3 = ArrayBuilder_1_get_Count_m2184078287((ArrayBuilder_1_t3119314640 *)(ArrayBuilder_1_t3119314640 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); if ((((int32_t)L_1) <= ((int32_t)L_3))) { goto IL_0018; } } { RayU5BU5D_t1836217960* L_4 = (RayU5BU5D_t1836217960*)__this->get__current_3(); return L_4; } IL_0018: { ArrayBuilder_1_t3119314640 * L_5 = (ArrayBuilder_1_t3119314640 *)__this->get_address_of__buffers_2(); int32_t L_6 = ___index0; RayU5BU5D_t1836217960* L_7 = ArrayBuilder_1_get_Item_m2918988053((ArrayBuilder_1_t3119314640 *)(ArrayBuilder_1_t3119314640 *)L_5, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)); return L_7; } IL_0027: { RayU5BU5D_t1836217960* L_8 = (RayU5BU5D_t1836217960*)__this->get__first_1(); return L_8; } } extern "C" RayU5BU5D_t1836217960* LargeArrayBuilder_1_GetBuffer_m1764034806_AdjustorThunk (RuntimeObject * __this, int32_t ___index0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3696204514 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3696204514 *>(__this + 1); return LargeArrayBuilder_1_GetBuffer_m1764034806(_thisAdjusted, ___index0, method); } // T[] System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::ToArray() extern "C" IL2CPP_METHOD_ATTR RayU5BU5D_t1836217960* LargeArrayBuilder_1_ToArray_m4051514523_gshared (LargeArrayBuilder_1_t3696204514 * __this, const RuntimeMethod* method) { RayU5BU5D_t1836217960* V_0 = NULL; { bool L_0 = LargeArrayBuilder_1_TryMove_m1622191087((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)__this, (RayU5BU5D_t1836217960**)(RayU5BU5D_t1836217960**)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); if (!L_0) { goto IL_000c; } } { RayU5BU5D_t1836217960* L_1 = V_0; return L_1; } IL_000c: { int32_t L_2 = (int32_t)__this->get__count_5(); RayU5BU5D_t1836217960* L_3 = (RayU5BU5D_t1836217960*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_2); V_0 = (RayU5BU5D_t1836217960*)L_3; RayU5BU5D_t1836217960* L_4 = V_0; int32_t L_5 = (int32_t)__this->get__count_5(); LargeArrayBuilder_1_CopyTo_m12527799((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)__this, (RayU5BU5D_t1836217960*)L_4, (int32_t)0, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)); RayU5BU5D_t1836217960* L_6 = V_0; return L_6; } } extern "C" RayU5BU5D_t1836217960* LargeArrayBuilder_1_ToArray_m4051514523_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t3696204514 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3696204514 *>(__this + 1); return LargeArrayBuilder_1_ToArray_m4051514523(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::TryMove(T[]&) extern "C" IL2CPP_METHOD_ATTR bool LargeArrayBuilder_1_TryMove_m1622191087_gshared (LargeArrayBuilder_1_t3696204514 * __this, RayU5BU5D_t1836217960** ___array0, const RuntimeMethod* method) { { RayU5BU5D_t1836217960** L_0 = ___array0; RayU5BU5D_t1836217960* L_1 = (RayU5BU5D_t1836217960*)__this->get__first_1(); *((RuntimeObject **)L_0) = (RuntimeObject *)L_1; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_0, (RuntimeObject *)L_1); int32_t L_2 = (int32_t)__this->get__count_5(); RayU5BU5D_t1836217960* L_3 = (RayU5BU5D_t1836217960*)__this->get__first_1(); NullCheck(L_3); return (bool)((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))))? 1 : 0); } } extern "C" bool LargeArrayBuilder_1_TryMove_m1622191087_AdjustorThunk (RuntimeObject * __this, RayU5BU5D_t1836217960** ___array0, const RuntimeMethod* method) { LargeArrayBuilder_1_t3696204514 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3696204514 *>(__this + 1); return LargeArrayBuilder_1_TryMove_m1622191087(_thisAdjusted, ___array0, method); } // System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::AllocateBuffer() extern "C" IL2CPP_METHOD_ATTR void LargeArrayBuilder_1_AllocateBuffer_m2894186751_gshared (LargeArrayBuilder_1_t3696204514 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_AllocateBuffer_m2894186751_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B4_0 = 0; { int32_t L_0 = (int32_t)__this->get__count_5(); if ((!(((uint32_t)L_0) < ((uint32_t)8)))) { goto IL_005a; } } { int32_t L_1 = (int32_t)__this->get__count_5(); if (!L_1) { goto IL_001b; } } { int32_t L_2 = (int32_t)__this->get__count_5(); G_B4_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_2, (int32_t)2)); goto IL_001c; } IL_001b: { G_B4_0 = 4; } IL_001c: { int32_t L_3 = (int32_t)__this->get__maxCapacity_0(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)G_B4_0, (int32_t)L_3, /*hidden argument*/NULL); V_0 = (int32_t)L_4; int32_t L_5 = V_0; RayU5BU5D_t1836217960* L_6 = (RayU5BU5D_t1836217960*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_5); __this->set__current_3(L_6); RayU5BU5D_t1836217960* L_7 = (RayU5BU5D_t1836217960*)__this->get__first_1(); RayU5BU5D_t1836217960* L_8 = (RayU5BU5D_t1836217960*)__this->get__current_3(); int32_t L_9 = (int32_t)__this->get__count_5(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)0, (int32_t)L_9, /*hidden argument*/NULL); RayU5BU5D_t1836217960* L_10 = (RayU5BU5D_t1836217960*)__this->get__current_3(); __this->set__first_1(L_10); return; } IL_005a: { int32_t L_11 = (int32_t)__this->get__count_5(); if ((!(((uint32_t)L_11) == ((uint32_t)8)))) { goto IL_0067; } } { V_1 = (int32_t)8; goto IL_0091; } IL_0067: { ArrayBuilder_1_t3119314640 * L_12 = (ArrayBuilder_1_t3119314640 *)__this->get_address_of__buffers_2(); RayU5BU5D_t1836217960* L_13 = (RayU5BU5D_t1836217960*)__this->get__current_3(); ArrayBuilder_1_Add_m2406932454((ArrayBuilder_1_t3119314640 *)(ArrayBuilder_1_t3119314640 *)L_12, (RayU5BU5D_t1836217960*)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); int32_t L_14 = (int32_t)__this->get__count_5(); int32_t L_15 = (int32_t)__this->get__maxCapacity_0(); int32_t L_16 = (int32_t)__this->get__count_5(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_17 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); V_1 = (int32_t)L_17; } IL_0091: { int32_t L_18 = V_1; RayU5BU5D_t1836217960* L_19 = (RayU5BU5D_t1836217960*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), (uint32_t)L_18); __this->set__current_3(L_19); __this->set__index_4(0); return; } } extern "C" void LargeArrayBuilder_1_AllocateBuffer_m2894186751_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { LargeArrayBuilder_1_t3696204514 * _thisAdjusted = reinterpret_cast<LargeArrayBuilder_1_t3696204514 *>(__this + 1); LargeArrayBuilder_1_AllocateBuffer_m2894186751(_thisAdjusted, method); } // System.Int32 System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::<CopyTo>g__CopyToCore|15_0(T[],System.Int32,System.Collections.Generic.LargeArrayBuilder`1/<>c__DisplayClass15_0<T>&) extern "C" IL2CPP_METHOD_ATTR int32_t LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m4034077565_gshared (RuntimeObject * __this /* static, unused */, RayU5BU5D_t1836217960* ___sourceBuffer0, int32_t ___sourceIndex1, U3CU3Ec__DisplayClass15_0_t774570306 * p2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LargeArrayBuilder_1_U3CCopyToU3Eg__CopyToCoreU7C15_0_m4034077565_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RayU5BU5D_t1836217960* L_0 = ___sourceBuffer0; NullCheck(L_0); int32_t L_1 = ___sourceIndex1; U3CU3Ec__DisplayClass15_0_t774570306 * L_2 = p2; int32_t L_3 = (int32_t)L_2->get_count_0(); IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var); int32_t L_4 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), (int32_t)L_1)), (int32_t)L_3, /*hidden argument*/NULL); V_0 = (int32_t)L_4; RayU5BU5D_t1836217960* L_5 = ___sourceBuffer0; int32_t L_6 = ___sourceIndex1; U3CU3Ec__DisplayClass15_0_t774570306 * L_7 = p2; RayU5BU5D_t1836217960* L_8 = (RayU5BU5D_t1836217960*)L_7->get_array_1(); U3CU3Ec__DisplayClass15_0_t774570306 * L_9 = p2; int32_t L_10 = (int32_t)L_9->get_arrayIndex_2(); int32_t L_11 = V_0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)L_10, (int32_t)L_11, /*hidden argument*/NULL); U3CU3Ec__DisplayClass15_0_t774570306 * L_12 = p2; U3CU3Ec__DisplayClass15_0_t774570306 * L_13 = p2; int32_t L_14 = (int32_t)L_13->get_arrayIndex_2(); int32_t L_15 = V_0; L_12->set_arrayIndex_2(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15))); U3CU3Ec__DisplayClass15_0_t774570306 * L_16 = p2; U3CU3Ec__DisplayClass15_0_t774570306 * L_17 = p2; int32_t L_18 = (int32_t)L_17->get_count_0(); int32_t L_19 = V_0; L_16->set_count_0(((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19))); int32_t L_20 = V_0; return L_20; } } #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.Collections.Generic.LinkedListNode`1<System.Object>::.ctor(System.Collections.Generic.LinkedList`1<T>,T) extern "C" IL2CPP_METHOD_ATTR void LinkedListNode_1__ctor_m3617645130_gshared (LinkedListNode_1_t2825281267 * __this, LinkedList_1_t1919752173 * ___list0, RuntimeObject * ___value1, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); LinkedList_1_t1919752173 * L_0 = ___list0; __this->set_list_0(L_0); RuntimeObject * L_1 = ___value1; __this->set_item_3(L_1); return; } } // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1<System.Object>::get_Next() extern "C" IL2CPP_METHOD_ATTR LinkedListNode_1_t2825281267 * LinkedListNode_1_get_Next_m2904068362_gshared (LinkedListNode_1_t2825281267 * __this, const RuntimeMethod* method) { { LinkedListNode_1_t2825281267 * L_0 = (LinkedListNode_1_t2825281267 *)__this->get_next_1(); if (!L_0) { goto IL_0022; } } { LinkedListNode_1_t2825281267 * L_1 = (LinkedListNode_1_t2825281267 *)__this->get_next_1(); LinkedList_1_t1919752173 * L_2 = (LinkedList_1_t1919752173 *)__this->get_list_0(); NullCheck(L_2); LinkedListNode_1_t2825281267 * L_3 = (LinkedListNode_1_t2825281267 *)L_2->get_head_0(); if ((((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_1) == ((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_3))) { goto IL_0022; } } { LinkedListNode_1_t2825281267 * L_4 = (LinkedListNode_1_t2825281267 *)__this->get_next_1(); return L_4; } IL_0022: { return (LinkedListNode_1_t2825281267 *)NULL; } } // T System.Collections.Generic.LinkedListNode`1<System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * LinkedListNode_1_get_Value_m541203653_gshared (LinkedListNode_1_t2825281267 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_item_3(); return L_0; } } // System.Void System.Collections.Generic.LinkedListNode`1<System.Object>::Invalidate() extern "C" IL2CPP_METHOD_ATTR void LinkedListNode_1_Invalidate_m1882106421_gshared (LinkedListNode_1_t2825281267 * __this, const RuntimeMethod* method) { { __this->set_list_0((LinkedList_1_t1919752173 *)NULL); __this->set_next_1((LinkedListNode_1_t2825281267 *)NULL); __this->set_prev_2((LinkedListNode_1_t2825281267 *)NULL); 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.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.LinkedList`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2504641326_gshared (Enumerator_t139379724 * __this, LinkedList_1_t1919752173 * ___list0, const RuntimeMethod* method) { { LinkedList_1_t1919752173 * L_0 = ___list0; __this->set__list_0(L_0); LinkedList_1_t1919752173 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_2(); __this->set__version_2(L_2); LinkedList_1_t1919752173 * L_3 = ___list0; NullCheck(L_3); LinkedListNode_1_t2825281267 * L_4 = (LinkedListNode_1_t2825281267 *)L_3->get_head_0(); __this->set__node_1(L_4); RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of__current_3(); il2cpp_codegen_initobj(L_5, sizeof(RuntimeObject *)); __this->set__index_4(0); return; } } extern "C" void Enumerator__ctor_m2504641326_AdjustorThunk (RuntimeObject * __this, LinkedList_1_t1919752173 * ___list0, const RuntimeMethod* method) { Enumerator_t139379724 * _thisAdjusted = reinterpret_cast<Enumerator_t139379724 *>(__this + 1); Enumerator__ctor_m2504641326(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m351918184_gshared (Enumerator_t139379724 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator__ctor_m351918184_MetadataUsageId); s_Il2CppMethodInitialized = true; } { PlatformNotSupportedException_t3572244504 * L_0 = (PlatformNotSupportedException_t3572244504 *)il2cpp_codegen_object_new(PlatformNotSupportedException_t3572244504_il2cpp_TypeInfo_var); PlatformNotSupportedException__ctor_m1787918017(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Enumerator__ctor_m351918184_RuntimeMethod_var); } } extern "C" void Enumerator__ctor_m351918184_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) { Enumerator_t139379724 * _thisAdjusted = reinterpret_cast<Enumerator_t139379724 *>(__this + 1); Enumerator__ctor_m351918184(_thisAdjusted, ___info0, ___context1, method); } // T System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m2579293505_gshared (Enumerator_t139379724 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get__current_3(); return L_0; } } extern "C" RuntimeObject * Enumerator_get_Current_m2579293505_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t139379724 * _thisAdjusted = reinterpret_cast<Enumerator_t139379724 *>(__this + 1); return Enumerator_get_Current_m2579293505(_thisAdjusted, method); } // System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3484854280_gshared (Enumerator_t139379724 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_m3484854280_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get__index_4(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get__index_4(); LinkedList_1_t1919752173 * L_2 = (LinkedList_1_t1919752173 *)__this->get__list_0(); NullCheck((LinkedList_1_t1919752173 *)L_2); int32_t L_3 = (( int32_t (*) (LinkedList_1_t1919752173 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((LinkedList_1_t1919752173 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t56020091 * L_4 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_4, (String_t*)_stringLiteral927632030, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_m3484854280_RuntimeMethod_var); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get__current_3(); return L_5; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3484854280_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t139379724 * _thisAdjusted = reinterpret_cast<Enumerator_t139379724 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3484854280(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m880141662_gshared (Enumerator_t139379724 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_MoveNext_m880141662_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get__version_2(); LinkedList_1_t1919752173 * L_1 = (LinkedList_1_t1919752173 *)__this->get__list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_2(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral1621028992, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_m880141662_RuntimeMethod_var); } IL_001e: { LinkedListNode_1_t2825281267 * L_4 = (LinkedListNode_1_t2825281267 *)__this->get__node_1(); if (L_4) { goto IL_003b; } } { LinkedList_1_t1919752173 * L_5 = (LinkedList_1_t1919752173 *)__this->get__list_0(); NullCheck((LinkedList_1_t1919752173 *)L_5); int32_t L_6 = (( int32_t (*) (LinkedList_1_t1919752173 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((LinkedList_1_t1919752173 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); __this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1))); return (bool)0; } IL_003b: { int32_t L_7 = (int32_t)__this->get__index_4(); __this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); LinkedListNode_1_t2825281267 * L_8 = (LinkedListNode_1_t2825281267 *)__this->get__node_1(); NullCheck(L_8); RuntimeObject * L_9 = (RuntimeObject *)L_8->get_item_3(); __this->set__current_3(L_9); LinkedListNode_1_t2825281267 * L_10 = (LinkedListNode_1_t2825281267 *)__this->get__node_1(); NullCheck(L_10); LinkedListNode_1_t2825281267 * L_11 = (LinkedListNode_1_t2825281267 *)L_10->get_next_1(); __this->set__node_1(L_11); LinkedListNode_1_t2825281267 * L_12 = (LinkedListNode_1_t2825281267 *)__this->get__node_1(); LinkedList_1_t1919752173 * L_13 = (LinkedList_1_t1919752173 *)__this->get__list_0(); NullCheck(L_13); LinkedListNode_1_t2825281267 * L_14 = (LinkedListNode_1_t2825281267 *)L_13->get_head_0(); if ((!(((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_12) == ((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_14)))) { goto IL_0085; } } { __this->set__node_1((LinkedListNode_1_t2825281267 *)NULL); } IL_0085: { return (bool)1; } } extern "C" bool Enumerator_MoveNext_m880141662_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t139379724 * _thisAdjusted = reinterpret_cast<Enumerator_t139379724 *>(__this + 1); return Enumerator_MoveNext_m880141662(_thisAdjusted, method); } // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2550940120_gshared (Enumerator_t139379724 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_m2550940120_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get__version_2(); LinkedList_1_t1919752173 * L_1 = (LinkedList_1_t1919752173 *)__this->get__list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_2(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_3, (String_t*)_stringLiteral1621028992, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_m2550940120_RuntimeMethod_var); } IL_001e: { RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of__current_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); LinkedList_1_t1919752173 * L_5 = (LinkedList_1_t1919752173 *)__this->get__list_0(); NullCheck(L_5); LinkedListNode_1_t2825281267 * L_6 = (LinkedListNode_1_t2825281267 *)L_5->get_head_0(); __this->set__node_1(L_6); __this->set__index_4(0); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2550940120_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t139379724 * _thisAdjusted = reinterpret_cast<Enumerator_t139379724 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2550940120(_thisAdjusted, method); } // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2375640141_gshared (Enumerator_t139379724 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2375640141_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t139379724 * _thisAdjusted = reinterpret_cast<Enumerator_t139379724 *>(__this + 1); Enumerator_Dispose_m2375640141(_thisAdjusted, method); } // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m577802395_gshared (Enumerator_t139379724 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m577802395_MetadataUsageId); s_Il2CppMethodInitialized = true; } { PlatformNotSupportedException_t3572244504 * L_0 = (PlatformNotSupportedException_t3572244504 *)il2cpp_codegen_object_new(PlatformNotSupportedException_t3572244504_il2cpp_TypeInfo_var); PlatformNotSupportedException__ctor_m1787918017(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m577802395_RuntimeMethod_var); } } extern "C" void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m577802395_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) { Enumerator_t139379724 * _thisAdjusted = reinterpret_cast<Enumerator_t139379724 *>(__this + 1); Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m577802395(_thisAdjusted, ___info0, ___context1, method); } // System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3768315530_gshared (Enumerator_t139379724 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3768315530_MetadataUsageId); s_Il2CppMethodInitialized = true; } { PlatformNotSupportedException_t3572244504 * L_0 = (PlatformNotSupportedException_t3572244504 *)il2cpp_codegen_object_new(PlatformNotSupportedException_t3572244504_il2cpp_TypeInfo_var); PlatformNotSupportedException__ctor_m1787918017(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3768315530_RuntimeMethod_var); } } extern "C" void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3768315530_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { Enumerator_t139379724 * _thisAdjusted = reinterpret_cast<Enumerator_t139379724 *>(__this + 1); Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3768315530(_thisAdjusted, ___sender0, 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.Collections.Generic.LinkedList`1<System.Object>::.ctor() extern "C" IL2CPP_METHOD_ATTR void LinkedList_1__ctor_m3670635350_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1__ctor_m2390670044_gshared (LinkedList_1_t1919752173 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); SerializationInfo_t950877179 * L_0 = ___info0; __this->set__siInfo_4(L_0); return; } } // System.Int32 System.Collections.Generic.LinkedList`1<System.Object>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t LinkedList_1_get_Count_m2167432147_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_1(); return L_0; } } // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::get_First() extern "C" IL2CPP_METHOD_ATTR LinkedListNode_1_t2825281267 * LinkedList_1_get_First_m2519454609_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { { LinkedListNode_1_t2825281267 * L_0 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); return L_0; } } // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::get_Last() extern "C" IL2CPP_METHOD_ATTR LinkedListNode_1_t2825281267 * LinkedList_1_get_Last_m2223048833_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { { LinkedListNode_1_t2825281267 * L_0 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); if (!L_0) { goto IL_0014; } } { LinkedListNode_1_t2825281267 * L_1 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); NullCheck(L_1); LinkedListNode_1_t2825281267 * L_2 = (LinkedListNode_1_t2825281267 *)L_1->get_prev_2(); return L_2; } IL_0014: { return (LinkedListNode_1_t2825281267 *)NULL; } } // System.Boolean System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool LinkedList_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m4073043204_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.Generic.ICollection<T>.Add(T) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m2568132950_gshared (LinkedList_1_t1919752173 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; NullCheck((LinkedList_1_t1919752173 *)__this); (( LinkedListNode_1_t2825281267 * (*) (LinkedList_1_t1919752173 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((LinkedList_1_t1919752173 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::AddFirst(T) extern "C" IL2CPP_METHOD_ATTR LinkedListNode_1_t2825281267 * LinkedList_1_AddFirst_m3011155757_gshared (LinkedList_1_t1919752173 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { LinkedListNode_1_t2825281267 * V_0 = NULL; { RuntimeObject * L_0 = ___value0; LinkedListNode_1_t2825281267 * L_1 = (LinkedListNode_1_t2825281267 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (LinkedListNode_1_t2825281267 *, LinkedList_1_t1919752173 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(L_1, (LinkedList_1_t1919752173 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (LinkedListNode_1_t2825281267 *)L_1; LinkedListNode_1_t2825281267 * L_2 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); if (L_2) { goto IL_0019; } } { LinkedListNode_1_t2825281267 * L_3 = V_0; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((LinkedList_1_t1919752173 *)__this, (LinkedListNode_1_t2825281267 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); goto IL_002d; } IL_0019: { LinkedListNode_1_t2825281267 * L_4 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); LinkedListNode_1_t2825281267 * L_5 = V_0; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, LinkedListNode_1_t2825281267 *, LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((LinkedList_1_t1919752173 *)__this, (LinkedListNode_1_t2825281267 *)L_4, (LinkedListNode_1_t2825281267 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); LinkedListNode_1_t2825281267 * L_6 = V_0; __this->set_head_0(L_6); } IL_002d: { LinkedListNode_1_t2825281267 * L_7 = V_0; return L_7; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::AddFirst(System.Collections.Generic.LinkedListNode`1<T>) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_AddFirst_m1093003777_gshared (LinkedList_1_t1919752173 * __this, LinkedListNode_1_t2825281267 * ___node0, const RuntimeMethod* method) { { LinkedListNode_1_t2825281267 * L_0 = ___node0; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((LinkedList_1_t1919752173 *)__this, (LinkedListNode_1_t2825281267 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); LinkedListNode_1_t2825281267 * L_1 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); if (L_1) { goto IL_0018; } } { LinkedListNode_1_t2825281267 * L_2 = ___node0; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((LinkedList_1_t1919752173 *)__this, (LinkedListNode_1_t2825281267 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); goto IL_002c; } IL_0018: { LinkedListNode_1_t2825281267 * L_3 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); LinkedListNode_1_t2825281267 * L_4 = ___node0; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, LinkedListNode_1_t2825281267 *, LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((LinkedList_1_t1919752173 *)__this, (LinkedListNode_1_t2825281267 *)L_3, (LinkedListNode_1_t2825281267 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); LinkedListNode_1_t2825281267 * L_5 = ___node0; __this->set_head_0(L_5); } IL_002c: { LinkedListNode_1_t2825281267 * L_6 = ___node0; NullCheck(L_6); L_6->set_list_0(__this); return; } } // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::AddLast(T) extern "C" IL2CPP_METHOD_ATTR LinkedListNode_1_t2825281267 * LinkedList_1_AddLast_m1583460477_gshared (LinkedList_1_t1919752173 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { LinkedListNode_1_t2825281267 * V_0 = NULL; { RuntimeObject * L_0 = ___value0; LinkedListNode_1_t2825281267 * L_1 = (LinkedListNode_1_t2825281267 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (LinkedListNode_1_t2825281267 *, LinkedList_1_t1919752173 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(L_1, (LinkedList_1_t1919752173 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (LinkedListNode_1_t2825281267 *)L_1; LinkedListNode_1_t2825281267 * L_2 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); if (L_2) { goto IL_0019; } } { LinkedListNode_1_t2825281267 * L_3 = V_0; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((LinkedList_1_t1919752173 *)__this, (LinkedListNode_1_t2825281267 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); goto IL_0026; } IL_0019: { LinkedListNode_1_t2825281267 * L_4 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); LinkedListNode_1_t2825281267 * L_5 = V_0; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, LinkedListNode_1_t2825281267 *, LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((LinkedList_1_t1919752173 *)__this, (LinkedListNode_1_t2825281267 *)L_4, (LinkedListNode_1_t2825281267 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); } IL_0026: { LinkedListNode_1_t2825281267 * L_6 = V_0; return L_6; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::Clear() extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_Clear_m2711926805_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { LinkedListNode_1_t2825281267 * V_0 = NULL; LinkedListNode_1_t2825281267 * V_1 = NULL; { LinkedListNode_1_t2825281267 * L_0 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); V_0 = (LinkedListNode_1_t2825281267 *)L_0; goto IL_0018; } IL_0009: { LinkedListNode_1_t2825281267 * L_1 = V_0; V_1 = (LinkedListNode_1_t2825281267 *)L_1; LinkedListNode_1_t2825281267 * L_2 = V_0; NullCheck((LinkedListNode_1_t2825281267 *)L_2); LinkedListNode_1_t2825281267 * L_3 = (( LinkedListNode_1_t2825281267 * (*) (LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((LinkedListNode_1_t2825281267 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); V_0 = (LinkedListNode_1_t2825281267 *)L_3; LinkedListNode_1_t2825281267 * L_4 = V_1; NullCheck((LinkedListNode_1_t2825281267 *)L_4); (( void (*) (LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((LinkedListNode_1_t2825281267 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); } IL_0018: { LinkedListNode_1_t2825281267 * L_5 = V_0; if (L_5) { goto IL_0009; } } { __this->set_head_0((LinkedListNode_1_t2825281267 *)NULL); __this->set_count_1(0); int32_t L_6 = (int32_t)__this->get_version_2(); __this->set_version_2(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.LinkedList`1<System.Object>::Contains(T) extern "C" IL2CPP_METHOD_ATTR bool LinkedList_1_Contains_m4283568576_gshared (LinkedList_1_t1919752173 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; NullCheck((LinkedList_1_t1919752173 *)__this); LinkedListNode_1_t2825281267 * L_1 = (( LinkedListNode_1_t2825281267 * (*) (LinkedList_1_t1919752173 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((LinkedList_1_t1919752173 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return (bool)((!(((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::CopyTo(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_CopyTo_m2255490129_gshared (LinkedList_1_t1919752173 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LinkedList_1_CopyTo_m2255490129_MetadataUsageId); s_Il2CppMethodInitialized = true; } LinkedListNode_1_t2825281267 * V_0 = NULL; { ObjectU5BU5D_t2843939325* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4007973390, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, LinkedList_1_CopyTo_m2255490129_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_0028; } } { int32_t L_3 = ___index1; int32_t L_4 = L_3; RuntimeObject * L_5 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_4); ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m4164965325(L_6, (String_t*)_stringLiteral797640427, (RuntimeObject *)L_5, (String_t*)_stringLiteral2892689725, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, LinkedList_1_CopyTo_m2255490129_RuntimeMethod_var); } IL_0028: { int32_t L_7 = ___index1; ObjectU5BU5D_t2843939325* L_8 = ___array0; NullCheck(L_8); if ((((int32_t)L_7) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))))) { goto IL_0044; } } { int32_t L_9 = ___index1; int32_t L_10 = L_9; RuntimeObject * L_11 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_10); ArgumentOutOfRangeException_t777629997 * L_12 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m4164965325(L_12, (String_t*)_stringLiteral797640427, (RuntimeObject *)L_11, (String_t*)_stringLiteral1322100995, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, LinkedList_1_CopyTo_m2255490129_RuntimeMethod_var); } IL_0044: { ObjectU5BU5D_t2843939325* L_13 = ___array0; NullCheck(L_13); int32_t L_14 = ___index1; NullCheck((LinkedList_1_t1919752173 *)__this); int32_t L_15 = (( int32_t (*) (LinkedList_1_t1919752173 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((LinkedList_1_t1919752173 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_13)->max_length)))), (int32_t)L_14))) >= ((int32_t)L_15))) { goto IL_005c; } } { ArgumentException_t132251570 * L_16 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_16, (String_t*)_stringLiteral298611841, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, NULL, LinkedList_1_CopyTo_m2255490129_RuntimeMethod_var); } IL_005c: { LinkedListNode_1_t2825281267 * L_17 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); V_0 = (LinkedListNode_1_t2825281267 *)L_17; LinkedListNode_1_t2825281267 * L_18 = V_0; if (!L_18) { goto IL_0088; } } IL_0066: { ObjectU5BU5D_t2843939325* L_19 = ___array0; int32_t L_20 = ___index1; int32_t L_21 = (int32_t)L_20; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); LinkedListNode_1_t2825281267 * L_22 = V_0; NullCheck(L_22); RuntimeObject * L_23 = (RuntimeObject *)L_22->get_item_3(); NullCheck(L_19); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (RuntimeObject *)L_23); LinkedListNode_1_t2825281267 * L_24 = V_0; NullCheck(L_24); LinkedListNode_1_t2825281267 * L_25 = (LinkedListNode_1_t2825281267 *)L_24->get_next_1(); V_0 = (LinkedListNode_1_t2825281267 *)L_25; LinkedListNode_1_t2825281267 * L_26 = V_0; LinkedListNode_1_t2825281267 * L_27 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); if ((!(((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_26) == ((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_27)))) { goto IL_0066; } } IL_0088: { return; } } // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::Find(T) extern "C" IL2CPP_METHOD_ATTR LinkedListNode_1_t2825281267 * LinkedList_1_Find_m1359986976_gshared (LinkedList_1_t1919752173 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { LinkedListNode_1_t2825281267 * V_0 = NULL; EqualityComparer_1_t1249878500 * V_1 = NULL; { LinkedListNode_1_t2825281267 * L_0 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); V_0 = (LinkedListNode_1_t2825281267 *)L_0; EqualityComparer_1_t1249878500 * L_1 = (( EqualityComparer_1_t1249878500 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); V_1 = (EqualityComparer_1_t1249878500 *)L_1; LinkedListNode_1_t2825281267 * L_2 = V_0; if (!L_2) { goto IL_005a; } } { RuntimeObject * L_3 = ___value0; if (!L_3) { goto IL_003b; } } IL_0018: { EqualityComparer_1_t1249878500 * L_4 = V_1; LinkedListNode_1_t2825281267 * L_5 = V_0; NullCheck(L_5); RuntimeObject * L_6 = (RuntimeObject *)L_5->get_item_3(); RuntimeObject * L_7 = ___value0; NullCheck((EqualityComparer_1_t1249878500 *)L_4); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(!0,!0) */, (EqualityComparer_1_t1249878500 *)L_4, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0029; } } { LinkedListNode_1_t2825281267 * L_9 = V_0; return L_9; } IL_0029: { LinkedListNode_1_t2825281267 * L_10 = V_0; NullCheck(L_10); LinkedListNode_1_t2825281267 * L_11 = (LinkedListNode_1_t2825281267 *)L_10->get_next_1(); V_0 = (LinkedListNode_1_t2825281267 *)L_11; LinkedListNode_1_t2825281267 * L_12 = V_0; LinkedListNode_1_t2825281267 * L_13 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); if ((!(((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_12) == ((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_13)))) { goto IL_0018; } } { goto IL_005a; } IL_003b: { LinkedListNode_1_t2825281267 * L_14 = V_0; NullCheck(L_14); RuntimeObject * L_15 = (RuntimeObject *)L_14->get_item_3(); if (L_15) { goto IL_004a; } } { LinkedListNode_1_t2825281267 * L_16 = V_0; return L_16; } IL_004a: { LinkedListNode_1_t2825281267 * L_17 = V_0; NullCheck(L_17); LinkedListNode_1_t2825281267 * L_18 = (LinkedListNode_1_t2825281267 *)L_17->get_next_1(); V_0 = (LinkedListNode_1_t2825281267 *)L_18; LinkedListNode_1_t2825281267 * L_19 = V_0; LinkedListNode_1_t2825281267 * L_20 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); if ((!(((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_19) == ((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_20)))) { goto IL_003b; } } IL_005a: { return (LinkedListNode_1_t2825281267 *)NULL; } } // System.Collections.Generic.LinkedList`1/Enumerator<T> System.Collections.Generic.LinkedList`1<System.Object>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_t139379724 LinkedList_1_GetEnumerator_m1798018665_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { { Enumerator_t139379724 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m2504641326((&L_0), (LinkedList_1_t1919752173 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)); return L_0; } } // System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* LinkedList_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m2427432245_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { { NullCheck((LinkedList_1_t1919752173 *)__this); Enumerator_t139379724 L_0 = (( Enumerator_t139379724 (*) (LinkedList_1_t1919752173 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((LinkedList_1_t1919752173 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); Enumerator_t139379724 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 14), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.LinkedList`1<System.Object>::Remove(T) extern "C" IL2CPP_METHOD_ATTR bool LinkedList_1_Remove_m776321970_gshared (LinkedList_1_t1919752173 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { LinkedListNode_1_t2825281267 * V_0 = NULL; { RuntimeObject * L_0 = ___value0; NullCheck((LinkedList_1_t1919752173 *)__this); LinkedListNode_1_t2825281267 * L_1 = (( LinkedListNode_1_t2825281267 * (*) (LinkedList_1_t1919752173 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((LinkedList_1_t1919752173 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (LinkedListNode_1_t2825281267 *)L_1; LinkedListNode_1_t2825281267 * L_2 = V_0; if (!L_2) { goto IL_0014; } } { LinkedListNode_1_t2825281267 * L_3 = V_0; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((LinkedList_1_t1919752173 *)__this, (LinkedListNode_1_t2825281267 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return (bool)1; } IL_0014: { return (bool)0; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::Remove(System.Collections.Generic.LinkedListNode`1<T>) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_Remove_m574565390_gshared (LinkedList_1_t1919752173 * __this, LinkedListNode_1_t2825281267 * ___node0, const RuntimeMethod* method) { { LinkedListNode_1_t2825281267 * L_0 = ___node0; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((LinkedList_1_t1919752173 *)__this, (LinkedListNode_1_t2825281267 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); LinkedListNode_1_t2825281267 * L_1 = ___node0; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((LinkedList_1_t1919752173 *)__this, (LinkedListNode_1_t2825281267 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::RemoveLast() extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_RemoveLast_m2923798972_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LinkedList_1_RemoveLast_m2923798972_MetadataUsageId); s_Il2CppMethodInitialized = true; } { LinkedListNode_1_t2825281267 * L_0 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); if (L_0) { goto IL_0013; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, (String_t*)_stringLiteral848686345, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, LinkedList_1_RemoveLast_m2923798972_RuntimeMethod_var); } IL_0013: { LinkedListNode_1_t2825281267 * L_2 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); NullCheck(L_2); LinkedListNode_1_t2825281267 * L_3 = (LinkedListNode_1_t2825281267 *)L_2->get_prev_2(); NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((LinkedList_1_t1919752173 *)__this, (LinkedListNode_1_t2825281267 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_GetObjectData_m1792615137_gshared (LinkedList_1_t1919752173 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LinkedList_1_GetObjectData_m1792615137_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t2843939325* V_0 = NULL; { SerializationInfo_t950877179 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral79347, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, LinkedList_1_GetObjectData_m1792615137_RuntimeMethod_var); } IL_000e: { SerializationInfo_t950877179 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_2(); NullCheck((SerializationInfo_t950877179 *)L_2); SerializationInfo_AddValue_m412754688((SerializationInfo_t950877179 *)L_2, (String_t*)_stringLiteral1902402919, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t950877179 * L_4 = ___info0; int32_t L_5 = (int32_t)__this->get_count_1(); NullCheck((SerializationInfo_t950877179 *)L_4); SerializationInfo_AddValue_m412754688((SerializationInfo_t950877179 *)L_4, (String_t*)_stringLiteral2002596872, (int32_t)L_5, /*hidden argument*/NULL); int32_t L_6 = (int32_t)__this->get_count_1(); if (!L_6) { goto IL_0062; } } { int32_t L_7 = (int32_t)__this->get_count_1(); ObjectU5BU5D_t2843939325* L_8 = (ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 19), (uint32_t)L_7); V_0 = (ObjectU5BU5D_t2843939325*)L_8; ObjectU5BU5D_t2843939325* L_9 = V_0; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, ObjectU5BU5D_t2843939325*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)->methodPointer)((LinkedList_1_t1919752173 *)__this, (ObjectU5BU5D_t2843939325*)L_9, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); SerializationInfo_t950877179 * L_10 = ___info0; ObjectU5BU5D_t2843939325* L_11 = V_0; RuntimeTypeHandle_t3027515415 L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 21)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_12, /*hidden argument*/NULL); NullCheck((SerializationInfo_t950877179 *)L_10); SerializationInfo_AddValue_m3906743584((SerializationInfo_t950877179 *)L_10, (String_t*)_stringLiteral2037252898, (RuntimeObject *)(RuntimeObject *)L_11, (Type_t *)L_13, /*hidden argument*/NULL); } IL_0062: { return; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::OnDeserialization(System.Object) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_OnDeserialization_m3201462664_gshared (LinkedList_1_t1919752173 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LinkedList_1_OnDeserialization_m3201462664_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ObjectU5BU5D_t2843939325* V_1 = NULL; int32_t V_2 = 0; { SerializationInfo_t950877179 * L_0 = (SerializationInfo_t950877179 *)__this->get__siInfo_4(); if (L_0) { goto IL_0009; } } { return; } IL_0009: { SerializationInfo_t950877179 * L_1 = (SerializationInfo_t950877179 *)__this->get__siInfo_4(); NullCheck((SerializationInfo_t950877179 *)L_1); int32_t L_2 = SerializationInfo_GetInt32_m2640574809((SerializationInfo_t950877179 *)L_1, (String_t*)_stringLiteral1902402919, /*hidden argument*/NULL); V_0 = (int32_t)L_2; SerializationInfo_t950877179 * L_3 = (SerializationInfo_t950877179 *)__this->get__siInfo_4(); NullCheck((SerializationInfo_t950877179 *)L_3); int32_t L_4 = SerializationInfo_GetInt32_m2640574809((SerializationInfo_t950877179 *)L_3, (String_t*)_stringLiteral2002596872, /*hidden argument*/NULL); if (!L_4) { goto IL_0078; } } { SerializationInfo_t950877179 * L_5 = (SerializationInfo_t950877179 *)__this->get__siInfo_4(); RuntimeTypeHandle_t3027515415 L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 21)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t950877179 *)L_5); RuntimeObject * L_8 = SerializationInfo_GetValue_m42271953((SerializationInfo_t950877179 *)L_5, (String_t*)_stringLiteral2037252898, (Type_t *)L_7, /*hidden argument*/NULL); V_1 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 22))); ObjectU5BU5D_t2843939325* L_9 = V_1; if (L_9) { goto IL_005a; } } { SerializationException_t3941511869 * L_10 = (SerializationException_t3941511869 *)il2cpp_codegen_object_new(SerializationException_t3941511869_il2cpp_TypeInfo_var); SerializationException__ctor_m3862484944(L_10, (String_t*)_stringLiteral3835243841, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, LinkedList_1_OnDeserialization_m3201462664_RuntimeMethod_var); } IL_005a: { V_2 = (int32_t)0; goto IL_0070; } IL_005e: { ObjectU5BU5D_t2843939325* L_11 = V_1; int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = L_12; RuntimeObject * L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); NullCheck((LinkedList_1_t1919752173 *)__this); (( LinkedListNode_1_t2825281267 * (*) (LinkedList_1_t1919752173 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((LinkedList_1_t1919752173 *)__this, (RuntimeObject *)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t L_15 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0070: { int32_t L_16 = V_2; ObjectU5BU5D_t2843939325* L_17 = V_1; NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_17)->max_length))))))) { goto IL_005e; } } { goto IL_007f; } IL_0078: { __this->set_head_0((LinkedListNode_1_t2825281267 *)NULL); } IL_007f: { int32_t L_18 = V_0; __this->set_version_2(L_18); __this->set__siInfo_4((SerializationInfo_t950877179 *)NULL); return; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::InternalInsertNodeBefore(System.Collections.Generic.LinkedListNode`1<T>,System.Collections.Generic.LinkedListNode`1<T>) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_InternalInsertNodeBefore_m3309403487_gshared (LinkedList_1_t1919752173 * __this, LinkedListNode_1_t2825281267 * ___node0, LinkedListNode_1_t2825281267 * ___newNode1, const RuntimeMethod* method) { { LinkedListNode_1_t2825281267 * L_0 = ___newNode1; LinkedListNode_1_t2825281267 * L_1 = ___node0; NullCheck(L_0); L_0->set_next_1(L_1); LinkedListNode_1_t2825281267 * L_2 = ___newNode1; LinkedListNode_1_t2825281267 * L_3 = ___node0; NullCheck(L_3); LinkedListNode_1_t2825281267 * L_4 = (LinkedListNode_1_t2825281267 *)L_3->get_prev_2(); NullCheck(L_2); L_2->set_prev_2(L_4); LinkedListNode_1_t2825281267 * L_5 = ___node0; NullCheck(L_5); LinkedListNode_1_t2825281267 * L_6 = (LinkedListNode_1_t2825281267 *)L_5->get_prev_2(); LinkedListNode_1_t2825281267 * L_7 = ___newNode1; NullCheck(L_6); L_6->set_next_1(L_7); LinkedListNode_1_t2825281267 * L_8 = ___node0; LinkedListNode_1_t2825281267 * L_9 = ___newNode1; NullCheck(L_8); L_8->set_prev_2(L_9); int32_t L_10 = (int32_t)__this->get_version_2(); __this->set_version_2(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1))); int32_t L_11 = (int32_t)__this->get_count_1(); __this->set_count_1(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1))); return; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::InternalInsertNodeToEmptyList(System.Collections.Generic.LinkedListNode`1<T>) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_InternalInsertNodeToEmptyList_m1603236912_gshared (LinkedList_1_t1919752173 * __this, LinkedListNode_1_t2825281267 * ___newNode0, const RuntimeMethod* method) { { LinkedListNode_1_t2825281267 * L_0 = ___newNode0; LinkedListNode_1_t2825281267 * L_1 = ___newNode0; NullCheck(L_0); L_0->set_next_1(L_1); LinkedListNode_1_t2825281267 * L_2 = ___newNode0; LinkedListNode_1_t2825281267 * L_3 = ___newNode0; NullCheck(L_2); L_2->set_prev_2(L_3); LinkedListNode_1_t2825281267 * L_4 = ___newNode0; __this->set_head_0(L_4); int32_t L_5 = (int32_t)__this->get_version_2(); __this->set_version_2(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); int32_t L_6 = (int32_t)__this->get_count_1(); __this->set_count_1(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1))); return; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::InternalRemoveNode(System.Collections.Generic.LinkedListNode`1<T>) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_InternalRemoveNode_m4149938302_gshared (LinkedList_1_t1919752173 * __this, LinkedListNode_1_t2825281267 * ___node0, const RuntimeMethod* method) { { LinkedListNode_1_t2825281267 * L_0 = ___node0; NullCheck(L_0); LinkedListNode_1_t2825281267 * L_1 = (LinkedListNode_1_t2825281267 *)L_0->get_next_1(); LinkedListNode_1_t2825281267 * L_2 = ___node0; if ((!(((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_1) == ((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_2)))) { goto IL_0012; } } { __this->set_head_0((LinkedListNode_1_t2825281267 *)NULL); goto IL_0049; } IL_0012: { LinkedListNode_1_t2825281267 * L_3 = ___node0; NullCheck(L_3); LinkedListNode_1_t2825281267 * L_4 = (LinkedListNode_1_t2825281267 *)L_3->get_next_1(); LinkedListNode_1_t2825281267 * L_5 = ___node0; NullCheck(L_5); LinkedListNode_1_t2825281267 * L_6 = (LinkedListNode_1_t2825281267 *)L_5->get_prev_2(); NullCheck(L_4); L_4->set_prev_2(L_6); LinkedListNode_1_t2825281267 * L_7 = ___node0; NullCheck(L_7); LinkedListNode_1_t2825281267 * L_8 = (LinkedListNode_1_t2825281267 *)L_7->get_prev_2(); LinkedListNode_1_t2825281267 * L_9 = ___node0; NullCheck(L_9); LinkedListNode_1_t2825281267 * L_10 = (LinkedListNode_1_t2825281267 *)L_9->get_next_1(); NullCheck(L_8); L_8->set_next_1(L_10); LinkedListNode_1_t2825281267 * L_11 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); LinkedListNode_1_t2825281267 * L_12 = ___node0; if ((!(((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_11) == ((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_12)))) { goto IL_0049; } } { LinkedListNode_1_t2825281267 * L_13 = ___node0; NullCheck(L_13); LinkedListNode_1_t2825281267 * L_14 = (LinkedListNode_1_t2825281267 *)L_13->get_next_1(); __this->set_head_0(L_14); } IL_0049: { LinkedListNode_1_t2825281267 * L_15 = ___node0; NullCheck((LinkedListNode_1_t2825281267 *)L_15); (( void (*) (LinkedListNode_1_t2825281267 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((LinkedListNode_1_t2825281267 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); int32_t L_16 = (int32_t)__this->get_count_1(); __this->set_count_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1))); int32_t L_17 = (int32_t)__this->get_version_2(); __this->set_version_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::ValidateNewNode(System.Collections.Generic.LinkedListNode`1<T>) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_ValidateNewNode_m3541769584_gshared (LinkedList_1_t1919752173 * __this, LinkedListNode_1_t2825281267 * ___node0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LinkedList_1_ValidateNewNode_m3541769584_MetadataUsageId); s_Il2CppMethodInitialized = true; } { LinkedListNode_1_t2825281267 * L_0 = ___node0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral1985170616, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, LinkedList_1_ValidateNewNode_m3541769584_RuntimeMethod_var); } IL_000e: { LinkedListNode_1_t2825281267 * L_2 = ___node0; NullCheck(L_2); LinkedList_1_t1919752173 * L_3 = (LinkedList_1_t1919752173 *)L_2->get_list_0(); if (!L_3) { goto IL_0021; } } { InvalidOperationException_t56020091 * L_4 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_4, (String_t*)_stringLiteral885983982, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, LinkedList_1_ValidateNewNode_m3541769584_RuntimeMethod_var); } IL_0021: { return; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::ValidateNode(System.Collections.Generic.LinkedListNode`1<T>) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_ValidateNode_m947758109_gshared (LinkedList_1_t1919752173 * __this, LinkedListNode_1_t2825281267 * ___node0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LinkedList_1_ValidateNode_m947758109_MetadataUsageId); s_Il2CppMethodInitialized = true; } { LinkedListNode_1_t2825281267 * L_0 = ___node0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral1985170616, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, LinkedList_1_ValidateNode_m947758109_RuntimeMethod_var); } IL_000e: { LinkedListNode_1_t2825281267 * L_2 = ___node0; NullCheck(L_2); LinkedList_1_t1919752173 * L_3 = (LinkedList_1_t1919752173 *)L_2->get_list_0(); if ((((RuntimeObject*)(LinkedList_1_t1919752173 *)L_3) == ((RuntimeObject*)(LinkedList_1_t1919752173 *)__this))) { goto IL_0022; } } { InvalidOperationException_t56020091 * L_4 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_4, (String_t*)_stringLiteral2224226828, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, LinkedList_1_ValidateNode_m947758109_RuntimeMethod_var); } IL_0022: { return; } } // System.Boolean System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.ICollection.get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool LinkedList_1_System_Collections_ICollection_get_IsSynchronized_m345853585_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.ICollection.get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * LinkedList_1_System_Collections_ICollection_get_SyncRoot_m260305035_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LinkedList_1_System_Collections_ICollection_get_SyncRoot_m260305035_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_3(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_3(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m297566312(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_3(); return L_3; } } // System.Void System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void LinkedList_1_System_Collections_ICollection_CopyTo_m816767247_gshared (LinkedList_1_t1919752173 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LinkedList_1_System_Collections_ICollection_CopyTo_m816767247_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t2843939325* V_0 = NULL; ObjectU5BU5D_t2843939325* V_1 = NULL; LinkedListNode_1_t2825281267 * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4007973390, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, LinkedList_1_System_Collections_ICollection_CopyTo_m816767247_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m3448755881((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t132251570 * L_4 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1216717135(L_4, (String_t*)_stringLiteral915403387, (String_t*)_stringLiteral4007973390, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, LinkedList_1_System_Collections_ICollection_CopyTo_m816767247_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m2045984623((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t132251570 * L_7 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1216717135(L_7, (String_t*)_stringLiteral2590862907, (String_t*)_stringLiteral4007973390, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, LinkedList_1_System_Collections_ICollection_CopyTo_m816767247_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) >= ((int32_t)0))) { goto IL_005a; } } { int32_t L_9 = ___index1; int32_t L_10 = L_9; RuntimeObject * L_11 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_10); ArgumentOutOfRangeException_t777629997 * L_12 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m4164965325(L_12, (String_t*)_stringLiteral797640427, (RuntimeObject *)L_11, (String_t*)_stringLiteral2892689725, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, LinkedList_1_System_Collections_ICollection_CopyTo_m816767247_RuntimeMethod_var); } IL_005a: { RuntimeArray * L_13 = ___array0; NullCheck((RuntimeArray *)L_13); int32_t L_14 = Array_get_Length_m21610649((RuntimeArray *)L_13, /*hidden argument*/NULL); int32_t L_15 = ___index1; NullCheck((LinkedList_1_t1919752173 *)__this); int32_t L_16 = (( int32_t (*) (LinkedList_1_t1919752173 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((LinkedList_1_t1919752173 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15))) >= ((int32_t)L_16))) { goto IL_0075; } } { ArgumentException_t132251570 * L_17 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_17, (String_t*)_stringLiteral298611841, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, LinkedList_1_System_Collections_ICollection_CopyTo_m816767247_RuntimeMethod_var); } IL_0075: { RuntimeArray * L_18 = ___array0; V_0 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)IsInst((RuntimeObject*)L_18, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 22))); ObjectU5BU5D_t2843939325* L_19 = V_0; if (!L_19) { goto IL_0088; } } { ObjectU5BU5D_t2843939325* L_20 = V_0; int32_t L_21 = ___index1; NullCheck((LinkedList_1_t1919752173 *)__this); (( void (*) (LinkedList_1_t1919752173 *, ObjectU5BU5D_t2843939325*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)->methodPointer)((LinkedList_1_t1919752173 *)__this, (ObjectU5BU5D_t2843939325*)L_20, (int32_t)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); return; } IL_0088: { RuntimeArray * L_22 = ___array0; V_1 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)IsInst((RuntimeObject*)L_22, ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var)); ObjectU5BU5D_t2843939325* L_23 = V_1; if (L_23) { goto IL_00a2; } } { ArgumentException_t132251570 * L_24 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1216717135(L_24, (String_t*)_stringLiteral1013684703, (String_t*)_stringLiteral4007973390, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, LinkedList_1_System_Collections_ICollection_CopyTo_m816767247_RuntimeMethod_var); } IL_00a2: { LinkedListNode_1_t2825281267 * L_25 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); V_2 = (LinkedListNode_1_t2825281267 *)L_25; } IL_00a9: try { // begin try (depth: 1) { LinkedListNode_1_t2825281267 * L_26 = V_2; if (!L_26) { goto IL_00cf; } } IL_00ac: { ObjectU5BU5D_t2843939325* L_27 = V_1; int32_t L_28 = ___index1; int32_t L_29 = (int32_t)L_28; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); LinkedListNode_1_t2825281267 * L_30 = V_2; NullCheck(L_30); RuntimeObject * L_31 = (RuntimeObject *)L_30->get_item_3(); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_31); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(L_29), (RuntimeObject *)L_31); LinkedListNode_1_t2825281267 * L_32 = V_2; NullCheck(L_32); LinkedListNode_1_t2825281267 * L_33 = (LinkedListNode_1_t2825281267 *)L_32->get_next_1(); V_2 = (LinkedListNode_1_t2825281267 *)L_33; LinkedListNode_1_t2825281267 * L_34 = V_2; LinkedListNode_1_t2825281267 * L_35 = (LinkedListNode_1_t2825281267 *)__this->get_head_0(); if ((!(((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_34) == ((RuntimeObject*)(LinkedListNode_1_t2825281267 *)L_35)))) { goto IL_00ac; } } IL_00cf: { goto IL_00e2; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_t2342549375_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00d1; throw e; } CATCH_00d1: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t132251570 * L_36 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1216717135(L_36, (String_t*)_stringLiteral1013684703, (String_t*)_stringLiteral4007973390, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, NULL, LinkedList_1_System_Collections_ICollection_CopyTo_m816767247_RuntimeMethod_var); } // end catch (depth: 1) IL_00e2: { return; } } // System.Collections.IEnumerator System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* LinkedList_1_System_Collections_IEnumerable_GetEnumerator_m854819135_gshared (LinkedList_1_t1919752173 * __this, const RuntimeMethod* method) { { NullCheck((LinkedList_1_t1919752173 *)__this); Enumerator_t139379724 L_0 = (( Enumerator_t139379724 (*) (LinkedList_1_t1919752173 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((LinkedList_1_t1919752173 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); Enumerator_t139379724 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 14), &L_1); return (RuntimeObject*)L_2; } } #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.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1650153849_gshared (Enumerator_t828654543 * __this, List_1_t3234377962 * ___list0, const RuntimeMethod* method) { { List_1_t3234377962 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t3234377962 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); PrefabToDataModel_t1762303220 * L_3 = (PrefabToDataModel_t1762303220 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(PrefabToDataModel_t1762303220 )); return; } } extern "C" void Enumerator__ctor_m1650153849_AdjustorThunk (RuntimeObject * __this, List_1_t3234377962 * ___list0, const RuntimeMethod* method) { Enumerator_t828654543 * _thisAdjusted = reinterpret_cast<Enumerator_t828654543 *>(__this + 1); Enumerator__ctor_m1650153849(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3775550104_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3775550104_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t828654543 * _thisAdjusted = reinterpret_cast<Enumerator_t828654543 *>(__this + 1); Enumerator_Dispose_m3775550104(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4187863536_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method) { List_1_t3234377962 * V_0 = NULL; { List_1_t3234377962 * L_0 = (List_1_t3234377962 *)__this->get_list_0(); V_0 = (List_1_t3234377962 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t3234377962 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t3234377962 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t3234377962 * L_7 = V_0; NullCheck(L_7); PrefabToDataModelU5BU5D_t2309926077* L_8 = (PrefabToDataModelU5BU5D_t2309926077*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; PrefabToDataModel_t1762303220 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1286425451((Enumerator_t828654543 *)(Enumerator_t828654543 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m4187863536_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t828654543 * _thisAdjusted = reinterpret_cast<Enumerator_t828654543 *>(__this + 1); return Enumerator_MoveNext_m4187863536(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1286425451_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3234377962 * L_1 = (List_1_t3234377962 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t3234377962 * L_3 = (List_1_t3234377962 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); PrefabToDataModel_t1762303220 * L_5 = (PrefabToDataModel_t1762303220 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(PrefabToDataModel_t1762303220 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1286425451_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t828654543 * _thisAdjusted = reinterpret_cast<Enumerator_t828654543 *>(__this + 1); return Enumerator_MoveNextRare_m1286425451(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::get_Current() extern "C" IL2CPP_METHOD_ATTR PrefabToDataModel_t1762303220 Enumerator_get_Current_m2807483713_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method) { { PrefabToDataModel_t1762303220 L_0 = (PrefabToDataModel_t1762303220 )__this->get_current_3(); return L_0; } } extern "C" PrefabToDataModel_t1762303220 Enumerator_get_Current_m2807483713_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t828654543 * _thisAdjusted = reinterpret_cast<Enumerator_t828654543 *>(__this + 1); return Enumerator_get_Current_m2807483713(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3718120238_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t3234377962 * L_2 = (List_1_t3234377962 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { PrefabToDataModel_t1762303220 L_4 = Enumerator_get_Current_m2807483713((Enumerator_t828654543 *)(Enumerator_t828654543 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); PrefabToDataModel_t1762303220 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3718120238_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t828654543 * _thisAdjusted = reinterpret_cast<Enumerator_t828654543 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3718120238(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3700310574_gshared (Enumerator_t828654543 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3234377962 * L_1 = (List_1_t3234377962 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); PrefabToDataModel_t1762303220 * L_3 = (PrefabToDataModel_t1762303220 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(PrefabToDataModel_t1762303220 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3700310574_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t828654543 * _thisAdjusted = reinterpret_cast<Enumerator_t828654543 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3700310574(_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.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3121224682_gshared (Enumerator_t3042159799 * __this, List_1_t1152915922 * ___list0, const RuntimeMethod* method) { { List_1_t1152915922 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1152915922 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); int32_t* L_3 = (int32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } extern "C" void Enumerator__ctor_m3121224682_AdjustorThunk (RuntimeObject * __this, List_1_t1152915922 * ___list0, const RuntimeMethod* method) { Enumerator_t3042159799 * _thisAdjusted = reinterpret_cast<Enumerator_t3042159799 *>(__this + 1); Enumerator__ctor_m3121224682(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1268664822_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1268664822_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3042159799 * _thisAdjusted = reinterpret_cast<Enumerator_t3042159799 *>(__this + 1); Enumerator_Dispose_m1268664822(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m947041767_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { List_1_t1152915922 * V_0 = NULL; { List_1_t1152915922 * L_0 = (List_1_t1152915922 *)__this->get_list_0(); V_0 = (List_1_t1152915922 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1152915922 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1152915922 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1152915922 * L_7 = V_0; NullCheck(L_7); DialogButtonTypeU5BU5D_t3127917365* L_8 = (DialogButtonTypeU5BU5D_t3127917365*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m3847883246((Enumerator_t3042159799 *)(Enumerator_t3042159799 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m947041767_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3042159799 * _thisAdjusted = reinterpret_cast<Enumerator_t3042159799 *>(__this + 1); return Enumerator_MoveNext_m947041767(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3847883246_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1152915922 * L_1 = (List_1_t1152915922 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1152915922 * L_3 = (List_1_t1152915922 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int32_t* L_5 = (int32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(int32_t)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m3847883246_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3042159799 * _thisAdjusted = reinterpret_cast<Enumerator_t3042159799 *>(__this + 1); return Enumerator_MoveNextRare_m3847883246(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::get_Current() extern "C" IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m2788039444_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_current_3(); return L_0; } } extern "C" int32_t Enumerator_get_Current_m2788039444_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3042159799 * _thisAdjusted = reinterpret_cast<Enumerator_t3042159799 *>(__this + 1); return Enumerator_get_Current_m2788039444(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2498886067_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1152915922 * L_2 = (List_1_t1152915922 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { int32_t L_4 = Enumerator_get_Current_m2788039444((Enumerator_t3042159799 *)(Enumerator_t3042159799 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); int32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2498886067_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3042159799 * _thisAdjusted = reinterpret_cast<Enumerator_t3042159799 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2498886067(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m352654233_gshared (Enumerator_t3042159799 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1152915922 * L_1 = (List_1_t1152915922 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m352654233_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3042159799 * _thisAdjusted = reinterpret_cast<Enumerator_t3042159799 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m352654233(_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.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3137077068_gshared (Enumerator_t3461346361 * __this, List_1_t1572102484 * ___list0, const RuntimeMethod* method) { { List_1_t1572102484 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1572102484 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); InputSourceInfo_t100027742 * L_3 = (InputSourceInfo_t100027742 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(InputSourceInfo_t100027742 )); return; } } extern "C" void Enumerator__ctor_m3137077068_AdjustorThunk (RuntimeObject * __this, List_1_t1572102484 * ___list0, const RuntimeMethod* method) { Enumerator_t3461346361 * _thisAdjusted = reinterpret_cast<Enumerator_t3461346361 *>(__this + 1); Enumerator__ctor_m3137077068(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2830230938_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2830230938_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3461346361 * _thisAdjusted = reinterpret_cast<Enumerator_t3461346361 *>(__this + 1); Enumerator_Dispose_m2830230938(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2572614967_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { List_1_t1572102484 * V_0 = NULL; { List_1_t1572102484 * L_0 = (List_1_t1572102484 *)__this->get_list_0(); V_0 = (List_1_t1572102484 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1572102484 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1572102484 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1572102484 * L_7 = V_0; NullCheck(L_7); InputSourceInfoU5BU5D_t3430263659* L_8 = (InputSourceInfoU5BU5D_t3430263659*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; InputSourceInfo_t100027742 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1508119060((Enumerator_t3461346361 *)(Enumerator_t3461346361 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2572614967_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3461346361 * _thisAdjusted = reinterpret_cast<Enumerator_t3461346361 *>(__this + 1); return Enumerator_MoveNext_m2572614967(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1508119060_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1572102484 * L_1 = (List_1_t1572102484 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1572102484 * L_3 = (List_1_t1572102484 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); InputSourceInfo_t100027742 * L_5 = (InputSourceInfo_t100027742 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(InputSourceInfo_t100027742 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1508119060_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3461346361 * _thisAdjusted = reinterpret_cast<Enumerator_t3461346361 *>(__this + 1); return Enumerator_MoveNextRare_m1508119060(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::get_Current() extern "C" IL2CPP_METHOD_ATTR InputSourceInfo_t100027742 Enumerator_get_Current_m2904821522_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { { InputSourceInfo_t100027742 L_0 = (InputSourceInfo_t100027742 )__this->get_current_3(); return L_0; } } extern "C" InputSourceInfo_t100027742 Enumerator_get_Current_m2904821522_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3461346361 * _thisAdjusted = reinterpret_cast<Enumerator_t3461346361 *>(__this + 1); return Enumerator_get_Current_m2904821522(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1830420905_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1572102484 * L_2 = (List_1_t1572102484 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { InputSourceInfo_t100027742 L_4 = Enumerator_get_Current_m2904821522((Enumerator_t3461346361 *)(Enumerator_t3461346361 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); InputSourceInfo_t100027742 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1830420905_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3461346361 * _thisAdjusted = reinterpret_cast<Enumerator_t3461346361 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1830420905(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1847426218_gshared (Enumerator_t3461346361 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1572102484 * L_1 = (List_1_t1572102484 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); InputSourceInfo_t100027742 * L_3 = (InputSourceInfo_t100027742 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(InputSourceInfo_t100027742 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1847426218_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3461346361 * _thisAdjusted = reinterpret_cast<Enumerator_t3461346361 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m1847426218(_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.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m574521130_gshared (Enumerator_t576456821 * __this, List_1_t2982180240 * ___list0, const RuntimeMethod* method) { { List_1_t2982180240 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t2982180240 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); KeyCodeEventPair_t1510105498 * L_3 = (KeyCodeEventPair_t1510105498 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(KeyCodeEventPair_t1510105498 )); return; } } extern "C" void Enumerator__ctor_m574521130_AdjustorThunk (RuntimeObject * __this, List_1_t2982180240 * ___list0, const RuntimeMethod* method) { Enumerator_t576456821 * _thisAdjusted = reinterpret_cast<Enumerator_t576456821 *>(__this + 1); Enumerator__ctor_m574521130(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1187956102_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1187956102_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t576456821 * _thisAdjusted = reinterpret_cast<Enumerator_t576456821 *>(__this + 1); Enumerator_Dispose_m1187956102(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2014372271_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method) { List_1_t2982180240 * V_0 = NULL; { List_1_t2982180240 * L_0 = (List_1_t2982180240 *)__this->get_list_0(); V_0 = (List_1_t2982180240 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t2982180240 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t2982180240 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t2982180240 * L_7 = V_0; NullCheck(L_7); KeyCodeEventPairU5BU5D_t2855334591* L_8 = (KeyCodeEventPairU5BU5D_t2855334591*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; KeyCodeEventPair_t1510105498 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1217953709((Enumerator_t576456821 *)(Enumerator_t576456821 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2014372271_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t576456821 * _thisAdjusted = reinterpret_cast<Enumerator_t576456821 *>(__this + 1); return Enumerator_MoveNext_m2014372271(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1217953709_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2982180240 * L_1 = (List_1_t2982180240 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t2982180240 * L_3 = (List_1_t2982180240 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); KeyCodeEventPair_t1510105498 * L_5 = (KeyCodeEventPair_t1510105498 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(KeyCodeEventPair_t1510105498 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1217953709_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t576456821 * _thisAdjusted = reinterpret_cast<Enumerator_t576456821 *>(__this + 1); return Enumerator_MoveNextRare_m1217953709(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::get_Current() extern "C" IL2CPP_METHOD_ATTR KeyCodeEventPair_t1510105498 Enumerator_get_Current_m1376590070_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method) { { KeyCodeEventPair_t1510105498 L_0 = (KeyCodeEventPair_t1510105498 )__this->get_current_3(); return L_0; } } extern "C" KeyCodeEventPair_t1510105498 Enumerator_get_Current_m1376590070_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t576456821 * _thisAdjusted = reinterpret_cast<Enumerator_t576456821 *>(__this + 1); return Enumerator_get_Current_m1376590070(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m925648047_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t2982180240 * L_2 = (List_1_t2982180240 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { KeyCodeEventPair_t1510105498 L_4 = Enumerator_get_Current_m1376590070((Enumerator_t576456821 *)(Enumerator_t576456821 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyCodeEventPair_t1510105498 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m925648047_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t576456821 * _thisAdjusted = reinterpret_cast<Enumerator_t576456821 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m925648047(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1795417095_gshared (Enumerator_t576456821 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2982180240 * L_1 = (List_1_t2982180240 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); KeyCodeEventPair_t1510105498 * L_3 = (KeyCodeEventPair_t1510105498 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(KeyCodeEventPair_t1510105498 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1795417095_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t576456821 * _thisAdjusted = reinterpret_cast<Enumerator_t576456821 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m1795417095(_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.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2470515090_gshared (Enumerator_t1074336339 * __this, List_1_t3480059758 * ___list0, const RuntimeMethod* method) { { List_1_t3480059758 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t3480059758 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); RaycastResultHelper_t2007985016 * L_3 = (RaycastResultHelper_t2007985016 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(RaycastResultHelper_t2007985016 )); return; } } extern "C" void Enumerator__ctor_m2470515090_AdjustorThunk (RuntimeObject * __this, List_1_t3480059758 * ___list0, const RuntimeMethod* method) { Enumerator_t1074336339 * _thisAdjusted = reinterpret_cast<Enumerator_t1074336339 *>(__this + 1); Enumerator__ctor_m2470515090(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1120213402_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1120213402_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1074336339 * _thisAdjusted = reinterpret_cast<Enumerator_t1074336339 *>(__this + 1); Enumerator_Dispose_m1120213402(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3002774773_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { List_1_t3480059758 * V_0 = NULL; { List_1_t3480059758 * L_0 = (List_1_t3480059758 *)__this->get_list_0(); V_0 = (List_1_t3480059758 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t3480059758 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t3480059758 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t3480059758 * L_7 = V_0; NullCheck(L_7); RaycastResultHelperU5BU5D_t2017648553* L_8 = (RaycastResultHelperU5BU5D_t2017648553*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; RaycastResultHelper_t2007985016 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m40727075((Enumerator_t1074336339 *)(Enumerator_t1074336339 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m3002774773_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1074336339 * _thisAdjusted = reinterpret_cast<Enumerator_t1074336339 *>(__this + 1); return Enumerator_MoveNext_m3002774773(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m40727075_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3480059758 * L_1 = (List_1_t3480059758 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t3480059758 * L_3 = (List_1_t3480059758 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); RaycastResultHelper_t2007985016 * L_5 = (RaycastResultHelper_t2007985016 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(RaycastResultHelper_t2007985016 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m40727075_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1074336339 * _thisAdjusted = reinterpret_cast<Enumerator_t1074336339 *>(__this + 1); return Enumerator_MoveNextRare_m40727075(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::get_Current() extern "C" IL2CPP_METHOD_ATTR RaycastResultHelper_t2007985016 Enumerator_get_Current_m2291764410_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { { RaycastResultHelper_t2007985016 L_0 = (RaycastResultHelper_t2007985016 )__this->get_current_3(); return L_0; } } extern "C" RaycastResultHelper_t2007985016 Enumerator_get_Current_m2291764410_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1074336339 * _thisAdjusted = reinterpret_cast<Enumerator_t1074336339 *>(__this + 1); return Enumerator_get_Current_m2291764410(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2043830421_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t3480059758 * L_2 = (List_1_t3480059758 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { RaycastResultHelper_t2007985016 L_4 = Enumerator_get_Current_m2291764410((Enumerator_t1074336339 *)(Enumerator_t1074336339 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); RaycastResultHelper_t2007985016 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2043830421_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1074336339 * _thisAdjusted = reinterpret_cast<Enumerator_t1074336339 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2043830421(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.RaycastResultHelper>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2172564090_gshared (Enumerator_t1074336339 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3480059758 * L_1 = (List_1_t3480059758 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); RaycastResultHelper_t2007985016 * L_3 = (RaycastResultHelper_t2007985016 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(RaycastResultHelper_t2007985016 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2172564090_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1074336339 * _thisAdjusted = reinterpret_cast<Enumerator_t1074336339 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2172564090(_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.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m394146094_gshared (Enumerator_t3180766674 * __this, List_1_t1291522797 * ___list0, const RuntimeMethod* method) { { List_1_t1291522797 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1291522797 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); MeshData_t4114415351 * L_3 = (MeshData_t4114415351 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(MeshData_t4114415351 )); return; } } extern "C" void Enumerator__ctor_m394146094_AdjustorThunk (RuntimeObject * __this, List_1_t1291522797 * ___list0, const RuntimeMethod* method) { Enumerator_t3180766674 * _thisAdjusted = reinterpret_cast<Enumerator_t3180766674 *>(__this + 1); Enumerator__ctor_m394146094(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4010342378_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m4010342378_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3180766674 * _thisAdjusted = reinterpret_cast<Enumerator_t3180766674 *>(__this + 1); Enumerator_Dispose_m4010342378(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1736481079_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { List_1_t1291522797 * V_0 = NULL; { List_1_t1291522797 * L_0 = (List_1_t1291522797 *)__this->get_list_0(); V_0 = (List_1_t1291522797 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1291522797 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1291522797 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1291522797 * L_7 = V_0; NullCheck(L_7); MeshDataU5BU5D_t1706847054* L_8 = (MeshDataU5BU5D_t1706847054*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; MeshData_t4114415351 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2144276695((Enumerator_t3180766674 *)(Enumerator_t3180766674 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1736481079_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3180766674 * _thisAdjusted = reinterpret_cast<Enumerator_t3180766674 *>(__this + 1); return Enumerator_MoveNext_m1736481079(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2144276695_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1291522797 * L_1 = (List_1_t1291522797 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1291522797 * L_3 = (List_1_t1291522797 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); MeshData_t4114415351 * L_5 = (MeshData_t4114415351 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(MeshData_t4114415351 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2144276695_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3180766674 * _thisAdjusted = reinterpret_cast<Enumerator_t3180766674 *>(__this + 1); return Enumerator_MoveNextRare_m2144276695(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::get_Current() extern "C" IL2CPP_METHOD_ATTR MeshData_t4114415351 Enumerator_get_Current_m1298642168_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { { MeshData_t4114415351 L_0 = (MeshData_t4114415351 )__this->get_current_3(); return L_0; } } extern "C" MeshData_t4114415351 Enumerator_get_Current_m1298642168_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3180766674 * _thisAdjusted = reinterpret_cast<Enumerator_t3180766674 *>(__this + 1); return Enumerator_get_Current_m1298642168(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3842930208_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1291522797 * L_2 = (List_1_t1291522797 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { MeshData_t4114415351 L_4 = Enumerator_get_Current_m1298642168((Enumerator_t3180766674 *)(Enumerator_t3180766674 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); MeshData_t4114415351 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3842930208_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3180766674 * _thisAdjusted = reinterpret_cast<Enumerator_t3180766674 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3842930208(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.PlaneFinding/MeshData>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m976222382_gshared (Enumerator_t3180766674 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1291522797 * L_1 = (List_1_t1291522797 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); MeshData_t4114415351 * L_3 = (MeshData_t4114415351 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(MeshData_t4114415351 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m976222382_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3180766674 * _thisAdjusted = reinterpret_cast<Enumerator_t3180766674 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m976222382(_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.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3682883020_gshared (Enumerator_t1679591641 * __this, List_1_t4085315060 * ___list0, const RuntimeMethod* method) { { List_1_t4085315060 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t4085315060 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); SurfaceObject_t2613240318 * L_3 = (SurfaceObject_t2613240318 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(SurfaceObject_t2613240318 )); return; } } extern "C" void Enumerator__ctor_m3682883020_AdjustorThunk (RuntimeObject * __this, List_1_t4085315060 * ___list0, const RuntimeMethod* method) { Enumerator_t1679591641 * _thisAdjusted = reinterpret_cast<Enumerator_t1679591641 *>(__this + 1); Enumerator__ctor_m3682883020(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2901420088_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2901420088_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1679591641 * _thisAdjusted = reinterpret_cast<Enumerator_t1679591641 *>(__this + 1); Enumerator_Dispose_m2901420088(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m773977532_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { List_1_t4085315060 * V_0 = NULL; { List_1_t4085315060 * L_0 = (List_1_t4085315060 *)__this->get_list_0(); V_0 = (List_1_t4085315060 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t4085315060 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t4085315060 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t4085315060 * L_7 = V_0; NullCheck(L_7); SurfaceObjectU5BU5D_t214306891* L_8 = (SurfaceObjectU5BU5D_t214306891*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; SurfaceObject_t2613240318 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2588025538((Enumerator_t1679591641 *)(Enumerator_t1679591641 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m773977532_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1679591641 * _thisAdjusted = reinterpret_cast<Enumerator_t1679591641 *>(__this + 1); return Enumerator_MoveNext_m773977532(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2588025538_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4085315060 * L_1 = (List_1_t4085315060 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t4085315060 * L_3 = (List_1_t4085315060 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); SurfaceObject_t2613240318 * L_5 = (SurfaceObject_t2613240318 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(SurfaceObject_t2613240318 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2588025538_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1679591641 * _thisAdjusted = reinterpret_cast<Enumerator_t1679591641 *>(__this + 1); return Enumerator_MoveNextRare_m2588025538(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::get_Current() extern "C" IL2CPP_METHOD_ATTR SurfaceObject_t2613240318 Enumerator_get_Current_m1193228541_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { { SurfaceObject_t2613240318 L_0 = (SurfaceObject_t2613240318 )__this->get_current_3(); return L_0; } } extern "C" SurfaceObject_t2613240318 Enumerator_get_Current_m1193228541_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1679591641 * _thisAdjusted = reinterpret_cast<Enumerator_t1679591641 *>(__this + 1); return Enumerator_get_Current_m1193228541(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2821435308_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t4085315060 * L_2 = (List_1_t4085315060 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { SurfaceObject_t2613240318 L_4 = Enumerator_get_Current_m1193228541((Enumerator_t1679591641 *)(Enumerator_t1679591641 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); SurfaceObject_t2613240318 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2821435308_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1679591641 * _thisAdjusted = reinterpret_cast<Enumerator_t1679591641 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2821435308(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialMapping.SpatialMappingSource/SurfaceObject>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2907431841_gshared (Enumerator_t1679591641 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4085315060 * L_1 = (List_1_t4085315060 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); SurfaceObject_t2613240318 * L_3 = (SurfaceObject_t2613240318 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(SurfaceObject_t2613240318 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2907431841_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1679591641 * _thisAdjusted = reinterpret_cast<Enumerator_t1679591641 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2907431841(_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.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2866993495_gshared (Enumerator_t2428186925 * __this, List_1_t538943048 * ___list0, const RuntimeMethod* method) { { List_1_t538943048 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t538943048 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); MeshData_t3361835602 * L_3 = (MeshData_t3361835602 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(MeshData_t3361835602 )); return; } } extern "C" void Enumerator__ctor_m2866993495_AdjustorThunk (RuntimeObject * __this, List_1_t538943048 * ___list0, const RuntimeMethod* method) { Enumerator_t2428186925 * _thisAdjusted = reinterpret_cast<Enumerator_t2428186925 *>(__this + 1); Enumerator__ctor_m2866993495(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m988267940_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m988267940_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2428186925 * _thisAdjusted = reinterpret_cast<Enumerator_t2428186925 *>(__this + 1); Enumerator_Dispose_m988267940(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3778079963_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { List_1_t538943048 * V_0 = NULL; { List_1_t538943048 * L_0 = (List_1_t538943048 *)__this->get_list_0(); V_0 = (List_1_t538943048 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t538943048 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t538943048 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t538943048 * L_7 = V_0; NullCheck(L_7); MeshDataU5BU5D_t822949927* L_8 = (MeshDataU5BU5D_t822949927*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; MeshData_t3361835602 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m397533469((Enumerator_t2428186925 *)(Enumerator_t2428186925 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m3778079963_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2428186925 * _thisAdjusted = reinterpret_cast<Enumerator_t2428186925 *>(__this + 1); return Enumerator_MoveNext_m3778079963(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m397533469_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t538943048 * L_1 = (List_1_t538943048 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t538943048 * L_3 = (List_1_t538943048 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); MeshData_t3361835602 * L_5 = (MeshData_t3361835602 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(MeshData_t3361835602 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m397533469_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2428186925 * _thisAdjusted = reinterpret_cast<Enumerator_t2428186925 *>(__this + 1); return Enumerator_MoveNextRare_m397533469(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::get_Current() extern "C" IL2CPP_METHOD_ATTR MeshData_t3361835602 Enumerator_get_Current_m3122840142_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { { MeshData_t3361835602 L_0 = (MeshData_t3361835602 )__this->get_current_3(); return L_0; } } extern "C" MeshData_t3361835602 Enumerator_get_Current_m3122840142_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2428186925 * _thisAdjusted = reinterpret_cast<Enumerator_t2428186925 *>(__this + 1); return Enumerator_get_Current_m3122840142(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2353828253_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t538943048 * L_2 = (List_1_t538943048 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { MeshData_t3361835602 L_4 = Enumerator_get_Current_m3122840142((Enumerator_t2428186925 *)(Enumerator_t2428186925 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); MeshData_t3361835602 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2353828253_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2428186925 * _thisAdjusted = reinterpret_cast<Enumerator_t2428186925 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2353828253(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDll/MeshData>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3709599164_gshared (Enumerator_t2428186925 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t538943048 * L_1 = (List_1_t538943048 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); MeshData_t3361835602 * L_3 = (MeshData_t3361835602 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(MeshData_t3361835602 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3709599164_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2428186925 * _thisAdjusted = reinterpret_cast<Enumerator_t2428186925 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3709599164(_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.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1945446707_gshared (Enumerator_t3308305058 * __this, List_1_t1419061181 * ___list0, const RuntimeMethod* method) { { List_1_t1419061181 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1419061181 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); ShapeComponentConstraint_t4241953735 * L_3 = (ShapeComponentConstraint_t4241953735 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(ShapeComponentConstraint_t4241953735 )); return; } } extern "C" void Enumerator__ctor_m1945446707_AdjustorThunk (RuntimeObject * __this, List_1_t1419061181 * ___list0, const RuntimeMethod* method) { Enumerator_t3308305058 * _thisAdjusted = reinterpret_cast<Enumerator_t3308305058 *>(__this + 1); Enumerator__ctor_m1945446707(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2651581068_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2651581068_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3308305058 * _thisAdjusted = reinterpret_cast<Enumerator_t3308305058 *>(__this + 1); Enumerator_Dispose_m2651581068(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1278747804_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { List_1_t1419061181 * V_0 = NULL; { List_1_t1419061181 * L_0 = (List_1_t1419061181 *)__this->get_list_0(); V_0 = (List_1_t1419061181 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1419061181 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1419061181 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1419061181 * L_7 = V_0; NullCheck(L_7); ShapeComponentConstraintU5BU5D_t2060966206* L_8 = (ShapeComponentConstraintU5BU5D_t2060966206*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; ShapeComponentConstraint_t4241953735 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m519564709((Enumerator_t3308305058 *)(Enumerator_t3308305058 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1278747804_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3308305058 * _thisAdjusted = reinterpret_cast<Enumerator_t3308305058 *>(__this + 1); return Enumerator_MoveNext_m1278747804(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m519564709_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1419061181 * L_1 = (List_1_t1419061181 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1419061181 * L_3 = (List_1_t1419061181 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); ShapeComponentConstraint_t4241953735 * L_5 = (ShapeComponentConstraint_t4241953735 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(ShapeComponentConstraint_t4241953735 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m519564709_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3308305058 * _thisAdjusted = reinterpret_cast<Enumerator_t3308305058 *>(__this + 1); return Enumerator_MoveNextRare_m519564709(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::get_Current() extern "C" IL2CPP_METHOD_ATTR ShapeComponentConstraint_t4241953735 Enumerator_get_Current_m3907500998_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { { ShapeComponentConstraint_t4241953735 L_0 = (ShapeComponentConstraint_t4241953735 )__this->get_current_3(); return L_0; } } extern "C" ShapeComponentConstraint_t4241953735 Enumerator_get_Current_m3907500998_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3308305058 * _thisAdjusted = reinterpret_cast<Enumerator_t3308305058 *>(__this + 1); return Enumerator_get_Current_m3907500998(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m666374076_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1419061181 * L_2 = (List_1_t1419061181 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { ShapeComponentConstraint_t4241953735 L_4 = Enumerator_get_Current_m3907500998((Enumerator_t3308305058 *)(Enumerator_t3308305058 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); ShapeComponentConstraint_t4241953735 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m666374076_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3308305058 * _thisAdjusted = reinterpret_cast<Enumerator_t3308305058 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m666374076(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.SpatialUnderstandingDllShapes/ShapeComponentConstraint>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3419802080_gshared (Enumerator_t3308305058 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1419061181 * L_1 = (List_1_t1419061181 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); ShapeComponentConstraint_t4241953735 * L_3 = (ShapeComponentConstraint_t4241953735 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(ShapeComponentConstraint_t4241953735 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3419802080_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3308305058 * _thisAdjusted = reinterpret_cast<Enumerator_t3308305058 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3419802080(_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.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3594547698_gshared (Enumerator_t3123066813 * __this, List_1_t1233822936 * ___list0, const RuntimeMethod* method) { { List_1_t1233822936 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1233822936 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); TimerData_t4056715490 * L_3 = (TimerData_t4056715490 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(TimerData_t4056715490 )); return; } } extern "C" void Enumerator__ctor_m3594547698_AdjustorThunk (RuntimeObject * __this, List_1_t1233822936 * ___list0, const RuntimeMethod* method) { Enumerator_t3123066813 * _thisAdjusted = reinterpret_cast<Enumerator_t3123066813 *>(__this + 1); Enumerator__ctor_m3594547698(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1314063771_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1314063771_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123066813 * _thisAdjusted = reinterpret_cast<Enumerator_t3123066813 *>(__this + 1); Enumerator_Dispose_m1314063771(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1132334620_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { List_1_t1233822936 * V_0 = NULL; { List_1_t1233822936 * L_0 = (List_1_t1233822936 *)__this->get_list_0(); V_0 = (List_1_t1233822936 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1233822936 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1233822936 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1233822936 * L_7 = V_0; NullCheck(L_7); TimerDataU5BU5D_t2187523415* L_8 = (TimerDataU5BU5D_t2187523415*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; TimerData_t4056715490 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m576964629((Enumerator_t3123066813 *)(Enumerator_t3123066813 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1132334620_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123066813 * _thisAdjusted = reinterpret_cast<Enumerator_t3123066813 *>(__this + 1); return Enumerator_MoveNext_m1132334620(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m576964629_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1233822936 * L_1 = (List_1_t1233822936 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1233822936 * L_3 = (List_1_t1233822936 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); TimerData_t4056715490 * L_5 = (TimerData_t4056715490 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(TimerData_t4056715490 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m576964629_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123066813 * _thisAdjusted = reinterpret_cast<Enumerator_t3123066813 *>(__this + 1); return Enumerator_MoveNextRare_m576964629(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::get_Current() extern "C" IL2CPP_METHOD_ATTR TimerData_t4056715490 Enumerator_get_Current_m3905697669_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { { TimerData_t4056715490 L_0 = (TimerData_t4056715490 )__this->get_current_3(); return L_0; } } extern "C" TimerData_t4056715490 Enumerator_get_Current_m3905697669_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123066813 * _thisAdjusted = reinterpret_cast<Enumerator_t3123066813 *>(__this + 1); return Enumerator_get_Current_m3905697669(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4283618588_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1233822936 * L_2 = (List_1_t1233822936 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { TimerData_t4056715490 L_4 = Enumerator_get_Current_m3905697669((Enumerator_t3123066813 *)(Enumerator_t3123066813 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); TimerData_t4056715490 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4283618588_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123066813 * _thisAdjusted = reinterpret_cast<Enumerator_t3123066813 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m4283618588(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerData>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4053191751_gshared (Enumerator_t3123066813 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1233822936 * L_1 = (List_1_t1233822936 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); TimerData_t4056715490 * L_3 = (TimerData_t4056715490 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(TimerData_t4056715490 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m4053191751_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123066813 * _thisAdjusted = reinterpret_cast<Enumerator_t3123066813 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m4053191751(_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.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1365743726_gshared (Enumerator_t4282642524 * __this, List_1_t2393398647 * ___list0, const RuntimeMethod* method) { { List_1_t2393398647 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t2393398647 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); TimerIdPair_t921323905 * L_3 = (TimerIdPair_t921323905 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(TimerIdPair_t921323905 )); return; } } extern "C" void Enumerator__ctor_m1365743726_AdjustorThunk (RuntimeObject * __this, List_1_t2393398647 * ___list0, const RuntimeMethod* method) { Enumerator_t4282642524 * _thisAdjusted = reinterpret_cast<Enumerator_t4282642524 *>(__this + 1); Enumerator__ctor_m1365743726(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2008828017_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2008828017_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4282642524 * _thisAdjusted = reinterpret_cast<Enumerator_t4282642524 *>(__this + 1); Enumerator_Dispose_m2008828017(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4040824200_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { List_1_t2393398647 * V_0 = NULL; { List_1_t2393398647 * L_0 = (List_1_t2393398647 *)__this->get_list_0(); V_0 = (List_1_t2393398647 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t2393398647 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t2393398647 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t2393398647 * L_7 = V_0; NullCheck(L_7); TimerIdPairU5BU5D_t552239964* L_8 = (TimerIdPairU5BU5D_t552239964*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; TimerIdPair_t921323905 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m373526289((Enumerator_t4282642524 *)(Enumerator_t4282642524 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m4040824200_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4282642524 * _thisAdjusted = reinterpret_cast<Enumerator_t4282642524 *>(__this + 1); return Enumerator_MoveNext_m4040824200(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m373526289_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2393398647 * L_1 = (List_1_t2393398647 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t2393398647 * L_3 = (List_1_t2393398647 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); TimerIdPair_t921323905 * L_5 = (TimerIdPair_t921323905 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(TimerIdPair_t921323905 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m373526289_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4282642524 * _thisAdjusted = reinterpret_cast<Enumerator_t4282642524 *>(__this + 1); return Enumerator_MoveNextRare_m373526289(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::get_Current() extern "C" IL2CPP_METHOD_ATTR TimerIdPair_t921323905 Enumerator_get_Current_m2477026367_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { { TimerIdPair_t921323905 L_0 = (TimerIdPair_t921323905 )__this->get_current_3(); return L_0; } } extern "C" TimerIdPair_t921323905 Enumerator_get_Current_m2477026367_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4282642524 * _thisAdjusted = reinterpret_cast<Enumerator_t4282642524 *>(__this + 1); return Enumerator_get_Current_m2477026367(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m25666464_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t2393398647 * L_2 = (List_1_t2393398647 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { TimerIdPair_t921323905 L_4 = Enumerator_get_Current_m2477026367((Enumerator_t4282642524 *)(Enumerator_t4282642524 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); TimerIdPair_t921323905 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m25666464_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4282642524 * _thisAdjusted = reinterpret_cast<Enumerator_t4282642524 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m25666464(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.TimerScheduler/TimerIdPair>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3006743742_gshared (Enumerator_t4282642524 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2393398647 * L_1 = (List_1_t2393398647 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); TimerIdPair_t921323905 * L_3 = (TimerIdPair_t921323905 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(TimerIdPair_t921323905 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3006743742_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4282642524 * _thisAdjusted = reinterpret_cast<Enumerator_t4282642524 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3006743742(_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.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2172015230_gshared (Enumerator_t2992316971 * __this, List_1_t1103073094 * ___list0, const RuntimeMethod* method) { { List_1_t1103073094 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1103073094 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); ButtonTemplate_t3925965648 * L_3 = (ButtonTemplate_t3925965648 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(ButtonTemplate_t3925965648 )); return; } } extern "C" void Enumerator__ctor_m2172015230_AdjustorThunk (RuntimeObject * __this, List_1_t1103073094 * ___list0, const RuntimeMethod* method) { Enumerator_t2992316971 * _thisAdjusted = reinterpret_cast<Enumerator_t2992316971 *>(__this + 1); Enumerator__ctor_m2172015230(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3714308917_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3714308917_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2992316971 * _thisAdjusted = reinterpret_cast<Enumerator_t2992316971 *>(__this + 1); Enumerator_Dispose_m3714308917(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3302057439_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { List_1_t1103073094 * V_0 = NULL; { List_1_t1103073094 * L_0 = (List_1_t1103073094 *)__this->get_list_0(); V_0 = (List_1_t1103073094 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1103073094 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1103073094 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1103073094 * L_7 = V_0; NullCheck(L_7); ButtonTemplateU5BU5D_t1265442161* L_8 = (ButtonTemplateU5BU5D_t1265442161*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; ButtonTemplate_t3925965648 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2064301628((Enumerator_t2992316971 *)(Enumerator_t2992316971 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m3302057439_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2992316971 * _thisAdjusted = reinterpret_cast<Enumerator_t2992316971 *>(__this + 1); return Enumerator_MoveNext_m3302057439(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2064301628_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1103073094 * L_1 = (List_1_t1103073094 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1103073094 * L_3 = (List_1_t1103073094 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); ButtonTemplate_t3925965648 * L_5 = (ButtonTemplate_t3925965648 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(ButtonTemplate_t3925965648 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2064301628_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2992316971 * _thisAdjusted = reinterpret_cast<Enumerator_t2992316971 *>(__this + 1); return Enumerator_MoveNextRare_m2064301628(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::get_Current() extern "C" IL2CPP_METHOD_ATTR ButtonTemplate_t3925965648 Enumerator_get_Current_m4115079866_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { { ButtonTemplate_t3925965648 L_0 = (ButtonTemplate_t3925965648 )__this->get_current_3(); return L_0; } } extern "C" ButtonTemplate_t3925965648 Enumerator_get_Current_m4115079866_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2992316971 * _thisAdjusted = reinterpret_cast<Enumerator_t2992316971 *>(__this + 1); return Enumerator_get_Current_m4115079866(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1271664753_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1103073094 * L_2 = (List_1_t1103073094 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { ButtonTemplate_t3925965648 L_4 = Enumerator_get_Current_m4115079866((Enumerator_t2992316971 *)(Enumerator_t2992316971 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); ButtonTemplate_t3925965648 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1271664753_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2992316971 * _thisAdjusted = reinterpret_cast<Enumerator_t2992316971 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1271664753(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<HoloToolkit.Unity.UX.AppBar/ButtonTemplate>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2424584660_gshared (Enumerator_t2992316971 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1103073094 * L_1 = (List_1_t1103073094 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); ButtonTemplate_t3925965648 * L_3 = (ButtonTemplate_t3925965648 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(ButtonTemplate_t3925965648 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2424584660_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2992316971 * _thisAdjusted = reinterpret_cast<Enumerator_t2992316971 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2424584660(_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.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m431339869_gshared (Enumerator_t1594379037 * __this, List_1_t4000102456 * ___list0, const RuntimeMethod* method) { { List_1_t4000102456 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t4000102456 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); JsonPosition_t2528027714 * L_3 = (JsonPosition_t2528027714 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(JsonPosition_t2528027714 )); return; } } extern "C" void Enumerator__ctor_m431339869_AdjustorThunk (RuntimeObject * __this, List_1_t4000102456 * ___list0, const RuntimeMethod* method) { Enumerator_t1594379037 * _thisAdjusted = reinterpret_cast<Enumerator_t1594379037 *>(__this + 1); Enumerator__ctor_m431339869(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3583473203_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3583473203_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1594379037 * _thisAdjusted = reinterpret_cast<Enumerator_t1594379037 *>(__this + 1); Enumerator_Dispose_m3583473203(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m129038534_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { List_1_t4000102456 * V_0 = NULL; { List_1_t4000102456 * L_0 = (List_1_t4000102456 *)__this->get_list_0(); V_0 = (List_1_t4000102456 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t4000102456 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t4000102456 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t4000102456 * L_7 = V_0; NullCheck(L_7); JsonPositionU5BU5D_t197937271* L_8 = (JsonPositionU5BU5D_t197937271*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; JsonPosition_t2528027714 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m4051738861((Enumerator_t1594379037 *)(Enumerator_t1594379037 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m129038534_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1594379037 * _thisAdjusted = reinterpret_cast<Enumerator_t1594379037 *>(__this + 1); return Enumerator_MoveNext_m129038534(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4051738861_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4000102456 * L_1 = (List_1_t4000102456 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t4000102456 * L_3 = (List_1_t4000102456 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); JsonPosition_t2528027714 * L_5 = (JsonPosition_t2528027714 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(JsonPosition_t2528027714 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m4051738861_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1594379037 * _thisAdjusted = reinterpret_cast<Enumerator_t1594379037 *>(__this + 1); return Enumerator_MoveNextRare_m4051738861(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::get_Current() extern "C" IL2CPP_METHOD_ATTR JsonPosition_t2528027714 Enumerator_get_Current_m3978296017_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { { JsonPosition_t2528027714 L_0 = (JsonPosition_t2528027714 )__this->get_current_3(); return L_0; } } extern "C" JsonPosition_t2528027714 Enumerator_get_Current_m3978296017_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1594379037 * _thisAdjusted = reinterpret_cast<Enumerator_t1594379037 *>(__this + 1); return Enumerator_get_Current_m3978296017(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m563271522_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t4000102456 * L_2 = (List_1_t4000102456 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { JsonPosition_t2528027714 L_4 = Enumerator_get_Current_m3978296017((Enumerator_t1594379037 *)(Enumerator_t1594379037 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); JsonPosition_t2528027714 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m563271522_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1594379037 * _thisAdjusted = reinterpret_cast<Enumerator_t1594379037 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m563271522(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<Newtonsoft.Json.JsonPosition>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3019374793_gshared (Enumerator_t1594379037 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4000102456 * L_1 = (List_1_t4000102456 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); JsonPosition_t2528027714 * L_3 = (JsonPosition_t2528027714 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(JsonPosition_t2528027714 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3019374793_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1594379037 * _thisAdjusted = reinterpret_cast<Enumerator_t1594379037 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3019374793(_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.Collections.Generic.List`1/Enumerator<System.Boolean>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2051462163_gshared (Enumerator_t3458606584 * __this, List_1_t1569362707 * ___list0, const RuntimeMethod* method) { { List_1_t1569362707 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1569362707 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); bool* L_3 = (bool*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(bool)); return; } } extern "C" void Enumerator__ctor_m2051462163_AdjustorThunk (RuntimeObject * __this, List_1_t1569362707 * ___list0, const RuntimeMethod* method) { Enumerator_t3458606584 * _thisAdjusted = reinterpret_cast<Enumerator_t3458606584 *>(__this + 1); Enumerator__ctor_m2051462163(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3633742184_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3633742184_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3458606584 * _thisAdjusted = reinterpret_cast<Enumerator_t3458606584 *>(__this + 1); Enumerator_Dispose_m3633742184(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m423288_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { List_1_t1569362707 * V_0 = NULL; { List_1_t1569362707 * L_0 = (List_1_t1569362707 *)__this->get_list_0(); V_0 = (List_1_t1569362707 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1569362707 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1569362707 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1569362707 * L_7 = V_0; NullCheck(L_7); BooleanU5BU5D_t2897418192* L_8 = (BooleanU5BU5D_t2897418192*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; bool L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2668710515((Enumerator_t3458606584 *)(Enumerator_t3458606584 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m423288_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3458606584 * _thisAdjusted = reinterpret_cast<Enumerator_t3458606584 *>(__this + 1); return Enumerator_MoveNext_m423288(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2668710515_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1569362707 * L_1 = (List_1_t1569362707 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1569362707 * L_3 = (List_1_t1569362707 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); bool* L_5 = (bool*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(bool)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2668710515_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3458606584 * _thisAdjusted = reinterpret_cast<Enumerator_t3458606584 *>(__this + 1); return Enumerator_MoveNextRare_m2668710515(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Boolean>::get_Current() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m2305210644_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_current_3(); return L_0; } } extern "C" bool Enumerator_get_Current_m2305210644_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3458606584 * _thisAdjusted = reinterpret_cast<Enumerator_t3458606584 *>(__this + 1); return Enumerator_get_Current_m2305210644(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2237476582_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1569362707 * L_2 = (List_1_t1569362707 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { bool L_4 = Enumerator_get_Current_m2305210644((Enumerator_t3458606584 *)(Enumerator_t3458606584 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); bool L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2237476582_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3458606584 * _thisAdjusted = reinterpret_cast<Enumerator_t3458606584 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2237476582(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1564381721_gshared (Enumerator_t3458606584 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1569362707 * L_1 = (List_1_t1569362707 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); bool* L_3 = (bool*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(bool)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1564381721_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3458606584 * _thisAdjusted = reinterpret_cast<Enumerator_t3458606584 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m1564381721(_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.Collections.Generic.List`1/Enumerator<System.Byte>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3246934289_gshared (Enumerator_t200647699 * __this, List_1_t2606371118 * ___list0, const RuntimeMethod* method) { { List_1_t2606371118 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t2606371118 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); uint8_t* L_3 = (uint8_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(uint8_t)); return; } } extern "C" void Enumerator__ctor_m3246934289_AdjustorThunk (RuntimeObject * __this, List_1_t2606371118 * ___list0, const RuntimeMethod* method) { Enumerator_t200647699 * _thisAdjusted = reinterpret_cast<Enumerator_t200647699 *>(__this + 1); Enumerator__ctor_m3246934289(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1812819993_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1812819993_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t200647699 * _thisAdjusted = reinterpret_cast<Enumerator_t200647699 *>(__this + 1); Enumerator_Dispose_m1812819993(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2041610666_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method) { List_1_t2606371118 * V_0 = NULL; { List_1_t2606371118 * L_0 = (List_1_t2606371118 *)__this->get_list_0(); V_0 = (List_1_t2606371118 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t2606371118 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t2606371118 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t2606371118 * L_7 = V_0; NullCheck(L_7); ByteU5BU5D_t4116647657* L_8 = (ByteU5BU5D_t4116647657*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; uint8_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1012097514((Enumerator_t200647699 *)(Enumerator_t200647699 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2041610666_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t200647699 * _thisAdjusted = reinterpret_cast<Enumerator_t200647699 *>(__this + 1); return Enumerator_MoveNext_m2041610666(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1012097514_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2606371118 * L_1 = (List_1_t2606371118 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t2606371118 * L_3 = (List_1_t2606371118 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); uint8_t* L_5 = (uint8_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(uint8_t)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1012097514_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t200647699 * _thisAdjusted = reinterpret_cast<Enumerator_t200647699 *>(__this + 1); return Enumerator_MoveNextRare_m1012097514(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Byte>::get_Current() extern "C" IL2CPP_METHOD_ATTR uint8_t Enumerator_get_Current_m3044490399_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method) { { uint8_t L_0 = (uint8_t)__this->get_current_3(); return L_0; } } extern "C" uint8_t Enumerator_get_Current_m3044490399_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t200647699 * _thisAdjusted = reinterpret_cast<Enumerator_t200647699 *>(__this + 1); return Enumerator_get_Current_m3044490399(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4168020981_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t2606371118 * L_2 = (List_1_t2606371118 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { uint8_t L_4 = Enumerator_get_Current_m3044490399((Enumerator_t200647699 *)(Enumerator_t200647699 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); uint8_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4168020981_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t200647699 * _thisAdjusted = reinterpret_cast<Enumerator_t200647699 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m4168020981(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3527407980_gshared (Enumerator_t200647699 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2606371118 * L_1 = (List_1_t2606371118 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); uint8_t* L_3 = (uint8_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(uint8_t)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3527407980_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t200647699 * _thisAdjusted = reinterpret_cast<Enumerator_t200647699 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3527407980(_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.Collections.Generic.List`1/Enumerator<System.Char>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2263237050_gshared (Enumerator_t2700811793 * __this, List_1_t811567916 * ___list0, const RuntimeMethod* method) { { List_1_t811567916 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t811567916 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); Il2CppChar* L_3 = (Il2CppChar*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Il2CppChar)); return; } } extern "C" void Enumerator__ctor_m2263237050_AdjustorThunk (RuntimeObject * __this, List_1_t811567916 * ___list0, const RuntimeMethod* method) { Enumerator_t2700811793 * _thisAdjusted = reinterpret_cast<Enumerator_t2700811793 *>(__this + 1); Enumerator__ctor_m2263237050(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3961787728_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3961787728_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2700811793 * _thisAdjusted = reinterpret_cast<Enumerator_t2700811793 *>(__this + 1); Enumerator_Dispose_m3961787728(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1940664149_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { List_1_t811567916 * V_0 = NULL; { List_1_t811567916 * L_0 = (List_1_t811567916 *)__this->get_list_0(); V_0 = (List_1_t811567916 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t811567916 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t811567916 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t811567916 * L_7 = V_0; NullCheck(L_7); CharU5BU5D_t3528271667* L_8 = (CharU5BU5D_t3528271667*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; Il2CppChar L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m3819182280((Enumerator_t2700811793 *)(Enumerator_t2700811793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1940664149_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2700811793 * _thisAdjusted = reinterpret_cast<Enumerator_t2700811793 *>(__this + 1); return Enumerator_MoveNext_m1940664149(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3819182280_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t811567916 * L_1 = (List_1_t811567916 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t811567916 * L_3 = (List_1_t811567916 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); Il2CppChar* L_5 = (Il2CppChar*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(Il2CppChar)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m3819182280_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2700811793 * _thisAdjusted = reinterpret_cast<Enumerator_t2700811793 *>(__this + 1); return Enumerator_MoveNextRare_m3819182280(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Char>::get_Current() extern "C" IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m1436440636_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { { Il2CppChar L_0 = (Il2CppChar)__this->get_current_3(); return L_0; } } extern "C" Il2CppChar Enumerator_get_Current_m1436440636_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2700811793 * _thisAdjusted = reinterpret_cast<Enumerator_t2700811793 *>(__this + 1); return Enumerator_get_Current_m1436440636(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1846615603_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t811567916 * L_2 = (List_1_t811567916 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { Il2CppChar L_4 = Enumerator_get_Current_m1436440636((Enumerator_t2700811793 *)(Enumerator_t2700811793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); Il2CppChar L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1846615603_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2700811793 * _thisAdjusted = reinterpret_cast<Enumerator_t2700811793 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1846615603(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2394182378_gshared (Enumerator_t2700811793 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t811567916 * L_1 = (List_1_t811567916 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); Il2CppChar* L_3 = (Il2CppChar*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Il2CppChar)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2394182378_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2700811793 * _thisAdjusted = reinterpret_cast<Enumerator_t2700811793 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2394182378(_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.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m298503667_gshared (Enumerator_t2190326961 * __this, List_1_t301083084 * ___list0, const RuntimeMethod* method) { { List_1_t301083084 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t301083084 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); DictionaryEntry_t3123975638 * L_3 = (DictionaryEntry_t3123975638 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(DictionaryEntry_t3123975638 )); return; } } extern "C" void Enumerator__ctor_m298503667_AdjustorThunk (RuntimeObject * __this, List_1_t301083084 * ___list0, const RuntimeMethod* method) { Enumerator_t2190326961 * _thisAdjusted = reinterpret_cast<Enumerator_t2190326961 *>(__this + 1); Enumerator__ctor_m298503667(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2145973982_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2145973982_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2190326961 * _thisAdjusted = reinterpret_cast<Enumerator_t2190326961 *>(__this + 1); Enumerator_Dispose_m2145973982(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2875527037_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { List_1_t301083084 * V_0 = NULL; { List_1_t301083084 * L_0 = (List_1_t301083084 *)__this->get_list_0(); V_0 = (List_1_t301083084 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t301083084 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t301083084 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t301083084 * L_7 = V_0; NullCheck(L_7); DictionaryEntryU5BU5D_t4217117203* L_8 = (DictionaryEntryU5BU5D_t4217117203*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; DictionaryEntry_t3123975638 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m870041834((Enumerator_t2190326961 *)(Enumerator_t2190326961 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2875527037_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2190326961 * _thisAdjusted = reinterpret_cast<Enumerator_t2190326961 *>(__this + 1); return Enumerator_MoveNext_m2875527037(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m870041834_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t301083084 * L_1 = (List_1_t301083084 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t301083084 * L_3 = (List_1_t301083084 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); DictionaryEntry_t3123975638 * L_5 = (DictionaryEntry_t3123975638 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(DictionaryEntry_t3123975638 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m870041834_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2190326961 * _thisAdjusted = reinterpret_cast<Enumerator_t2190326961 *>(__this + 1); return Enumerator_MoveNextRare_m870041834(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::get_Current() extern "C" IL2CPP_METHOD_ATTR DictionaryEntry_t3123975638 Enumerator_get_Current_m3966199253_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { { DictionaryEntry_t3123975638 L_0 = (DictionaryEntry_t3123975638 )__this->get_current_3(); return L_0; } } extern "C" DictionaryEntry_t3123975638 Enumerator_get_Current_m3966199253_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2190326961 * _thisAdjusted = reinterpret_cast<Enumerator_t2190326961 *>(__this + 1); return Enumerator_get_Current_m3966199253(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m429756051_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t301083084 * L_2 = (List_1_t301083084 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { DictionaryEntry_t3123975638 L_4 = Enumerator_get_Current_m3966199253((Enumerator_t2190326961 *)(Enumerator_t2190326961 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); DictionaryEntry_t3123975638 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m429756051_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2190326961 * _thisAdjusted = reinterpret_cast<Enumerator_t2190326961 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m429756051(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2701100861_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t301083084 * L_1 = (List_1_t301083084 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); DictionaryEntry_t3123975638 * L_3 = (DictionaryEntry_t3123975638 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(DictionaryEntry_t3123975638 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2701100861_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2190326961 * _thisAdjusted = reinterpret_cast<Enumerator_t2190326961 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2701100861(_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.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2204179911_gshared (Enumerator_t4232248905 * __this, List_1_t2343005028 * ___list0, const RuntimeMethod* method) { { List_1_t2343005028 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t2343005028 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); KeyValuePair_2_t870930286 * L_3 = (KeyValuePair_2_t870930286 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(KeyValuePair_2_t870930286 )); return; } } extern "C" void Enumerator__ctor_m2204179911_AdjustorThunk (RuntimeObject * __this, List_1_t2343005028 * ___list0, const RuntimeMethod* method) { Enumerator_t4232248905 * _thisAdjusted = reinterpret_cast<Enumerator_t4232248905 *>(__this + 1); Enumerator__ctor_m2204179911(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m648910407_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m648910407_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4232248905 * _thisAdjusted = reinterpret_cast<Enumerator_t4232248905 *>(__this + 1); Enumerator_Dispose_m648910407(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m603919753_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { List_1_t2343005028 * V_0 = NULL; { List_1_t2343005028 * L_0 = (List_1_t2343005028 *)__this->get_list_0(); V_0 = (List_1_t2343005028 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t2343005028 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t2343005028 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t2343005028 * L_7 = V_0; NullCheck(L_7); KeyValuePair_2U5BU5D_t2069718811* L_8 = (KeyValuePair_2U5BU5D_t2069718811*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; KeyValuePair_2_t870930286 L_11 = (KeyValuePair_2_t870930286 )(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2415817588((Enumerator_t4232248905 *)(Enumerator_t4232248905 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m603919753_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4232248905 * _thisAdjusted = reinterpret_cast<Enumerator_t4232248905 *>(__this + 1); return Enumerator_MoveNext_m603919753(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2415817588_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2343005028 * L_1 = (List_1_t2343005028 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t2343005028 * L_3 = (List_1_t2343005028 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); KeyValuePair_2_t870930286 * L_5 = (KeyValuePair_2_t870930286 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(KeyValuePair_2_t870930286 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2415817588_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4232248905 * _thisAdjusted = reinterpret_cast<Enumerator_t4232248905 *>(__this + 1); return Enumerator_MoveNextRare_m2415817588(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current() extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t870930286 Enumerator_get_Current_m1408947006_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t870930286 L_0 = (KeyValuePair_2_t870930286 )__this->get_current_3(); return L_0; } } extern "C" KeyValuePair_2_t870930286 Enumerator_get_Current_m1408947006_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4232248905 * _thisAdjusted = reinterpret_cast<Enumerator_t4232248905 *>(__this + 1); return Enumerator_get_Current_m1408947006(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2758235416_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t2343005028 * L_2 = (List_1_t2343005028 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { KeyValuePair_2_t870930286 L_4 = Enumerator_get_Current_m1408947006((Enumerator_t4232248905 *)(Enumerator_t4232248905 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t870930286 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2758235416_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4232248905 * _thisAdjusted = reinterpret_cast<Enumerator_t4232248905 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2758235416(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2636500527_gshared (Enumerator_t4232248905 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2343005028 * L_1 = (List_1_t2343005028 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); KeyValuePair_2_t870930286 * L_3 = (KeyValuePair_2_t870930286 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(KeyValuePair_2_t870930286 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2636500527_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4232248905 * _thisAdjusted = reinterpret_cast<Enumerator_t4232248905 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2636500527(_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.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3076576538_gshared (Enumerator_t114485015 * __this, List_1_t2520208434 * ___list0, const RuntimeMethod* method) { { List_1_t2520208434 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t2520208434 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); KeyValuePair_2_t1048133692 * L_3 = (KeyValuePair_2_t1048133692 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(KeyValuePair_2_t1048133692 )); return; } } extern "C" void Enumerator__ctor_m3076576538_AdjustorThunk (RuntimeObject * __this, List_1_t2520208434 * ___list0, const RuntimeMethod* method) { Enumerator_t114485015 * _thisAdjusted = reinterpret_cast<Enumerator_t114485015 *>(__this + 1); Enumerator__ctor_m3076576538(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m533961586_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m533961586_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t114485015 * _thisAdjusted = reinterpret_cast<Enumerator_t114485015 *>(__this + 1); Enumerator_Dispose_m533961586(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m354715473_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method) { List_1_t2520208434 * V_0 = NULL; { List_1_t2520208434 * L_0 = (List_1_t2520208434 *)__this->get_list_0(); V_0 = (List_1_t2520208434 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t2520208434 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t2520208434 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t2520208434 * L_7 = V_0; NullCheck(L_7); KeyValuePair_2U5BU5D_t1995959125* L_8 = (KeyValuePair_2U5BU5D_t1995959125*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; KeyValuePair_2_t1048133692 L_11 = (KeyValuePair_2_t1048133692 )(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m3066504888((Enumerator_t114485015 *)(Enumerator_t114485015 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m354715473_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t114485015 * _thisAdjusted = reinterpret_cast<Enumerator_t114485015 *>(__this + 1); return Enumerator_MoveNext_m354715473(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3066504888_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2520208434 * L_1 = (List_1_t2520208434 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t2520208434 * L_3 = (List_1_t2520208434 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); KeyValuePair_2_t1048133692 * L_5 = (KeyValuePair_2_t1048133692 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(KeyValuePair_2_t1048133692 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m3066504888_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t114485015 * _thisAdjusted = reinterpret_cast<Enumerator_t114485015 *>(__this + 1); return Enumerator_MoveNextRare_m3066504888(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::get_Current() extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t1048133692 Enumerator_get_Current_m3565126395_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t1048133692 L_0 = (KeyValuePair_2_t1048133692 )__this->get_current_3(); return L_0; } } extern "C" KeyValuePair_2_t1048133692 Enumerator_get_Current_m3565126395_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t114485015 * _thisAdjusted = reinterpret_cast<Enumerator_t114485015 *>(__this + 1); return Enumerator_get_Current_m3565126395(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m505121024_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t2520208434 * L_2 = (List_1_t2520208434 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { KeyValuePair_2_t1048133692 L_4 = Enumerator_get_Current_m3565126395((Enumerator_t114485015 *)(Enumerator_t114485015 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t1048133692 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m505121024_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t114485015 * _thisAdjusted = reinterpret_cast<Enumerator_t114485015 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m505121024(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,HoloToolkit.Unity.TimerScheduler/TimerData>>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m40414700_gshared (Enumerator_t114485015 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2520208434 * L_1 = (List_1_t2520208434 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); KeyValuePair_2_t1048133692 * L_3 = (KeyValuePair_2_t1048133692 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(KeyValuePair_2_t1048133692 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m40414700_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t114485015 * _thisAdjusted = reinterpret_cast<Enumerator_t114485015 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m40414700(_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.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3755364950_gshared (Enumerator_t1596568642 * __this, List_1_t4002292061 * ___list0, const RuntimeMethod* method) { { List_1_t4002292061 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t4002292061 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); KeyValuePair_2_t2530217319 * L_3 = (KeyValuePair_2_t2530217319 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(KeyValuePair_2_t2530217319 )); return; } } extern "C" void Enumerator__ctor_m3755364950_AdjustorThunk (RuntimeObject * __this, List_1_t4002292061 * ___list0, const RuntimeMethod* method) { Enumerator_t1596568642 * _thisAdjusted = reinterpret_cast<Enumerator_t1596568642 *>(__this + 1); Enumerator__ctor_m3755364950(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1095364494_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1095364494_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1596568642 * _thisAdjusted = reinterpret_cast<Enumerator_t1596568642 *>(__this + 1); Enumerator_Dispose_m1095364494(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1372561486_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { List_1_t4002292061 * V_0 = NULL; { List_1_t4002292061 * L_0 = (List_1_t4002292061 *)__this->get_list_0(); V_0 = (List_1_t4002292061 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t4002292061 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t4002292061 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t4002292061 * L_7 = V_0; NullCheck(L_7); KeyValuePair_2U5BU5D_t118269214* L_8 = (KeyValuePair_2U5BU5D_t118269214*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; KeyValuePair_2_t2530217319 L_11 = (KeyValuePair_2_t2530217319 )(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m168524002((Enumerator_t1596568642 *)(Enumerator_t1596568642 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1372561486_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1596568642 * _thisAdjusted = reinterpret_cast<Enumerator_t1596568642 *>(__this + 1); return Enumerator_MoveNext_m1372561486(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m168524002_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4002292061 * L_1 = (List_1_t4002292061 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t4002292061 * L_3 = (List_1_t4002292061 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); KeyValuePair_2_t2530217319 * L_5 = (KeyValuePair_2_t2530217319 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(KeyValuePair_2_t2530217319 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m168524002_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1596568642 * _thisAdjusted = reinterpret_cast<Enumerator_t1596568642 *>(__this + 1); return Enumerator_MoveNextRare_m168524002(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t2530217319 Enumerator_get_Current_m355309478_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t2530217319 L_0 = (KeyValuePair_2_t2530217319 )__this->get_current_3(); return L_0; } } extern "C" KeyValuePair_2_t2530217319 Enumerator_get_Current_m355309478_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1596568642 * _thisAdjusted = reinterpret_cast<Enumerator_t1596568642 *>(__this + 1); return Enumerator_get_Current_m355309478(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m793370193_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t4002292061 * L_2 = (List_1_t4002292061 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { KeyValuePair_2_t2530217319 L_4 = Enumerator_get_Current_m355309478((Enumerator_t1596568642 *)(Enumerator_t1596568642 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t2530217319 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m793370193_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1596568642 * _thisAdjusted = reinterpret_cast<Enumerator_t1596568642 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m793370193(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m541923898_gshared (Enumerator_t1596568642 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4002292061 * L_1 = (List_1_t4002292061 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); KeyValuePair_2_t2530217319 * L_3 = (KeyValuePair_2_t2530217319 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(KeyValuePair_2_t2530217319 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m541923898_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1596568642 * _thisAdjusted = reinterpret_cast<Enumerator_t1596568642 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m541923898(_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.Collections.Generic.List`1/Enumerator<System.DateTime>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m138712765_gshared (Enumerator_t2804881108 * __this, List_1_t915637231 * ___list0, const RuntimeMethod* method) { { List_1_t915637231 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t915637231 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); DateTime_t3738529785 * L_3 = (DateTime_t3738529785 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(DateTime_t3738529785 )); return; } } extern "C" void Enumerator__ctor_m138712765_AdjustorThunk (RuntimeObject * __this, List_1_t915637231 * ___list0, const RuntimeMethod* method) { Enumerator_t2804881108 * _thisAdjusted = reinterpret_cast<Enumerator_t2804881108 *>(__this + 1); Enumerator__ctor_m138712765(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m551339255_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m551339255_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2804881108 * _thisAdjusted = reinterpret_cast<Enumerator_t2804881108 *>(__this + 1); Enumerator_Dispose_m551339255(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1063715261_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { List_1_t915637231 * V_0 = NULL; { List_1_t915637231 * L_0 = (List_1_t915637231 *)__this->get_list_0(); V_0 = (List_1_t915637231 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t915637231 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t915637231 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t915637231 * L_7 = V_0; NullCheck(L_7); DateTimeU5BU5D_t1184652292* L_8 = (DateTimeU5BU5D_t1184652292*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; DateTime_t3738529785 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1293148454((Enumerator_t2804881108 *)(Enumerator_t2804881108 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1063715261_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2804881108 * _thisAdjusted = reinterpret_cast<Enumerator_t2804881108 *>(__this + 1); return Enumerator_MoveNext_m1063715261(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1293148454_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t915637231 * L_1 = (List_1_t915637231 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t915637231 * L_3 = (List_1_t915637231 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); DateTime_t3738529785 * L_5 = (DateTime_t3738529785 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(DateTime_t3738529785 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1293148454_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2804881108 * _thisAdjusted = reinterpret_cast<Enumerator_t2804881108 *>(__this + 1); return Enumerator_MoveNextRare_m1293148454(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.DateTime>::get_Current() extern "C" IL2CPP_METHOD_ATTR DateTime_t3738529785 Enumerator_get_Current_m3577653834_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { { DateTime_t3738529785 L_0 = (DateTime_t3738529785 )__this->get_current_3(); return L_0; } } extern "C" DateTime_t3738529785 Enumerator_get_Current_m3577653834_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2804881108 * _thisAdjusted = reinterpret_cast<Enumerator_t2804881108 *>(__this + 1); return Enumerator_get_Current_m3577653834(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1335446329_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t915637231 * L_2 = (List_1_t915637231 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { DateTime_t3738529785 L_4 = Enumerator_get_Current_m3577653834((Enumerator_t2804881108 *)(Enumerator_t2804881108 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); DateTime_t3738529785 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1335446329_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2804881108 * _thisAdjusted = reinterpret_cast<Enumerator_t2804881108 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1335446329(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3925432481_gshared (Enumerator_t2804881108 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t915637231 * L_1 = (List_1_t915637231 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); DateTime_t3738529785 * L_3 = (DateTime_t3738529785 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(DateTime_t3738529785 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3925432481_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2804881108 * _thisAdjusted = reinterpret_cast<Enumerator_t2804881108 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3925432481(_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.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m773886775_gshared (Enumerator_t2295638830 * __this, List_1_t406394953 * ___list0, const RuntimeMethod* method) { { List_1_t406394953 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t406394953 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); DateTimeOffset_t3229287507 * L_3 = (DateTimeOffset_t3229287507 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(DateTimeOffset_t3229287507 )); return; } } extern "C" void Enumerator__ctor_m773886775_AdjustorThunk (RuntimeObject * __this, List_1_t406394953 * ___list0, const RuntimeMethod* method) { Enumerator_t2295638830 * _thisAdjusted = reinterpret_cast<Enumerator_t2295638830 *>(__this + 1); Enumerator__ctor_m773886775(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m310444287_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m310444287_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2295638830 * _thisAdjusted = reinterpret_cast<Enumerator_t2295638830 *>(__this + 1); Enumerator_Dispose_m310444287(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2486915160_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { List_1_t406394953 * V_0 = NULL; { List_1_t406394953 * L_0 = (List_1_t406394953 *)__this->get_list_0(); V_0 = (List_1_t406394953 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t406394953 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t406394953 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t406394953 * L_7 = V_0; NullCheck(L_7); DateTimeOffsetU5BU5D_t3473357058* L_8 = (DateTimeOffsetU5BU5D_t3473357058*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; DateTimeOffset_t3229287507 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m4283024577((Enumerator_t2295638830 *)(Enumerator_t2295638830 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2486915160_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2295638830 * _thisAdjusted = reinterpret_cast<Enumerator_t2295638830 *>(__this + 1); return Enumerator_MoveNext_m2486915160(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4283024577_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t406394953 * L_1 = (List_1_t406394953 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t406394953 * L_3 = (List_1_t406394953 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); DateTimeOffset_t3229287507 * L_5 = (DateTimeOffset_t3229287507 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(DateTimeOffset_t3229287507 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m4283024577_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2295638830 * _thisAdjusted = reinterpret_cast<Enumerator_t2295638830 *>(__this + 1); return Enumerator_MoveNextRare_m4283024577(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::get_Current() extern "C" IL2CPP_METHOD_ATTR DateTimeOffset_t3229287507 Enumerator_get_Current_m364159929_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { { DateTimeOffset_t3229287507 L_0 = (DateTimeOffset_t3229287507 )__this->get_current_3(); return L_0; } } extern "C" DateTimeOffset_t3229287507 Enumerator_get_Current_m364159929_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2295638830 * _thisAdjusted = reinterpret_cast<Enumerator_t2295638830 *>(__this + 1); return Enumerator_get_Current_m364159929(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2404343349_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t406394953 * L_2 = (List_1_t406394953 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { DateTimeOffset_t3229287507 L_4 = Enumerator_get_Current_m364159929((Enumerator_t2295638830 *)(Enumerator_t2295638830 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); DateTimeOffset_t3229287507 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2404343349_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2295638830 * _thisAdjusted = reinterpret_cast<Enumerator_t2295638830 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2404343349(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1398371920_gshared (Enumerator_t2295638830 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t406394953 * L_1 = (List_1_t406394953 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); DateTimeOffset_t3229287507 * L_3 = (DateTimeOffset_t3229287507 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(DateTimeOffset_t3229287507 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1398371920_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2295638830 * _thisAdjusted = reinterpret_cast<Enumerator_t2295638830 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m1398371920(_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.Collections.Generic.List`1/Enumerator<System.Decimal>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3045324249_gshared (Enumerator_t2014610703 * __this, List_1_t125366826 * ___list0, const RuntimeMethod* method) { { List_1_t125366826 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t125366826 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); Decimal_t2948259380 * L_3 = (Decimal_t2948259380 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Decimal_t2948259380 )); return; } } extern "C" void Enumerator__ctor_m3045324249_AdjustorThunk (RuntimeObject * __this, List_1_t125366826 * ___list0, const RuntimeMethod* method) { Enumerator_t2014610703 * _thisAdjusted = reinterpret_cast<Enumerator_t2014610703 *>(__this + 1); Enumerator__ctor_m3045324249(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3605374108_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3605374108_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2014610703 * _thisAdjusted = reinterpret_cast<Enumerator_t2014610703 *>(__this + 1); Enumerator_Dispose_m3605374108(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3070898284_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { List_1_t125366826 * V_0 = NULL; { List_1_t125366826 * L_0 = (List_1_t125366826 *)__this->get_list_0(); V_0 = (List_1_t125366826 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t125366826 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t125366826 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t125366826 * L_7 = V_0; NullCheck(L_7); DecimalU5BU5D_t1145110141* L_8 = (DecimalU5BU5D_t1145110141*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; Decimal_t2948259380 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m4035682446((Enumerator_t2014610703 *)(Enumerator_t2014610703 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m3070898284_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2014610703 * _thisAdjusted = reinterpret_cast<Enumerator_t2014610703 *>(__this + 1); return Enumerator_MoveNext_m3070898284(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4035682446_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t125366826 * L_1 = (List_1_t125366826 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t125366826 * L_3 = (List_1_t125366826 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); Decimal_t2948259380 * L_5 = (Decimal_t2948259380 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(Decimal_t2948259380 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m4035682446_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2014610703 * _thisAdjusted = reinterpret_cast<Enumerator_t2014610703 *>(__this + 1); return Enumerator_MoveNextRare_m4035682446(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Decimal>::get_Current() extern "C" IL2CPP_METHOD_ATTR Decimal_t2948259380 Enumerator_get_Current_m3186922302_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { { Decimal_t2948259380 L_0 = (Decimal_t2948259380 )__this->get_current_3(); return L_0; } } extern "C" Decimal_t2948259380 Enumerator_get_Current_m3186922302_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2014610703 * _thisAdjusted = reinterpret_cast<Enumerator_t2014610703 *>(__this + 1); return Enumerator_get_Current_m3186922302(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3691286518_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t125366826 * L_2 = (List_1_t125366826 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { Decimal_t2948259380 L_4 = Enumerator_get_Current_m3186922302((Enumerator_t2014610703 *)(Enumerator_t2014610703 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); Decimal_t2948259380 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3691286518_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2014610703 * _thisAdjusted = reinterpret_cast<Enumerator_t2014610703 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3691286518(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1480554046_gshared (Enumerator_t2014610703 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t125366826 * L_1 = (List_1_t125366826 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); Decimal_t2948259380 * L_3 = (Decimal_t2948259380 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Decimal_t2948259380 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1480554046_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2014610703 * _thisAdjusted = reinterpret_cast<Enumerator_t2014610703 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m1480554046(_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.Collections.Generic.List`1/Enumerator<System.Double>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1409034699_gshared (Enumerator_t3955983982 * __this, List_1_t2066740105 * ___list0, const RuntimeMethod* method) { { List_1_t2066740105 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t2066740105 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); double* L_3 = (double*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(double)); return; } } extern "C" void Enumerator__ctor_m1409034699_AdjustorThunk (RuntimeObject * __this, List_1_t2066740105 * ___list0, const RuntimeMethod* method) { Enumerator_t3955983982 * _thisAdjusted = reinterpret_cast<Enumerator_t3955983982 *>(__this + 1); Enumerator__ctor_m1409034699(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3437595106_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3437595106_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3955983982 * _thisAdjusted = reinterpret_cast<Enumerator_t3955983982 *>(__this + 1); Enumerator_Dispose_m3437595106(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3399714144_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { List_1_t2066740105 * V_0 = NULL; { List_1_t2066740105 * L_0 = (List_1_t2066740105 *)__this->get_list_0(); V_0 = (List_1_t2066740105 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t2066740105 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t2066740105 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t2066740105 * L_7 = V_0; NullCheck(L_7); DoubleU5BU5D_t3413330114* L_8 = (DoubleU5BU5D_t3413330114*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; double L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m3153309434((Enumerator_t3955983982 *)(Enumerator_t3955983982 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m3399714144_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3955983982 * _thisAdjusted = reinterpret_cast<Enumerator_t3955983982 *>(__this + 1); return Enumerator_MoveNext_m3399714144(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3153309434_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2066740105 * L_1 = (List_1_t2066740105 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t2066740105 * L_3 = (List_1_t2066740105 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); double* L_5 = (double*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(double)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m3153309434_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3955983982 * _thisAdjusted = reinterpret_cast<Enumerator_t3955983982 *>(__this + 1); return Enumerator_MoveNextRare_m3153309434(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Double>::get_Current() extern "C" IL2CPP_METHOD_ATTR double Enumerator_get_Current_m544454941_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { { double L_0 = (double)__this->get_current_3(); return L_0; } } extern "C" double Enumerator_get_Current_m544454941_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3955983982 * _thisAdjusted = reinterpret_cast<Enumerator_t3955983982 *>(__this + 1); return Enumerator_get_Current_m544454941(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m773711846_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t2066740105 * L_2 = (List_1_t2066740105 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { double L_4 = Enumerator_get_Current_m544454941((Enumerator_t3955983982 *)(Enumerator_t3955983982 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); double L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m773711846_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3955983982 * _thisAdjusted = reinterpret_cast<Enumerator_t3955983982 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m773711846(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1095275694_gshared (Enumerator_t3955983982 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2066740105 * L_1 = (List_1_t2066740105 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); double* L_3 = (double*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(double)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1095275694_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3955983982 * _thisAdjusted = reinterpret_cast<Enumerator_t3955983982 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m1095275694(_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.Collections.Generic.List`1/Enumerator<System.Int16>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3160081948_gshared (Enumerator_t1619171710 * __this, List_1_t4024895129 * ___list0, const RuntimeMethod* method) { { List_1_t4024895129 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t4024895129 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); int16_t* L_3 = (int16_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int16_t)); return; } } extern "C" void Enumerator__ctor_m3160081948_AdjustorThunk (RuntimeObject * __this, List_1_t4024895129 * ___list0, const RuntimeMethod* method) { Enumerator_t1619171710 * _thisAdjusted = reinterpret_cast<Enumerator_t1619171710 *>(__this + 1); Enumerator__ctor_m3160081948(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m499370896_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m499370896_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1619171710 * _thisAdjusted = reinterpret_cast<Enumerator_t1619171710 *>(__this + 1); Enumerator_Dispose_m499370896(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m725592978_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { List_1_t4024895129 * V_0 = NULL; { List_1_t4024895129 * L_0 = (List_1_t4024895129 *)__this->get_list_0(); V_0 = (List_1_t4024895129 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t4024895129 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t4024895129 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t4024895129 * L_7 = V_0; NullCheck(L_7); Int16U5BU5D_t3686840178* L_8 = (Int16U5BU5D_t3686840178*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; int16_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1925719897((Enumerator_t1619171710 *)(Enumerator_t1619171710 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m725592978_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1619171710 * _thisAdjusted = reinterpret_cast<Enumerator_t1619171710 *>(__this + 1); return Enumerator_MoveNext_m725592978(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1925719897_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4024895129 * L_1 = (List_1_t4024895129 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t4024895129 * L_3 = (List_1_t4024895129 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int16_t* L_5 = (int16_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(int16_t)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1925719897_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1619171710 * _thisAdjusted = reinterpret_cast<Enumerator_t1619171710 *>(__this + 1); return Enumerator_MoveNextRare_m1925719897(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Int16>::get_Current() extern "C" IL2CPP_METHOD_ATTR int16_t Enumerator_get_Current_m4284377350_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { { int16_t L_0 = (int16_t)__this->get_current_3(); return L_0; } } extern "C" int16_t Enumerator_get_Current_m4284377350_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1619171710 * _thisAdjusted = reinterpret_cast<Enumerator_t1619171710 *>(__this + 1); return Enumerator_get_Current_m4284377350(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m35820292_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t4024895129 * L_2 = (List_1_t4024895129 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { int16_t L_4 = Enumerator_get_Current_m4284377350((Enumerator_t1619171710 *)(Enumerator_t1619171710 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); int16_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m35820292_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1619171710 * _thisAdjusted = reinterpret_cast<Enumerator_t1619171710 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m35820292(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3106565210_gshared (Enumerator_t1619171710 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4024895129 * L_1 = (List_1_t4024895129 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); int16_t* L_3 = (int16_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int16_t)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3106565210_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1619171710 * _thisAdjusted = reinterpret_cast<Enumerator_t1619171710 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3106565210(_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.Collections.Generic.List`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m247851533_gshared (Enumerator_t2017297076 * __this, List_1_t128053199 * ___list0, const RuntimeMethod* method) { { List_1_t128053199 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t128053199 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); int32_t* L_3 = (int32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } extern "C" void Enumerator__ctor_m247851533_AdjustorThunk (RuntimeObject * __this, List_1_t128053199 * ___list0, const RuntimeMethod* method) { Enumerator_t2017297076 * _thisAdjusted = reinterpret_cast<Enumerator_t2017297076 *>(__this + 1); Enumerator__ctor_m247851533(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m222348240_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m222348240_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2017297076 * _thisAdjusted = reinterpret_cast<Enumerator_t2017297076 *>(__this + 1); Enumerator_Dispose_m222348240(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1050804954_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { List_1_t128053199 * V_0 = NULL; { List_1_t128053199 * L_0 = (List_1_t128053199 *)__this->get_list_0(); V_0 = (List_1_t128053199 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t128053199 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t128053199 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t128053199 * L_7 = V_0; NullCheck(L_7); Int32U5BU5D_t385246372* L_8 = (Int32U5BU5D_t385246372*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2666135731((Enumerator_t2017297076 *)(Enumerator_t2017297076 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1050804954_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2017297076 * _thisAdjusted = reinterpret_cast<Enumerator_t2017297076 *>(__this + 1); return Enumerator_MoveNext_m1050804954(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2666135731_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t128053199 * L_1 = (List_1_t128053199 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t128053199 * L_3 = (List_1_t128053199 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int32_t* L_5 = (int32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(int32_t)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2666135731_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2017297076 * _thisAdjusted = reinterpret_cast<Enumerator_t2017297076 *>(__this + 1); return Enumerator_MoveNextRare_m2666135731(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current() extern "C" IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m2612064142_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_current_3(); return L_0; } } extern "C" int32_t Enumerator_get_Current_m2612064142_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2017297076 * _thisAdjusted = reinterpret_cast<Enumerator_t2017297076 *>(__this + 1); return Enumerator_get_Current_m2612064142(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m323862414_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t128053199 * L_2 = (List_1_t128053199 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { int32_t L_4 = Enumerator_get_Current_m2612064142((Enumerator_t2017297076 *)(Enumerator_t2017297076 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); int32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m323862414_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2017297076 * _thisAdjusted = reinterpret_cast<Enumerator_t2017297076 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m323862414(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m502339360_gshared (Enumerator_t2017297076 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t128053199 * L_1 = (List_1_t128053199 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m502339360_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2017297076 * _thisAdjusted = reinterpret_cast<Enumerator_t2017297076 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m502339360(_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.Collections.Generic.List`1/Enumerator<System.Int64>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m14605281_gshared (Enumerator_t2802918627 * __this, List_1_t913674750 * ___list0, const RuntimeMethod* method) { { List_1_t913674750 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t913674750 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); int64_t* L_3 = (int64_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int64_t)); return; } } extern "C" void Enumerator__ctor_m14605281_AdjustorThunk (RuntimeObject * __this, List_1_t913674750 * ___list0, const RuntimeMethod* method) { Enumerator_t2802918627 * _thisAdjusted = reinterpret_cast<Enumerator_t2802918627 *>(__this + 1); Enumerator__ctor_m14605281(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m356810930_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m356810930_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2802918627 * _thisAdjusted = reinterpret_cast<Enumerator_t2802918627 *>(__this + 1); Enumerator_Dispose_m356810930(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3870894191_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { List_1_t913674750 * V_0 = NULL; { List_1_t913674750 * L_0 = (List_1_t913674750 *)__this->get_list_0(); V_0 = (List_1_t913674750 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t913674750 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t913674750 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t913674750 * L_7 = V_0; NullCheck(L_7); Int64U5BU5D_t2559172825* L_8 = (Int64U5BU5D_t2559172825*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; int64_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m3832676127((Enumerator_t2802918627 *)(Enumerator_t2802918627 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m3870894191_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2802918627 * _thisAdjusted = reinterpret_cast<Enumerator_t2802918627 *>(__this + 1); return Enumerator_MoveNext_m3870894191(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3832676127_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t913674750 * L_1 = (List_1_t913674750 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t913674750 * L_3 = (List_1_t913674750 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int64_t* L_5 = (int64_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(int64_t)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m3832676127_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2802918627 * _thisAdjusted = reinterpret_cast<Enumerator_t2802918627 *>(__this + 1); return Enumerator_MoveNextRare_m3832676127(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Int64>::get_Current() extern "C" IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_m2349305336_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_current_3(); return L_0; } } extern "C" int64_t Enumerator_get_Current_m2349305336_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2802918627 * _thisAdjusted = reinterpret_cast<Enumerator_t2802918627 *>(__this + 1); return Enumerator_get_Current_m2349305336(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1694256383_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t913674750 * L_2 = (List_1_t913674750 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { int64_t L_4 = Enumerator_get_Current_m2349305336((Enumerator_t2802918627 *)(Enumerator_t2802918627 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); int64_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1694256383_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2802918627 * _thisAdjusted = reinterpret_cast<Enumerator_t2802918627 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1694256383(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3387745361_gshared (Enumerator_t2802918627 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t913674750 * L_1 = (List_1_t913674750 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); int64_t* L_3 = (int64_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int64_t)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3387745361_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2802918627 * _thisAdjusted = reinterpret_cast<Enumerator_t2802918627 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3387745361(_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.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2636919835_gshared (Enumerator_t2529877651 * __this, List_1_t640633774 * ___list0, const RuntimeMethod* method) { { List_1_t640633774 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t640633774 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); Win32_IP_ADAPTER_ADDRESSES_t3463526328 * L_3 = (Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Win32_IP_ADAPTER_ADDRESSES_t3463526328 )); return; } } extern "C" void Enumerator__ctor_m2636919835_AdjustorThunk (RuntimeObject * __this, List_1_t640633774 * ___list0, const RuntimeMethod* method) { Enumerator_t2529877651 * _thisAdjusted = reinterpret_cast<Enumerator_t2529877651 *>(__this + 1); Enumerator__ctor_m2636919835(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m895569904_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m895569904_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2529877651 * _thisAdjusted = reinterpret_cast<Enumerator_t2529877651 *>(__this + 1); Enumerator_Dispose_m895569904(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3352869030_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { List_1_t640633774 * V_0 = NULL; { List_1_t640633774 * L_0 = (List_1_t640633774 *)__this->get_list_0(); V_0 = (List_1_t640633774 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t640633774 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t640633774 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t640633774 * L_7 = V_0; NullCheck(L_7); Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057* L_8 = (Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; Win32_IP_ADAPTER_ADDRESSES_t3463526328 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1987352430((Enumerator_t2529877651 *)(Enumerator_t2529877651 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m3352869030_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2529877651 * _thisAdjusted = reinterpret_cast<Enumerator_t2529877651 *>(__this + 1); return Enumerator_MoveNext_m3352869030(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1987352430_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t640633774 * L_1 = (List_1_t640633774 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t640633774 * L_3 = (List_1_t640633774 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); Win32_IP_ADAPTER_ADDRESSES_t3463526328 * L_5 = (Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(Win32_IP_ADAPTER_ADDRESSES_t3463526328 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1987352430_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2529877651 * _thisAdjusted = reinterpret_cast<Enumerator_t2529877651 *>(__this + 1); return Enumerator_MoveNextRare_m1987352430(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::get_Current() extern "C" IL2CPP_METHOD_ATTR Win32_IP_ADAPTER_ADDRESSES_t3463526328 Enumerator_get_Current_m2730273305_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { { Win32_IP_ADAPTER_ADDRESSES_t3463526328 L_0 = (Win32_IP_ADAPTER_ADDRESSES_t3463526328 )__this->get_current_3(); return L_0; } } extern "C" Win32_IP_ADAPTER_ADDRESSES_t3463526328 Enumerator_get_Current_m2730273305_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2529877651 * _thisAdjusted = reinterpret_cast<Enumerator_t2529877651 *>(__this + 1); return Enumerator_get_Current_m2730273305(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2195889862_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t640633774 * L_2 = (List_1_t640633774 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { Win32_IP_ADAPTER_ADDRESSES_t3463526328 L_4 = Enumerator_get_Current_m2730273305((Enumerator_t2529877651 *)(Enumerator_t2529877651 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); Win32_IP_ADAPTER_ADDRESSES_t3463526328 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2195889862_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2529877651 * _thisAdjusted = reinterpret_cast<Enumerator_t2529877651 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2195889862(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3522081619_gshared (Enumerator_t2529877651 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t640633774 * L_1 = (List_1_t640633774 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); Win32_IP_ADAPTER_ADDRESSES_t3463526328 * L_3 = (Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Win32_IP_ADAPTER_ADDRESSES_t3463526328 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3522081619_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2529877651 * _thisAdjusted = reinterpret_cast<Enumerator_t2529877651 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3522081619(_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.Collections.Generic.List`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3170385166_gshared (Enumerator_t2146457487 * __this, List_1_t257213610 * ___list0, const RuntimeMethod* method) { { List_1_t257213610 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t257213610 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } extern "C" void Enumerator__ctor_m3170385166_AdjustorThunk (RuntimeObject * __this, List_1_t257213610 * ___list0, const RuntimeMethod* method) { Enumerator_t2146457487 * _thisAdjusted = reinterpret_cast<Enumerator_t2146457487 *>(__this + 1); Enumerator__ctor_m3170385166(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3007748546_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3007748546_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2146457487 * _thisAdjusted = reinterpret_cast<Enumerator_t2146457487 *>(__this + 1); Enumerator_Dispose_m3007748546(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2142368520_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { List_1_t257213610 * V_0 = NULL; { List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get_list_0(); V_0 = (List_1_t257213610 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t257213610 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t257213610 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t257213610 * L_7 = V_0; NullCheck(L_7); ObjectU5BU5D_t2843939325* L_8 = (ObjectU5BU5D_t2843939325*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; RuntimeObject * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1088973935((Enumerator_t2146457487 *)(Enumerator_t2146457487 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2142368520_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2146457487 * _thisAdjusted = reinterpret_cast<Enumerator_t2146457487 *>(__this + 1); return Enumerator_MoveNext_m2142368520(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1088973935_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t257213610 * L_1 = (List_1_t257213610 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t257213610 * L_3 = (List_1_t257213610 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(RuntimeObject *)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1088973935_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2146457487 * _thisAdjusted = reinterpret_cast<Enumerator_t2146457487 *>(__this + 1); return Enumerator_MoveNextRare_m1088973935(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m337713592_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3(); return L_0; } } extern "C" RuntimeObject * Enumerator_get_Current_m337713592_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2146457487 * _thisAdjusted = reinterpret_cast<Enumerator_t2146457487 *>(__this + 1); return Enumerator_get_Current_m337713592(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3681948262_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t257213610 * L_2 = (List_1_t257213610 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { RuntimeObject * L_4 = Enumerator_get_Current_m337713592((Enumerator_t2146457487 *)(Enumerator_t2146457487 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_4; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3681948262_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2146457487 * _thisAdjusted = reinterpret_cast<Enumerator_t2146457487 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3681948262(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m959124362_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t257213610 * L_1 = (List_1_t257213610 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m959124362_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2146457487 * _thisAdjusted = reinterpret_cast<Enumerator_t2146457487 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m959124362(_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.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m4140484736_gshared (Enumerator_t2417789510 * __this, List_1_t528545633 * ___list0, const RuntimeMethod* method) { { List_1_t528545633 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t528545633 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); GCHandle_t3351438187 * L_3 = (GCHandle_t3351438187 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(GCHandle_t3351438187 )); return; } } extern "C" void Enumerator__ctor_m4140484736_AdjustorThunk (RuntimeObject * __this, List_1_t528545633 * ___list0, const RuntimeMethod* method) { Enumerator_t2417789510 * _thisAdjusted = reinterpret_cast<Enumerator_t2417789510 *>(__this + 1); Enumerator__ctor_m4140484736(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4139153022_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m4139153022_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2417789510 * _thisAdjusted = reinterpret_cast<Enumerator_t2417789510 *>(__this + 1); Enumerator_Dispose_m4139153022(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3073970556_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { List_1_t528545633 * V_0 = NULL; { List_1_t528545633 * L_0 = (List_1_t528545633 *)__this->get_list_0(); V_0 = (List_1_t528545633 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t528545633 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t528545633 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t528545633 * L_7 = V_0; NullCheck(L_7); GCHandleU5BU5D_t35668618* L_8 = (GCHandleU5BU5D_t35668618*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; GCHandle_t3351438187 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m3052879222((Enumerator_t2417789510 *)(Enumerator_t2417789510 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m3073970556_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2417789510 * _thisAdjusted = reinterpret_cast<Enumerator_t2417789510 *>(__this + 1); return Enumerator_MoveNext_m3073970556(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3052879222_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t528545633 * L_1 = (List_1_t528545633 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t528545633 * L_3 = (List_1_t528545633 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); GCHandle_t3351438187 * L_5 = (GCHandle_t3351438187 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(GCHandle_t3351438187 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m3052879222_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2417789510 * _thisAdjusted = reinterpret_cast<Enumerator_t2417789510 *>(__this + 1); return Enumerator_MoveNextRare_m3052879222(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::get_Current() extern "C" IL2CPP_METHOD_ATTR GCHandle_t3351438187 Enumerator_get_Current_m1124086041_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { { GCHandle_t3351438187 L_0 = (GCHandle_t3351438187 )__this->get_current_3(); return L_0; } } extern "C" GCHandle_t3351438187 Enumerator_get_Current_m1124086041_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2417789510 * _thisAdjusted = reinterpret_cast<Enumerator_t2417789510 *>(__this + 1); return Enumerator_get_Current_m1124086041(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1523025272_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t528545633 * L_2 = (List_1_t528545633 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { GCHandle_t3351438187 L_4 = Enumerator_get_Current_m1124086041((Enumerator_t2417789510 *)(Enumerator_t2417789510 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); GCHandle_t3351438187 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1523025272_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2417789510 * _thisAdjusted = reinterpret_cast<Enumerator_t2417789510 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1523025272(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.GCHandle>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m446259503_gshared (Enumerator_t2417789510 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t528545633 * L_1 = (List_1_t528545633 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); GCHandle_t3351438187 * L_3 = (GCHandle_t3351438187 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(GCHandle_t3351438187 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m446259503_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2417789510 * _thisAdjusted = reinterpret_cast<Enumerator_t2417789510 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m446259503(_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.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1048599061_gshared (Enumerator_t3680209407 * __this, List_1_t1790965530 * ___list0, const RuntimeMethod* method) { { List_1_t1790965530 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1790965530 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); EventRegistrationToken_t318890788 * L_3 = (EventRegistrationToken_t318890788 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(EventRegistrationToken_t318890788 )); return; } } extern "C" void Enumerator__ctor_m1048599061_AdjustorThunk (RuntimeObject * __this, List_1_t1790965530 * ___list0, const RuntimeMethod* method) { Enumerator_t3680209407 * _thisAdjusted = reinterpret_cast<Enumerator_t3680209407 *>(__this + 1); Enumerator__ctor_m1048599061(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1566401219_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1566401219_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3680209407 * _thisAdjusted = reinterpret_cast<Enumerator_t3680209407 *>(__this + 1); Enumerator_Dispose_m1566401219(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3964309034_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { List_1_t1790965530 * V_0 = NULL; { List_1_t1790965530 * L_0 = (List_1_t1790965530 *)__this->get_list_0(); V_0 = (List_1_t1790965530 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1790965530 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1790965530 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1790965530 * L_7 = V_0; NullCheck(L_7); EventRegistrationTokenU5BU5D_t897718221* L_8 = (EventRegistrationTokenU5BU5D_t897718221*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; EventRegistrationToken_t318890788 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1813959100((Enumerator_t3680209407 *)(Enumerator_t3680209407 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m3964309034_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3680209407 * _thisAdjusted = reinterpret_cast<Enumerator_t3680209407 *>(__this + 1); return Enumerator_MoveNext_m3964309034(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1813959100_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1790965530 * L_1 = (List_1_t1790965530 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1790965530 * L_3 = (List_1_t1790965530 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); EventRegistrationToken_t318890788 * L_5 = (EventRegistrationToken_t318890788 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(EventRegistrationToken_t318890788 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1813959100_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3680209407 * _thisAdjusted = reinterpret_cast<Enumerator_t3680209407 *>(__this + 1); return Enumerator_MoveNextRare_m1813959100(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::get_Current() extern "C" IL2CPP_METHOD_ATTR EventRegistrationToken_t318890788 Enumerator_get_Current_m2635610218_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { { EventRegistrationToken_t318890788 L_0 = (EventRegistrationToken_t318890788 )__this->get_current_3(); return L_0; } } extern "C" EventRegistrationToken_t318890788 Enumerator_get_Current_m2635610218_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3680209407 * _thisAdjusted = reinterpret_cast<Enumerator_t3680209407 *>(__this + 1); return Enumerator_get_Current_m2635610218(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m704675993_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1790965530 * L_2 = (List_1_t1790965530 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { EventRegistrationToken_t318890788 L_4 = Enumerator_get_Current_m2635610218((Enumerator_t3680209407 *)(Enumerator_t3680209407 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); EventRegistrationToken_t318890788 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m704675993_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3680209407 * _thisAdjusted = reinterpret_cast<Enumerator_t3680209407 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m704675993(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2509888677_gshared (Enumerator_t3680209407 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1790965530 * L_1 = (List_1_t1790965530 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); EventRegistrationToken_t318890788 * L_3 = (EventRegistrationToken_t318890788 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(EventRegistrationToken_t318890788 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2509888677_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3680209407 * _thisAdjusted = reinterpret_cast<Enumerator_t3680209407 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2509888677(_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.Collections.Generic.List`1/Enumerator<System.SByte>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1721949535_gshared (Enumerator_t735928985 * __this, List_1_t3141652404 * ___list0, const RuntimeMethod* method) { { List_1_t3141652404 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t3141652404 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); int8_t* L_3 = (int8_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int8_t)); return; } } extern "C" void Enumerator__ctor_m1721949535_AdjustorThunk (RuntimeObject * __this, List_1_t3141652404 * ___list0, const RuntimeMethod* method) { Enumerator_t735928985 * _thisAdjusted = reinterpret_cast<Enumerator_t735928985 *>(__this + 1); Enumerator__ctor_m1721949535(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.SByte>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1015340444_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1015340444_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t735928985 * _thisAdjusted = reinterpret_cast<Enumerator_t735928985 *>(__this + 1); Enumerator_Dispose_m1015340444(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.SByte>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3124826189_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method) { List_1_t3141652404 * V_0 = NULL; { List_1_t3141652404 * L_0 = (List_1_t3141652404 *)__this->get_list_0(); V_0 = (List_1_t3141652404 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t3141652404 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t3141652404 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t3141652404 * L_7 = V_0; NullCheck(L_7); SByteU5BU5D_t2651576203* L_8 = (SByteU5BU5D_t2651576203*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; int8_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m3925873929((Enumerator_t735928985 *)(Enumerator_t735928985 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m3124826189_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t735928985 * _thisAdjusted = reinterpret_cast<Enumerator_t735928985 *>(__this + 1); return Enumerator_MoveNext_m3124826189(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.SByte>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3925873929_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3141652404 * L_1 = (List_1_t3141652404 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t3141652404 * L_3 = (List_1_t3141652404 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int8_t* L_5 = (int8_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(int8_t)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m3925873929_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t735928985 * _thisAdjusted = reinterpret_cast<Enumerator_t735928985 *>(__this + 1); return Enumerator_MoveNextRare_m3925873929(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.SByte>::get_Current() extern "C" IL2CPP_METHOD_ATTR int8_t Enumerator_get_Current_m3149433407_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method) { { int8_t L_0 = (int8_t)__this->get_current_3(); return L_0; } } extern "C" int8_t Enumerator_get_Current_m3149433407_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t735928985 * _thisAdjusted = reinterpret_cast<Enumerator_t735928985 *>(__this + 1); return Enumerator_get_Current_m3149433407(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.SByte>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3493161884_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t3141652404 * L_2 = (List_1_t3141652404 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { int8_t L_4 = Enumerator_get_Current_m3149433407((Enumerator_t735928985 *)(Enumerator_t735928985 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); int8_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3493161884_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t735928985 * _thisAdjusted = reinterpret_cast<Enumerator_t735928985 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3493161884(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.SByte>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1118301326_gshared (Enumerator_t735928985 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3141652404 * L_1 = (List_1_t3141652404 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); int8_t* L_3 = (int8_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int8_t)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1118301326_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t735928985 * _thisAdjusted = reinterpret_cast<Enumerator_t735928985 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m1118301326(_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.Collections.Generic.List`1/Enumerator<System.Single>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m113707524_gshared (Enumerator_t463618097 * __this, List_1_t2869341516 * ___list0, const RuntimeMethod* method) { { List_1_t2869341516 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t2869341516 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); float* L_3 = (float*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(float)); return; } } extern "C" void Enumerator__ctor_m113707524_AdjustorThunk (RuntimeObject * __this, List_1_t2869341516 * ___list0, const RuntimeMethod* method) { Enumerator_t463618097 * _thisAdjusted = reinterpret_cast<Enumerator_t463618097 *>(__this + 1); Enumerator__ctor_m113707524(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Single>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3204468515_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3204468515_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t463618097 * _thisAdjusted = reinterpret_cast<Enumerator_t463618097 *>(__this + 1); Enumerator_Dispose_m3204468515(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Single>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3275886745_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method) { List_1_t2869341516 * V_0 = NULL; { List_1_t2869341516 * L_0 = (List_1_t2869341516 *)__this->get_list_0(); V_0 = (List_1_t2869341516 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t2869341516 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t2869341516 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t2869341516 * L_7 = V_0; NullCheck(L_7); SingleU5BU5D_t1444911251* L_8 = (SingleU5BU5D_t1444911251*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; float L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2844325332((Enumerator_t463618097 *)(Enumerator_t463618097 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m3275886745_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t463618097 * _thisAdjusted = reinterpret_cast<Enumerator_t463618097 *>(__this + 1); return Enumerator_MoveNext_m3275886745(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Single>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2844325332_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2869341516 * L_1 = (List_1_t2869341516 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t2869341516 * L_3 = (List_1_t2869341516 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); float* L_5 = (float*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(float)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2844325332_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t463618097 * _thisAdjusted = reinterpret_cast<Enumerator_t463618097 *>(__this + 1); return Enumerator_MoveNextRare_m2844325332(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Single>::get_Current() extern "C" IL2CPP_METHOD_ATTR float Enumerator_get_Current_m1091865704_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method) { { float L_0 = (float)__this->get_current_3(); return L_0; } } extern "C" float Enumerator_get_Current_m1091865704_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t463618097 * _thisAdjusted = reinterpret_cast<Enumerator_t463618097 *>(__this + 1); return Enumerator_get_Current_m1091865704(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Single>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m495085386_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t2869341516 * L_2 = (List_1_t2869341516 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { float L_4 = Enumerator_get_Current_m1091865704((Enumerator_t463618097 *)(Enumerator_t463618097 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); float L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m495085386_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t463618097 * _thisAdjusted = reinterpret_cast<Enumerator_t463618097 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m495085386(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Single>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3951708793_gshared (Enumerator_t463618097 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2869341516 * L_1 = (List_1_t2869341516 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); float* L_3 = (float*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(float)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3951708793_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t463618097 * _thisAdjusted = reinterpret_cast<Enumerator_t463618097 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3951708793(_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.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m671055880_gshared (Enumerator_t3454164214 * __this, List_1_t1564920337 * ___list0, const RuntimeMethod* method) { { List_1_t1564920337 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1564920337 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); int32_t* L_3 = (int32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } extern "C" void Enumerator__ctor_m671055880_AdjustorThunk (RuntimeObject * __this, List_1_t1564920337 * ___list0, const RuntimeMethod* method) { Enumerator_t3454164214 * _thisAdjusted = reinterpret_cast<Enumerator_t3454164214 *>(__this + 1); Enumerator__ctor_m671055880(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3062128061_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3062128061_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3454164214 * _thisAdjusted = reinterpret_cast<Enumerator_t3454164214 *>(__this + 1); Enumerator_Dispose_m3062128061(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2437531857_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { List_1_t1564920337 * V_0 = NULL; { List_1_t1564920337 * L_0 = (List_1_t1564920337 *)__this->get_list_0(); V_0 = (List_1_t1564920337 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1564920337 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1564920337 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1564920337 * L_7 = V_0; NullCheck(L_7); RegexOptionsU5BU5D_t160358170* L_8 = (RegexOptionsU5BU5D_t160358170*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m441445789((Enumerator_t3454164214 *)(Enumerator_t3454164214 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2437531857_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3454164214 * _thisAdjusted = reinterpret_cast<Enumerator_t3454164214 *>(__this + 1); return Enumerator_MoveNext_m2437531857(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m441445789_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1564920337 * L_1 = (List_1_t1564920337 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1564920337 * L_3 = (List_1_t1564920337 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int32_t* L_5 = (int32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(int32_t)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m441445789_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3454164214 * _thisAdjusted = reinterpret_cast<Enumerator_t3454164214 *>(__this + 1); return Enumerator_MoveNextRare_m441445789(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::get_Current() extern "C" IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m2218931355_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_current_3(); return L_0; } } extern "C" int32_t Enumerator_get_Current_m2218931355_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3454164214 * _thisAdjusted = reinterpret_cast<Enumerator_t3454164214 *>(__this + 1); return Enumerator_get_Current_m2218931355(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3326453338_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1564920337 * L_2 = (List_1_t1564920337 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { int32_t L_4 = Enumerator_get_Current_m2218931355((Enumerator_t3454164214 *)(Enumerator_t3454164214 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); int32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3326453338_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3454164214 * _thisAdjusted = reinterpret_cast<Enumerator_t3454164214 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3326453338(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Text.RegularExpressions.RegexOptions>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1292847408_gshared (Enumerator_t3454164214 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1564920337 * L_1 = (List_1_t1564920337 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1292847408_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3454164214 * _thisAdjusted = reinterpret_cast<Enumerator_t3454164214 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m1292847408(_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.Collections.Generic.List`1/Enumerator<System.TimeSpan>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3813920009_gshared (Enumerator_t4242477868 * __this, List_1_t2353233991 * ___list0, const RuntimeMethod* method) { { List_1_t2353233991 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t2353233991 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); TimeSpan_t881159249 * L_3 = (TimeSpan_t881159249 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(TimeSpan_t881159249 )); return; } } extern "C" void Enumerator__ctor_m3813920009_AdjustorThunk (RuntimeObject * __this, List_1_t2353233991 * ___list0, const RuntimeMethod* method) { Enumerator_t4242477868 * _thisAdjusted = reinterpret_cast<Enumerator_t4242477868 *>(__this + 1); Enumerator__ctor_m3813920009(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1433828346_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1433828346_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4242477868 * _thisAdjusted = reinterpret_cast<Enumerator_t4242477868 *>(__this + 1); Enumerator_Dispose_m1433828346(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1040687014_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { List_1_t2353233991 * V_0 = NULL; { List_1_t2353233991 * L_0 = (List_1_t2353233991 *)__this->get_list_0(); V_0 = (List_1_t2353233991 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t2353233991 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t2353233991 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t2353233991 * L_7 = V_0; NullCheck(L_7); TimeSpanU5BU5D_t4291357516* L_8 = (TimeSpanU5BU5D_t4291357516*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; TimeSpan_t881159249 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2054936041((Enumerator_t4242477868 *)(Enumerator_t4242477868 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1040687014_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4242477868 * _thisAdjusted = reinterpret_cast<Enumerator_t4242477868 *>(__this + 1); return Enumerator_MoveNext_m1040687014(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2054936041_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2353233991 * L_1 = (List_1_t2353233991 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t2353233991 * L_3 = (List_1_t2353233991 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); TimeSpan_t881159249 * L_5 = (TimeSpan_t881159249 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(TimeSpan_t881159249 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2054936041_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4242477868 * _thisAdjusted = reinterpret_cast<Enumerator_t4242477868 *>(__this + 1); return Enumerator_MoveNextRare_m2054936041(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::get_Current() extern "C" IL2CPP_METHOD_ATTR TimeSpan_t881159249 Enumerator_get_Current_m3187927150_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { { TimeSpan_t881159249 L_0 = (TimeSpan_t881159249 )__this->get_current_3(); return L_0; } } extern "C" TimeSpan_t881159249 Enumerator_get_Current_m3187927150_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4242477868 * _thisAdjusted = reinterpret_cast<Enumerator_t4242477868 *>(__this + 1); return Enumerator_get_Current_m3187927150(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m843419409_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t2353233991 * L_2 = (List_1_t2353233991 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { TimeSpan_t881159249 L_4 = Enumerator_get_Current_m3187927150((Enumerator_t4242477868 *)(Enumerator_t4242477868 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); TimeSpan_t881159249 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m843419409_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4242477868 * _thisAdjusted = reinterpret_cast<Enumerator_t4242477868 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m843419409(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.TimeSpan>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1473965589_gshared (Enumerator_t4242477868 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2353233991 * L_1 = (List_1_t2353233991 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); TimeSpan_t881159249 * L_3 = (TimeSpan_t881159249 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(TimeSpan_t881159249 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1473965589_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t4242477868 * _thisAdjusted = reinterpret_cast<Enumerator_t4242477868 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m1473965589(_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.Collections.Generic.List`1/Enumerator<System.UInt16>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3545203873_gshared (Enumerator_t1244076281 * __this, List_1_t3649799700 * ___list0, const RuntimeMethod* method) { { List_1_t3649799700 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t3649799700 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); uint16_t* L_3 = (uint16_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(uint16_t)); return; } } extern "C" void Enumerator__ctor_m3545203873_AdjustorThunk (RuntimeObject * __this, List_1_t3649799700 * ___list0, const RuntimeMethod* method) { Enumerator_t1244076281 * _thisAdjusted = reinterpret_cast<Enumerator_t1244076281 *>(__this + 1); Enumerator__ctor_m3545203873(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt16>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1708583765_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1708583765_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1244076281 * _thisAdjusted = reinterpret_cast<Enumerator_t1244076281 *>(__this + 1); Enumerator_Dispose_m1708583765(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt16>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2784653748_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { List_1_t3649799700 * V_0 = NULL; { List_1_t3649799700 * L_0 = (List_1_t3649799700 *)__this->get_list_0(); V_0 = (List_1_t3649799700 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t3649799700 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t3649799700 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t3649799700 * L_7 = V_0; NullCheck(L_7); UInt16U5BU5D_t3326319531* L_8 = (UInt16U5BU5D_t3326319531*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; uint16_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2356633608((Enumerator_t1244076281 *)(Enumerator_t1244076281 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2784653748_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1244076281 * _thisAdjusted = reinterpret_cast<Enumerator_t1244076281 *>(__this + 1); return Enumerator_MoveNext_m2784653748(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt16>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2356633608_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3649799700 * L_1 = (List_1_t3649799700 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t3649799700 * L_3 = (List_1_t3649799700 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); uint16_t* L_5 = (uint16_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(uint16_t)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2356633608_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1244076281 * _thisAdjusted = reinterpret_cast<Enumerator_t1244076281 *>(__this + 1); return Enumerator_MoveNextRare_m2356633608(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.UInt16>::get_Current() extern "C" IL2CPP_METHOD_ATTR uint16_t Enumerator_get_Current_m1796245645_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { { uint16_t L_0 = (uint16_t)__this->get_current_3(); return L_0; } } extern "C" uint16_t Enumerator_get_Current_m1796245645_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1244076281 * _thisAdjusted = reinterpret_cast<Enumerator_t1244076281 *>(__this + 1); return Enumerator_get_Current_m1796245645(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.UInt16>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1918550569_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t3649799700 * L_2 = (List_1_t3649799700 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { uint16_t L_4 = Enumerator_get_Current_m1796245645((Enumerator_t1244076281 *)(Enumerator_t1244076281 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); uint16_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1918550569_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1244076281 * _thisAdjusted = reinterpret_cast<Enumerator_t1244076281 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1918550569(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt16>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1309703967_gshared (Enumerator_t1244076281 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3649799700 * L_1 = (List_1_t3649799700 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); uint16_t* L_3 = (uint16_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(uint16_t)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m1309703967_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1244076281 * _thisAdjusted = reinterpret_cast<Enumerator_t1244076281 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m1309703967(_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.Collections.Generic.List`1/Enumerator<System.UInt32>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m387368542_gshared (Enumerator_t1626413301 * __this, List_1_t4032136720 * ___list0, const RuntimeMethod* method) { { List_1_t4032136720 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t4032136720 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); uint32_t* L_3 = (uint32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(uint32_t)); return; } } extern "C" void Enumerator__ctor_m387368542_AdjustorThunk (RuntimeObject * __this, List_1_t4032136720 * ___list0, const RuntimeMethod* method) { Enumerator_t1626413301 * _thisAdjusted = reinterpret_cast<Enumerator_t1626413301 *>(__this + 1); Enumerator__ctor_m387368542(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt32>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2633022274_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2633022274_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1626413301 * _thisAdjusted = reinterpret_cast<Enumerator_t1626413301 *>(__this + 1); Enumerator_Dispose_m2633022274(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt32>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2507767888_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { List_1_t4032136720 * V_0 = NULL; { List_1_t4032136720 * L_0 = (List_1_t4032136720 *)__this->get_list_0(); V_0 = (List_1_t4032136720 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t4032136720 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t4032136720 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t4032136720 * L_7 = V_0; NullCheck(L_7); UInt32U5BU5D_t2770800703* L_8 = (UInt32U5BU5D_t2770800703*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; uint32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1813529066((Enumerator_t1626413301 *)(Enumerator_t1626413301 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2507767888_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1626413301 * _thisAdjusted = reinterpret_cast<Enumerator_t1626413301 *>(__this + 1); return Enumerator_MoveNext_m2507767888(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt32>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1813529066_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4032136720 * L_1 = (List_1_t4032136720 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t4032136720 * L_3 = (List_1_t4032136720 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); uint32_t* L_5 = (uint32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(uint32_t)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1813529066_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1626413301 * _thisAdjusted = reinterpret_cast<Enumerator_t1626413301 *>(__this + 1); return Enumerator_MoveNextRare_m1813529066(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.UInt32>::get_Current() extern "C" IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m4017011339_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_current_3(); return L_0; } } extern "C" uint32_t Enumerator_get_Current_m4017011339_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1626413301 * _thisAdjusted = reinterpret_cast<Enumerator_t1626413301 *>(__this + 1); return Enumerator_get_Current_m4017011339(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.UInt32>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2555577014_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t4032136720 * L_2 = (List_1_t4032136720 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { uint32_t L_4 = Enumerator_get_Current_m4017011339((Enumerator_t1626413301 *)(Enumerator_t1626413301 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); uint32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2555577014_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1626413301 * _thisAdjusted = reinterpret_cast<Enumerator_t1626413301 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2555577014(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt32>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m408884937_gshared (Enumerator_t1626413301 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4032136720 * L_1 = (List_1_t4032136720 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); uint32_t* L_3 = (uint32_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(uint32_t)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m408884937_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1626413301 * _thisAdjusted = reinterpret_cast<Enumerator_t1626413301 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m408884937(_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.Collections.Generic.List`1/Enumerator<System.UInt64>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1300801339_gshared (Enumerator_t3200391415 * __this, List_1_t1311147538 * ___list0, const RuntimeMethod* method) { { List_1_t1311147538 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1311147538 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); uint64_t* L_3 = (uint64_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(uint64_t)); return; } } extern "C" void Enumerator__ctor_m1300801339_AdjustorThunk (RuntimeObject * __this, List_1_t1311147538 * ___list0, const RuntimeMethod* method) { Enumerator_t3200391415 * _thisAdjusted = reinterpret_cast<Enumerator_t3200391415 *>(__this + 1); Enumerator__ctor_m1300801339(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1751241548_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1751241548_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3200391415 * _thisAdjusted = reinterpret_cast<Enumerator_t3200391415 *>(__this + 1); Enumerator_Dispose_m1751241548(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt64>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2923158868_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { List_1_t1311147538 * V_0 = NULL; { List_1_t1311147538 * L_0 = (List_1_t1311147538 *)__this->get_list_0(); V_0 = (List_1_t1311147538 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1311147538 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1311147538 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1311147538 * L_7 = V_0; NullCheck(L_7); UInt64U5BU5D_t1659327989* L_8 = (UInt64U5BU5D_t1659327989*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; uint64_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2351054707((Enumerator_t3200391415 *)(Enumerator_t3200391415 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2923158868_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3200391415 * _thisAdjusted = reinterpret_cast<Enumerator_t3200391415 *>(__this + 1); return Enumerator_MoveNext_m2923158868(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt64>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2351054707_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1311147538 * L_1 = (List_1_t1311147538 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1311147538 * L_3 = (List_1_t1311147538 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); uint64_t* L_5 = (uint64_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(uint64_t)); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2351054707_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3200391415 * _thisAdjusted = reinterpret_cast<Enumerator_t3200391415 *>(__this + 1); return Enumerator_MoveNextRare_m2351054707(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.UInt64>::get_Current() extern "C" IL2CPP_METHOD_ATTR uint64_t Enumerator_get_Current_m390703204_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { { uint64_t L_0 = (uint64_t)__this->get_current_3(); return L_0; } } extern "C" uint64_t Enumerator_get_Current_m390703204_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3200391415 * _thisAdjusted = reinterpret_cast<Enumerator_t3200391415 *>(__this + 1); return Enumerator_get_Current_m390703204(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.UInt64>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3660148336_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1311147538 * L_2 = (List_1_t1311147538 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { uint64_t L_4 = Enumerator_get_Current_m390703204((Enumerator_t3200391415 *)(Enumerator_t3200391415 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); uint64_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3660148336_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3200391415 * _thisAdjusted = reinterpret_cast<Enumerator_t3200391415 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3660148336(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m439305236_gshared (Enumerator_t3200391415 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1311147538 * L_1 = (List_1_t1311147538 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); uint64_t* L_3 = (uint64_t*)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(uint64_t)); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m439305236_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3200391415 * _thisAdjusted = reinterpret_cast<Enumerator_t3200391415 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m439305236(_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.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2777927842_gshared (Enumerator_t3951287555 * __this, List_1_t2062043678 * ___list0, const RuntimeMethod* method) { { List_1_t2062043678 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t2062043678 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); RangePositionInfo_t589968936 * L_3 = (RangePositionInfo_t589968936 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(RangePositionInfo_t589968936 )); return; } } extern "C" void Enumerator__ctor_m2777927842_AdjustorThunk (RuntimeObject * __this, List_1_t2062043678 * ___list0, const RuntimeMethod* method) { Enumerator_t3951287555 * _thisAdjusted = reinterpret_cast<Enumerator_t3951287555 *>(__this + 1); Enumerator__ctor_m2777927842(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1986934951_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m1986934951_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3951287555 * _thisAdjusted = reinterpret_cast<Enumerator_t3951287555 *>(__this + 1); Enumerator_Dispose_m1986934951(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m114631604_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { List_1_t2062043678 * V_0 = NULL; { List_1_t2062043678 * L_0 = (List_1_t2062043678 *)__this->get_list_0(); V_0 = (List_1_t2062043678 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t2062043678 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t2062043678 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t2062043678 * L_7 = V_0; NullCheck(L_7); RangePositionInfoU5BU5D_t242328633* L_8 = (RangePositionInfoU5BU5D_t242328633*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; RangePositionInfo_t589968936 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m4222641326((Enumerator_t3951287555 *)(Enumerator_t3951287555 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m114631604_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3951287555 * _thisAdjusted = reinterpret_cast<Enumerator_t3951287555 *>(__this + 1); return Enumerator_MoveNext_m114631604(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4222641326_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2062043678 * L_1 = (List_1_t2062043678 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t2062043678 * L_3 = (List_1_t2062043678 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); RangePositionInfo_t589968936 * L_5 = (RangePositionInfo_t589968936 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(RangePositionInfo_t589968936 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m4222641326_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3951287555 * _thisAdjusted = reinterpret_cast<Enumerator_t3951287555 *>(__this + 1); return Enumerator_MoveNextRare_m4222641326(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::get_Current() extern "C" IL2CPP_METHOD_ATTR RangePositionInfo_t589968936 Enumerator_get_Current_m2883538525_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { { RangePositionInfo_t589968936 L_0 = (RangePositionInfo_t589968936 )__this->get_current_3(); return L_0; } } extern "C" RangePositionInfo_t589968936 Enumerator_get_Current_m2883538525_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3951287555 * _thisAdjusted = reinterpret_cast<Enumerator_t3951287555 *>(__this + 1); return Enumerator_get_Current_m2883538525(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3425090230_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t2062043678 * L_2 = (List_1_t2062043678 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { RangePositionInfo_t589968936 L_4 = Enumerator_get_Current_m2883538525((Enumerator_t3951287555 *)(Enumerator_t3951287555 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); RangePositionInfo_t589968936 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3425090230_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3951287555 * _thisAdjusted = reinterpret_cast<Enumerator_t3951287555 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3425090230(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.RangePositionInfo>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2460063187_gshared (Enumerator_t3951287555 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t2062043678 * L_1 = (List_1_t2062043678 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); RangePositionInfo_t589968936 * L_3 = (RangePositionInfo_t589968936 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(RangePositionInfo_t589968936 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2460063187_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3951287555 * _thisAdjusted = reinterpret_cast<Enumerator_t3951287555 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2460063187(_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.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m230384598_gshared (Enumerator_t2411028294 * __this, List_1_t521784417 * ___list0, const RuntimeMethod* method) { { List_1_t521784417 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t521784417 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); XmlSchemaObjectEntry_t3344676971 * L_3 = (XmlSchemaObjectEntry_t3344676971 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(XmlSchemaObjectEntry_t3344676971 )); return; } } extern "C" void Enumerator__ctor_m230384598_AdjustorThunk (RuntimeObject * __this, List_1_t521784417 * ___list0, const RuntimeMethod* method) { Enumerator_t2411028294 * _thisAdjusted = reinterpret_cast<Enumerator_t2411028294 *>(__this + 1); Enumerator__ctor_m230384598(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m38496378_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m38496378_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2411028294 * _thisAdjusted = reinterpret_cast<Enumerator_t2411028294 *>(__this + 1); Enumerator_Dispose_m38496378(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m560796504_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { List_1_t521784417 * V_0 = NULL; { List_1_t521784417 * L_0 = (List_1_t521784417 *)__this->get_list_0(); V_0 = (List_1_t521784417 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t521784417 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t521784417 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t521784417 * L_7 = V_0; NullCheck(L_7); XmlSchemaObjectEntryU5BU5D_t1655208330* L_8 = (XmlSchemaObjectEntryU5BU5D_t1655208330*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; XmlSchemaObjectEntry_t3344676971 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m3991867153((Enumerator_t2411028294 *)(Enumerator_t2411028294 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m560796504_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2411028294 * _thisAdjusted = reinterpret_cast<Enumerator_t2411028294 *>(__this + 1); return Enumerator_MoveNext_m560796504(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3991867153_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t521784417 * L_1 = (List_1_t521784417 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t521784417 * L_3 = (List_1_t521784417 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); XmlSchemaObjectEntry_t3344676971 * L_5 = (XmlSchemaObjectEntry_t3344676971 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(XmlSchemaObjectEntry_t3344676971 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m3991867153_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2411028294 * _thisAdjusted = reinterpret_cast<Enumerator_t2411028294 *>(__this + 1); return Enumerator_MoveNextRare_m3991867153(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::get_Current() extern "C" IL2CPP_METHOD_ATTR XmlSchemaObjectEntry_t3344676971 Enumerator_get_Current_m4185603630_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { { XmlSchemaObjectEntry_t3344676971 L_0 = (XmlSchemaObjectEntry_t3344676971 )__this->get_current_3(); return L_0; } } extern "C" XmlSchemaObjectEntry_t3344676971 Enumerator_get_Current_m4185603630_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2411028294 * _thisAdjusted = reinterpret_cast<Enumerator_t2411028294 *>(__this + 1); return Enumerator_get_Current_m4185603630(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m441102969_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t521784417 * L_2 = (List_1_t521784417 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { XmlSchemaObjectEntry_t3344676971 L_4 = Enumerator_get_Current_m4185603630((Enumerator_t2411028294 *)(Enumerator_t2411028294 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); XmlSchemaObjectEntry_t3344676971 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m441102969_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2411028294 * _thisAdjusted = reinterpret_cast<Enumerator_t2411028294 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m441102969(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3806771805_gshared (Enumerator_t2411028294 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t521784417 * L_1 = (List_1_t521784417 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); XmlSchemaObjectEntry_t3344676971 * L_3 = (XmlSchemaObjectEntry_t3344676971 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(XmlSchemaObjectEntry_t3344676971 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3806771805_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2411028294 * _thisAdjusted = reinterpret_cast<Enumerator_t2411028294 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3806771805(_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.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m504791950_gshared (Enumerator_t652329154 * __this, List_1_t3058052573 * ___list0, const RuntimeMethod* method) { { List_1_t3058052573 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t3058052573 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); OrderBlock_t1585977831 * L_3 = (OrderBlock_t1585977831 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(OrderBlock_t1585977831 )); return; } } extern "C" void Enumerator__ctor_m504791950_AdjustorThunk (RuntimeObject * __this, List_1_t3058052573 * ___list0, const RuntimeMethod* method) { Enumerator_t652329154 * _thisAdjusted = reinterpret_cast<Enumerator_t652329154 *>(__this + 1); Enumerator__ctor_m504791950(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m786980821_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m786980821_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t652329154 * _thisAdjusted = reinterpret_cast<Enumerator_t652329154 *>(__this + 1); Enumerator_Dispose_m786980821(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1177880931_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method) { List_1_t3058052573 * V_0 = NULL; { List_1_t3058052573 * L_0 = (List_1_t3058052573 *)__this->get_list_0(); V_0 = (List_1_t3058052573 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t3058052573 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t3058052573 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t3058052573 * L_7 = V_0; NullCheck(L_7); OrderBlockU5BU5D_t2389202590* L_8 = (OrderBlockU5BU5D_t2389202590*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; OrderBlock_t1585977831 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1820229297((Enumerator_t652329154 *)(Enumerator_t652329154 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1177880931_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t652329154 * _thisAdjusted = reinterpret_cast<Enumerator_t652329154 *>(__this + 1); return Enumerator_MoveNext_m1177880931(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1820229297_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3058052573 * L_1 = (List_1_t3058052573 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t3058052573 * L_3 = (List_1_t3058052573 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); OrderBlock_t1585977831 * L_5 = (OrderBlock_t1585977831 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(OrderBlock_t1585977831 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1820229297_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t652329154 * _thisAdjusted = reinterpret_cast<Enumerator_t652329154 *>(__this + 1); return Enumerator_MoveNextRare_m1820229297(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() extern "C" IL2CPP_METHOD_ATTR OrderBlock_t1585977831 Enumerator_get_Current_m2468920150_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method) { { OrderBlock_t1585977831 L_0 = (OrderBlock_t1585977831 )__this->get_current_3(); return L_0; } } extern "C" OrderBlock_t1585977831 Enumerator_get_Current_m2468920150_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t652329154 * _thisAdjusted = reinterpret_cast<Enumerator_t652329154 *>(__this + 1); return Enumerator_get_Current_m2468920150(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m713684915_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t3058052573 * L_2 = (List_1_t3058052573 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { OrderBlock_t1585977831 L_4 = Enumerator_get_Current_m2468920150((Enumerator_t652329154 *)(Enumerator_t652329154 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); OrderBlock_t1585977831 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m713684915_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t652329154 * _thisAdjusted = reinterpret_cast<Enumerator_t652329154 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m713684915(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m144072597_gshared (Enumerator_t652329154 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3058052573 * L_1 = (List_1_t3058052573 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); OrderBlock_t1585977831 * L_3 = (OrderBlock_t1585977831 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(OrderBlock_t1585977831 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m144072597_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t652329154 * _thisAdjusted = reinterpret_cast<Enumerator_t652329154 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m144072597(_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.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m40451936_gshared (Enumerator_t1666852615 * __this, List_1_t4072576034 * ___list0, const RuntimeMethod* method) { { List_1_t4072576034 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t4072576034 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); Color32_t2600501292 * L_3 = (Color32_t2600501292 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Color32_t2600501292 )); return; } } extern "C" void Enumerator__ctor_m40451936_AdjustorThunk (RuntimeObject * __this, List_1_t4072576034 * ___list0, const RuntimeMethod* method) { Enumerator_t1666852615 * _thisAdjusted = reinterpret_cast<Enumerator_t1666852615 *>(__this + 1); Enumerator__ctor_m40451936(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m951715887_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m951715887_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1666852615 * _thisAdjusted = reinterpret_cast<Enumerator_t1666852615 *>(__this + 1); Enumerator_Dispose_m951715887(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2407049913_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { List_1_t4072576034 * V_0 = NULL; { List_1_t4072576034 * L_0 = (List_1_t4072576034 *)__this->get_list_0(); V_0 = (List_1_t4072576034 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t4072576034 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t4072576034 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t4072576034 * L_7 = V_0; NullCheck(L_7); Color32U5BU5D_t3850468773* L_8 = (Color32U5BU5D_t3850468773*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; Color32_t2600501292 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m3401010412((Enumerator_t1666852615 *)(Enumerator_t1666852615 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2407049913_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1666852615 * _thisAdjusted = reinterpret_cast<Enumerator_t1666852615 *>(__this + 1); return Enumerator_MoveNext_m2407049913(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3401010412_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4072576034 * L_1 = (List_1_t4072576034 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t4072576034 * L_3 = (List_1_t4072576034 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); Color32_t2600501292 * L_5 = (Color32_t2600501292 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(Color32_t2600501292 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m3401010412_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1666852615 * _thisAdjusted = reinterpret_cast<Enumerator_t1666852615 *>(__this + 1); return Enumerator_MoveNextRare_m3401010412(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::get_Current() extern "C" IL2CPP_METHOD_ATTR Color32_t2600501292 Enumerator_get_Current_m2808660251_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { { Color32_t2600501292 L_0 = (Color32_t2600501292 )__this->get_current_3(); return L_0; } } extern "C" Color32_t2600501292 Enumerator_get_Current_m2808660251_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1666852615 * _thisAdjusted = reinterpret_cast<Enumerator_t1666852615 *>(__this + 1); return Enumerator_get_Current_m2808660251(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2339378585_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t4072576034 * L_2 = (List_1_t4072576034 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { Color32_t2600501292 L_4 = Enumerator_get_Current_m2808660251((Enumerator_t1666852615 *)(Enumerator_t1666852615 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); Color32_t2600501292 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2339378585_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1666852615 * _thisAdjusted = reinterpret_cast<Enumerator_t1666852615 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2339378585(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m361915779_gshared (Enumerator_t1666852615 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4072576034 * L_1 = (List_1_t4072576034 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); Color32_t2600501292 * L_3 = (Color32_t2600501292 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Color32_t2600501292 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m361915779_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1666852615 * _thisAdjusted = reinterpret_cast<Enumerator_t1666852615 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m361915779(_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.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m145149276_gshared (Enumerator_t1622037647 * __this, List_1_t4027761066 * ___list0, const RuntimeMethod* method) { { List_1_t4027761066 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t4027761066 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); Color_t2555686324 * L_3 = (Color_t2555686324 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Color_t2555686324 )); return; } } extern "C" void Enumerator__ctor_m145149276_AdjustorThunk (RuntimeObject * __this, List_1_t4027761066 * ___list0, const RuntimeMethod* method) { Enumerator_t1622037647 * _thisAdjusted = reinterpret_cast<Enumerator_t1622037647 *>(__this + 1); Enumerator__ctor_m145149276(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3373245193_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3373245193_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1622037647 * _thisAdjusted = reinterpret_cast<Enumerator_t1622037647 *>(__this + 1); Enumerator_Dispose_m3373245193(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2916575364_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { List_1_t4027761066 * V_0 = NULL; { List_1_t4027761066 * L_0 = (List_1_t4027761066 *)__this->get_list_0(); V_0 = (List_1_t4027761066 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t4027761066 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t4027761066 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t4027761066 * L_7 = V_0; NullCheck(L_7); ColorU5BU5D_t941916413* L_8 = (ColorU5BU5D_t941916413*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; Color_t2555686324 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1185429068((Enumerator_t1622037647 *)(Enumerator_t1622037647 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2916575364_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1622037647 * _thisAdjusted = reinterpret_cast<Enumerator_t1622037647 *>(__this + 1); return Enumerator_MoveNext_m2916575364(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1185429068_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4027761066 * L_1 = (List_1_t4027761066 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t4027761066 * L_3 = (List_1_t4027761066 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); Color_t2555686324 * L_5 = (Color_t2555686324 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(Color_t2555686324 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1185429068_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1622037647 * _thisAdjusted = reinterpret_cast<Enumerator_t1622037647 *>(__this + 1); return Enumerator_MoveNextRare_m1185429068(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::get_Current() extern "C" IL2CPP_METHOD_ATTR Color_t2555686324 Enumerator_get_Current_m3890687419_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { { Color_t2555686324 L_0 = (Color_t2555686324 )__this->get_current_3(); return L_0; } } extern "C" Color_t2555686324 Enumerator_get_Current_m3890687419_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1622037647 * _thisAdjusted = reinterpret_cast<Enumerator_t1622037647 *>(__this + 1); return Enumerator_get_Current_m3890687419(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3498516727_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t4027761066 * L_2 = (List_1_t4027761066 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { Color_t2555686324 L_4 = Enumerator_get_Current_m3890687419((Enumerator_t1622037647 *)(Enumerator_t1622037647 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); Color_t2555686324 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3498516727_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1622037647 * _thisAdjusted = reinterpret_cast<Enumerator_t1622037647 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3498516727(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m685208550_gshared (Enumerator_t1622037647 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t4027761066 * L_1 = (List_1_t4027761066 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); Color_t2555686324 * L_3 = (Color_t2555686324 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Color_t2555686324 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m685208550_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1622037647 * _thisAdjusted = reinterpret_cast<Enumerator_t1622037647 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m685208550(_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.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m378707842_gshared (Enumerator_t2426658172 * __this, List_1_t537414295 * ___list0, const RuntimeMethod* method) { { List_1_t537414295 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t537414295 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); RaycastResult_t3360306849 * L_3 = (RaycastResult_t3360306849 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(RaycastResult_t3360306849 )); return; } } extern "C" void Enumerator__ctor_m378707842_AdjustorThunk (RuntimeObject * __this, List_1_t537414295 * ___list0, const RuntimeMethod* method) { Enumerator_t2426658172 * _thisAdjusted = reinterpret_cast<Enumerator_t2426658172 *>(__this + 1); Enumerator__ctor_m378707842(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2531396701_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2531396701_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2426658172 * _thisAdjusted = reinterpret_cast<Enumerator_t2426658172 *>(__this + 1); Enumerator_Dispose_m2531396701(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1562562514_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { List_1_t537414295 * V_0 = NULL; { List_1_t537414295 * L_0 = (List_1_t537414295 *)__this->get_list_0(); V_0 = (List_1_t537414295 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t537414295 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t537414295 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t537414295 * L_7 = V_0; NullCheck(L_7); RaycastResultU5BU5D_t1128832444* L_8 = (RaycastResultU5BU5D_t1128832444*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; RaycastResult_t3360306849 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m642466636((Enumerator_t2426658172 *)(Enumerator_t2426658172 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1562562514_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2426658172 * _thisAdjusted = reinterpret_cast<Enumerator_t2426658172 *>(__this + 1); return Enumerator_MoveNext_m1562562514(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m642466636_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t537414295 * L_1 = (List_1_t537414295 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t537414295 * L_3 = (List_1_t537414295 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); RaycastResult_t3360306849 * L_5 = (RaycastResult_t3360306849 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(RaycastResult_t3360306849 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m642466636_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2426658172 * _thisAdjusted = reinterpret_cast<Enumerator_t2426658172 *>(__this + 1); return Enumerator_MoveNextRare_m642466636(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::get_Current() extern "C" IL2CPP_METHOD_ATTR RaycastResult_t3360306849 Enumerator_get_Current_m530189328_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { { RaycastResult_t3360306849 L_0 = (RaycastResult_t3360306849 )__this->get_current_3(); return L_0; } } extern "C" RaycastResult_t3360306849 Enumerator_get_Current_m530189328_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2426658172 * _thisAdjusted = reinterpret_cast<Enumerator_t2426658172 *>(__this + 1); return Enumerator_get_Current_m530189328(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3405349194_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t537414295 * L_2 = (List_1_t537414295 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { RaycastResult_t3360306849 L_4 = Enumerator_get_Current_m530189328((Enumerator_t2426658172 *)(Enumerator_t2426658172 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); RaycastResult_t3360306849 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3405349194_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2426658172 * _thisAdjusted = reinterpret_cast<Enumerator_t2426658172 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3405349194(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3057416204_gshared (Enumerator_t2426658172 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t537414295 * L_1 = (List_1_t537414295 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); RaycastResult_t3360306849 * L_3 = (RaycastResult_t3360306849 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(RaycastResult_t3360306849 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3057416204_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2426658172 * _thisAdjusted = reinterpret_cast<Enumerator_t2426658172 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3057416204(_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.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3395048702_gshared (Enumerator_t2852202816 * __this, List_1_t962958939 * ___list0, const RuntimeMethod* method) { { List_1_t962958939 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t962958939 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); Ray_t3785851493 * L_3 = (Ray_t3785851493 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Ray_t3785851493 )); return; } } extern "C" void Enumerator__ctor_m3395048702_AdjustorThunk (RuntimeObject * __this, List_1_t962958939 * ___list0, const RuntimeMethod* method) { Enumerator_t2852202816 * _thisAdjusted = reinterpret_cast<Enumerator_t2852202816 *>(__this + 1); Enumerator__ctor_m3395048702(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2723595929_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2723595929_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2852202816 * _thisAdjusted = reinterpret_cast<Enumerator_t2852202816 *>(__this + 1); Enumerator_Dispose_m2723595929(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1697727539_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { List_1_t962958939 * V_0 = NULL; { List_1_t962958939 * L_0 = (List_1_t962958939 *)__this->get_list_0(); V_0 = (List_1_t962958939 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t962958939 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t962958939 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t962958939 * L_7 = V_0; NullCheck(L_7); RayU5BU5D_t1836217960* L_8 = (RayU5BU5D_t1836217960*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; Ray_t3785851493 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2339712370((Enumerator_t2852202816 *)(Enumerator_t2852202816 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1697727539_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2852202816 * _thisAdjusted = reinterpret_cast<Enumerator_t2852202816 *>(__this + 1); return Enumerator_MoveNext_m1697727539(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2339712370_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t962958939 * L_1 = (List_1_t962958939 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t962958939 * L_3 = (List_1_t962958939 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); Ray_t3785851493 * L_5 = (Ray_t3785851493 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(Ray_t3785851493 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2339712370_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2852202816 * _thisAdjusted = reinterpret_cast<Enumerator_t2852202816 *>(__this + 1); return Enumerator_MoveNextRare_m2339712370(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::get_Current() extern "C" IL2CPP_METHOD_ATTR Ray_t3785851493 Enumerator_get_Current_m1622353285_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { { Ray_t3785851493 L_0 = (Ray_t3785851493 )__this->get_current_3(); return L_0; } } extern "C" Ray_t3785851493 Enumerator_get_Current_m1622353285_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2852202816 * _thisAdjusted = reinterpret_cast<Enumerator_t2852202816 *>(__this + 1); return Enumerator_get_Current_m1622353285(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2446099888_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t962958939 * L_2 = (List_1_t962958939 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { Ray_t3785851493 L_4 = Enumerator_get_Current_m1622353285((Enumerator_t2852202816 *)(Enumerator_t2852202816 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); Ray_t3785851493 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2446099888_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2852202816 * _thisAdjusted = reinterpret_cast<Enumerator_t2852202816 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2446099888(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m226384956_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t962958939 * L_1 = (List_1_t962958939 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); Ray_t3785851493 * L_3 = (Ray_t3785851493 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Ray_t3785851493 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m226384956_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2852202816 * _thisAdjusted = reinterpret_cast<Enumerator_t2852202816 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m226384956(_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.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3431458266_gshared (Enumerator_t3436819725 * __this, List_1_t1547575848 * ___list0, const RuntimeMethod* method) { { List_1_t1547575848 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1547575848 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); UICharInfo_t75501106 * L_3 = (UICharInfo_t75501106 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(UICharInfo_t75501106 )); return; } } extern "C" void Enumerator__ctor_m3431458266_AdjustorThunk (RuntimeObject * __this, List_1_t1547575848 * ___list0, const RuntimeMethod* method) { Enumerator_t3436819725 * _thisAdjusted = reinterpret_cast<Enumerator_t3436819725 *>(__this + 1); Enumerator__ctor_m3431458266(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2173500881_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2173500881_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3436819725 * _thisAdjusted = reinterpret_cast<Enumerator_t3436819725 *>(__this + 1); Enumerator_Dispose_m2173500881(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4018122760_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { List_1_t1547575848 * V_0 = NULL; { List_1_t1547575848 * L_0 = (List_1_t1547575848 *)__this->get_list_0(); V_0 = (List_1_t1547575848 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1547575848 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1547575848 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1547575848 * L_7 = V_0; NullCheck(L_7); UICharInfoU5BU5D_t928762055* L_8 = (UICharInfoU5BU5D_t928762055*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; UICharInfo_t75501106 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1486703814((Enumerator_t3436819725 *)(Enumerator_t3436819725 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m4018122760_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3436819725 * _thisAdjusted = reinterpret_cast<Enumerator_t3436819725 *>(__this + 1); return Enumerator_MoveNext_m4018122760(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1486703814_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1547575848 * L_1 = (List_1_t1547575848 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1547575848 * L_3 = (List_1_t1547575848 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); UICharInfo_t75501106 * L_5 = (UICharInfo_t75501106 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(UICharInfo_t75501106 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1486703814_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3436819725 * _thisAdjusted = reinterpret_cast<Enumerator_t3436819725 *>(__this + 1); return Enumerator_MoveNextRare_m1486703814(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::get_Current() extern "C" IL2CPP_METHOD_ATTR UICharInfo_t75501106 Enumerator_get_Current_m535320420_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { { UICharInfo_t75501106 L_0 = (UICharInfo_t75501106 )__this->get_current_3(); return L_0; } } extern "C" UICharInfo_t75501106 Enumerator_get_Current_m535320420_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3436819725 * _thisAdjusted = reinterpret_cast<Enumerator_t3436819725 *>(__this + 1); return Enumerator_get_Current_m535320420(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1643543708_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1547575848 * L_2 = (List_1_t1547575848 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { UICharInfo_t75501106 L_4 = Enumerator_get_Current_m535320420((Enumerator_t3436819725 *)(Enumerator_t3436819725 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); UICharInfo_t75501106 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1643543708_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3436819725 * _thisAdjusted = reinterpret_cast<Enumerator_t3436819725 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1643543708(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2915500989_gshared (Enumerator_t3436819725 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1547575848 * L_1 = (List_1_t1547575848 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); UICharInfo_t75501106 * L_3 = (UICharInfo_t75501106 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(UICharInfo_t75501106 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2915500989_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3436819725 * _thisAdjusted = reinterpret_cast<Enumerator_t3436819725 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2915500989(_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.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3300941814_gshared (Enumerator_t3261618133 * __this, List_1_t1372374256 * ___list0, const RuntimeMethod* method) { { List_1_t1372374256 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1372374256 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); UILineInfo_t4195266810 * L_3 = (UILineInfo_t4195266810 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(UILineInfo_t4195266810 )); return; } } extern "C" void Enumerator__ctor_m3300941814_AdjustorThunk (RuntimeObject * __this, List_1_t1372374256 * ___list0, const RuntimeMethod* method) { Enumerator_t3261618133 * _thisAdjusted = reinterpret_cast<Enumerator_t3261618133 *>(__this + 1); Enumerator__ctor_m3300941814(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3432036959_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m3432036959_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3261618133 * _thisAdjusted = reinterpret_cast<Enumerator_t3261618133 *>(__this + 1); Enumerator_Dispose_m3432036959(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1446151600_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { List_1_t1372374256 * V_0 = NULL; { List_1_t1372374256 * L_0 = (List_1_t1372374256 *)__this->get_list_0(); V_0 = (List_1_t1372374256 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1372374256 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1372374256 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1372374256 * L_7 = V_0; NullCheck(L_7); UILineInfoU5BU5D_t1655937503* L_8 = (UILineInfoU5BU5D_t1655937503*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; UILineInfo_t4195266810 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m4217249474((Enumerator_t3261618133 *)(Enumerator_t3261618133 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1446151600_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3261618133 * _thisAdjusted = reinterpret_cast<Enumerator_t3261618133 *>(__this + 1); return Enumerator_MoveNext_m1446151600(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4217249474_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1372374256 * L_1 = (List_1_t1372374256 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1372374256 * L_3 = (List_1_t1372374256 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); UILineInfo_t4195266810 * L_5 = (UILineInfo_t4195266810 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(UILineInfo_t4195266810 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m4217249474_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3261618133 * _thisAdjusted = reinterpret_cast<Enumerator_t3261618133 *>(__this + 1); return Enumerator_MoveNextRare_m4217249474(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::get_Current() extern "C" IL2CPP_METHOD_ATTR UILineInfo_t4195266810 Enumerator_get_Current_m3382684163_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { { UILineInfo_t4195266810 L_0 = (UILineInfo_t4195266810 )__this->get_current_3(); return L_0; } } extern "C" UILineInfo_t4195266810 Enumerator_get_Current_m3382684163_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3261618133 * _thisAdjusted = reinterpret_cast<Enumerator_t3261618133 *>(__this + 1); return Enumerator_get_Current_m3382684163(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2713159350_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1372374256 * L_2 = (List_1_t1372374256 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { UILineInfo_t4195266810 L_4 = Enumerator_get_Current_m3382684163((Enumerator_t3261618133 *)(Enumerator_t3261618133 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); UILineInfo_t4195266810 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2713159350_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3261618133 * _thisAdjusted = reinterpret_cast<Enumerator_t3261618133 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m2713159350(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2747590098_gshared (Enumerator_t3261618133 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1372374256 * L_1 = (List_1_t1372374256 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); UILineInfo_t4195266810 * L_3 = (UILineInfo_t4195266810 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(UILineInfo_t4195266810 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2747590098_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3261618133 * _thisAdjusted = reinterpret_cast<Enumerator_t3261618133 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2747590098(_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.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m2029608698_gshared (Enumerator_t3123848928 * __this, List_1_t1234605051 * ___list0, const RuntimeMethod* method) { { List_1_t1234605051 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t1234605051 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); UIVertex_t4057497605 * L_3 = (UIVertex_t4057497605 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(UIVertex_t4057497605 )); return; } } extern "C" void Enumerator__ctor_m2029608698_AdjustorThunk (RuntimeObject * __this, List_1_t1234605051 * ___list0, const RuntimeMethod* method) { Enumerator_t3123848928 * _thisAdjusted = reinterpret_cast<Enumerator_t3123848928 *>(__this + 1); Enumerator__ctor_m2029608698(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2498245804_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2498245804_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123848928 * _thisAdjusted = reinterpret_cast<Enumerator_t3123848928 *>(__this + 1); Enumerator_Dispose_m2498245804(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m29052175_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { List_1_t1234605051 * V_0 = NULL; { List_1_t1234605051 * L_0 = (List_1_t1234605051 *)__this->get_list_0(); V_0 = (List_1_t1234605051 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t1234605051 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t1234605051 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t1234605051 * L_7 = V_0; NullCheck(L_7); UIVertexU5BU5D_t1981460040* L_8 = (UIVertexU5BU5D_t1981460040*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; UIVertex_t4057497605 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m1917289061((Enumerator_t3123848928 *)(Enumerator_t3123848928 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m29052175_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123848928 * _thisAdjusted = reinterpret_cast<Enumerator_t3123848928 *>(__this + 1); return Enumerator_MoveNext_m29052175(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m1917289061_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1234605051 * L_1 = (List_1_t1234605051 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t1234605051 * L_3 = (List_1_t1234605051 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); UIVertex_t4057497605 * L_5 = (UIVertex_t4057497605 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(UIVertex_t4057497605 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m1917289061_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123848928 * _thisAdjusted = reinterpret_cast<Enumerator_t3123848928 *>(__this + 1); return Enumerator_MoveNextRare_m1917289061(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::get_Current() extern "C" IL2CPP_METHOD_ATTR UIVertex_t4057497605 Enumerator_get_Current_m2538493517_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { { UIVertex_t4057497605 L_0 = (UIVertex_t4057497605 )__this->get_current_3(); return L_0; } } extern "C" UIVertex_t4057497605 Enumerator_get_Current_m2538493517_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123848928 * _thisAdjusted = reinterpret_cast<Enumerator_t3123848928 *>(__this + 1); return Enumerator_get_Current_m2538493517(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3594024719_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t1234605051 * L_2 = (List_1_t1234605051 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { UIVertex_t4057497605 L_4 = Enumerator_get_Current_m2538493517((Enumerator_t3123848928 *)(Enumerator_t3123848928 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); UIVertex_t4057497605 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3594024719_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123848928 * _thisAdjusted = reinterpret_cast<Enumerator_t3123848928 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m3594024719(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2355925297_gshared (Enumerator_t3123848928 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t1234605051 * L_1 = (List_1_t1234605051 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); UIVertex_t4057497605 * L_3 = (UIVertex_t4057497605 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(UIVertex_t4057497605 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2355925297_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t3123848928 * _thisAdjusted = reinterpret_cast<Enumerator_t3123848928 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2355925297(_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.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3875432026_gshared (Enumerator_t1222580846 * __this, List_1_t3628304265 * ___list0, const RuntimeMethod* method) { { List_1_t3628304265 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t3628304265 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); Vector2_t2156229523 * L_3 = (Vector2_t2156229523 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Vector2_t2156229523 )); return; } } extern "C" void Enumerator__ctor_m3875432026_AdjustorThunk (RuntimeObject * __this, List_1_t3628304265 * ___list0, const RuntimeMethod* method) { Enumerator_t1222580846 * _thisAdjusted = reinterpret_cast<Enumerator_t1222580846 *>(__this + 1); Enumerator__ctor_m3875432026(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2367629053_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2367629053_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1222580846 * _thisAdjusted = reinterpret_cast<Enumerator_t1222580846 *>(__this + 1); Enumerator_Dispose_m2367629053(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2595190390_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { List_1_t3628304265 * V_0 = NULL; { List_1_t3628304265 * L_0 = (List_1_t3628304265 *)__this->get_list_0(); V_0 = (List_1_t3628304265 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t3628304265 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t3628304265 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t3628304265 * L_7 = V_0; NullCheck(L_7); Vector2U5BU5D_t1457185986* L_8 = (Vector2U5BU5D_t1457185986*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; Vector2_t2156229523 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m3690106538((Enumerator_t1222580846 *)(Enumerator_t1222580846 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m2595190390_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1222580846 * _thisAdjusted = reinterpret_cast<Enumerator_t1222580846 *>(__this + 1); return Enumerator_MoveNext_m2595190390(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m3690106538_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3628304265 * L_1 = (List_1_t3628304265 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t3628304265 * L_3 = (List_1_t3628304265 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); Vector2_t2156229523 * L_5 = (Vector2_t2156229523 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(Vector2_t2156229523 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m3690106538_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1222580846 * _thisAdjusted = reinterpret_cast<Enumerator_t1222580846 *>(__this + 1); return Enumerator_MoveNextRare_m3690106538(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::get_Current() extern "C" IL2CPP_METHOD_ATTR Vector2_t2156229523 Enumerator_get_Current_m1292806972_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { { Vector2_t2156229523 L_0 = (Vector2_t2156229523 )__this->get_current_3(); return L_0; } } extern "C" Vector2_t2156229523 Enumerator_get_Current_m1292806972_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1222580846 * _thisAdjusted = reinterpret_cast<Enumerator_t1222580846 *>(__this + 1); return Enumerator_get_Current_m1292806972(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1540440674_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t3628304265 * L_2 = (List_1_t3628304265 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { Vector2_t2156229523 L_4 = Enumerator_get_Current_m1292806972((Enumerator_t1222580846 *)(Enumerator_t1222580846 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); Vector2_t2156229523 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1540440674_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1222580846 * _thisAdjusted = reinterpret_cast<Enumerator_t1222580846 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m1540440674(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m688431936_gshared (Enumerator_t1222580846 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t3628304265 * L_1 = (List_1_t3628304265 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); Vector2_t2156229523 * L_3 = (Vector2_t2156229523 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Vector2_t2156229523 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m688431936_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t1222580846 * _thisAdjusted = reinterpret_cast<Enumerator_t1222580846 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m688431936(_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.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3751722449_gshared (Enumerator_t2788664787 * __this, List_1_t899420910 * ___list0, const RuntimeMethod* method) { { List_1_t899420910 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t899420910 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); Vector3_t3722313464 * L_3 = (Vector3_t3722313464 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Vector3_t3722313464 )); return; } } extern "C" void Enumerator__ctor_m3751722449_AdjustorThunk (RuntimeObject * __this, List_1_t899420910 * ___list0, const RuntimeMethod* method) { Enumerator_t2788664787 * _thisAdjusted = reinterpret_cast<Enumerator_t2788664787 *>(__this + 1); Enumerator__ctor_m3751722449(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2367589020_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2367589020_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2788664787 * _thisAdjusted = reinterpret_cast<Enumerator_t2788664787 *>(__this + 1); Enumerator_Dispose_m2367589020(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1345201779_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { List_1_t899420910 * V_0 = NULL; { List_1_t899420910 * L_0 = (List_1_t899420910 *)__this->get_list_0(); V_0 = (List_1_t899420910 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t899420910 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t899420910 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t899420910 * L_7 = V_0; NullCheck(L_7); Vector3U5BU5D_t1718750761* L_8 = (Vector3U5BU5D_t1718750761*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; Vector3_t3722313464 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m2248864500((Enumerator_t2788664787 *)(Enumerator_t2788664787 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m1345201779_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2788664787 * _thisAdjusted = reinterpret_cast<Enumerator_t2788664787 *>(__this + 1); return Enumerator_MoveNext_m1345201779(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m2248864500_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t899420910 * L_1 = (List_1_t899420910 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t899420910 * L_3 = (List_1_t899420910 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); Vector3_t3722313464 * L_5 = (Vector3_t3722313464 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(Vector3_t3722313464 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m2248864500_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2788664787 * _thisAdjusted = reinterpret_cast<Enumerator_t2788664787 *>(__this + 1); return Enumerator_MoveNextRare_m2248864500(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::get_Current() extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 Enumerator_get_Current_m3157770427_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { { Vector3_t3722313464 L_0 = (Vector3_t3722313464 )__this->get_current_3(); return L_0; } } extern "C" Vector3_t3722313464 Enumerator_get_Current_m3157770427_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2788664787 * _thisAdjusted = reinterpret_cast<Enumerator_t2788664787 *>(__this + 1); return Enumerator_get_Current_m3157770427(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m506196216_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t899420910 * L_2 = (List_1_t899420910 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { Vector3_t3722313464 L_4 = Enumerator_get_Current_m3157770427((Enumerator_t2788664787 *)(Enumerator_t2788664787 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); Vector3_t3722313464 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m506196216_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2788664787 * _thisAdjusted = reinterpret_cast<Enumerator_t2788664787 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m506196216(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m2953002685_gshared (Enumerator_t2788664787 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t899420910 * L_1 = (List_1_t899420910 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); Vector3_t3722313464 * L_3 = (Vector3_t3722313464 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Vector3_t3722313464 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m2953002685_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2788664787 * _thisAdjusted = reinterpret_cast<Enumerator_t2788664787 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m2953002685(_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.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::.ctor(System.Collections.Generic.List`1<T>) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m1346728491_gshared (Enumerator_t2385380260 * __this, List_1_t496136383 * ___list0, const RuntimeMethod* method) { { List_1_t496136383 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1(0); List_1_t496136383 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); __this->set_version_2(L_2); Vector4_t3319028937 * L_3 = (Vector4_t3319028937 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Vector4_t3319028937 )); return; } } extern "C" void Enumerator__ctor_m1346728491_AdjustorThunk (RuntimeObject * __this, List_1_t496136383 * ___list0, const RuntimeMethod* method) { Enumerator_t2385380260 * _thisAdjusted = reinterpret_cast<Enumerator_t2385380260 *>(__this + 1); Enumerator__ctor_m1346728491(_thisAdjusted, ___list0, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2367983719_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { { return; } } extern "C" void Enumerator_Dispose_m2367983719_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2385380260 * _thisAdjusted = reinterpret_cast<Enumerator_t2385380260 *>(__this + 1); Enumerator_Dispose_m2367983719(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m625797905_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { List_1_t496136383 * V_0 = NULL; { List_1_t496136383 * L_0 = (List_1_t496136383 *)__this->get_list_0(); V_0 = (List_1_t496136383 *)L_0; int32_t L_1 = (int32_t)__this->get_version_2(); List_1_t496136383 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__version_3(); if ((!(((uint32_t)L_1) == ((uint32_t)L_3)))) { goto IL_004a; } } { int32_t L_4 = (int32_t)__this->get_index_1(); List_1_t496136383 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = (int32_t)L_5->get__size_2(); if ((!(((uint32_t)L_4) < ((uint32_t)L_6)))) { goto IL_004a; } } { List_1_t496136383 * L_7 = V_0; NullCheck(L_7); Vector4U5BU5D_t934056436* L_8 = (Vector4U5BU5D_t934056436*)L_7->get__items_1(); int32_t L_9 = (int32_t)__this->get_index_1(); NullCheck(L_8); int32_t L_10 = L_9; Vector4_t3319028937 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_current_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_004a: { bool L_13 = Enumerator_MoveNextRare_m522511488((Enumerator_t2385380260 *)(Enumerator_t2385380260 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return L_13; } } extern "C" bool Enumerator_MoveNext_m625797905_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2385380260 * _thisAdjusted = reinterpret_cast<Enumerator_t2385380260 *>(__this + 1); return Enumerator_MoveNext_m625797905(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::MoveNextRare() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m522511488_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t496136383 * L_1 = (List_1_t496136383 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { List_1_t496136383 * L_3 = (List_1_t496136383 *)__this->get_list_0(); NullCheck(L_3); int32_t L_4 = (int32_t)L_3->get__size_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); Vector4_t3319028937 * L_5 = (Vector4_t3319028937 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_5, sizeof(Vector4_t3319028937 )); return (bool)0; } } extern "C" bool Enumerator_MoveNextRare_m522511488_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2385380260 * _thisAdjusted = reinterpret_cast<Enumerator_t2385380260 *>(__this + 1); return Enumerator_MoveNextRare_m522511488(_thisAdjusted, method); } // T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::get_Current() extern "C" IL2CPP_METHOD_ATTR Vector4_t3319028937 Enumerator_get_Current_m1210327282_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { { Vector4_t3319028937 L_0 = (Vector4_t3319028937 )__this->get_current_3(); return L_0; } } extern "C" Vector4_t3319028937 Enumerator_get_Current_m1210327282_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2385380260 * _thisAdjusted = reinterpret_cast<Enumerator_t2385380260 *>(__this + 1); return Enumerator_get_Current_m1210327282(_thisAdjusted, method); } // System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m209407522_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); List_1_t496136383 * L_2 = (List_1_t496136383 *)__this->get_list_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get__size_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0024; } } IL_001d: { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)31), /*hidden argument*/NULL); } IL_0024: { Vector4_t3319028937 L_4 = Enumerator_get_Current_m1210327282((Enumerator_t2385380260 *)(Enumerator_t2385380260 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); Vector4_t3319028937 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5); return L_6; } } extern "C" RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m209407522_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2385380260 * _thisAdjusted = reinterpret_cast<Enumerator_t2385380260 *>(__this + 1); return Enumerator_System_Collections_IEnumerator_get_Current_m209407522(_thisAdjusted, method); } // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset() extern "C" IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3754523291_gshared (Enumerator_t2385380260 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); List_1_t496136383 * L_1 = (List_1_t496136383 *)__this->get_list_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get__version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001a; } } { ThrowHelper_ThrowInvalidOperationException_m782723829(NULL /*static, unused*/, (int32_t)((int32_t)32), /*hidden argument*/NULL); } IL_001a: { __this->set_index_1(0); Vector4_t3319028937 * L_3 = (Vector4_t3319028937 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_3, sizeof(Vector4_t3319028937 )); return; } } extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m3754523291_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Enumerator_t2385380260 * _thisAdjusted = reinterpret_cast<Enumerator_t2385380260 *>(__this + 1); Enumerator_System_Collections_IEnumerator_Reset_m3754523291(_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.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::.ctor() extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m2789220296_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); PrefabToDataModelU5BU5D_t2309926077* L_0 = ((List_1_t3234377962_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_0); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m3692477974_gshared (List_1_t3234377962 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)12), (int32_t)4, /*hidden argument*/NULL); } IL_0012: { int32_t L_1 = ___capacity0; if (L_1) { goto IL_0021; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); PrefabToDataModelU5BU5D_t2309926077* L_2 = ((List_1_t3234377962_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_2); return; } IL_0021: { int32_t L_3 = ___capacity0; PrefabToDataModelU5BU5D_t2309926077* L_4 = (PrefabToDataModelU5BU5D_t2309926077*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_3); __this->set__items_1(L_4); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::.ctor(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m4279344487_gshared (List_1_t3234377962 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1__ctor_m4279344487_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; int32_t V_1 = 0; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___collection0; if (L_0) { goto IL_000f; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)6, /*hidden argument*/NULL); } IL_000f: { RuntimeObject* L_1 = ___collection0; V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2))); RuntimeObject* L_2 = V_0; if (!L_2) { goto IL_0050; } } { RuntimeObject* L_3 = V_0; NullCheck((RuntimeObject*)L_3); int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_3); V_1 = (int32_t)L_4; int32_t L_5 = V_1; if (L_5) { goto IL_002f; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); PrefabToDataModelU5BU5D_t2309926077* L_6 = ((List_1_t3234377962_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_6); return; } IL_002f: { int32_t L_7 = V_1; PrefabToDataModelU5BU5D_t2309926077* L_8 = (PrefabToDataModelU5BU5D_t2309926077*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_7); __this->set__items_1(L_8); RuntimeObject* L_9 = V_0; PrefabToDataModelU5BU5D_t2309926077* L_10 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); NullCheck((RuntimeObject*)L_9); InterfaceActionInvoker2< PrefabToDataModelU5BU5D_t2309926077*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_9, (PrefabToDataModelU5BU5D_t2309926077*)L_10, (int32_t)0); int32_t L_11 = V_1; __this->set__size_2(L_11); return; } IL_0050: { __this->set__size_2(0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); PrefabToDataModelU5BU5D_t2309926077* L_12 = ((List_1_t3234377962_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_12); RuntimeObject* L_13 = ___collection0; NullCheck((RuntimeObject*)L_13); RuntimeObject* L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_13); V_2 = (RuntimeObject*)L_14; } IL_0069: try { // begin try (depth: 1) { goto IL_0077; } IL_006b: { RuntimeObject* L_15 = V_2; NullCheck((RuntimeObject*)L_15); PrefabToDataModel_t1762303220 L_16 = InterfaceFuncInvoker0< PrefabToDataModel_t1762303220 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_15); NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((List_1_t3234377962 *)__this, (PrefabToDataModel_t1762303220 )L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_0077: { RuntimeObject* L_17 = V_2; NullCheck((RuntimeObject*)L_17); bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_17); if (L_18) { goto IL_006b; } } IL_007f: { IL2CPP_LEAVE(0x8B, FINALLY_0081); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0081; } FINALLY_0081: { // begin finally (depth: 1) { RuntimeObject* L_19 = V_2; if (!L_19) { goto IL_008a; } } IL_0084: { RuntimeObject* L_20 = V_2; NullCheck((RuntimeObject*)L_20); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_20); } IL_008a: { IL2CPP_END_FINALLY(129) } } // end finally (depth: 1) IL2CPP_CLEANUP(129) { IL2CPP_JUMP_TBL(0x8B, IL_008b) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_008b: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::get_Capacity() extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m1674790729_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { PrefabToDataModelU5BU5D_t2309926077* L_0 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); NullCheck(L_0); return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::set_Capacity(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_set_Capacity_m2175249477_gshared (List_1_t3234377962 * __this, int32_t ___value0, const RuntimeMethod* method) { PrefabToDataModelU5BU5D_t2309926077* V_0 = NULL; { int32_t L_0 = ___value0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)15), (int32_t)((int32_t)21), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = ___value0; PrefabToDataModelU5BU5D_t2309926077* L_3 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); NullCheck(L_3); if ((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))))) { goto IL_0058; } } { int32_t L_4 = ___value0; if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_004d; } } { int32_t L_5 = ___value0; PrefabToDataModelU5BU5D_t2309926077* L_6 = (PrefabToDataModelU5BU5D_t2309926077*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_5); V_0 = (PrefabToDataModelU5BU5D_t2309926077*)L_6; int32_t L_7 = (int32_t)__this->get__size_2(); if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_0045; } } { PrefabToDataModelU5BU5D_t2309926077* L_8 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); PrefabToDataModelU5BU5D_t2309926077* L_9 = V_0; int32_t L_10 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (int32_t)L_10, /*hidden argument*/NULL); } IL_0045: { PrefabToDataModelU5BU5D_t2309926077* L_11 = V_0; __this->set__items_1(L_11); return; } IL_004d: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); PrefabToDataModelU5BU5D_t2309926077* L_12 = ((List_1_t3234377962_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_12); } IL_0058: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m1327907535_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return L_0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IList.get_IsFixedSize() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_m135080009_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m147281062_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IList.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_m1330207566_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.ICollection.get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_ICollection_get_IsSynchronized_m1380532693_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.ICollection.get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_System_Collections_ICollection_get_SyncRoot_m1584784809_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_ICollection_get_SyncRoot_m1584784809_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_4(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_4(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m297566312(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_4(); return L_3; } } // T System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR PrefabToDataModel_t1762303220 List_1_get_Item_m986057144_gshared (List_1_t3234377962 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { PrefabToDataModelU5BU5D_t2309926077* L_2 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_3 = ___index0; PrefabToDataModel_t1762303220 L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((PrefabToDataModelU5BU5D_t2309926077*)L_2, (int32_t)L_3); return L_4; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::set_Item(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void List_1_set_Item_m267135609_gshared (List_1_t3234377962 * __this, int32_t ___index0, PrefabToDataModel_t1762303220 ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { PrefabToDataModelU5BU5D_t2309926077* L_2 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_3 = ___index0; PrefabToDataModel_t1762303220 L_4 = ___value1; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (PrefabToDataModel_t1762303220 )L_4); int32_t L_5 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::IsCompatibleObject(System.Object) extern "C" IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_m1740389523_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, const RuntimeMethod* method) { PrefabToDataModel_t1762303220 V_0; memset(&V_0, 0, sizeof(V_0)); { RuntimeObject * L_0 = ___value0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7)))) { goto IL_001f; } } { RuntimeObject * L_1 = ___value0; if (L_1) { goto IL_001d; } } { il2cpp_codegen_initobj((&V_0), sizeof(PrefabToDataModel_t1762303220 )); PrefabToDataModel_t1762303220 L_2 = V_0; PrefabToDataModel_t1762303220 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), &L_3); return (bool)((((RuntimeObject*)(RuntimeObject *)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } IL_001d: { return (bool)0; } IL_001f: { return (bool)1; } } // System.Object System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IList.get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_System_Collections_IList_get_Item_m1979157601_gshared (List_1_t3234377962 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; NullCheck((List_1_t3234377962 *)__this); PrefabToDataModel_t1762303220 L_1 = (( PrefabToDataModel_t1762303220 (*) (List_1_t3234377962 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); PrefabToDataModel_t1762303220 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_2); return L_3; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IList.set_Item(System.Int32,System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_m1892267905_gshared (List_1_t3234377962 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_set_Item_m1892267905_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___value1; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)15), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) int32_t L_1 = ___index0; RuntimeObject * L_2 = ___value1; NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)L_1, (PrefabToDataModel_t1762303220 )((*(PrefabToDataModel_t1762303220 *)((PrefabToDataModel_t1762303220 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); goto IL_002a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0017; throw e; } CATCH_0017: { // begin catch(System.InvalidCastException) RuntimeObject * L_3 = ___value1; RuntimeTypeHandle_t3027515415 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_4, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_3, (Type_t *)L_5, /*hidden argument*/NULL); goto IL_002a; } // end catch (depth: 1) IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Add(T) extern "C" IL2CPP_METHOD_ATTR void List_1_Add_m3237560602_gshared (List_1_t3234377962 * __this, PrefabToDataModel_t1762303220 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get__size_2(); PrefabToDataModelU5BU5D_t2309926077* L_1 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_001e; } } { int32_t L_2 = (int32_t)__this->get__size_2(); NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); } IL_001e: { PrefabToDataModelU5BU5D_t2309926077* L_3 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_4 = (int32_t)__this->get__size_2(); V_0 = (int32_t)L_4; int32_t L_5 = V_0; __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); int32_t L_6 = V_0; PrefabToDataModel_t1762303220 L_7 = ___item0; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (PrefabToDataModel_t1762303220 )L_7); int32_t L_8 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IList.Add(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_m2010731703_gshared (List_1_t3234377962 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_Add_m2010731703_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___item0; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)20), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) RuntimeObject * L_1 = ___item0; NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((List_1_t3234377962 *)__this, (PrefabToDataModel_t1762303220 )((*(PrefabToDataModel_t1762303220 *)((PrefabToDataModel_t1762303220 *)UnBox(L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); goto IL_0029; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0016; throw e; } CATCH_0016: { // begin catch(System.InvalidCastException) RuntimeObject * L_2 = ___item0; RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); goto IL_0029; } // end catch (depth: 1) IL_0029: { NullCheck((List_1_t3234377962 *)__this); int32_t L_5 = (( int32_t (*) (List_1_t3234377962 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t3234377962 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_AddRange_m3262838834_gshared (List_1_t3234377962 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); RuntimeObject* L_1 = ___collection0; NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)L_0, (RuntimeObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); return; } } // System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::AsReadOnly() extern "C" IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t2974879507 * List_1_AsReadOnly_m3069502899_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { ReadOnlyCollection_1_t2974879507 * L_0 = (ReadOnlyCollection_1_t2974879507 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ReadOnlyCollection_1_t2974879507 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_0, (RuntimeObject*)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return L_0; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::BinarySearch(System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m2192015634_gshared (List_1_t3234377962 * __this, int32_t ___index0, int32_t ___count1, PrefabToDataModel_t1762303220 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { PrefabToDataModelU5BU5D_t2309926077* L_5 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; PrefabToDataModel_t1762303220 L_8 = ___item2; RuntimeObject* L_9 = ___comparer3; int32_t L_10 = (( int32_t (*) (RuntimeObject * /* static, unused */, PrefabToDataModelU5BU5D_t2309926077*, int32_t, int32_t, PrefabToDataModel_t1762303220 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)(NULL /*static, unused*/, (PrefabToDataModelU5BU5D_t2309926077*)L_5, (int32_t)L_6, (int32_t)L_7, (PrefabToDataModel_t1762303220 )L_8, (RuntimeObject*)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return L_10; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::BinarySearch(T,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m217202605_gshared (List_1_t3234377962 * __this, PrefabToDataModel_t1762303220 ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { { NullCheck((List_1_t3234377962 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t3234377962 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t3234377962 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); PrefabToDataModel_t1762303220 L_1 = ___item0; RuntimeObject* L_2 = ___comparer1; NullCheck((List_1_t3234377962 *)__this); int32_t L_3 = (( int32_t (*) (List_1_t3234377962 *, int32_t, int32_t, PrefabToDataModel_t1762303220 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)0, (int32_t)L_0, (PrefabToDataModel_t1762303220 )L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return L_3; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Clear() extern "C" IL2CPP_METHOD_ATTR void List_1_Clear_m2096008868_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_0022; } } { PrefabToDataModelU5BU5D_t2309926077* L_1 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_2 = (int32_t)__this->get__size_2(); Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/NULL); __this->set__size_2(0); } IL_0022: { int32_t L_3 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Contains(T) extern "C" IL2CPP_METHOD_ATTR bool List_1_Contains_m771694865_gshared (List_1_t3234377962 * __this, PrefabToDataModel_t1762303220 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t4227042852 * V_1 = NULL; int32_t V_2 = 0; { goto IL_0030; } { V_0 = (int32_t)0; goto IL_0025; } IL_000c: { PrefabToDataModelU5BU5D_t2309926077* L_1 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = L_2; PrefabToDataModel_t1762303220 L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); goto IL_0021; } { return (bool)1; } IL_0021: { int32_t L_5 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_0025: { int32_t L_6 = V_0; int32_t L_7 = (int32_t)__this->get__size_2(); if ((((int32_t)L_6) < ((int32_t)L_7))) { goto IL_000c; } } { return (bool)0; } IL_0030: { EqualityComparer_1_t4227042852 * L_8 = (( EqualityComparer_1_t4227042852 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_t4227042852 *)L_8; V_2 = (int32_t)0; goto IL_0055; } IL_003a: { EqualityComparer_1_t4227042852 * L_9 = V_1; PrefabToDataModelU5BU5D_t2309926077* L_10 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; PrefabToDataModel_t1762303220 L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); PrefabToDataModel_t1762303220 L_14 = ___item0; NullCheck((EqualityComparer_1_t4227042852 *)L_9); bool L_15 = VirtFuncInvoker2< bool, PrefabToDataModel_t1762303220 , PrefabToDataModel_t1762303220 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Equals(T,T) */, (EqualityComparer_1_t4227042852 *)L_9, (PrefabToDataModel_t1762303220 )L_13, (PrefabToDataModel_t1762303220 )L_14); if (!L_15) { goto IL_0051; } } { return (bool)1; } IL_0051: { int32_t L_16 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0055: { int32_t L_17 = V_2; int32_t L_18 = (int32_t)__this->get__size_2(); if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_003a; } } { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IList.Contains(System.Object) extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_m1767834817_gshared (List_1_t3234377962 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t3234377962 *)__this); bool L_3 = (( bool (*) (List_1_t3234377962 *, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)((List_1_t3234377962 *)__this, (PrefabToDataModel_t1762303220 )((*(PrefabToDataModel_t1762303220 *)((PrefabToDataModel_t1762303220 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); return L_3; } IL_0015: { return (bool)0; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::CopyTo(T[]) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m938340035_gshared (List_1_t3234377962 * __this, PrefabToDataModelU5BU5D_t2309926077* ___array0, const RuntimeMethod* method) { { PrefabToDataModelU5BU5D_t2309926077* L_0 = ___array0; NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, PrefabToDataModelU5BU5D_t2309926077*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((List_1_t3234377962 *)__this, (PrefabToDataModelU5BU5D_t2309926077*)L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_m2870566478_gshared (List_1_t3234377962 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_ICollection_CopyTo_m2870566478_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeArray * L_0 = ___array0; if (!L_0) { goto IL_0012; } } { RuntimeArray * L_1 = ___array0; NullCheck((RuntimeArray *)L_1); int32_t L_2 = Array_get_Rank_m3448755881((RuntimeArray *)L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)7, /*hidden argument*/NULL); } IL_0012: { } IL_0013: try { // begin try (depth: 1) PrefabToDataModelU5BU5D_t2309926077* L_3 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); RuntimeArray * L_4 = ___array0; int32_t L_5 = ___arrayIndex1; int32_t L_6 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)0, (RuntimeArray *)L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/NULL); goto IL_0033; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_t2342549375_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0029; throw e; } CATCH_0029: { // begin catch(System.ArrayTypeMismatchException) ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)18), /*hidden argument*/NULL); goto IL_0033; } // end catch (depth: 1) IL_0033: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::CopyTo(System.Int32,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m83321866_gshared (List_1_t3234377962 * __this, int32_t ___index0, PrefabToDataModelU5BU5D_t2309926077* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); int32_t L_1 = ___index0; int32_t L_2 = ___count3; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1))) >= ((int32_t)L_2))) { goto IL_0013; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_0013: { PrefabToDataModelU5BU5D_t2309926077* L_3 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_4 = ___index0; PrefabToDataModelU5BU5D_t2309926077* L_5 = ___array1; int32_t L_6 = ___arrayIndex2; int32_t L_7 = ___count3; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)L_4, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::CopyTo(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m2993708502_gshared (List_1_t3234377962 * __this, PrefabToDataModelU5BU5D_t2309926077* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { PrefabToDataModelU5BU5D_t2309926077* L_0 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); PrefabToDataModelU5BU5D_t2309926077* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; int32_t L_3 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::EnsureCapacity(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m94624300_gshared (List_1_t3234377962 * __this, int32_t ___min0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B4_0 = 0; { PrefabToDataModelU5BU5D_t2309926077* L_0 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); NullCheck(L_0); int32_t L_1 = ___min0; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) >= ((int32_t)L_1))) { goto IL_003d; } } { PrefabToDataModelU5BU5D_t2309926077* L_2 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); NullCheck(L_2); if (!(((RuntimeArray *)L_2)->max_length)) { goto IL_0020; } } { PrefabToDataModelU5BU5D_t2309926077* L_3 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); NullCheck(L_3); G_B4_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), (int32_t)2)); goto IL_0021; } IL_0020: { G_B4_0 = 4; } IL_0021: { V_0 = (int32_t)G_B4_0; int32_t L_4 = V_0; if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071))))) { goto IL_0030; } } { V_0 = (int32_t)((int32_t)2146435071); } IL_0030: { int32_t L_5 = V_0; int32_t L_6 = ___min0; if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_0036; } } { int32_t L_7 = ___min0; V_0 = (int32_t)L_7; } IL_0036: { int32_t L_8 = V_0; NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); } IL_003d: { return; } } // T System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Find(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR PrefabToDataModel_t1762303220 List_1_Find_m1859503086_gshared (List_1_t3234377962 * __this, Predicate_1_t2587597344 * ___match0, const RuntimeMethod* method) { int32_t V_0 = 0; PrefabToDataModel_t1762303220 V_1; memset(&V_1, 0, sizeof(V_1)); { Predicate_1_t2587597344 * L_0 = ___match0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { V_0 = (int32_t)0; goto IL_0032; } IL_000d: { Predicate_1_t2587597344 * L_1 = ___match0; PrefabToDataModelU5BU5D_t2309926077* L_2 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = L_3; PrefabToDataModel_t1762303220 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); NullCheck((Predicate_1_t2587597344 *)L_1); bool L_6 = (( bool (*) (Predicate_1_t2587597344 *, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t2587597344 *)L_1, (PrefabToDataModel_t1762303220 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_6) { goto IL_002e; } } { PrefabToDataModelU5BU5D_t2309926077* L_7 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = L_8; PrefabToDataModel_t1762303220 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); return L_10; } IL_002e: { int32_t L_11 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_0032: { int32_t L_12 = V_0; int32_t L_13 = (int32_t)__this->get__size_2(); if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_1), sizeof(PrefabToDataModel_t1762303220 )); PrefabToDataModel_t1762303220 L_14 = V_1; return L_14; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::FindIndex(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m3374904339_gshared (List_1_t3234377962 * __this, Predicate_1_t2587597344 * ___match0, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); Predicate_1_t2587597344 * L_1 = ___match0; NullCheck((List_1_t3234377962 *)__this); int32_t L_2 = (( int32_t (*) (List_1_t3234377962 *, int32_t, int32_t, Predicate_1_t2587597344 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)0, (int32_t)L_0, (Predicate_1_t2587597344 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); return L_2; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::FindIndex(System.Int32,System.Int32,System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m4127123465_gshared (List_1_t3234377962 * __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t2587597344 * ___match2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)14), (int32_t)((int32_t)22), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = ___count1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0021; } } { int32_t L_3 = ___startIndex0; int32_t L_4 = (int32_t)__this->get__size_2(); int32_t L_5 = ___count1; if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))))) { goto IL_002a; } } IL_0021: { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)((int32_t)25), /*hidden argument*/NULL); } IL_002a: { Predicate_1_t2587597344 * L_6 = ___match2; if (L_6) { goto IL_0033; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0033: { int32_t L_7 = ___startIndex0; int32_t L_8 = ___count1; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); int32_t L_9 = ___startIndex0; V_1 = (int32_t)L_9; goto IL_0055; } IL_003b: { Predicate_1_t2587597344 * L_10 = ___match2; PrefabToDataModelU5BU5D_t2309926077* L_11 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = L_12; PrefabToDataModel_t1762303220 L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); NullCheck((Predicate_1_t2587597344 *)L_10); bool L_15 = (( bool (*) (Predicate_1_t2587597344 *, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t2587597344 *)L_10, (PrefabToDataModel_t1762303220 )L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_15) { goto IL_0051; } } { int32_t L_16 = V_1; return L_16; } IL_0051: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0055: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_003b; } } { return (-1); } } // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_t828654543 List_1_GetEnumerator_m3645772189_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { Enumerator_t828654543 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m1650153849((&L_0), (List_1_t3234377962 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); return L_0; } } // System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m3541756498_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { Enumerator_t828654543 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m1650153849((&L_0), (List_1_t3234377962 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); Enumerator_t828654543 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), &L_1); return (RuntimeObject*)L_2; } } // System.Collections.IEnumerator System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IEnumerable.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_m4024994856_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { Enumerator_t828654543 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m1650153849((&L_0), (List_1_t3234377962 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); Enumerator_t828654543 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), &L_1); return (RuntimeObject*)L_2; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::IndexOf(T) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m290857262_gshared (List_1_t3234377962 * __this, PrefabToDataModel_t1762303220 ___item0, const RuntimeMethod* method) { { PrefabToDataModelU5BU5D_t2309926077* L_0 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); PrefabToDataModel_t1762303220 L_1 = ___item0; int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = (( int32_t (*) (RuntimeObject * /* static, unused */, PrefabToDataModelU5BU5D_t2309926077*, PrefabToDataModel_t1762303220 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)(NULL /*static, unused*/, (PrefabToDataModelU5BU5D_t2309926077*)L_0, (PrefabToDataModel_t1762303220 )L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); return L_3; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IList.IndexOf(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_m4086767263_gshared (List_1_t3234377962 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t3234377962 *)__this); int32_t L_3 = (( int32_t (*) (List_1_t3234377962 *, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((List_1_t3234377962 *)__this, (PrefabToDataModel_t1762303220 )((*(PrefabToDataModel_t1762303220 *)((PrefabToDataModel_t1762303220 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return L_3; } IL_0015: { return (-1); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Insert(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void List_1_Insert_m2743640724_gshared (List_1_t3234377962 * __this, int32_t ___index0, PrefabToDataModel_t1762303220 ___item1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)((int32_t)27), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = (int32_t)__this->get__size_2(); PrefabToDataModelU5BU5D_t2309926077* L_3 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); NullCheck(L_3); if ((!(((uint32_t)L_2) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))))))) { goto IL_0030; } } { int32_t L_4 = (int32_t)__this->get__size_2(); NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); } IL_0030: { int32_t L_5 = ___index0; int32_t L_6 = (int32_t)__this->get__size_2(); if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_0056; } } { PrefabToDataModelU5BU5D_t2309926077* L_7 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_8 = ___index0; PrefabToDataModelU5BU5D_t2309926077* L_9 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_10 = ___index0; int32_t L_11 = (int32_t)__this->get__size_2(); int32_t L_12 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)L_8, (RuntimeArray *)(RuntimeArray *)L_9, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12)), /*hidden argument*/NULL); } IL_0056: { PrefabToDataModelU5BU5D_t2309926077* L_13 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_14 = ___index0; PrefabToDataModel_t1762303220 L_15 = ___item1; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (PrefabToDataModel_t1762303220 )L_15); int32_t L_16 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1))); int32_t L_17 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IList.Insert(System.Int32,System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_m711674532_gshared (List_1_t3234377962 * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_Insert_m711674532_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___item1; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)20), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) int32_t L_1 = ___index0; RuntimeObject * L_2 = ___item1; NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)L_1, (PrefabToDataModel_t1762303220 )((*(PrefabToDataModel_t1762303220 *)((PrefabToDataModel_t1762303220 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)); goto IL_002a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0017; throw e; } CATCH_0017: { // begin catch(System.InvalidCastException) RuntimeObject * L_3 = ___item1; RuntimeTypeHandle_t3027515415 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_4, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_3, (Type_t *)L_5, /*hidden argument*/NULL); goto IL_002a; } // end catch (depth: 1) IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_InsertRange_m138798606_gshared (List_1_t3234377962 * __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_InsertRange_m138798606_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; int32_t V_1 = 0; PrefabToDataModelU5BU5D_t2309926077* V_2 = NULL; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___collection1; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)6, /*hidden argument*/NULL); } IL_0009: { int32_t L_1 = ___index0; int32_t L_2 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_1) > ((uint32_t)L_2)))) { goto IL_001b; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)((int32_t)22), /*hidden argument*/NULL); } IL_001b: { RuntimeObject* L_3 = ___collection1; V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2))); RuntimeObject* L_4 = V_0; if (!L_4) { goto IL_00cf; } } { RuntimeObject* L_5 = V_0; NullCheck((RuntimeObject*)L_5); int32_t L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_5); V_1 = (int32_t)L_6; int32_t L_7 = V_1; if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_00fe; } } { int32_t L_8 = (int32_t)__this->get__size_2(); int32_t L_9 = V_1; NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); int32_t L_10 = ___index0; int32_t L_11 = (int32_t)__this->get__size_2(); if ((((int32_t)L_10) >= ((int32_t)L_11))) { goto IL_006a; } } { PrefabToDataModelU5BU5D_t2309926077* L_12 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_13 = ___index0; PrefabToDataModelU5BU5D_t2309926077* L_14 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_15 = ___index0; int32_t L_16 = V_1; int32_t L_17 = (int32_t)__this->get__size_2(); int32_t L_18 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_12, (int32_t)L_13, (RuntimeArray *)(RuntimeArray *)L_14, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)), /*hidden argument*/NULL); } IL_006a: { RuntimeObject* L_19 = V_0; if ((!(((RuntimeObject*)(List_1_t3234377962 *)__this) == ((RuntimeObject*)(RuntimeObject*)L_19)))) { goto IL_00a3; } } { PrefabToDataModelU5BU5D_t2309926077* L_20 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); PrefabToDataModelU5BU5D_t2309926077* L_21 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_22 = ___index0; int32_t L_23 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_20, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_21, (int32_t)L_22, (int32_t)L_23, /*hidden argument*/NULL); PrefabToDataModelU5BU5D_t2309926077* L_24 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_25 = ___index0; int32_t L_26 = V_1; PrefabToDataModelU5BU5D_t2309926077* L_27 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_28 = ___index0; int32_t L_29 = (int32_t)__this->get__size_2(); int32_t L_30 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_24, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)L_26)), (RuntimeArray *)(RuntimeArray *)L_27, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_28, (int32_t)2)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)L_30)), /*hidden argument*/NULL); goto IL_00bf; } IL_00a3: { int32_t L_31 = V_1; PrefabToDataModelU5BU5D_t2309926077* L_32 = (PrefabToDataModelU5BU5D_t2309926077*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_31); V_2 = (PrefabToDataModelU5BU5D_t2309926077*)L_32; RuntimeObject* L_33 = V_0; PrefabToDataModelU5BU5D_t2309926077* L_34 = V_2; NullCheck((RuntimeObject*)L_33); InterfaceActionInvoker2< PrefabToDataModelU5BU5D_t2309926077*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_33, (PrefabToDataModelU5BU5D_t2309926077*)L_34, (int32_t)0); PrefabToDataModelU5BU5D_t2309926077* L_35 = V_2; PrefabToDataModelU5BU5D_t2309926077* L_36 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_37 = ___index0; NullCheck((RuntimeArray *)(RuntimeArray *)L_35); Array_CopyTo_m225704097((RuntimeArray *)(RuntimeArray *)L_35, (RuntimeArray *)(RuntimeArray *)L_36, (int32_t)L_37, /*hidden argument*/NULL); } IL_00bf: { int32_t L_38 = (int32_t)__this->get__size_2(); int32_t L_39 = V_1; __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)L_39))); goto IL_00fe; } IL_00cf: { RuntimeObject* L_40 = ___collection1; NullCheck((RuntimeObject*)L_40); RuntimeObject* L_41 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_40); V_3 = (RuntimeObject*)L_41; } IL_00d6: try { // begin try (depth: 1) { goto IL_00ea; } IL_00d8: { int32_t L_42 = ___index0; int32_t L_43 = (int32_t)L_42; ___index0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); RuntimeObject* L_44 = V_3; NullCheck((RuntimeObject*)L_44); PrefabToDataModel_t1762303220 L_45 = InterfaceFuncInvoker0< PrefabToDataModel_t1762303220 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_44); NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)L_43, (PrefabToDataModel_t1762303220 )L_45, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)); } IL_00ea: { RuntimeObject* L_46 = V_3; NullCheck((RuntimeObject*)L_46); bool L_47 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_46); if (L_47) { goto IL_00d8; } } IL_00f2: { IL2CPP_LEAVE(0xFE, FINALLY_00f4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00f4; } FINALLY_00f4: { // begin finally (depth: 1) { RuntimeObject* L_48 = V_3; if (!L_48) { goto IL_00fd; } } IL_00f7: { RuntimeObject* L_49 = V_3; NullCheck((RuntimeObject*)L_49); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_49); } IL_00fd: { IL2CPP_END_FINALLY(244) } } // end finally (depth: 1) IL2CPP_CLEANUP(244) { IL2CPP_JUMP_TBL(0xFE, IL_00fe) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00fe: { int32_t L_50 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Remove(T) extern "C" IL2CPP_METHOD_ATTR bool List_1_Remove_m2036330244_gshared (List_1_t3234377962 * __this, PrefabToDataModel_t1762303220 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { PrefabToDataModel_t1762303220 L_0 = ___item0; NullCheck((List_1_t3234377962 *)__this); int32_t L_1 = (( int32_t (*) (List_1_t3234377962 *, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((List_1_t3234377962 *)__this, (PrefabToDataModel_t1762303220 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0015; } } { int32_t L_3 = V_0; NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); return (bool)1; } IL_0015: { return (bool)0; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::System.Collections.IList.Remove(System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_m295049584_gshared (List_1_t3234377962 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t3234377962 *)__this); (( bool (*) (List_1_t3234377962 *, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 34)->methodPointer)((List_1_t3234377962 *)__this, (PrefabToDataModel_t1762303220 )((*(PrefabToDataModel_t1762303220 *)((PrefabToDataModel_t1762303220 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 34)); } IL_0015: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::RemoveAll(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_m2139638485_gshared (List_1_t3234377962 * __this, Predicate_1_t2587597344 * ___match0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { Predicate_1_t2587597344 * L_0 = ___match0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { V_0 = (int32_t)0; goto IL_0011; } IL_000d: { int32_t L_1 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)); } IL_0011: { int32_t L_2 = V_0; int32_t L_3 = (int32_t)__this->get__size_2(); if ((((int32_t)L_2) >= ((int32_t)L_3))) { goto IL_002e; } } { Predicate_1_t2587597344 * L_4 = ___match0; PrefabToDataModelU5BU5D_t2309926077* L_5 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; PrefabToDataModel_t1762303220 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); NullCheck((Predicate_1_t2587597344 *)L_4); bool L_9 = (( bool (*) (Predicate_1_t2587597344 *, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t2587597344 *)L_4, (PrefabToDataModel_t1762303220 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_9) { goto IL_000d; } } IL_002e: { int32_t L_10 = V_0; int32_t L_11 = (int32_t)__this->get__size_2(); if ((((int32_t)L_10) < ((int32_t)L_11))) { goto IL_0039; } } { return 0; } IL_0039: { int32_t L_12 = V_0; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); goto IL_0089; } IL_003f: { int32_t L_13 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_0043: { int32_t L_14 = V_1; int32_t L_15 = (int32_t)__this->get__size_2(); if ((((int32_t)L_14) >= ((int32_t)L_15))) { goto IL_0060; } } { Predicate_1_t2587597344 * L_16 = ___match0; PrefabToDataModelU5BU5D_t2309926077* L_17 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_18 = V_1; NullCheck(L_17); int32_t L_19 = L_18; PrefabToDataModel_t1762303220 L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); NullCheck((Predicate_1_t2587597344 *)L_16); bool L_21 = (( bool (*) (Predicate_1_t2587597344 *, PrefabToDataModel_t1762303220 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t2587597344 *)L_16, (PrefabToDataModel_t1762303220 )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (L_21) { goto IL_003f; } } IL_0060: { int32_t L_22 = V_1; int32_t L_23 = (int32_t)__this->get__size_2(); if ((((int32_t)L_22) >= ((int32_t)L_23))) { goto IL_0089; } } { PrefabToDataModelU5BU5D_t2309926077* L_24 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_25 = V_0; int32_t L_26 = (int32_t)L_25; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); PrefabToDataModelU5BU5D_t2309926077* L_27 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_28 = V_1; int32_t L_29 = (int32_t)L_28; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); NullCheck(L_27); int32_t L_30 = L_29; PrefabToDataModel_t1762303220 L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30)); NullCheck(L_24); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (PrefabToDataModel_t1762303220 )L_31); } IL_0089: { int32_t L_32 = V_1; int32_t L_33 = (int32_t)__this->get__size_2(); if ((((int32_t)L_32) < ((int32_t)L_33))) { goto IL_0043; } } { PrefabToDataModelU5BU5D_t2309926077* L_34 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_35 = V_0; int32_t L_36 = (int32_t)__this->get__size_2(); int32_t L_37 = V_0; Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_34, (int32_t)L_35, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), /*hidden argument*/NULL); int32_t L_38 = (int32_t)__this->get__size_2(); int32_t L_39 = V_0; int32_t L_40 = V_0; __this->set__size_2(L_40); int32_t L_41 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1))); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)L_39)); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::RemoveAt(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_RemoveAt_m3664535367_gshared (List_1_t3234377962 * __this, int32_t ___index0, const RuntimeMethod* method) { PrefabToDataModel_t1762303220 V_0; memset(&V_0, 0, sizeof(V_0)); { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { int32_t L_2 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1))); int32_t L_3 = ___index0; int32_t L_4 = (int32_t)__this->get__size_2(); if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_0042; } } { PrefabToDataModelU5BU5D_t2309926077* L_5 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_6 = ___index0; PrefabToDataModelU5BU5D_t2309926077* L_7 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); int32_t L_10 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)L_8, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL); } IL_0042: { PrefabToDataModelU5BU5D_t2309926077* L_11 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_12 = (int32_t)__this->get__size_2(); il2cpp_codegen_initobj((&V_0), sizeof(PrefabToDataModel_t1762303220 )); PrefabToDataModel_t1762303220 L_13 = V_0; NullCheck(L_11); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (PrefabToDataModel_t1762303220 )L_13); int32_t L_14 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::RemoveRange(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_RemoveRange_m2901662648_gshared (List_1_t3234377962 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { int32_t L_5 = ___count1; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_0082; } } { int32_t L_6 = (int32_t)__this->get__size_2(); int32_t L_7 = ___count1; __this->set__size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7))); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); if ((((int32_t)L_8) >= ((int32_t)L_9))) { goto IL_0062; } } { PrefabToDataModelU5BU5D_t2309926077* L_10 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_11 = ___index0; int32_t L_12 = ___count1; PrefabToDataModelU5BU5D_t2309926077* L_13 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_14 = ___index0; int32_t L_15 = (int32_t)__this->get__size_2(); int32_t L_16 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (RuntimeArray *)(RuntimeArray *)L_13, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); } IL_0062: { PrefabToDataModelU5BU5D_t2309926077* L_17 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_18 = (int32_t)__this->get__size_2(); int32_t L_19 = ___count1; Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_17, (int32_t)L_18, (int32_t)L_19, /*hidden argument*/NULL); int32_t L_20 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); } IL_0082: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Reverse() extern "C" IL2CPP_METHOD_ATTR void List_1_Reverse_m432455281_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { NullCheck((List_1_t3234377962 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t3234377962 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t3234377962 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)0, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Reverse(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_Reverse_m1855309549_gshared (List_1_t3234377962 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { PrefabToDataModelU5BU5D_t2309926077* L_5 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; (( void (*) (RuntimeObject * /* static, unused */, PrefabToDataModelU5BU5D_t2309926077*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)(NULL /*static, unused*/, (PrefabToDataModelU5BU5D_t2309926077*)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_8 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Sort() extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m3783778978_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { { NullCheck((List_1_t3234377962 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t3234377962 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t3234377962 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)0, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Sort(System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m2260213423_gshared (List_1_t3234377962 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { NullCheck((List_1_t3234377962 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t3234377962 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t3234377962 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); RuntimeObject* L_1 = ___comparer0; NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)0, (int32_t)L_0, (RuntimeObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m906828194_gshared (List_1_t3234377962 * __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { PrefabToDataModelU5BU5D_t2309926077* L_5 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; RuntimeObject* L_8 = ___comparer2; (( void (*) (RuntimeObject * /* static, unused */, PrefabToDataModelU5BU5D_t2309926077*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)->methodPointer)(NULL /*static, unused*/, (PrefabToDataModelU5BU5D_t2309926077*)L_5, (int32_t)L_6, (int32_t)L_7, (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)); int32_t L_9 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::Sort(System.Comparison`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m2193458297_gshared (List_1_t3234377962 * __this, Comparison_1_t1537234399 * ___comparison0, const RuntimeMethod* method) { { Comparison_1_t1537234399 * L_0 = ___comparison0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { int32_t L_1 = (int32_t)__this->get__size_2(); if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_0025; } } { PrefabToDataModelU5BU5D_t2309926077* L_2 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); int32_t L_3 = (int32_t)__this->get__size_2(); Comparison_1_t1537234399 * L_4 = ___comparison0; (( void (*) (RuntimeObject * /* static, unused */, PrefabToDataModelU5BU5D_t2309926077*, int32_t, int32_t, Comparison_1_t1537234399 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)(NULL /*static, unused*/, (PrefabToDataModelU5BU5D_t2309926077*)L_2, (int32_t)0, (int32_t)L_3, (Comparison_1_t1537234399 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); } IL_0025: { return; } } // T[] System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::ToArray() extern "C" IL2CPP_METHOD_ATTR PrefabToDataModelU5BU5D_t2309926077* List_1_ToArray_m2034928376_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { PrefabToDataModelU5BU5D_t2309926077* V_0 = NULL; { int32_t L_0 = (int32_t)__this->get__size_2(); PrefabToDataModelU5BU5D_t2309926077* L_1 = (PrefabToDataModelU5BU5D_t2309926077*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_0); V_0 = (PrefabToDataModelU5BU5D_t2309926077*)L_1; PrefabToDataModelU5BU5D_t2309926077* L_2 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); PrefabToDataModelU5BU5D_t2309926077* L_3 = V_0; int32_t L_4 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_2, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)0, (int32_t)L_4, /*hidden argument*/NULL); PrefabToDataModelU5BU5D_t2309926077* L_5 = V_0; return L_5; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::TrimExcess() extern "C" IL2CPP_METHOD_ATTR void List_1_TrimExcess_m3195724826_gshared (List_1_t3234377962 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { PrefabToDataModelU5BU5D_t2309926077* L_0 = (PrefabToDataModelU5BU5D_t2309926077*)__this->get__items_1(); NullCheck(L_0); V_0 = (int32_t)(((int32_t)((int32_t)((double)il2cpp_codegen_multiply((double)(((double)((double)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))))), (double)(0.9)))))); int32_t L_1 = (int32_t)__this->get__size_2(); int32_t L_2 = V_0; if ((((int32_t)L_1) >= ((int32_t)L_2))) { goto IL_002a; } } { int32_t L_3 = (int32_t)__this->get__size_2(); NullCheck((List_1_t3234377962 *)__this); (( void (*) (List_1_t3234377962 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((List_1_t3234377962 *)__this, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); } IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Sharing.Spawning.PrefabToDataModel>::.cctor() extern "C" IL2CPP_METHOD_ATTR void List_1__cctor_m4158921737_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { PrefabToDataModelU5BU5D_t2309926077* L_0 = (PrefabToDataModelU5BU5D_t2309926077*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), (uint32_t)0); ((List_1_t3234377962_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set__emptyArray_5(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.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::.ctor() extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m3287839270_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); DialogButtonTypeU5BU5D_t3127917365* L_0 = ((List_1_t1152915922_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_0); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m1424615081_gshared (List_1_t1152915922 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)12), (int32_t)4, /*hidden argument*/NULL); } IL_0012: { int32_t L_1 = ___capacity0; if (L_1) { goto IL_0021; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); DialogButtonTypeU5BU5D_t3127917365* L_2 = ((List_1_t1152915922_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_2); return; } IL_0021: { int32_t L_3 = ___capacity0; DialogButtonTypeU5BU5D_t3127917365* L_4 = (DialogButtonTypeU5BU5D_t3127917365*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_3); __this->set__items_1(L_4); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::.ctor(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m3424047560_gshared (List_1_t1152915922 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1__ctor_m3424047560_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; int32_t V_1 = 0; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___collection0; if (L_0) { goto IL_000f; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)6, /*hidden argument*/NULL); } IL_000f: { RuntimeObject* L_1 = ___collection0; V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2))); RuntimeObject* L_2 = V_0; if (!L_2) { goto IL_0050; } } { RuntimeObject* L_3 = V_0; NullCheck((RuntimeObject*)L_3); int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<HoloToolkit.UX.Dialog.DialogButtonType>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_3); V_1 = (int32_t)L_4; int32_t L_5 = V_1; if (L_5) { goto IL_002f; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); DialogButtonTypeU5BU5D_t3127917365* L_6 = ((List_1_t1152915922_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_6); return; } IL_002f: { int32_t L_7 = V_1; DialogButtonTypeU5BU5D_t3127917365* L_8 = (DialogButtonTypeU5BU5D_t3127917365*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_7); __this->set__items_1(L_8); RuntimeObject* L_9 = V_0; DialogButtonTypeU5BU5D_t3127917365* L_10 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); NullCheck((RuntimeObject*)L_9); InterfaceActionInvoker2< DialogButtonTypeU5BU5D_t3127917365*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<HoloToolkit.UX.Dialog.DialogButtonType>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_9, (DialogButtonTypeU5BU5D_t3127917365*)L_10, (int32_t)0); int32_t L_11 = V_1; __this->set__size_2(L_11); return; } IL_0050: { __this->set__size_2(0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); DialogButtonTypeU5BU5D_t3127917365* L_12 = ((List_1_t1152915922_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_12); RuntimeObject* L_13 = ___collection0; NullCheck((RuntimeObject*)L_13); RuntimeObject* L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<HoloToolkit.UX.Dialog.DialogButtonType>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_13); V_2 = (RuntimeObject*)L_14; } IL_0069: try { // begin try (depth: 1) { goto IL_0077; } IL_006b: { RuntimeObject* L_15 = V_2; NullCheck((RuntimeObject*)L_15); int32_t L_16 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<HoloToolkit.UX.Dialog.DialogButtonType>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_15); NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_0077: { RuntimeObject* L_17 = V_2; NullCheck((RuntimeObject*)L_17); bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_17); if (L_18) { goto IL_006b; } } IL_007f: { IL2CPP_LEAVE(0x8B, FINALLY_0081); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0081; } FINALLY_0081: { // begin finally (depth: 1) { RuntimeObject* L_19 = V_2; if (!L_19) { goto IL_008a; } } IL_0084: { RuntimeObject* L_20 = V_2; NullCheck((RuntimeObject*)L_20); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_20); } IL_008a: { IL2CPP_END_FINALLY(129) } } // end finally (depth: 1) IL2CPP_CLEANUP(129) { IL2CPP_JUMP_TBL(0x8B, IL_008b) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_008b: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::get_Capacity() extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m743102779_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { DialogButtonTypeU5BU5D_t3127917365* L_0 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); NullCheck(L_0); return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::set_Capacity(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_set_Capacity_m3921228889_gshared (List_1_t1152915922 * __this, int32_t ___value0, const RuntimeMethod* method) { DialogButtonTypeU5BU5D_t3127917365* V_0 = NULL; { int32_t L_0 = ___value0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)15), (int32_t)((int32_t)21), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = ___value0; DialogButtonTypeU5BU5D_t3127917365* L_3 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); NullCheck(L_3); if ((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))))) { goto IL_0058; } } { int32_t L_4 = ___value0; if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_004d; } } { int32_t L_5 = ___value0; DialogButtonTypeU5BU5D_t3127917365* L_6 = (DialogButtonTypeU5BU5D_t3127917365*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_5); V_0 = (DialogButtonTypeU5BU5D_t3127917365*)L_6; int32_t L_7 = (int32_t)__this->get__size_2(); if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_0045; } } { DialogButtonTypeU5BU5D_t3127917365* L_8 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); DialogButtonTypeU5BU5D_t3127917365* L_9 = V_0; int32_t L_10 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (int32_t)L_10, /*hidden argument*/NULL); } IL_0045: { DialogButtonTypeU5BU5D_t3127917365* L_11 = V_0; __this->set__items_1(L_11); return; } IL_004d: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); DialogButtonTypeU5BU5D_t3127917365* L_12 = ((List_1_t1152915922_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_12); } IL_0058: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m3060103011_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return L_0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IList.get_IsFixedSize() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_m1507130624_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3942938939_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IList.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_m67280859_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.ICollection.get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_ICollection_get_IsSynchronized_m416374769_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.ICollection.get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_System_Collections_ICollection_get_SyncRoot_m1676407547_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_ICollection_get_SyncRoot_m1676407547_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_4(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_4(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m297566312(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_4(); return L_3; } } // T System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Item_m2028785386_gshared (List_1_t1152915922 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { DialogButtonTypeU5BU5D_t3127917365* L_2 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_3 = ___index0; int32_t L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((DialogButtonTypeU5BU5D_t3127917365*)L_2, (int32_t)L_3); return L_4; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::set_Item(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void List_1_set_Item_m92358426_gshared (List_1_t1152915922 * __this, int32_t ___index0, int32_t ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { DialogButtonTypeU5BU5D_t3127917365* L_2 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_3 = ___index0; int32_t L_4 = ___value1; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4); int32_t L_5 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::IsCompatibleObject(System.Object) extern "C" IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_m720038535_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___value0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7)))) { goto IL_001f; } } { RuntimeObject * L_1 = ___value0; if (L_1) { goto IL_001d; } } { il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); int32_t L_2 = V_0; int32_t L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), &L_3); return (bool)((((RuntimeObject*)(RuntimeObject *)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } IL_001d: { return (bool)0; } IL_001f: { return (bool)1; } } // System.Object System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IList.get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_System_Collections_IList_get_Item_m4185863671_gshared (List_1_t1152915922 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; NullCheck((List_1_t1152915922 *)__this); int32_t L_1 = (( int32_t (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_2); return L_3; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IList.set_Item(System.Int32,System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_m2431013279_gshared (List_1_t1152915922 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_set_Item_m2431013279_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___value1; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)15), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) int32_t L_1 = ___index0; RuntimeObject * L_2 = ___value1; NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)L_1, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); goto IL_002a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0017; throw e; } CATCH_0017: { // begin catch(System.InvalidCastException) RuntimeObject * L_3 = ___value1; RuntimeTypeHandle_t3027515415 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_4, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_3, (Type_t *)L_5, /*hidden argument*/NULL); goto IL_002a; } // end catch (depth: 1) IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Add(T) extern "C" IL2CPP_METHOD_ATTR void List_1_Add_m1469830948_gshared (List_1_t1152915922 * __this, int32_t ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get__size_2(); DialogButtonTypeU5BU5D_t3127917365* L_1 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_001e; } } { int32_t L_2 = (int32_t)__this->get__size_2(); NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); } IL_001e: { DialogButtonTypeU5BU5D_t3127917365* L_3 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_4 = (int32_t)__this->get__size_2(); V_0 = (int32_t)L_4; int32_t L_5 = V_0; __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); int32_t L_6 = V_0; int32_t L_7 = ___item0; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (int32_t)L_7); int32_t L_8 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IList.Add(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_m2033955595_gshared (List_1_t1152915922 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_Add_m2033955595_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___item0; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)20), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) RuntimeObject * L_1 = ___item0; NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); goto IL_0029; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0016; throw e; } CATCH_0016: { // begin catch(System.InvalidCastException) RuntimeObject * L_2 = ___item0; RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); goto IL_0029; } // end catch (depth: 1) IL_0029: { NullCheck((List_1_t1152915922 *)__this); int32_t L_5 = (( int32_t (*) (List_1_t1152915922 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t1152915922 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_AddRange_m1644539429_gshared (List_1_t1152915922 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); RuntimeObject* L_1 = ___collection0; NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)L_0, (RuntimeObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); return; } } // System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::AsReadOnly() extern "C" IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t893417467 * List_1_AsReadOnly_m1821692788_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { ReadOnlyCollection_1_t893417467 * L_0 = (ReadOnlyCollection_1_t893417467 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ReadOnlyCollection_1_t893417467 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_0, (RuntimeObject*)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return L_0; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::BinarySearch(System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m2017338970_gshared (List_1_t1152915922 * __this, int32_t ___index0, int32_t ___count1, int32_t ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { DialogButtonTypeU5BU5D_t3127917365* L_5 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; int32_t L_8 = ___item2; RuntimeObject* L_9 = ___comparer3; int32_t L_10 = (( int32_t (*) (RuntimeObject * /* static, unused */, DialogButtonTypeU5BU5D_t3127917365*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)(NULL /*static, unused*/, (DialogButtonTypeU5BU5D_t3127917365*)L_5, (int32_t)L_6, (int32_t)L_7, (int32_t)L_8, (RuntimeObject*)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return L_10; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::BinarySearch(T,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m1225738861_gshared (List_1_t1152915922 * __this, int32_t ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { { NullCheck((List_1_t1152915922 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t1152915922 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t1152915922 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); int32_t L_1 = ___item0; RuntimeObject* L_2 = ___comparer1; NullCheck((List_1_t1152915922 *)__this); int32_t L_3 = (( int32_t (*) (List_1_t1152915922 *, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)0, (int32_t)L_0, (int32_t)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return L_3; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Clear() extern "C" IL2CPP_METHOD_ATTR void List_1_Clear_m3458054492_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_0022; } } { DialogButtonTypeU5BU5D_t3127917365* L_1 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_2 = (int32_t)__this->get__size_2(); Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/NULL); __this->set__size_2(0); } IL_0022: { int32_t L_3 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Contains(T) extern "C" IL2CPP_METHOD_ATTR bool List_1_Contains_m2098546048_gshared (List_1_t1152915922 * __this, int32_t ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t2145580812 * V_1 = NULL; int32_t V_2 = 0; { goto IL_0030; } { V_0 = (int32_t)0; goto IL_0025; } IL_000c: { DialogButtonTypeU5BU5D_t3127917365* L_1 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = L_2; int32_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); goto IL_0021; } { return (bool)1; } IL_0021: { int32_t L_5 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_0025: { int32_t L_6 = V_0; int32_t L_7 = (int32_t)__this->get__size_2(); if ((((int32_t)L_6) < ((int32_t)L_7))) { goto IL_000c; } } { return (bool)0; } IL_0030: { EqualityComparer_1_t2145580812 * L_8 = (( EqualityComparer_1_t2145580812 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_t2145580812 *)L_8; V_2 = (int32_t)0; goto IL_0055; } IL_003a: { EqualityComparer_1_t2145580812 * L_9 = V_1; DialogButtonTypeU5BU5D_t3127917365* L_10 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; int32_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); int32_t L_14 = ___item0; NullCheck((EqualityComparer_1_t2145580812 *)L_9); bool L_15 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<HoloToolkit.UX.Dialog.DialogButtonType>::Equals(T,T) */, (EqualityComparer_1_t2145580812 *)L_9, (int32_t)L_13, (int32_t)L_14); if (!L_15) { goto IL_0051; } } { return (bool)1; } IL_0051: { int32_t L_16 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0055: { int32_t L_17 = V_2; int32_t L_18 = (int32_t)__this->get__size_2(); if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_003a; } } { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IList.Contains(System.Object) extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_m3659948011_gshared (List_1_t1152915922 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t1152915922 *)__this); bool L_3 = (( bool (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); return L_3; } IL_0015: { return (bool)0; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::CopyTo(T[]) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m129239553_gshared (List_1_t1152915922 * __this, DialogButtonTypeU5BU5D_t3127917365* ___array0, const RuntimeMethod* method) { { DialogButtonTypeU5BU5D_t3127917365* L_0 = ___array0; NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, DialogButtonTypeU5BU5D_t3127917365*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((List_1_t1152915922 *)__this, (DialogButtonTypeU5BU5D_t3127917365*)L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_m1872002207_gshared (List_1_t1152915922 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_ICollection_CopyTo_m1872002207_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeArray * L_0 = ___array0; if (!L_0) { goto IL_0012; } } { RuntimeArray * L_1 = ___array0; NullCheck((RuntimeArray *)L_1); int32_t L_2 = Array_get_Rank_m3448755881((RuntimeArray *)L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)7, /*hidden argument*/NULL); } IL_0012: { } IL_0013: try { // begin try (depth: 1) DialogButtonTypeU5BU5D_t3127917365* L_3 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); RuntimeArray * L_4 = ___array0; int32_t L_5 = ___arrayIndex1; int32_t L_6 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)0, (RuntimeArray *)L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/NULL); goto IL_0033; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_t2342549375_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0029; throw e; } CATCH_0029: { // begin catch(System.ArrayTypeMismatchException) ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)18), /*hidden argument*/NULL); goto IL_0033; } // end catch (depth: 1) IL_0033: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::CopyTo(System.Int32,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m192968182_gshared (List_1_t1152915922 * __this, int32_t ___index0, DialogButtonTypeU5BU5D_t3127917365* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); int32_t L_1 = ___index0; int32_t L_2 = ___count3; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1))) >= ((int32_t)L_2))) { goto IL_0013; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_0013: { DialogButtonTypeU5BU5D_t3127917365* L_3 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_4 = ___index0; DialogButtonTypeU5BU5D_t3127917365* L_5 = ___array1; int32_t L_6 = ___arrayIndex2; int32_t L_7 = ___count3; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)L_4, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::CopyTo(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m3967069380_gshared (List_1_t1152915922 * __this, DialogButtonTypeU5BU5D_t3127917365* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { DialogButtonTypeU5BU5D_t3127917365* L_0 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); DialogButtonTypeU5BU5D_t3127917365* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; int32_t L_3 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::EnsureCapacity(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m988304588_gshared (List_1_t1152915922 * __this, int32_t ___min0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B4_0 = 0; { DialogButtonTypeU5BU5D_t3127917365* L_0 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); NullCheck(L_0); int32_t L_1 = ___min0; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) >= ((int32_t)L_1))) { goto IL_003d; } } { DialogButtonTypeU5BU5D_t3127917365* L_2 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); NullCheck(L_2); if (!(((RuntimeArray *)L_2)->max_length)) { goto IL_0020; } } { DialogButtonTypeU5BU5D_t3127917365* L_3 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); NullCheck(L_3); G_B4_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), (int32_t)2)); goto IL_0021; } IL_0020: { G_B4_0 = 4; } IL_0021: { V_0 = (int32_t)G_B4_0; int32_t L_4 = V_0; if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071))))) { goto IL_0030; } } { V_0 = (int32_t)((int32_t)2146435071); } IL_0030: { int32_t L_5 = V_0; int32_t L_6 = ___min0; if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_0036; } } { int32_t L_7 = ___min0; V_0 = (int32_t)L_7; } IL_0036: { int32_t L_8 = V_0; NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); } IL_003d: { return; } } // T System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Find(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_Find_m1362836164_gshared (List_1_t1152915922 * __this, Predicate_1_t506135304 * ___match0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { Predicate_1_t506135304 * L_0 = ___match0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { V_0 = (int32_t)0; goto IL_0032; } IL_000d: { Predicate_1_t506135304 * L_1 = ___match0; DialogButtonTypeU5BU5D_t3127917365* L_2 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = L_3; int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); NullCheck((Predicate_1_t506135304 *)L_1); bool L_6 = (( bool (*) (Predicate_1_t506135304 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t506135304 *)L_1, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_6) { goto IL_002e; } } { DialogButtonTypeU5BU5D_t3127917365* L_7 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = L_8; int32_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); return L_10; } IL_002e: { int32_t L_11 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_0032: { int32_t L_12 = V_0; int32_t L_13 = (int32_t)__this->get__size_2(); if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_1), sizeof(int32_t)); int32_t L_14 = V_1; return L_14; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::FindIndex(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m3455642559_gshared (List_1_t1152915922 * __this, Predicate_1_t506135304 * ___match0, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); Predicate_1_t506135304 * L_1 = ___match0; NullCheck((List_1_t1152915922 *)__this); int32_t L_2 = (( int32_t (*) (List_1_t1152915922 *, int32_t, int32_t, Predicate_1_t506135304 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)0, (int32_t)L_0, (Predicate_1_t506135304 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); return L_2; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::FindIndex(System.Int32,System.Int32,System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m2940385887_gshared (List_1_t1152915922 * __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t506135304 * ___match2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)14), (int32_t)((int32_t)22), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = ___count1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0021; } } { int32_t L_3 = ___startIndex0; int32_t L_4 = (int32_t)__this->get__size_2(); int32_t L_5 = ___count1; if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))))) { goto IL_002a; } } IL_0021: { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)((int32_t)25), /*hidden argument*/NULL); } IL_002a: { Predicate_1_t506135304 * L_6 = ___match2; if (L_6) { goto IL_0033; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0033: { int32_t L_7 = ___startIndex0; int32_t L_8 = ___count1; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); int32_t L_9 = ___startIndex0; V_1 = (int32_t)L_9; goto IL_0055; } IL_003b: { Predicate_1_t506135304 * L_10 = ___match2; DialogButtonTypeU5BU5D_t3127917365* L_11 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = L_12; int32_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); NullCheck((Predicate_1_t506135304 *)L_10); bool L_15 = (( bool (*) (Predicate_1_t506135304 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t506135304 *)L_10, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_15) { goto IL_0051; } } { int32_t L_16 = V_1; return L_16; } IL_0051: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0055: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_003b; } } { return (-1); } } // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_t3042159799 List_1_GetEnumerator_m3756419203_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { Enumerator_t3042159799 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m3121224682((&L_0), (List_1_t1152915922 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); return L_0; } } // System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1560703700_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { Enumerator_t3042159799 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m3121224682((&L_0), (List_1_t1152915922 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); Enumerator_t3042159799 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), &L_1); return (RuntimeObject*)L_2; } } // System.Collections.IEnumerator System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IEnumerable.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_m4067703928_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { Enumerator_t3042159799 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m3121224682((&L_0), (List_1_t1152915922 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); Enumerator_t3042159799 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), &L_1); return (RuntimeObject*)L_2; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::IndexOf(T) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m2530213864_gshared (List_1_t1152915922 * __this, int32_t ___item0, const RuntimeMethod* method) { { DialogButtonTypeU5BU5D_t3127917365* L_0 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_1 = ___item0; int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = (( int32_t (*) (RuntimeObject * /* static, unused */, DialogButtonTypeU5BU5D_t3127917365*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)(NULL /*static, unused*/, (DialogButtonTypeU5BU5D_t3127917365*)L_0, (int32_t)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); return L_3; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IList.IndexOf(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_m3467065694_gshared (List_1_t1152915922 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t1152915922 *)__this); int32_t L_3 = (( int32_t (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return L_3; } IL_0015: { return (-1); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Insert(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void List_1_Insert_m4290027549_gshared (List_1_t1152915922 * __this, int32_t ___index0, int32_t ___item1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)((int32_t)27), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = (int32_t)__this->get__size_2(); DialogButtonTypeU5BU5D_t3127917365* L_3 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); NullCheck(L_3); if ((!(((uint32_t)L_2) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))))))) { goto IL_0030; } } { int32_t L_4 = (int32_t)__this->get__size_2(); NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); } IL_0030: { int32_t L_5 = ___index0; int32_t L_6 = (int32_t)__this->get__size_2(); if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_0056; } } { DialogButtonTypeU5BU5D_t3127917365* L_7 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_8 = ___index0; DialogButtonTypeU5BU5D_t3127917365* L_9 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_10 = ___index0; int32_t L_11 = (int32_t)__this->get__size_2(); int32_t L_12 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)L_8, (RuntimeArray *)(RuntimeArray *)L_9, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12)), /*hidden argument*/NULL); } IL_0056: { DialogButtonTypeU5BU5D_t3127917365* L_13 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_14 = ___index0; int32_t L_15 = ___item1; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)L_15); int32_t L_16 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1))); int32_t L_17 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IList.Insert(System.Int32,System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_m2906268787_gshared (List_1_t1152915922 * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_Insert_m2906268787_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___item1; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)20), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) int32_t L_1 = ___index0; RuntimeObject * L_2 = ___item1; NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)L_1, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)); goto IL_002a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0017; throw e; } CATCH_0017: { // begin catch(System.InvalidCastException) RuntimeObject * L_3 = ___item1; RuntimeTypeHandle_t3027515415 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_4, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_3, (Type_t *)L_5, /*hidden argument*/NULL); goto IL_002a; } // end catch (depth: 1) IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_InsertRange_m4128922981_gshared (List_1_t1152915922 * __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_InsertRange_m4128922981_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; int32_t V_1 = 0; DialogButtonTypeU5BU5D_t3127917365* V_2 = NULL; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___collection1; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)6, /*hidden argument*/NULL); } IL_0009: { int32_t L_1 = ___index0; int32_t L_2 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_1) > ((uint32_t)L_2)))) { goto IL_001b; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)((int32_t)22), /*hidden argument*/NULL); } IL_001b: { RuntimeObject* L_3 = ___collection1; V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2))); RuntimeObject* L_4 = V_0; if (!L_4) { goto IL_00cf; } } { RuntimeObject* L_5 = V_0; NullCheck((RuntimeObject*)L_5); int32_t L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<HoloToolkit.UX.Dialog.DialogButtonType>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_5); V_1 = (int32_t)L_6; int32_t L_7 = V_1; if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_00fe; } } { int32_t L_8 = (int32_t)__this->get__size_2(); int32_t L_9 = V_1; NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); int32_t L_10 = ___index0; int32_t L_11 = (int32_t)__this->get__size_2(); if ((((int32_t)L_10) >= ((int32_t)L_11))) { goto IL_006a; } } { DialogButtonTypeU5BU5D_t3127917365* L_12 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_13 = ___index0; DialogButtonTypeU5BU5D_t3127917365* L_14 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_15 = ___index0; int32_t L_16 = V_1; int32_t L_17 = (int32_t)__this->get__size_2(); int32_t L_18 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_12, (int32_t)L_13, (RuntimeArray *)(RuntimeArray *)L_14, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)), /*hidden argument*/NULL); } IL_006a: { RuntimeObject* L_19 = V_0; if ((!(((RuntimeObject*)(List_1_t1152915922 *)__this) == ((RuntimeObject*)(RuntimeObject*)L_19)))) { goto IL_00a3; } } { DialogButtonTypeU5BU5D_t3127917365* L_20 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); DialogButtonTypeU5BU5D_t3127917365* L_21 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_22 = ___index0; int32_t L_23 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_20, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_21, (int32_t)L_22, (int32_t)L_23, /*hidden argument*/NULL); DialogButtonTypeU5BU5D_t3127917365* L_24 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_25 = ___index0; int32_t L_26 = V_1; DialogButtonTypeU5BU5D_t3127917365* L_27 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_28 = ___index0; int32_t L_29 = (int32_t)__this->get__size_2(); int32_t L_30 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_24, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)L_26)), (RuntimeArray *)(RuntimeArray *)L_27, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_28, (int32_t)2)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)L_30)), /*hidden argument*/NULL); goto IL_00bf; } IL_00a3: { int32_t L_31 = V_1; DialogButtonTypeU5BU5D_t3127917365* L_32 = (DialogButtonTypeU5BU5D_t3127917365*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_31); V_2 = (DialogButtonTypeU5BU5D_t3127917365*)L_32; RuntimeObject* L_33 = V_0; DialogButtonTypeU5BU5D_t3127917365* L_34 = V_2; NullCheck((RuntimeObject*)L_33); InterfaceActionInvoker2< DialogButtonTypeU5BU5D_t3127917365*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<HoloToolkit.UX.Dialog.DialogButtonType>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_33, (DialogButtonTypeU5BU5D_t3127917365*)L_34, (int32_t)0); DialogButtonTypeU5BU5D_t3127917365* L_35 = V_2; DialogButtonTypeU5BU5D_t3127917365* L_36 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_37 = ___index0; NullCheck((RuntimeArray *)(RuntimeArray *)L_35); Array_CopyTo_m225704097((RuntimeArray *)(RuntimeArray *)L_35, (RuntimeArray *)(RuntimeArray *)L_36, (int32_t)L_37, /*hidden argument*/NULL); } IL_00bf: { int32_t L_38 = (int32_t)__this->get__size_2(); int32_t L_39 = V_1; __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)L_39))); goto IL_00fe; } IL_00cf: { RuntimeObject* L_40 = ___collection1; NullCheck((RuntimeObject*)L_40); RuntimeObject* L_41 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<HoloToolkit.UX.Dialog.DialogButtonType>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_40); V_3 = (RuntimeObject*)L_41; } IL_00d6: try { // begin try (depth: 1) { goto IL_00ea; } IL_00d8: { int32_t L_42 = ___index0; int32_t L_43 = (int32_t)L_42; ___index0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); RuntimeObject* L_44 = V_3; NullCheck((RuntimeObject*)L_44); int32_t L_45 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<HoloToolkit.UX.Dialog.DialogButtonType>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_44); NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)L_43, (int32_t)L_45, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)); } IL_00ea: { RuntimeObject* L_46 = V_3; NullCheck((RuntimeObject*)L_46); bool L_47 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_46); if (L_47) { goto IL_00d8; } } IL_00f2: { IL2CPP_LEAVE(0xFE, FINALLY_00f4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00f4; } FINALLY_00f4: { // begin finally (depth: 1) { RuntimeObject* L_48 = V_3; if (!L_48) { goto IL_00fd; } } IL_00f7: { RuntimeObject* L_49 = V_3; NullCheck((RuntimeObject*)L_49); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_49); } IL_00fd: { IL2CPP_END_FINALLY(244) } } // end finally (depth: 1) IL2CPP_CLEANUP(244) { IL2CPP_JUMP_TBL(0xFE, IL_00fe) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00fe: { int32_t L_50 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Remove(T) extern "C" IL2CPP_METHOD_ATTR bool List_1_Remove_m50507011_gshared (List_1_t1152915922 * __this, int32_t ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = ___item0; NullCheck((List_1_t1152915922 *)__this); int32_t L_1 = (( int32_t (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0015; } } { int32_t L_3 = V_0; NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); return (bool)1; } IL_0015: { return (bool)0; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::System.Collections.IList.Remove(System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_m4139043441_gshared (List_1_t1152915922 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t1152915922 *)__this); (( bool (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 34)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 34)); } IL_0015: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::RemoveAll(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_m37838731_gshared (List_1_t1152915922 * __this, Predicate_1_t506135304 * ___match0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { Predicate_1_t506135304 * L_0 = ___match0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { V_0 = (int32_t)0; goto IL_0011; } IL_000d: { int32_t L_1 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)); } IL_0011: { int32_t L_2 = V_0; int32_t L_3 = (int32_t)__this->get__size_2(); if ((((int32_t)L_2) >= ((int32_t)L_3))) { goto IL_002e; } } { Predicate_1_t506135304 * L_4 = ___match0; DialogButtonTypeU5BU5D_t3127917365* L_5 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; int32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); NullCheck((Predicate_1_t506135304 *)L_4); bool L_9 = (( bool (*) (Predicate_1_t506135304 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t506135304 *)L_4, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_9) { goto IL_000d; } } IL_002e: { int32_t L_10 = V_0; int32_t L_11 = (int32_t)__this->get__size_2(); if ((((int32_t)L_10) < ((int32_t)L_11))) { goto IL_0039; } } { return 0; } IL_0039: { int32_t L_12 = V_0; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); goto IL_0089; } IL_003f: { int32_t L_13 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_0043: { int32_t L_14 = V_1; int32_t L_15 = (int32_t)__this->get__size_2(); if ((((int32_t)L_14) >= ((int32_t)L_15))) { goto IL_0060; } } { Predicate_1_t506135304 * L_16 = ___match0; DialogButtonTypeU5BU5D_t3127917365* L_17 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_18 = V_1; NullCheck(L_17); int32_t L_19 = L_18; int32_t L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); NullCheck((Predicate_1_t506135304 *)L_16); bool L_21 = (( bool (*) (Predicate_1_t506135304 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t506135304 *)L_16, (int32_t)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (L_21) { goto IL_003f; } } IL_0060: { int32_t L_22 = V_1; int32_t L_23 = (int32_t)__this->get__size_2(); if ((((int32_t)L_22) >= ((int32_t)L_23))) { goto IL_0089; } } { DialogButtonTypeU5BU5D_t3127917365* L_24 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_25 = V_0; int32_t L_26 = (int32_t)L_25; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); DialogButtonTypeU5BU5D_t3127917365* L_27 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_28 = V_1; int32_t L_29 = (int32_t)L_28; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); NullCheck(L_27); int32_t L_30 = L_29; int32_t L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30)); NullCheck(L_24); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (int32_t)L_31); } IL_0089: { int32_t L_32 = V_1; int32_t L_33 = (int32_t)__this->get__size_2(); if ((((int32_t)L_32) < ((int32_t)L_33))) { goto IL_0043; } } { DialogButtonTypeU5BU5D_t3127917365* L_34 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_35 = V_0; int32_t L_36 = (int32_t)__this->get__size_2(); int32_t L_37 = V_0; Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_34, (int32_t)L_35, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), /*hidden argument*/NULL); int32_t L_38 = (int32_t)__this->get__size_2(); int32_t L_39 = V_0; int32_t L_40 = V_0; __this->set__size_2(L_40); int32_t L_41 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1))); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)L_39)); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::RemoveAt(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_RemoveAt_m703187476_gshared (List_1_t1152915922 * __this, int32_t ___index0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { int32_t L_2 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1))); int32_t L_3 = ___index0; int32_t L_4 = (int32_t)__this->get__size_2(); if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_0042; } } { DialogButtonTypeU5BU5D_t3127917365* L_5 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_6 = ___index0; DialogButtonTypeU5BU5D_t3127917365* L_7 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); int32_t L_10 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)L_8, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL); } IL_0042: { DialogButtonTypeU5BU5D_t3127917365* L_11 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_12 = (int32_t)__this->get__size_2(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); int32_t L_13 = V_0; NullCheck(L_11); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (int32_t)L_13); int32_t L_14 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::RemoveRange(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_RemoveRange_m396983273_gshared (List_1_t1152915922 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { int32_t L_5 = ___count1; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_0082; } } { int32_t L_6 = (int32_t)__this->get__size_2(); int32_t L_7 = ___count1; __this->set__size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7))); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); if ((((int32_t)L_8) >= ((int32_t)L_9))) { goto IL_0062; } } { DialogButtonTypeU5BU5D_t3127917365* L_10 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_11 = ___index0; int32_t L_12 = ___count1; DialogButtonTypeU5BU5D_t3127917365* L_13 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_14 = ___index0; int32_t L_15 = (int32_t)__this->get__size_2(); int32_t L_16 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (RuntimeArray *)(RuntimeArray *)L_13, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); } IL_0062: { DialogButtonTypeU5BU5D_t3127917365* L_17 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_18 = (int32_t)__this->get__size_2(); int32_t L_19 = ___count1; Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_17, (int32_t)L_18, (int32_t)L_19, /*hidden argument*/NULL); int32_t L_20 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); } IL_0082: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Reverse() extern "C" IL2CPP_METHOD_ATTR void List_1_Reverse_m3746781649_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { NullCheck((List_1_t1152915922 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t1152915922 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t1152915922 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)0, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Reverse(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_Reverse_m4144999310_gshared (List_1_t1152915922 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { DialogButtonTypeU5BU5D_t3127917365* L_5 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; (( void (*) (RuntimeObject * /* static, unused */, DialogButtonTypeU5BU5D_t3127917365*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)(NULL /*static, unused*/, (DialogButtonTypeU5BU5D_t3127917365*)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_8 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Sort() extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m3786879149_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { { NullCheck((List_1_t1152915922 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t1152915922 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t1152915922 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)0, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Sort(System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m222521517_gshared (List_1_t1152915922 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { NullCheck((List_1_t1152915922 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t1152915922 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t1152915922 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); RuntimeObject* L_1 = ___comparer0; NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)0, (int32_t)L_0, (RuntimeObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m3966317340_gshared (List_1_t1152915922 * __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { DialogButtonTypeU5BU5D_t3127917365* L_5 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; RuntimeObject* L_8 = ___comparer2; (( void (*) (RuntimeObject * /* static, unused */, DialogButtonTypeU5BU5D_t3127917365*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)->methodPointer)(NULL /*static, unused*/, (DialogButtonTypeU5BU5D_t3127917365*)L_5, (int32_t)L_6, (int32_t)L_7, (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)); int32_t L_9 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::Sort(System.Comparison`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m975836817_gshared (List_1_t1152915922 * __this, Comparison_1_t3750739655 * ___comparison0, const RuntimeMethod* method) { { Comparison_1_t3750739655 * L_0 = ___comparison0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { int32_t L_1 = (int32_t)__this->get__size_2(); if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_0025; } } { DialogButtonTypeU5BU5D_t3127917365* L_2 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); int32_t L_3 = (int32_t)__this->get__size_2(); Comparison_1_t3750739655 * L_4 = ___comparison0; (( void (*) (RuntimeObject * /* static, unused */, DialogButtonTypeU5BU5D_t3127917365*, int32_t, int32_t, Comparison_1_t3750739655 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)(NULL /*static, unused*/, (DialogButtonTypeU5BU5D_t3127917365*)L_2, (int32_t)0, (int32_t)L_3, (Comparison_1_t3750739655 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); } IL_0025: { return; } } // T[] System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::ToArray() extern "C" IL2CPP_METHOD_ATTR DialogButtonTypeU5BU5D_t3127917365* List_1_ToArray_m317593743_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { DialogButtonTypeU5BU5D_t3127917365* V_0 = NULL; { int32_t L_0 = (int32_t)__this->get__size_2(); DialogButtonTypeU5BU5D_t3127917365* L_1 = (DialogButtonTypeU5BU5D_t3127917365*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_0); V_0 = (DialogButtonTypeU5BU5D_t3127917365*)L_1; DialogButtonTypeU5BU5D_t3127917365* L_2 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); DialogButtonTypeU5BU5D_t3127917365* L_3 = V_0; int32_t L_4 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_2, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)0, (int32_t)L_4, /*hidden argument*/NULL); DialogButtonTypeU5BU5D_t3127917365* L_5 = V_0; return L_5; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::TrimExcess() extern "C" IL2CPP_METHOD_ATTR void List_1_TrimExcess_m902266328_gshared (List_1_t1152915922 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { DialogButtonTypeU5BU5D_t3127917365* L_0 = (DialogButtonTypeU5BU5D_t3127917365*)__this->get__items_1(); NullCheck(L_0); V_0 = (int32_t)(((int32_t)((int32_t)((double)il2cpp_codegen_multiply((double)(((double)((double)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))))), (double)(0.9)))))); int32_t L_1 = (int32_t)__this->get__size_2(); int32_t L_2 = V_0; if ((((int32_t)L_1) >= ((int32_t)L_2))) { goto IL_002a; } } { int32_t L_3 = (int32_t)__this->get__size_2(); NullCheck((List_1_t1152915922 *)__this); (( void (*) (List_1_t1152915922 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((List_1_t1152915922 *)__this, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); } IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.UX.Dialog.DialogButtonType>::.cctor() extern "C" IL2CPP_METHOD_ATTR void List_1__cctor_m3954413779_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { DialogButtonTypeU5BU5D_t3127917365* L_0 = (DialogButtonTypeU5BU5D_t3127917365*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), (uint32_t)0); ((List_1_t1152915922_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set__emptyArray_5(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.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::.ctor() extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m3009567225_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); InputSourceInfoU5BU5D_t3430263659* L_0 = ((List_1_t1572102484_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_0); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m2949009371_gshared (List_1_t1572102484 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)12), (int32_t)4, /*hidden argument*/NULL); } IL_0012: { int32_t L_1 = ___capacity0; if (L_1) { goto IL_0021; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); InputSourceInfoU5BU5D_t3430263659* L_2 = ((List_1_t1572102484_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_2); return; } IL_0021: { int32_t L_3 = ___capacity0; InputSourceInfoU5BU5D_t3430263659* L_4 = (InputSourceInfoU5BU5D_t3430263659*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_3); __this->set__items_1(L_4); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::.ctor(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m3755393346_gshared (List_1_t1572102484 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1__ctor_m3755393346_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; int32_t V_1 = 0; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___collection0; if (L_0) { goto IL_000f; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)6, /*hidden argument*/NULL); } IL_000f: { RuntimeObject* L_1 = ___collection0; V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2))); RuntimeObject* L_2 = V_0; if (!L_2) { goto IL_0050; } } { RuntimeObject* L_3 = V_0; NullCheck((RuntimeObject*)L_3); int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_3); V_1 = (int32_t)L_4; int32_t L_5 = V_1; if (L_5) { goto IL_002f; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); InputSourceInfoU5BU5D_t3430263659* L_6 = ((List_1_t1572102484_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_6); return; } IL_002f: { int32_t L_7 = V_1; InputSourceInfoU5BU5D_t3430263659* L_8 = (InputSourceInfoU5BU5D_t3430263659*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_7); __this->set__items_1(L_8); RuntimeObject* L_9 = V_0; InputSourceInfoU5BU5D_t3430263659* L_10 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); NullCheck((RuntimeObject*)L_9); InterfaceActionInvoker2< InputSourceInfoU5BU5D_t3430263659*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_9, (InputSourceInfoU5BU5D_t3430263659*)L_10, (int32_t)0); int32_t L_11 = V_1; __this->set__size_2(L_11); return; } IL_0050: { __this->set__size_2(0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); InputSourceInfoU5BU5D_t3430263659* L_12 = ((List_1_t1572102484_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_12); RuntimeObject* L_13 = ___collection0; NullCheck((RuntimeObject*)L_13); RuntimeObject* L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_13); V_2 = (RuntimeObject*)L_14; } IL_0069: try { // begin try (depth: 1) { goto IL_0077; } IL_006b: { RuntimeObject* L_15 = V_2; NullCheck((RuntimeObject*)L_15); InputSourceInfo_t100027742 L_16 = InterfaceFuncInvoker0< InputSourceInfo_t100027742 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_15); NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((List_1_t1572102484 *)__this, (InputSourceInfo_t100027742 )L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_0077: { RuntimeObject* L_17 = V_2; NullCheck((RuntimeObject*)L_17); bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_17); if (L_18) { goto IL_006b; } } IL_007f: { IL2CPP_LEAVE(0x8B, FINALLY_0081); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0081; } FINALLY_0081: { // begin finally (depth: 1) { RuntimeObject* L_19 = V_2; if (!L_19) { goto IL_008a; } } IL_0084: { RuntimeObject* L_20 = V_2; NullCheck((RuntimeObject*)L_20); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_20); } IL_008a: { IL2CPP_END_FINALLY(129) } } // end finally (depth: 1) IL2CPP_CLEANUP(129) { IL2CPP_JUMP_TBL(0x8B, IL_008b) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_008b: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::get_Capacity() extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m2201388501_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { InputSourceInfoU5BU5D_t3430263659* L_0 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); NullCheck(L_0); return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::set_Capacity(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_set_Capacity_m1515950751_gshared (List_1_t1572102484 * __this, int32_t ___value0, const RuntimeMethod* method) { InputSourceInfoU5BU5D_t3430263659* V_0 = NULL; { int32_t L_0 = ___value0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)15), (int32_t)((int32_t)21), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = ___value0; InputSourceInfoU5BU5D_t3430263659* L_3 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); NullCheck(L_3); if ((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))))) { goto IL_0058; } } { int32_t L_4 = ___value0; if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_004d; } } { int32_t L_5 = ___value0; InputSourceInfoU5BU5D_t3430263659* L_6 = (InputSourceInfoU5BU5D_t3430263659*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_5); V_0 = (InputSourceInfoU5BU5D_t3430263659*)L_6; int32_t L_7 = (int32_t)__this->get__size_2(); if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_0045; } } { InputSourceInfoU5BU5D_t3430263659* L_8 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); InputSourceInfoU5BU5D_t3430263659* L_9 = V_0; int32_t L_10 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (int32_t)L_10, /*hidden argument*/NULL); } IL_0045: { InputSourceInfoU5BU5D_t3430263659* L_11 = V_0; __this->set__items_1(L_11); return; } IL_004d: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); InputSourceInfoU5BU5D_t3430263659* L_12 = ((List_1_t1572102484_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_12); } IL_0058: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m1412102615_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return L_0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IList.get_IsFixedSize() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_m2079631647_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2061543262_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IList.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_m3248664473_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.ICollection.get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_ICollection_get_IsSynchronized_m1871442475_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.ICollection.get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_System_Collections_ICollection_get_SyncRoot_m1980815923_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_ICollection_get_SyncRoot_m1980815923_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_4(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_4(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m297566312(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_4(); return L_3; } } // T System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR InputSourceInfo_t100027742 List_1_get_Item_m582231273_gshared (List_1_t1572102484 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { InputSourceInfoU5BU5D_t3430263659* L_2 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_3 = ___index0; InputSourceInfo_t100027742 L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((InputSourceInfoU5BU5D_t3430263659*)L_2, (int32_t)L_3); return L_4; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::set_Item(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void List_1_set_Item_m1368686335_gshared (List_1_t1572102484 * __this, int32_t ___index0, InputSourceInfo_t100027742 ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { InputSourceInfoU5BU5D_t3430263659* L_2 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_3 = ___index0; InputSourceInfo_t100027742 L_4 = ___value1; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (InputSourceInfo_t100027742 )L_4); int32_t L_5 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::IsCompatibleObject(System.Object) extern "C" IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_m4125519567_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, const RuntimeMethod* method) { InputSourceInfo_t100027742 V_0; memset(&V_0, 0, sizeof(V_0)); { RuntimeObject * L_0 = ___value0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7)))) { goto IL_001f; } } { RuntimeObject * L_1 = ___value0; if (L_1) { goto IL_001d; } } { il2cpp_codegen_initobj((&V_0), sizeof(InputSourceInfo_t100027742 )); InputSourceInfo_t100027742 L_2 = V_0; InputSourceInfo_t100027742 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), &L_3); return (bool)((((RuntimeObject*)(RuntimeObject *)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } IL_001d: { return (bool)0; } IL_001f: { return (bool)1; } } // System.Object System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IList.get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_System_Collections_IList_get_Item_m322806957_gshared (List_1_t1572102484 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; NullCheck((List_1_t1572102484 *)__this); InputSourceInfo_t100027742 L_1 = (( InputSourceInfo_t100027742 (*) (List_1_t1572102484 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); InputSourceInfo_t100027742 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_2); return L_3; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IList.set_Item(System.Int32,System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_m1790168535_gshared (List_1_t1572102484 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_set_Item_m1790168535_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___value1; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)15), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) int32_t L_1 = ___index0; RuntimeObject * L_2 = ___value1; NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)L_1, (InputSourceInfo_t100027742 )((*(InputSourceInfo_t100027742 *)((InputSourceInfo_t100027742 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); goto IL_002a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0017; throw e; } CATCH_0017: { // begin catch(System.InvalidCastException) RuntimeObject * L_3 = ___value1; RuntimeTypeHandle_t3027515415 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_4, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_3, (Type_t *)L_5, /*hidden argument*/NULL); goto IL_002a; } // end catch (depth: 1) IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Add(T) extern "C" IL2CPP_METHOD_ATTR void List_1_Add_m3514121522_gshared (List_1_t1572102484 * __this, InputSourceInfo_t100027742 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get__size_2(); InputSourceInfoU5BU5D_t3430263659* L_1 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_001e; } } { int32_t L_2 = (int32_t)__this->get__size_2(); NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); } IL_001e: { InputSourceInfoU5BU5D_t3430263659* L_3 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_4 = (int32_t)__this->get__size_2(); V_0 = (int32_t)L_4; int32_t L_5 = V_0; __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); int32_t L_6 = V_0; InputSourceInfo_t100027742 L_7 = ___item0; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (InputSourceInfo_t100027742 )L_7); int32_t L_8 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IList.Add(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_m1624506343_gshared (List_1_t1572102484 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_Add_m1624506343_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___item0; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)20), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) RuntimeObject * L_1 = ___item0; NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((List_1_t1572102484 *)__this, (InputSourceInfo_t100027742 )((*(InputSourceInfo_t100027742 *)((InputSourceInfo_t100027742 *)UnBox(L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); goto IL_0029; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0016; throw e; } CATCH_0016: { // begin catch(System.InvalidCastException) RuntimeObject * L_2 = ___item0; RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); goto IL_0029; } // end catch (depth: 1) IL_0029: { NullCheck((List_1_t1572102484 *)__this); int32_t L_5 = (( int32_t (*) (List_1_t1572102484 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t1572102484 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_AddRange_m2074830849_gshared (List_1_t1572102484 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); RuntimeObject* L_1 = ___collection0; NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)L_0, (RuntimeObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); return; } } // System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::AsReadOnly() extern "C" IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t1312604029 * List_1_AsReadOnly_m423695345_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { ReadOnlyCollection_1_t1312604029 * L_0 = (ReadOnlyCollection_1_t1312604029 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ReadOnlyCollection_1_t1312604029 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_0, (RuntimeObject*)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return L_0; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::BinarySearch(System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m840295618_gshared (List_1_t1572102484 * __this, int32_t ___index0, int32_t ___count1, InputSourceInfo_t100027742 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { InputSourceInfoU5BU5D_t3430263659* L_5 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; InputSourceInfo_t100027742 L_8 = ___item2; RuntimeObject* L_9 = ___comparer3; int32_t L_10 = (( int32_t (*) (RuntimeObject * /* static, unused */, InputSourceInfoU5BU5D_t3430263659*, int32_t, int32_t, InputSourceInfo_t100027742 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)(NULL /*static, unused*/, (InputSourceInfoU5BU5D_t3430263659*)L_5, (int32_t)L_6, (int32_t)L_7, (InputSourceInfo_t100027742 )L_8, (RuntimeObject*)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return L_10; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::BinarySearch(T,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m972141440_gshared (List_1_t1572102484 * __this, InputSourceInfo_t100027742 ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { { NullCheck((List_1_t1572102484 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t1572102484 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t1572102484 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); InputSourceInfo_t100027742 L_1 = ___item0; RuntimeObject* L_2 = ___comparer1; NullCheck((List_1_t1572102484 *)__this); int32_t L_3 = (( int32_t (*) (List_1_t1572102484 *, int32_t, int32_t, InputSourceInfo_t100027742 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)0, (int32_t)L_0, (InputSourceInfo_t100027742 )L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return L_3; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Clear() extern "C" IL2CPP_METHOD_ATTR void List_1_Clear_m1749083986_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_0022; } } { InputSourceInfoU5BU5D_t3430263659* L_1 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_2 = (int32_t)__this->get__size_2(); Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/NULL); __this->set__size_2(0); } IL_0022: { int32_t L_3 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Contains(T) extern "C" IL2CPP_METHOD_ATTR bool List_1_Contains_m718802682_gshared (List_1_t1572102484 * __this, InputSourceInfo_t100027742 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t2564767374 * V_1 = NULL; int32_t V_2 = 0; { goto IL_0030; } { V_0 = (int32_t)0; goto IL_0025; } IL_000c: { InputSourceInfoU5BU5D_t3430263659* L_1 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = L_2; InputSourceInfo_t100027742 L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); goto IL_0021; } { return (bool)1; } IL_0021: { int32_t L_5 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_0025: { int32_t L_6 = V_0; int32_t L_7 = (int32_t)__this->get__size_2(); if ((((int32_t)L_6) < ((int32_t)L_7))) { goto IL_000c; } } { return (bool)0; } IL_0030: { EqualityComparer_1_t2564767374 * L_8 = (( EqualityComparer_1_t2564767374 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_t2564767374 *)L_8; V_2 = (int32_t)0; goto IL_0055; } IL_003a: { EqualityComparer_1_t2564767374 * L_9 = V_1; InputSourceInfoU5BU5D_t3430263659* L_10 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; InputSourceInfo_t100027742 L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); InputSourceInfo_t100027742 L_14 = ___item0; NullCheck((EqualityComparer_1_t2564767374 *)L_9); bool L_15 = VirtFuncInvoker2< bool, InputSourceInfo_t100027742 , InputSourceInfo_t100027742 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Equals(T,T) */, (EqualityComparer_1_t2564767374 *)L_9, (InputSourceInfo_t100027742 )L_13, (InputSourceInfo_t100027742 )L_14); if (!L_15) { goto IL_0051; } } { return (bool)1; } IL_0051: { int32_t L_16 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0055: { int32_t L_17 = V_2; int32_t L_18 = (int32_t)__this->get__size_2(); if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_003a; } } { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IList.Contains(System.Object) extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_m566428473_gshared (List_1_t1572102484 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t1572102484 *)__this); bool L_3 = (( bool (*) (List_1_t1572102484 *, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)((List_1_t1572102484 *)__this, (InputSourceInfo_t100027742 )((*(InputSourceInfo_t100027742 *)((InputSourceInfo_t100027742 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); return L_3; } IL_0015: { return (bool)0; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::CopyTo(T[]) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m2578714023_gshared (List_1_t1572102484 * __this, InputSourceInfoU5BU5D_t3430263659* ___array0, const RuntimeMethod* method) { { InputSourceInfoU5BU5D_t3430263659* L_0 = ___array0; NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, InputSourceInfoU5BU5D_t3430263659*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((List_1_t1572102484 *)__this, (InputSourceInfoU5BU5D_t3430263659*)L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_m3310066590_gshared (List_1_t1572102484 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_ICollection_CopyTo_m3310066590_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeArray * L_0 = ___array0; if (!L_0) { goto IL_0012; } } { RuntimeArray * L_1 = ___array0; NullCheck((RuntimeArray *)L_1); int32_t L_2 = Array_get_Rank_m3448755881((RuntimeArray *)L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)7, /*hidden argument*/NULL); } IL_0012: { } IL_0013: try { // begin try (depth: 1) InputSourceInfoU5BU5D_t3430263659* L_3 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); RuntimeArray * L_4 = ___array0; int32_t L_5 = ___arrayIndex1; int32_t L_6 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)0, (RuntimeArray *)L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/NULL); goto IL_0033; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_t2342549375_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0029; throw e; } CATCH_0029: { // begin catch(System.ArrayTypeMismatchException) ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)18), /*hidden argument*/NULL); goto IL_0033; } // end catch (depth: 1) IL_0033: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::CopyTo(System.Int32,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m2508589841_gshared (List_1_t1572102484 * __this, int32_t ___index0, InputSourceInfoU5BU5D_t3430263659* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); int32_t L_1 = ___index0; int32_t L_2 = ___count3; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1))) >= ((int32_t)L_2))) { goto IL_0013; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_0013: { InputSourceInfoU5BU5D_t3430263659* L_3 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_4 = ___index0; InputSourceInfoU5BU5D_t3430263659* L_5 = ___array1; int32_t L_6 = ___arrayIndex2; int32_t L_7 = ___count3; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)L_4, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::CopyTo(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m1294022460_gshared (List_1_t1572102484 * __this, InputSourceInfoU5BU5D_t3430263659* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { InputSourceInfoU5BU5D_t3430263659* L_0 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); InputSourceInfoU5BU5D_t3430263659* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; int32_t L_3 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::EnsureCapacity(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m37596937_gshared (List_1_t1572102484 * __this, int32_t ___min0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B4_0 = 0; { InputSourceInfoU5BU5D_t3430263659* L_0 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); NullCheck(L_0); int32_t L_1 = ___min0; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) >= ((int32_t)L_1))) { goto IL_003d; } } { InputSourceInfoU5BU5D_t3430263659* L_2 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); NullCheck(L_2); if (!(((RuntimeArray *)L_2)->max_length)) { goto IL_0020; } } { InputSourceInfoU5BU5D_t3430263659* L_3 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); NullCheck(L_3); G_B4_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), (int32_t)2)); goto IL_0021; } IL_0020: { G_B4_0 = 4; } IL_0021: { V_0 = (int32_t)G_B4_0; int32_t L_4 = V_0; if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071))))) { goto IL_0030; } } { V_0 = (int32_t)((int32_t)2146435071); } IL_0030: { int32_t L_5 = V_0; int32_t L_6 = ___min0; if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_0036; } } { int32_t L_7 = ___min0; V_0 = (int32_t)L_7; } IL_0036: { int32_t L_8 = V_0; NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); } IL_003d: { return; } } // T System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Find(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR InputSourceInfo_t100027742 List_1_Find_m3862187645_gshared (List_1_t1572102484 * __this, Predicate_1_t925321866 * ___match0, const RuntimeMethod* method) { int32_t V_0 = 0; InputSourceInfo_t100027742 V_1; memset(&V_1, 0, sizeof(V_1)); { Predicate_1_t925321866 * L_0 = ___match0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { V_0 = (int32_t)0; goto IL_0032; } IL_000d: { Predicate_1_t925321866 * L_1 = ___match0; InputSourceInfoU5BU5D_t3430263659* L_2 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = L_3; InputSourceInfo_t100027742 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); NullCheck((Predicate_1_t925321866 *)L_1); bool L_6 = (( bool (*) (Predicate_1_t925321866 *, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t925321866 *)L_1, (InputSourceInfo_t100027742 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_6) { goto IL_002e; } } { InputSourceInfoU5BU5D_t3430263659* L_7 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = L_8; InputSourceInfo_t100027742 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); return L_10; } IL_002e: { int32_t L_11 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_0032: { int32_t L_12 = V_0; int32_t L_13 = (int32_t)__this->get__size_2(); if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_1), sizeof(InputSourceInfo_t100027742 )); InputSourceInfo_t100027742 L_14 = V_1; return L_14; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::FindIndex(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m4005870353_gshared (List_1_t1572102484 * __this, Predicate_1_t925321866 * ___match0, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); Predicate_1_t925321866 * L_1 = ___match0; NullCheck((List_1_t1572102484 *)__this); int32_t L_2 = (( int32_t (*) (List_1_t1572102484 *, int32_t, int32_t, Predicate_1_t925321866 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)0, (int32_t)L_0, (Predicate_1_t925321866 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); return L_2; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::FindIndex(System.Int32,System.Int32,System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m2291052193_gshared (List_1_t1572102484 * __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t925321866 * ___match2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)14), (int32_t)((int32_t)22), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = ___count1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0021; } } { int32_t L_3 = ___startIndex0; int32_t L_4 = (int32_t)__this->get__size_2(); int32_t L_5 = ___count1; if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))))) { goto IL_002a; } } IL_0021: { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)((int32_t)25), /*hidden argument*/NULL); } IL_002a: { Predicate_1_t925321866 * L_6 = ___match2; if (L_6) { goto IL_0033; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0033: { int32_t L_7 = ___startIndex0; int32_t L_8 = ___count1; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); int32_t L_9 = ___startIndex0; V_1 = (int32_t)L_9; goto IL_0055; } IL_003b: { Predicate_1_t925321866 * L_10 = ___match2; InputSourceInfoU5BU5D_t3430263659* L_11 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = L_12; InputSourceInfo_t100027742 L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); NullCheck((Predicate_1_t925321866 *)L_10); bool L_15 = (( bool (*) (Predicate_1_t925321866 *, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t925321866 *)L_10, (InputSourceInfo_t100027742 )L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_15) { goto IL_0051; } } { int32_t L_16 = V_1; return L_16; } IL_0051: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0055: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_003b; } } { return (-1); } } // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_t3461346361 List_1_GetEnumerator_m2069912651_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { Enumerator_t3461346361 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m3137077068((&L_0), (List_1_t1572102484 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); return L_0; } } // System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m2593159032_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { Enumerator_t3461346361 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m3137077068((&L_0), (List_1_t1572102484 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); Enumerator_t3461346361 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), &L_1); return (RuntimeObject*)L_2; } } // System.Collections.IEnumerator System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IEnumerable.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_m1445919298_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { Enumerator_t3461346361 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m3137077068((&L_0), (List_1_t1572102484 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); Enumerator_t3461346361 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), &L_1); return (RuntimeObject*)L_2; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::IndexOf(T) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m427796527_gshared (List_1_t1572102484 * __this, InputSourceInfo_t100027742 ___item0, const RuntimeMethod* method) { { InputSourceInfoU5BU5D_t3430263659* L_0 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); InputSourceInfo_t100027742 L_1 = ___item0; int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = (( int32_t (*) (RuntimeObject * /* static, unused */, InputSourceInfoU5BU5D_t3430263659*, InputSourceInfo_t100027742 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)(NULL /*static, unused*/, (InputSourceInfoU5BU5D_t3430263659*)L_0, (InputSourceInfo_t100027742 )L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); return L_3; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IList.IndexOf(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_m1846565363_gshared (List_1_t1572102484 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t1572102484 *)__this); int32_t L_3 = (( int32_t (*) (List_1_t1572102484 *, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((List_1_t1572102484 *)__this, (InputSourceInfo_t100027742 )((*(InputSourceInfo_t100027742 *)((InputSourceInfo_t100027742 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return L_3; } IL_0015: { return (-1); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Insert(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void List_1_Insert_m3672505390_gshared (List_1_t1572102484 * __this, int32_t ___index0, InputSourceInfo_t100027742 ___item1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)((int32_t)27), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = (int32_t)__this->get__size_2(); InputSourceInfoU5BU5D_t3430263659* L_3 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); NullCheck(L_3); if ((!(((uint32_t)L_2) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))))))) { goto IL_0030; } } { int32_t L_4 = (int32_t)__this->get__size_2(); NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); } IL_0030: { int32_t L_5 = ___index0; int32_t L_6 = (int32_t)__this->get__size_2(); if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_0056; } } { InputSourceInfoU5BU5D_t3430263659* L_7 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_8 = ___index0; InputSourceInfoU5BU5D_t3430263659* L_9 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_10 = ___index0; int32_t L_11 = (int32_t)__this->get__size_2(); int32_t L_12 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)L_8, (RuntimeArray *)(RuntimeArray *)L_9, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12)), /*hidden argument*/NULL); } IL_0056: { InputSourceInfoU5BU5D_t3430263659* L_13 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_14 = ___index0; InputSourceInfo_t100027742 L_15 = ___item1; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (InputSourceInfo_t100027742 )L_15); int32_t L_16 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1))); int32_t L_17 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IList.Insert(System.Int32,System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_m1831843688_gshared (List_1_t1572102484 * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_Insert_m1831843688_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___item1; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)20), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) int32_t L_1 = ___index0; RuntimeObject * L_2 = ___item1; NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)L_1, (InputSourceInfo_t100027742 )((*(InputSourceInfo_t100027742 *)((InputSourceInfo_t100027742 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)); goto IL_002a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0017; throw e; } CATCH_0017: { // begin catch(System.InvalidCastException) RuntimeObject * L_3 = ___item1; RuntimeTypeHandle_t3027515415 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_4, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_3, (Type_t *)L_5, /*hidden argument*/NULL); goto IL_002a; } // end catch (depth: 1) IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_InsertRange_m1537432904_gshared (List_1_t1572102484 * __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_InsertRange_m1537432904_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; int32_t V_1 = 0; InputSourceInfoU5BU5D_t3430263659* V_2 = NULL; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___collection1; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)6, /*hidden argument*/NULL); } IL_0009: { int32_t L_1 = ___index0; int32_t L_2 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_1) > ((uint32_t)L_2)))) { goto IL_001b; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)((int32_t)22), /*hidden argument*/NULL); } IL_001b: { RuntimeObject* L_3 = ___collection1; V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2))); RuntimeObject* L_4 = V_0; if (!L_4) { goto IL_00cf; } } { RuntimeObject* L_5 = V_0; NullCheck((RuntimeObject*)L_5); int32_t L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_5); V_1 = (int32_t)L_6; int32_t L_7 = V_1; if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_00fe; } } { int32_t L_8 = (int32_t)__this->get__size_2(); int32_t L_9 = V_1; NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); int32_t L_10 = ___index0; int32_t L_11 = (int32_t)__this->get__size_2(); if ((((int32_t)L_10) >= ((int32_t)L_11))) { goto IL_006a; } } { InputSourceInfoU5BU5D_t3430263659* L_12 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_13 = ___index0; InputSourceInfoU5BU5D_t3430263659* L_14 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_15 = ___index0; int32_t L_16 = V_1; int32_t L_17 = (int32_t)__this->get__size_2(); int32_t L_18 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_12, (int32_t)L_13, (RuntimeArray *)(RuntimeArray *)L_14, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)), /*hidden argument*/NULL); } IL_006a: { RuntimeObject* L_19 = V_0; if ((!(((RuntimeObject*)(List_1_t1572102484 *)__this) == ((RuntimeObject*)(RuntimeObject*)L_19)))) { goto IL_00a3; } } { InputSourceInfoU5BU5D_t3430263659* L_20 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); InputSourceInfoU5BU5D_t3430263659* L_21 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_22 = ___index0; int32_t L_23 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_20, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_21, (int32_t)L_22, (int32_t)L_23, /*hidden argument*/NULL); InputSourceInfoU5BU5D_t3430263659* L_24 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_25 = ___index0; int32_t L_26 = V_1; InputSourceInfoU5BU5D_t3430263659* L_27 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_28 = ___index0; int32_t L_29 = (int32_t)__this->get__size_2(); int32_t L_30 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_24, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)L_26)), (RuntimeArray *)(RuntimeArray *)L_27, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_28, (int32_t)2)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)L_30)), /*hidden argument*/NULL); goto IL_00bf; } IL_00a3: { int32_t L_31 = V_1; InputSourceInfoU5BU5D_t3430263659* L_32 = (InputSourceInfoU5BU5D_t3430263659*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_31); V_2 = (InputSourceInfoU5BU5D_t3430263659*)L_32; RuntimeObject* L_33 = V_0; InputSourceInfoU5BU5D_t3430263659* L_34 = V_2; NullCheck((RuntimeObject*)L_33); InterfaceActionInvoker2< InputSourceInfoU5BU5D_t3430263659*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_33, (InputSourceInfoU5BU5D_t3430263659*)L_34, (int32_t)0); InputSourceInfoU5BU5D_t3430263659* L_35 = V_2; InputSourceInfoU5BU5D_t3430263659* L_36 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_37 = ___index0; NullCheck((RuntimeArray *)(RuntimeArray *)L_35); Array_CopyTo_m225704097((RuntimeArray *)(RuntimeArray *)L_35, (RuntimeArray *)(RuntimeArray *)L_36, (int32_t)L_37, /*hidden argument*/NULL); } IL_00bf: { int32_t L_38 = (int32_t)__this->get__size_2(); int32_t L_39 = V_1; __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)L_39))); goto IL_00fe; } IL_00cf: { RuntimeObject* L_40 = ___collection1; NullCheck((RuntimeObject*)L_40); RuntimeObject* L_41 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_40); V_3 = (RuntimeObject*)L_41; } IL_00d6: try { // begin try (depth: 1) { goto IL_00ea; } IL_00d8: { int32_t L_42 = ___index0; int32_t L_43 = (int32_t)L_42; ___index0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); RuntimeObject* L_44 = V_3; NullCheck((RuntimeObject*)L_44); InputSourceInfo_t100027742 L_45 = InterfaceFuncInvoker0< InputSourceInfo_t100027742 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_44); NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)L_43, (InputSourceInfo_t100027742 )L_45, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)); } IL_00ea: { RuntimeObject* L_46 = V_3; NullCheck((RuntimeObject*)L_46); bool L_47 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_46); if (L_47) { goto IL_00d8; } } IL_00f2: { IL2CPP_LEAVE(0xFE, FINALLY_00f4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00f4; } FINALLY_00f4: { // begin finally (depth: 1) { RuntimeObject* L_48 = V_3; if (!L_48) { goto IL_00fd; } } IL_00f7: { RuntimeObject* L_49 = V_3; NullCheck((RuntimeObject*)L_49); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_49); } IL_00fd: { IL2CPP_END_FINALLY(244) } } // end finally (depth: 1) IL2CPP_CLEANUP(244) { IL2CPP_JUMP_TBL(0xFE, IL_00fe) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00fe: { int32_t L_50 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Remove(T) extern "C" IL2CPP_METHOD_ATTR bool List_1_Remove_m3612155638_gshared (List_1_t1572102484 * __this, InputSourceInfo_t100027742 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { InputSourceInfo_t100027742 L_0 = ___item0; NullCheck((List_1_t1572102484 *)__this); int32_t L_1 = (( int32_t (*) (List_1_t1572102484 *, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((List_1_t1572102484 *)__this, (InputSourceInfo_t100027742 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0015; } } { int32_t L_3 = V_0; NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); return (bool)1; } IL_0015: { return (bool)0; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::System.Collections.IList.Remove(System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_m108539614_gshared (List_1_t1572102484 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t1572102484 *)__this); (( bool (*) (List_1_t1572102484 *, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 34)->methodPointer)((List_1_t1572102484 *)__this, (InputSourceInfo_t100027742 )((*(InputSourceInfo_t100027742 *)((InputSourceInfo_t100027742 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 34)); } IL_0015: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::RemoveAll(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_m4276073807_gshared (List_1_t1572102484 * __this, Predicate_1_t925321866 * ___match0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { Predicate_1_t925321866 * L_0 = ___match0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { V_0 = (int32_t)0; goto IL_0011; } IL_000d: { int32_t L_1 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)); } IL_0011: { int32_t L_2 = V_0; int32_t L_3 = (int32_t)__this->get__size_2(); if ((((int32_t)L_2) >= ((int32_t)L_3))) { goto IL_002e; } } { Predicate_1_t925321866 * L_4 = ___match0; InputSourceInfoU5BU5D_t3430263659* L_5 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; InputSourceInfo_t100027742 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); NullCheck((Predicate_1_t925321866 *)L_4); bool L_9 = (( bool (*) (Predicate_1_t925321866 *, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t925321866 *)L_4, (InputSourceInfo_t100027742 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_9) { goto IL_000d; } } IL_002e: { int32_t L_10 = V_0; int32_t L_11 = (int32_t)__this->get__size_2(); if ((((int32_t)L_10) < ((int32_t)L_11))) { goto IL_0039; } } { return 0; } IL_0039: { int32_t L_12 = V_0; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); goto IL_0089; } IL_003f: { int32_t L_13 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_0043: { int32_t L_14 = V_1; int32_t L_15 = (int32_t)__this->get__size_2(); if ((((int32_t)L_14) >= ((int32_t)L_15))) { goto IL_0060; } } { Predicate_1_t925321866 * L_16 = ___match0; InputSourceInfoU5BU5D_t3430263659* L_17 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_18 = V_1; NullCheck(L_17); int32_t L_19 = L_18; InputSourceInfo_t100027742 L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); NullCheck((Predicate_1_t925321866 *)L_16); bool L_21 = (( bool (*) (Predicate_1_t925321866 *, InputSourceInfo_t100027742 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t925321866 *)L_16, (InputSourceInfo_t100027742 )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (L_21) { goto IL_003f; } } IL_0060: { int32_t L_22 = V_1; int32_t L_23 = (int32_t)__this->get__size_2(); if ((((int32_t)L_22) >= ((int32_t)L_23))) { goto IL_0089; } } { InputSourceInfoU5BU5D_t3430263659* L_24 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_25 = V_0; int32_t L_26 = (int32_t)L_25; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); InputSourceInfoU5BU5D_t3430263659* L_27 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_28 = V_1; int32_t L_29 = (int32_t)L_28; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); NullCheck(L_27); int32_t L_30 = L_29; InputSourceInfo_t100027742 L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30)); NullCheck(L_24); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (InputSourceInfo_t100027742 )L_31); } IL_0089: { int32_t L_32 = V_1; int32_t L_33 = (int32_t)__this->get__size_2(); if ((((int32_t)L_32) < ((int32_t)L_33))) { goto IL_0043; } } { InputSourceInfoU5BU5D_t3430263659* L_34 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_35 = V_0; int32_t L_36 = (int32_t)__this->get__size_2(); int32_t L_37 = V_0; Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_34, (int32_t)L_35, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), /*hidden argument*/NULL); int32_t L_38 = (int32_t)__this->get__size_2(); int32_t L_39 = V_0; int32_t L_40 = V_0; __this->set__size_2(L_40); int32_t L_41 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1))); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)L_39)); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::RemoveAt(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_RemoveAt_m470531740_gshared (List_1_t1572102484 * __this, int32_t ___index0, const RuntimeMethod* method) { InputSourceInfo_t100027742 V_0; memset(&V_0, 0, sizeof(V_0)); { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { int32_t L_2 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1))); int32_t L_3 = ___index0; int32_t L_4 = (int32_t)__this->get__size_2(); if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_0042; } } { InputSourceInfoU5BU5D_t3430263659* L_5 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_6 = ___index0; InputSourceInfoU5BU5D_t3430263659* L_7 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); int32_t L_10 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)L_8, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL); } IL_0042: { InputSourceInfoU5BU5D_t3430263659* L_11 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_12 = (int32_t)__this->get__size_2(); il2cpp_codegen_initobj((&V_0), sizeof(InputSourceInfo_t100027742 )); InputSourceInfo_t100027742 L_13 = V_0; NullCheck(L_11); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (InputSourceInfo_t100027742 )L_13); int32_t L_14 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::RemoveRange(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_RemoveRange_m2880359953_gshared (List_1_t1572102484 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { int32_t L_5 = ___count1; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_0082; } } { int32_t L_6 = (int32_t)__this->get__size_2(); int32_t L_7 = ___count1; __this->set__size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7))); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); if ((((int32_t)L_8) >= ((int32_t)L_9))) { goto IL_0062; } } { InputSourceInfoU5BU5D_t3430263659* L_10 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_11 = ___index0; int32_t L_12 = ___count1; InputSourceInfoU5BU5D_t3430263659* L_13 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_14 = ___index0; int32_t L_15 = (int32_t)__this->get__size_2(); int32_t L_16 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (RuntimeArray *)(RuntimeArray *)L_13, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); } IL_0062: { InputSourceInfoU5BU5D_t3430263659* L_17 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_18 = (int32_t)__this->get__size_2(); int32_t L_19 = ___count1; Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_17, (int32_t)L_18, (int32_t)L_19, /*hidden argument*/NULL); int32_t L_20 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); } IL_0082: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Reverse() extern "C" IL2CPP_METHOD_ATTR void List_1_Reverse_m2381488188_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { NullCheck((List_1_t1572102484 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t1572102484 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t1572102484 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)0, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Reverse(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_Reverse_m1559897711_gshared (List_1_t1572102484 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { InputSourceInfoU5BU5D_t3430263659* L_5 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; (( void (*) (RuntimeObject * /* static, unused */, InputSourceInfoU5BU5D_t3430263659*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)(NULL /*static, unused*/, (InputSourceInfoU5BU5D_t3430263659*)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_8 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Sort() extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m2557465491_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { { NullCheck((List_1_t1572102484 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t1572102484 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t1572102484 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)0, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Sort(System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m930095226_gshared (List_1_t1572102484 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { NullCheck((List_1_t1572102484 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t1572102484 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t1572102484 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); RuntimeObject* L_1 = ___comparer0; NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)0, (int32_t)L_0, (RuntimeObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m1837193362_gshared (List_1_t1572102484 * __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { InputSourceInfoU5BU5D_t3430263659* L_5 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; RuntimeObject* L_8 = ___comparer2; (( void (*) (RuntimeObject * /* static, unused */, InputSourceInfoU5BU5D_t3430263659*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)->methodPointer)(NULL /*static, unused*/, (InputSourceInfoU5BU5D_t3430263659*)L_5, (int32_t)L_6, (int32_t)L_7, (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)); int32_t L_9 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::Sort(System.Comparison`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m1432583754_gshared (List_1_t1572102484 * __this, Comparison_1_t4169926217 * ___comparison0, const RuntimeMethod* method) { { Comparison_1_t4169926217 * L_0 = ___comparison0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { int32_t L_1 = (int32_t)__this->get__size_2(); if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_0025; } } { InputSourceInfoU5BU5D_t3430263659* L_2 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); int32_t L_3 = (int32_t)__this->get__size_2(); Comparison_1_t4169926217 * L_4 = ___comparison0; (( void (*) (RuntimeObject * /* static, unused */, InputSourceInfoU5BU5D_t3430263659*, int32_t, int32_t, Comparison_1_t4169926217 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)(NULL /*static, unused*/, (InputSourceInfoU5BU5D_t3430263659*)L_2, (int32_t)0, (int32_t)L_3, (Comparison_1_t4169926217 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); } IL_0025: { return; } } // T[] System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::ToArray() extern "C" IL2CPP_METHOD_ATTR InputSourceInfoU5BU5D_t3430263659* List_1_ToArray_m1870593646_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { InputSourceInfoU5BU5D_t3430263659* V_0 = NULL; { int32_t L_0 = (int32_t)__this->get__size_2(); InputSourceInfoU5BU5D_t3430263659* L_1 = (InputSourceInfoU5BU5D_t3430263659*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_0); V_0 = (InputSourceInfoU5BU5D_t3430263659*)L_1; InputSourceInfoU5BU5D_t3430263659* L_2 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); InputSourceInfoU5BU5D_t3430263659* L_3 = V_0; int32_t L_4 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_2, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)0, (int32_t)L_4, /*hidden argument*/NULL); InputSourceInfoU5BU5D_t3430263659* L_5 = V_0; return L_5; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::TrimExcess() extern "C" IL2CPP_METHOD_ATTR void List_1_TrimExcess_m574073262_gshared (List_1_t1572102484 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { InputSourceInfoU5BU5D_t3430263659* L_0 = (InputSourceInfoU5BU5D_t3430263659*)__this->get__items_1(); NullCheck(L_0); V_0 = (int32_t)(((int32_t)((int32_t)((double)il2cpp_codegen_multiply((double)(((double)((double)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))))), (double)(0.9)))))); int32_t L_1 = (int32_t)__this->get__size_2(); int32_t L_2 = V_0; if ((((int32_t)L_1) >= ((int32_t)L_2))) { goto IL_002a; } } { int32_t L_3 = (int32_t)__this->get__size_2(); NullCheck((List_1_t1572102484 *)__this); (( void (*) (List_1_t1572102484 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((List_1_t1572102484 *)__this, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); } IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.InputSourceInfo>::.cctor() extern "C" IL2CPP_METHOD_ATTR void List_1__cctor_m2294961982_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { InputSourceInfoU5BU5D_t3430263659* L_0 = (InputSourceInfoU5BU5D_t3430263659*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), (uint32_t)0); ((List_1_t1572102484_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set__emptyArray_5(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.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::.ctor() extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m389926716_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); KeyCodeEventPairU5BU5D_t2855334591* L_0 = ((List_1_t2982180240_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_0); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m276875647_gshared (List_1_t2982180240 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)12), (int32_t)4, /*hidden argument*/NULL); } IL_0012: { int32_t L_1 = ___capacity0; if (L_1) { goto IL_0021; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); KeyCodeEventPairU5BU5D_t2855334591* L_2 = ((List_1_t2982180240_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_2); return; } IL_0021: { int32_t L_3 = ___capacity0; KeyCodeEventPairU5BU5D_t2855334591* L_4 = (KeyCodeEventPairU5BU5D_t2855334591*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_3); __this->set__items_1(L_4); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::.ctor(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m4156487288_gshared (List_1_t2982180240 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1__ctor_m4156487288_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; int32_t V_1 = 0; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { NullCheck((RuntimeObject *)__this); Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___collection0; if (L_0) { goto IL_000f; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)6, /*hidden argument*/NULL); } IL_000f: { RuntimeObject* L_1 = ___collection0; V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2))); RuntimeObject* L_2 = V_0; if (!L_2) { goto IL_0050; } } { RuntimeObject* L_3 = V_0; NullCheck((RuntimeObject*)L_3); int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_3); V_1 = (int32_t)L_4; int32_t L_5 = V_1; if (L_5) { goto IL_002f; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); KeyCodeEventPairU5BU5D_t2855334591* L_6 = ((List_1_t2982180240_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_6); return; } IL_002f: { int32_t L_7 = V_1; KeyCodeEventPairU5BU5D_t2855334591* L_8 = (KeyCodeEventPairU5BU5D_t2855334591*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_7); __this->set__items_1(L_8); RuntimeObject* L_9 = V_0; KeyCodeEventPairU5BU5D_t2855334591* L_10 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); NullCheck((RuntimeObject*)L_9); InterfaceActionInvoker2< KeyCodeEventPairU5BU5D_t2855334591*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_9, (KeyCodeEventPairU5BU5D_t2855334591*)L_10, (int32_t)0); int32_t L_11 = V_1; __this->set__size_2(L_11); return; } IL_0050: { __this->set__size_2(0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); KeyCodeEventPairU5BU5D_t2855334591* L_12 = ((List_1_t2982180240_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_12); RuntimeObject* L_13 = ___collection0; NullCheck((RuntimeObject*)L_13); RuntimeObject* L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_13); V_2 = (RuntimeObject*)L_14; } IL_0069: try { // begin try (depth: 1) { goto IL_0077; } IL_006b: { RuntimeObject* L_15 = V_2; NullCheck((RuntimeObject*)L_15); KeyCodeEventPair_t1510105498 L_16 = InterfaceFuncInvoker0< KeyCodeEventPair_t1510105498 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_15); NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((List_1_t2982180240 *)__this, (KeyCodeEventPair_t1510105498 )L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); } IL_0077: { RuntimeObject* L_17 = V_2; NullCheck((RuntimeObject*)L_17); bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_17); if (L_18) { goto IL_006b; } } IL_007f: { IL2CPP_LEAVE(0x8B, FINALLY_0081); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0081; } FINALLY_0081: { // begin finally (depth: 1) { RuntimeObject* L_19 = V_2; if (!L_19) { goto IL_008a; } } IL_0084: { RuntimeObject* L_20 = V_2; NullCheck((RuntimeObject*)L_20); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_20); } IL_008a: { IL2CPP_END_FINALLY(129) } } // end finally (depth: 1) IL2CPP_CLEANUP(129) { IL2CPP_JUMP_TBL(0x8B, IL_008b) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_008b: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::get_Capacity() extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m763126644_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { KeyCodeEventPairU5BU5D_t2855334591* L_0 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); NullCheck(L_0); return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::set_Capacity(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_set_Capacity_m1185152334_gshared (List_1_t2982180240 * __this, int32_t ___value0, const RuntimeMethod* method) { KeyCodeEventPairU5BU5D_t2855334591* V_0 = NULL; { int32_t L_0 = ___value0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)15), (int32_t)((int32_t)21), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = ___value0; KeyCodeEventPairU5BU5D_t2855334591* L_3 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); NullCheck(L_3); if ((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))))) { goto IL_0058; } } { int32_t L_4 = ___value0; if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_004d; } } { int32_t L_5 = ___value0; KeyCodeEventPairU5BU5D_t2855334591* L_6 = (KeyCodeEventPairU5BU5D_t2855334591*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_5); V_0 = (KeyCodeEventPairU5BU5D_t2855334591*)L_6; int32_t L_7 = (int32_t)__this->get__size_2(); if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_0045; } } { KeyCodeEventPairU5BU5D_t2855334591* L_8 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); KeyCodeEventPairU5BU5D_t2855334591* L_9 = V_0; int32_t L_10 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_8, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (int32_t)L_10, /*hidden argument*/NULL); } IL_0045: { KeyCodeEventPairU5BU5D_t2855334591* L_11 = V_0; __this->set__items_1(L_11); return; } IL_004d: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); KeyCodeEventPairU5BU5D_t2855334591* L_12 = ((List_1_t2982180240_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)))->get__emptyArray_5(); __this->set__items_1(L_12); } IL_0058: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m2827388848_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return L_0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IList.get_IsFixedSize() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsFixedSize_m2778001101_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1781097382_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IList.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_get_IsReadOnly_m3923315595_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.ICollection.get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_ICollection_get_IsSynchronized_m4065974644_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.ICollection.get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_System_Collections_ICollection_get_SyncRoot_m1414840202_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_ICollection_get_SyncRoot_m1414840202_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_4(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_4(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m297566312(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_4(); return L_3; } } // T System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR KeyCodeEventPair_t1510105498 List_1_get_Item_m743403342_gshared (List_1_t2982180240 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { KeyCodeEventPairU5BU5D_t2855334591* L_2 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_3 = ___index0; KeyCodeEventPair_t1510105498 L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((KeyCodeEventPairU5BU5D_t2855334591*)L_2, (int32_t)L_3); return L_4; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::set_Item(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void List_1_set_Item_m3189551666_gshared (List_1_t2982180240 * __this, int32_t ___index0, KeyCodeEventPair_t1510105498 ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { KeyCodeEventPairU5BU5D_t2855334591* L_2 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_3 = ___index0; KeyCodeEventPair_t1510105498 L_4 = ___value1; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (KeyCodeEventPair_t1510105498 )L_4); int32_t L_5 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::IsCompatibleObject(System.Object) extern "C" IL2CPP_METHOD_ATTR bool List_1_IsCompatibleObject_m1731739171_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, const RuntimeMethod* method) { KeyCodeEventPair_t1510105498 V_0; memset(&V_0, 0, sizeof(V_0)); { RuntimeObject * L_0 = ___value0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7)))) { goto IL_001f; } } { RuntimeObject * L_1 = ___value0; if (L_1) { goto IL_001d; } } { il2cpp_codegen_initobj((&V_0), sizeof(KeyCodeEventPair_t1510105498 )); KeyCodeEventPair_t1510105498 L_2 = V_0; KeyCodeEventPair_t1510105498 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), &L_3); return (bool)((((RuntimeObject*)(RuntimeObject *)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } IL_001d: { return (bool)0; } IL_001f: { return (bool)1; } } // System.Object System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IList.get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_System_Collections_IList_get_Item_m1869336219_gshared (List_1_t2982180240 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; NullCheck((List_1_t2982180240 *)__this); KeyCodeEventPair_t1510105498 L_1 = (( KeyCodeEventPair_t1510105498 (*) (List_1_t2982180240 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); KeyCodeEventPair_t1510105498 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7), &L_2); return L_3; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IList.set_Item(System.Int32,System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_set_Item_m899098186_gshared (List_1_t2982180240 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_set_Item_m899098186_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___value1; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)15), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) int32_t L_1 = ___index0; RuntimeObject * L_2 = ___value1; NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)L_1, (KeyCodeEventPair_t1510105498 )((*(KeyCodeEventPair_t1510105498 *)((KeyCodeEventPair_t1510105498 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); goto IL_002a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0017; throw e; } CATCH_0017: { // begin catch(System.InvalidCastException) RuntimeObject * L_3 = ___value1; RuntimeTypeHandle_t3027515415 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_4, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_3, (Type_t *)L_5, /*hidden argument*/NULL); goto IL_002a; } // end catch (depth: 1) IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Add(T) extern "C" IL2CPP_METHOD_ATTR void List_1_Add_m4126142576_gshared (List_1_t2982180240 * __this, KeyCodeEventPair_t1510105498 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get__size_2(); KeyCodeEventPairU5BU5D_t2855334591* L_1 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_001e; } } { int32_t L_2 = (int32_t)__this->get__size_2(); NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); } IL_001e: { KeyCodeEventPairU5BU5D_t2855334591* L_3 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_4 = (int32_t)__this->get__size_2(); V_0 = (int32_t)L_4; int32_t L_5 = V_0; __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); int32_t L_6 = V_0; KeyCodeEventPair_t1510105498 L_7 = ___item0; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (KeyCodeEventPair_t1510105498 )L_7); int32_t L_8 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IList.Add(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_Add_m754835530_gshared (List_1_t2982180240 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_Add_m754835530_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___item0; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)20), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) RuntimeObject * L_1 = ___item0; NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((List_1_t2982180240 *)__this, (KeyCodeEventPair_t1510105498 )((*(KeyCodeEventPair_t1510105498 *)((KeyCodeEventPair_t1510105498 *)UnBox(L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); goto IL_0029; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0016; throw e; } CATCH_0016: { // begin catch(System.InvalidCastException) RuntimeObject * L_2 = ___item0; RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); goto IL_0029; } // end catch (depth: 1) IL_0029: { NullCheck((List_1_t2982180240 *)__this); int32_t L_5 = (( int32_t (*) (List_1_t2982180240 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t2982180240 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::AddRange(System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_AddRange_m231884865_gshared (List_1_t2982180240 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); RuntimeObject* L_1 = ___collection0; NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)L_0, (RuntimeObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)); return; } } // System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::AsReadOnly() extern "C" IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t2722681785 * List_1_AsReadOnly_m2275011561_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { ReadOnlyCollection_1_t2722681785 * L_0 = (ReadOnlyCollection_1_t2722681785 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15)); (( void (*) (ReadOnlyCollection_1_t2722681785 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_0, (RuntimeObject*)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return L_0; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::BinarySearch(System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m3718864849_gshared (List_1_t2982180240 * __this, int32_t ___index0, int32_t ___count1, KeyCodeEventPair_t1510105498 ___item2, RuntimeObject* ___comparer3, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { KeyCodeEventPairU5BU5D_t2855334591* L_5 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; KeyCodeEventPair_t1510105498 L_8 = ___item2; RuntimeObject* L_9 = ___comparer3; int32_t L_10 = (( int32_t (*) (RuntimeObject * /* static, unused */, KeyCodeEventPairU5BU5D_t2855334591*, int32_t, int32_t, KeyCodeEventPair_t1510105498 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)(NULL /*static, unused*/, (KeyCodeEventPairU5BU5D_t2855334591*)L_5, (int32_t)L_6, (int32_t)L_7, (KeyCodeEventPair_t1510105498 )L_8, (RuntimeObject*)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)); return L_10; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::BinarySearch(T,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m2188417566_gshared (List_1_t2982180240 * __this, KeyCodeEventPair_t1510105498 ___item0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { { NullCheck((List_1_t2982180240 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t2982180240 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t2982180240 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); KeyCodeEventPair_t1510105498 L_1 = ___item0; RuntimeObject* L_2 = ___comparer1; NullCheck((List_1_t2982180240 *)__this); int32_t L_3 = (( int32_t (*) (List_1_t2982180240 *, int32_t, int32_t, KeyCodeEventPair_t1510105498 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)0, (int32_t)L_0, (KeyCodeEventPair_t1510105498 )L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); return L_3; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Clear() extern "C" IL2CPP_METHOD_ATTR void List_1_Clear_m2398807523_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_0022; } } { KeyCodeEventPairU5BU5D_t2855334591* L_1 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_2 = (int32_t)__this->get__size_2(); Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/NULL); __this->set__size_2(0); } IL_0022: { int32_t L_3 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Contains(T) extern "C" IL2CPP_METHOD_ATTR bool List_1_Contains_m1839556473_gshared (List_1_t2982180240 * __this, KeyCodeEventPair_t1510105498 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t3974845130 * V_1 = NULL; int32_t V_2 = 0; { goto IL_0030; } { V_0 = (int32_t)0; goto IL_0025; } IL_000c: { KeyCodeEventPairU5BU5D_t2855334591* L_1 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = L_2; KeyCodeEventPair_t1510105498 L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); goto IL_0021; } { return (bool)1; } IL_0021: { int32_t L_5 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_0025: { int32_t L_6 = V_0; int32_t L_7 = (int32_t)__this->get__size_2(); if ((((int32_t)L_6) < ((int32_t)L_7))) { goto IL_000c; } } { return (bool)0; } IL_0030: { EqualityComparer_1_t3974845130 * L_8 = (( EqualityComparer_1_t3974845130 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)); V_1 = (EqualityComparer_1_t3974845130 *)L_8; V_2 = (int32_t)0; goto IL_0055; } IL_003a: { EqualityComparer_1_t3974845130 * L_9 = V_1; KeyCodeEventPairU5BU5D_t2855334591* L_10 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; KeyCodeEventPair_t1510105498 L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); KeyCodeEventPair_t1510105498 L_14 = ___item0; NullCheck((EqualityComparer_1_t3974845130 *)L_9); bool L_15 = VirtFuncInvoker2< bool, KeyCodeEventPair_t1510105498 , KeyCodeEventPair_t1510105498 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Equals(T,T) */, (EqualityComparer_1_t3974845130 *)L_9, (KeyCodeEventPair_t1510105498 )L_13, (KeyCodeEventPair_t1510105498 )L_14); if (!L_15) { goto IL_0051; } } { return (bool)1; } IL_0051: { int32_t L_16 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0055: { int32_t L_17 = V_2; int32_t L_18 = (int32_t)__this->get__size_2(); if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_003a; } } { return (bool)0; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IList.Contains(System.Object) extern "C" IL2CPP_METHOD_ATTR bool List_1_System_Collections_IList_Contains_m3591965246_gshared (List_1_t2982180240 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t2982180240 *)__this); bool L_3 = (( bool (*) (List_1_t2982180240 *, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)->methodPointer)((List_1_t2982180240 *)__this, (KeyCodeEventPair_t1510105498 )((*(KeyCodeEventPair_t1510105498 *)((KeyCodeEventPair_t1510105498 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 23)); return L_3; } IL_0015: { return (bool)0; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::CopyTo(T[]) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m3424781542_gshared (List_1_t2982180240 * __this, KeyCodeEventPairU5BU5D_t2855334591* ___array0, const RuntimeMethod* method) { { KeyCodeEventPairU5BU5D_t2855334591* L_0 = ___array0; NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, KeyCodeEventPairU5BU5D_t2855334591*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)->methodPointer)((List_1_t2982180240 *)__this, (KeyCodeEventPairU5BU5D_t2855334591*)L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 24)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_ICollection_CopyTo_m4151435992_gshared (List_1_t2982180240 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_ICollection_CopyTo_m4151435992_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeArray * L_0 = ___array0; if (!L_0) { goto IL_0012; } } { RuntimeArray * L_1 = ___array0; NullCheck((RuntimeArray *)L_1); int32_t L_2 = Array_get_Rank_m3448755881((RuntimeArray *)L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)7, /*hidden argument*/NULL); } IL_0012: { } IL_0013: try { // begin try (depth: 1) KeyCodeEventPairU5BU5D_t2855334591* L_3 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); RuntimeArray * L_4 = ___array0; int32_t L_5 = ___arrayIndex1; int32_t L_6 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)0, (RuntimeArray *)L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/NULL); goto IL_0033; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_t2342549375_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0029; throw e; } CATCH_0029: { // begin catch(System.ArrayTypeMismatchException) ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)18), /*hidden argument*/NULL); goto IL_0033; } // end catch (depth: 1) IL_0033: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::CopyTo(System.Int32,T[],System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m4101738567_gshared (List_1_t2982180240 * __this, int32_t ___index0, KeyCodeEventPairU5BU5D_t2855334591* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); int32_t L_1 = ___index0; int32_t L_2 = ___count3; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1))) >= ((int32_t)L_2))) { goto IL_0013; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_0013: { KeyCodeEventPairU5BU5D_t2855334591* L_3 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_4 = ___index0; KeyCodeEventPairU5BU5D_t2855334591* L_5 = ___array1; int32_t L_6 = ___arrayIndex2; int32_t L_7 = ___count3; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)L_4, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::CopyTo(T[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_CopyTo_m1300343608_gshared (List_1_t2982180240 * __this, KeyCodeEventPairU5BU5D_t2855334591* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { { KeyCodeEventPairU5BU5D_t2855334591* L_0 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); KeyCodeEventPairU5BU5D_t2855334591* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; int32_t L_3 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::EnsureCapacity(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_EnsureCapacity_m3083714662_gshared (List_1_t2982180240 * __this, int32_t ___min0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B4_0 = 0; { KeyCodeEventPairU5BU5D_t2855334591* L_0 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); NullCheck(L_0); int32_t L_1 = ___min0; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) >= ((int32_t)L_1))) { goto IL_003d; } } { KeyCodeEventPairU5BU5D_t2855334591* L_2 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); NullCheck(L_2); if (!(((RuntimeArray *)L_2)->max_length)) { goto IL_0020; } } { KeyCodeEventPairU5BU5D_t2855334591* L_3 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); NullCheck(L_3); G_B4_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), (int32_t)2)); goto IL_0021; } IL_0020: { G_B4_0 = 4; } IL_0021: { V_0 = (int32_t)G_B4_0; int32_t L_4 = V_0; if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071))))) { goto IL_0030; } } { V_0 = (int32_t)((int32_t)2146435071); } IL_0030: { int32_t L_5 = V_0; int32_t L_6 = ___min0; if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_0036; } } { int32_t L_7 = ___min0; V_0 = (int32_t)L_7; } IL_0036: { int32_t L_8 = V_0; NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); } IL_003d: { return; } } // T System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Find(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR KeyCodeEventPair_t1510105498 List_1_Find_m1190566704_gshared (List_1_t2982180240 * __this, Predicate_1_t2335399622 * ___match0, const RuntimeMethod* method) { int32_t V_0 = 0; KeyCodeEventPair_t1510105498 V_1; memset(&V_1, 0, sizeof(V_1)); { Predicate_1_t2335399622 * L_0 = ___match0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { V_0 = (int32_t)0; goto IL_0032; } IL_000d: { Predicate_1_t2335399622 * L_1 = ___match0; KeyCodeEventPairU5BU5D_t2855334591* L_2 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = L_3; KeyCodeEventPair_t1510105498 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); NullCheck((Predicate_1_t2335399622 *)L_1); bool L_6 = (( bool (*) (Predicate_1_t2335399622 *, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t2335399622 *)L_1, (KeyCodeEventPair_t1510105498 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_6) { goto IL_002e; } } { KeyCodeEventPairU5BU5D_t2855334591* L_7 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = L_8; KeyCodeEventPair_t1510105498 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); return L_10; } IL_002e: { int32_t L_11 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_0032: { int32_t L_12 = V_0; int32_t L_13 = (int32_t)__this->get__size_2(); if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_1), sizeof(KeyCodeEventPair_t1510105498 )); KeyCodeEventPair_t1510105498 L_14 = V_1; return L_14; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::FindIndex(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m145881685_gshared (List_1_t2982180240 * __this, Predicate_1_t2335399622 * ___match0, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); Predicate_1_t2335399622 * L_1 = ___match0; NullCheck((List_1_t2982180240 *)__this); int32_t L_2 = (( int32_t (*) (List_1_t2982180240 *, int32_t, int32_t, Predicate_1_t2335399622 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)0, (int32_t)L_0, (Predicate_1_t2335399622 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 27)); return L_2; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::FindIndex(System.Int32,System.Int32,System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m2330868152_gshared (List_1_t2982180240 * __this, int32_t ___startIndex0, int32_t ___count1, Predicate_1_t2335399622 * ___match2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)14), (int32_t)((int32_t)22), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = ___count1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0021; } } { int32_t L_3 = ___startIndex0; int32_t L_4 = (int32_t)__this->get__size_2(); int32_t L_5 = ___count1; if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))))) { goto IL_002a; } } IL_0021: { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)((int32_t)25), /*hidden argument*/NULL); } IL_002a: { Predicate_1_t2335399622 * L_6 = ___match2; if (L_6) { goto IL_0033; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0033: { int32_t L_7 = ___startIndex0; int32_t L_8 = ___count1; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)); int32_t L_9 = ___startIndex0; V_1 = (int32_t)L_9; goto IL_0055; } IL_003b: { Predicate_1_t2335399622 * L_10 = ___match2; KeyCodeEventPairU5BU5D_t2855334591* L_11 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = L_12; KeyCodeEventPair_t1510105498 L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); NullCheck((Predicate_1_t2335399622 *)L_10); bool L_15 = (( bool (*) (Predicate_1_t2335399622 *, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t2335399622 *)L_10, (KeyCodeEventPair_t1510105498 )L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_15) { goto IL_0051; } } { int32_t L_16 = V_1; return L_16; } IL_0051: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0055: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_003b; } } { return (-1); } } // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_t576456821 List_1_GetEnumerator_m754643058_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { Enumerator_t576456821 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m574521130((&L_0), (List_1_t2982180240 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); return L_0; } } // System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m14988392_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { Enumerator_t576456821 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m574521130((&L_0), (List_1_t2982180240 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); Enumerator_t576456821 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), &L_1); return (RuntimeObject*)L_2; } } // System.Collections.IEnumerator System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IEnumerable.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* List_1_System_Collections_IEnumerable_GetEnumerator_m3418612014_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { Enumerator_t576456821 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m574521130((&L_0), (List_1_t2982180240 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 29)); Enumerator_t576456821 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), &L_1); return (RuntimeObject*)L_2; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::IndexOf(T) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m2613612340_gshared (List_1_t2982180240 * __this, KeyCodeEventPair_t1510105498 ___item0, const RuntimeMethod* method) { { KeyCodeEventPairU5BU5D_t2855334591* L_0 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); KeyCodeEventPair_t1510105498 L_1 = ___item0; int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = (( int32_t (*) (RuntimeObject * /* static, unused */, KeyCodeEventPairU5BU5D_t2855334591*, KeyCodeEventPair_t1510105498 , int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)(NULL /*static, unused*/, (KeyCodeEventPairU5BU5D_t2855334591*)L_0, (KeyCodeEventPair_t1510105498 )L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); return L_3; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IList.IndexOf(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_System_Collections_IList_IndexOf_m2311377869_gshared (List_1_t2982180240 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t2982180240 *)__this); int32_t L_3 = (( int32_t (*) (List_1_t2982180240 *, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((List_1_t2982180240 *)__this, (KeyCodeEventPair_t1510105498 )((*(KeyCodeEventPair_t1510105498 *)((KeyCodeEventPair_t1510105498 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return L_3; } IL_0015: { return (-1); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Insert(System.Int32,T) extern "C" IL2CPP_METHOD_ATTR void List_1_Insert_m2672528026_gshared (List_1_t2982180240 * __this, int32_t ___index0, KeyCodeEventPair_t1510105498 ___item1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_0012; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)((int32_t)27), /*hidden argument*/NULL); } IL_0012: { int32_t L_2 = (int32_t)__this->get__size_2(); KeyCodeEventPairU5BU5D_t2855334591* L_3 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); NullCheck(L_3); if ((!(((uint32_t)L_2) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))))))) { goto IL_0030; } } { int32_t L_4 = (int32_t)__this->get__size_2(); NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); } IL_0030: { int32_t L_5 = ___index0; int32_t L_6 = (int32_t)__this->get__size_2(); if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_0056; } } { KeyCodeEventPairU5BU5D_t2855334591* L_7 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_8 = ___index0; KeyCodeEventPairU5BU5D_t2855334591* L_9 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_10 = ___index0; int32_t L_11 = (int32_t)__this->get__size_2(); int32_t L_12 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)L_8, (RuntimeArray *)(RuntimeArray *)L_9, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12)), /*hidden argument*/NULL); } IL_0056: { KeyCodeEventPairU5BU5D_t2855334591* L_13 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_14 = ___index0; KeyCodeEventPair_t1510105498 L_15 = ___item1; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (KeyCodeEventPair_t1510105498 )L_15); int32_t L_16 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1))); int32_t L_17 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IList.Insert(System.Int32,System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Insert_m4212849325_gshared (List_1_t2982180240 * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_System_Collections_IList_Insert_m4212849325_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___item1; (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (int32_t)((int32_t)20), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); } IL_0008: try { // begin try (depth: 1) int32_t L_1 = ___index0; RuntimeObject * L_2 = ___item1; NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)L_1, (KeyCodeEventPair_t1510105498 )((*(KeyCodeEventPair_t1510105498 *)((KeyCodeEventPair_t1510105498 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)); goto IL_002a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t3927145244_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0017; throw e; } CATCH_0017: { // begin catch(System.InvalidCastException) RuntimeObject * L_3 = ___item1; RuntimeTypeHandle_t3027515415 L_4 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 11)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_4, /*hidden argument*/NULL); ThrowHelper_ThrowWrongValueTypeArgumentException_m207631560(NULL /*static, unused*/, (RuntimeObject *)L_3, (Type_t *)L_5, /*hidden argument*/NULL); goto IL_002a; } // end catch (depth: 1) IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_InsertRange_m352360262_gshared (List_1_t2982180240 * __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (List_1_InsertRange_m352360262_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; int32_t V_1 = 0; KeyCodeEventPairU5BU5D_t2855334591* V_2 = NULL; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___collection1; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)6, /*hidden argument*/NULL); } IL_0009: { int32_t L_1 = ___index0; int32_t L_2 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_1) > ((uint32_t)L_2)))) { goto IL_001b; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)((int32_t)22), /*hidden argument*/NULL); } IL_001b: { RuntimeObject* L_3 = ___collection1; V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2))); RuntimeObject* L_4 = V_0; if (!L_4) { goto IL_00cf; } } { RuntimeObject* L_5 = V_0; NullCheck((RuntimeObject*)L_5); int32_t L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_5); V_1 = (int32_t)L_6; int32_t L_7 = V_1; if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_00fe; } } { int32_t L_8 = (int32_t)__this->get__size_2(); int32_t L_9 = V_1; NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); int32_t L_10 = ___index0; int32_t L_11 = (int32_t)__this->get__size_2(); if ((((int32_t)L_10) >= ((int32_t)L_11))) { goto IL_006a; } } { KeyCodeEventPairU5BU5D_t2855334591* L_12 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_13 = ___index0; KeyCodeEventPairU5BU5D_t2855334591* L_14 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_15 = ___index0; int32_t L_16 = V_1; int32_t L_17 = (int32_t)__this->get__size_2(); int32_t L_18 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_12, (int32_t)L_13, (RuntimeArray *)(RuntimeArray *)L_14, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)), /*hidden argument*/NULL); } IL_006a: { RuntimeObject* L_19 = V_0; if ((!(((RuntimeObject*)(List_1_t2982180240 *)__this) == ((RuntimeObject*)(RuntimeObject*)L_19)))) { goto IL_00a3; } } { KeyCodeEventPairU5BU5D_t2855334591* L_20 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); KeyCodeEventPairU5BU5D_t2855334591* L_21 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_22 = ___index0; int32_t L_23 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_20, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_21, (int32_t)L_22, (int32_t)L_23, /*hidden argument*/NULL); KeyCodeEventPairU5BU5D_t2855334591* L_24 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_25 = ___index0; int32_t L_26 = V_1; KeyCodeEventPairU5BU5D_t2855334591* L_27 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_28 = ___index0; int32_t L_29 = (int32_t)__this->get__size_2(); int32_t L_30 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_24, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)L_26)), (RuntimeArray *)(RuntimeArray *)L_27, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_28, (int32_t)2)), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)L_30)), /*hidden argument*/NULL); goto IL_00bf; } IL_00a3: { int32_t L_31 = V_1; KeyCodeEventPairU5BU5D_t2855334591* L_32 = (KeyCodeEventPairU5BU5D_t2855334591*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_31); V_2 = (KeyCodeEventPairU5BU5D_t2855334591*)L_32; RuntimeObject* L_33 = V_0; KeyCodeEventPairU5BU5D_t2855334591* L_34 = V_2; NullCheck((RuntimeObject*)L_33); InterfaceActionInvoker2< KeyCodeEventPairU5BU5D_t2855334591*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::CopyTo(T[],System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_33, (KeyCodeEventPairU5BU5D_t2855334591*)L_34, (int32_t)0); KeyCodeEventPairU5BU5D_t2855334591* L_35 = V_2; KeyCodeEventPairU5BU5D_t2855334591* L_36 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_37 = ___index0; NullCheck((RuntimeArray *)(RuntimeArray *)L_35); Array_CopyTo_m225704097((RuntimeArray *)(RuntimeArray *)L_35, (RuntimeArray *)(RuntimeArray *)L_36, (int32_t)L_37, /*hidden argument*/NULL); } IL_00bf: { int32_t L_38 = (int32_t)__this->get__size_2(); int32_t L_39 = V_1; __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)L_39))); goto IL_00fe; } IL_00cf: { RuntimeObject* L_40 = ___collection1; NullCheck((RuntimeObject*)L_40); RuntimeObject* L_41 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_40); V_3 = (RuntimeObject*)L_41; } IL_00d6: try { // begin try (depth: 1) { goto IL_00ea; } IL_00d8: { int32_t L_42 = ___index0; int32_t L_43 = (int32_t)L_42; ___index0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); RuntimeObject* L_44 = V_3; NullCheck((RuntimeObject*)L_44); KeyCodeEventPair_t1510105498 L_45 = InterfaceFuncInvoker0< KeyCodeEventPair_t1510105498 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_44); NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)L_43, (KeyCodeEventPair_t1510105498 )L_45, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 32)); } IL_00ea: { RuntimeObject* L_46 = V_3; NullCheck((RuntimeObject*)L_46); bool L_47 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_46); if (L_47) { goto IL_00d8; } } IL_00f2: { IL2CPP_LEAVE(0xFE, FINALLY_00f4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00f4; } FINALLY_00f4: { // begin finally (depth: 1) { RuntimeObject* L_48 = V_3; if (!L_48) { goto IL_00fd; } } IL_00f7: { RuntimeObject* L_49 = V_3; NullCheck((RuntimeObject*)L_49); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_49); } IL_00fd: { IL2CPP_END_FINALLY(244) } } // end finally (depth: 1) IL2CPP_CLEANUP(244) { IL2CPP_JUMP_TBL(0xFE, IL_00fe) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00fe: { int32_t L_50 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1))); return; } } // System.Boolean System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Remove(T) extern "C" IL2CPP_METHOD_ATTR bool List_1_Remove_m2143464322_gshared (List_1_t2982180240 * __this, KeyCodeEventPair_t1510105498 ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; { KeyCodeEventPair_t1510105498 L_0 = ___item0; NullCheck((List_1_t2982180240 *)__this); int32_t L_1 = (( int32_t (*) (List_1_t2982180240 *, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((List_1_t2982180240 *)__this, (KeyCodeEventPair_t1510105498 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0015; } } { int32_t L_3 = V_0; NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); return (bool)1; } IL_0015: { return (bool)0; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::System.Collections.IList.Remove(System.Object) extern "C" IL2CPP_METHOD_ATTR void List_1_System_Collections_IList_Remove_m1458356514_gshared (List_1_t2982180240 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item0; IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); bool L_1 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); if (!L_1) { goto IL_0015; } } { RuntimeObject * L_2 = ___item0; NullCheck((List_1_t2982180240 *)__this); (( bool (*) (List_1_t2982180240 *, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 34)->methodPointer)((List_1_t2982180240 *)__this, (KeyCodeEventPair_t1510105498 )((*(KeyCodeEventPair_t1510105498 *)((KeyCodeEventPair_t1510105498 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 34)); } IL_0015: { return; } } // System.Int32 System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::RemoveAll(System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR int32_t List_1_RemoveAll_m1962193622_gshared (List_1_t2982180240 * __this, Predicate_1_t2335399622 * ___match0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { Predicate_1_t2335399622 * L_0 = ___match0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { V_0 = (int32_t)0; goto IL_0011; } IL_000d: { int32_t L_1 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)); } IL_0011: { int32_t L_2 = V_0; int32_t L_3 = (int32_t)__this->get__size_2(); if ((((int32_t)L_2) >= ((int32_t)L_3))) { goto IL_002e; } } { Predicate_1_t2335399622 * L_4 = ___match0; KeyCodeEventPairU5BU5D_t2855334591* L_5 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; KeyCodeEventPair_t1510105498 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); NullCheck((Predicate_1_t2335399622 *)L_4); bool L_9 = (( bool (*) (Predicate_1_t2335399622 *, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t2335399622 *)L_4, (KeyCodeEventPair_t1510105498 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (!L_9) { goto IL_000d; } } IL_002e: { int32_t L_10 = V_0; int32_t L_11 = (int32_t)__this->get__size_2(); if ((((int32_t)L_10) < ((int32_t)L_11))) { goto IL_0039; } } { return 0; } IL_0039: { int32_t L_12 = V_0; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); goto IL_0089; } IL_003f: { int32_t L_13 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_0043: { int32_t L_14 = V_1; int32_t L_15 = (int32_t)__this->get__size_2(); if ((((int32_t)L_14) >= ((int32_t)L_15))) { goto IL_0060; } } { Predicate_1_t2335399622 * L_16 = ___match0; KeyCodeEventPairU5BU5D_t2855334591* L_17 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_18 = V_1; NullCheck(L_17); int32_t L_19 = L_18; KeyCodeEventPair_t1510105498 L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); NullCheck((Predicate_1_t2335399622 *)L_16); bool L_21 = (( bool (*) (Predicate_1_t2335399622 *, KeyCodeEventPair_t1510105498 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)->methodPointer)((Predicate_1_t2335399622 *)L_16, (KeyCodeEventPair_t1510105498 )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 26)); if (L_21) { goto IL_003f; } } IL_0060: { int32_t L_22 = V_1; int32_t L_23 = (int32_t)__this->get__size_2(); if ((((int32_t)L_22) >= ((int32_t)L_23))) { goto IL_0089; } } { KeyCodeEventPairU5BU5D_t2855334591* L_24 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_25 = V_0; int32_t L_26 = (int32_t)L_25; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); KeyCodeEventPairU5BU5D_t2855334591* L_27 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_28 = V_1; int32_t L_29 = (int32_t)L_28; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); NullCheck(L_27); int32_t L_30 = L_29; KeyCodeEventPair_t1510105498 L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30)); NullCheck(L_24); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (KeyCodeEventPair_t1510105498 )L_31); } IL_0089: { int32_t L_32 = V_1; int32_t L_33 = (int32_t)__this->get__size_2(); if ((((int32_t)L_32) < ((int32_t)L_33))) { goto IL_0043; } } { KeyCodeEventPairU5BU5D_t2855334591* L_34 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_35 = V_0; int32_t L_36 = (int32_t)__this->get__size_2(); int32_t L_37 = V_0; Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_34, (int32_t)L_35, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), /*hidden argument*/NULL); int32_t L_38 = (int32_t)__this->get__size_2(); int32_t L_39 = V_0; int32_t L_40 = V_0; __this->set__size_2(L_40); int32_t L_41 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1))); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)L_39)); } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::RemoveAt(System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_RemoveAt_m470049284_gshared (List_1_t2982180240 * __this, int32_t ___index0, const RuntimeMethod* method) { KeyCodeEventPair_t1510105498 V_0; memset(&V_0, 0, sizeof(V_0)); { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2494703709(NULL /*static, unused*/, /*hidden argument*/NULL); } IL_000e: { int32_t L_2 = (int32_t)__this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1))); int32_t L_3 = ___index0; int32_t L_4 = (int32_t)__this->get__size_2(); if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_0042; } } { KeyCodeEventPairU5BU5D_t2855334591* L_5 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_6 = ___index0; KeyCodeEventPairU5BU5D_t2855334591* L_7 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); int32_t L_10 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_7, (int32_t)L_8, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL); } IL_0042: { KeyCodeEventPairU5BU5D_t2855334591* L_11 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_12 = (int32_t)__this->get__size_2(); il2cpp_codegen_initobj((&V_0), sizeof(KeyCodeEventPair_t1510105498 )); KeyCodeEventPair_t1510105498 L_13 = V_0; NullCheck(L_11); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (KeyCodeEventPair_t1510105498 )L_13); int32_t L_14 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::RemoveRange(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_RemoveRange_m1880890568_gshared (List_1_t2982180240 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { int32_t L_5 = ___count1; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_0082; } } { int32_t L_6 = (int32_t)__this->get__size_2(); int32_t L_7 = ___count1; __this->set__size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7))); int32_t L_8 = ___index0; int32_t L_9 = (int32_t)__this->get__size_2(); if ((((int32_t)L_8) >= ((int32_t)L_9))) { goto IL_0062; } } { KeyCodeEventPairU5BU5D_t2855334591* L_10 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_11 = ___index0; int32_t L_12 = ___count1; KeyCodeEventPairU5BU5D_t2855334591* L_13 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_14 = ___index0; int32_t L_15 = (int32_t)__this->get__size_2(); int32_t L_16 = ___index0; Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (RuntimeArray *)(RuntimeArray *)L_13, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); } IL_0062: { KeyCodeEventPairU5BU5D_t2855334591* L_17 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_18 = (int32_t)__this->get__size_2(); int32_t L_19 = ___count1; Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_17, (int32_t)L_18, (int32_t)L_19, /*hidden argument*/NULL); int32_t L_20 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); } IL_0082: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Reverse() extern "C" IL2CPP_METHOD_ATTR void List_1_Reverse_m508256616_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { NullCheck((List_1_t2982180240 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t2982180240 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t2982180240 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)0, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Reverse(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void List_1_Reverse_m573907360_gshared (List_1_t2982180240 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { KeyCodeEventPairU5BU5D_t2855334591* L_5 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; (( void (*) (RuntimeObject * /* static, unused */, KeyCodeEventPairU5BU5D_t2855334591*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)->methodPointer)(NULL /*static, unused*/, (KeyCodeEventPairU5BU5D_t2855334591*)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 36)); int32_t L_8 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Sort() extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m2266519692_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { { NullCheck((List_1_t2982180240 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t2982180240 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t2982180240 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)0, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Sort(System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m2747586818_gshared (List_1_t2982180240 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { NullCheck((List_1_t2982180240 *)__this); int32_t L_0 = (( int32_t (*) (List_1_t2982180240 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t2982180240 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); RuntimeObject* L_1 = ___comparer0; NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)0, (int32_t)L_0, (RuntimeObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 37)); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m3058145216_gshared (List_1_t2982180240 * __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { { int32_t L_0 = ___index0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000c; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)13), (int32_t)4, /*hidden argument*/NULL); } IL_000c: { int32_t L_1 = ___count1; if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_0018; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4009682726(NULL /*static, unused*/, (int32_t)((int32_t)16), (int32_t)4, /*hidden argument*/NULL); } IL_0018: { int32_t L_2 = (int32_t)__this->get__size_2(); int32_t L_3 = ___index0; int32_t L_4 = ___count1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3))) >= ((int32_t)L_4))) { goto IL_002a; } } { ThrowHelper_ThrowArgumentException_m3817859433(NULL /*static, unused*/, (int32_t)((int32_t)23), /*hidden argument*/NULL); } IL_002a: { KeyCodeEventPairU5BU5D_t2855334591* L_5 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_6 = ___index0; int32_t L_7 = ___count1; RuntimeObject* L_8 = ___comparer2; (( void (*) (RuntimeObject * /* static, unused */, KeyCodeEventPairU5BU5D_t2855334591*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)->methodPointer)(NULL /*static, unused*/, (KeyCodeEventPairU5BU5D_t2855334591*)L_5, (int32_t)L_6, (int32_t)L_7, (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 38)); int32_t L_9 = (int32_t)__this->get__version_3(); __this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1))); return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::Sort(System.Comparison`1<T>) extern "C" IL2CPP_METHOD_ATTR void List_1_Sort_m3662492511_gshared (List_1_t2982180240 * __this, Comparison_1_t1285036677 * ___comparison0, const RuntimeMethod* method) { { Comparison_1_t1285036677 * L_0 = ___comparison0; if (L_0) { goto IL_0009; } } { ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)8, /*hidden argument*/NULL); } IL_0009: { int32_t L_1 = (int32_t)__this->get__size_2(); if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_0025; } } { KeyCodeEventPairU5BU5D_t2855334591* L_2 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); int32_t L_3 = (int32_t)__this->get__size_2(); Comparison_1_t1285036677 * L_4 = ___comparison0; (( void (*) (RuntimeObject * /* static, unused */, KeyCodeEventPairU5BU5D_t2855334591*, int32_t, int32_t, Comparison_1_t1285036677 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)->methodPointer)(NULL /*static, unused*/, (KeyCodeEventPairU5BU5D_t2855334591*)L_2, (int32_t)0, (int32_t)L_3, (Comparison_1_t1285036677 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 39)); } IL_0025: { return; } } // T[] System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::ToArray() extern "C" IL2CPP_METHOD_ATTR KeyCodeEventPairU5BU5D_t2855334591* List_1_ToArray_m1332456757_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { KeyCodeEventPairU5BU5D_t2855334591* V_0 = NULL; { int32_t L_0 = (int32_t)__this->get__size_2(); KeyCodeEventPairU5BU5D_t2855334591* L_1 = (KeyCodeEventPairU5BU5D_t2855334591*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_0); V_0 = (KeyCodeEventPairU5BU5D_t2855334591*)L_1; KeyCodeEventPairU5BU5D_t2855334591* L_2 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); KeyCodeEventPairU5BU5D_t2855334591* L_3 = V_0; int32_t L_4 = (int32_t)__this->get__size_2(); Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_2, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)0, (int32_t)L_4, /*hidden argument*/NULL); KeyCodeEventPairU5BU5D_t2855334591* L_5 = V_0; return L_5; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::TrimExcess() extern "C" IL2CPP_METHOD_ATTR void List_1_TrimExcess_m633070502_gshared (List_1_t2982180240 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { KeyCodeEventPairU5BU5D_t2855334591* L_0 = (KeyCodeEventPairU5BU5D_t2855334591*)__this->get__items_1(); NullCheck(L_0); V_0 = (int32_t)(((int32_t)((int32_t)((double)il2cpp_codegen_multiply((double)(((double)((double)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))))), (double)(0.9)))))); int32_t L_1 = (int32_t)__this->get__size_2(); int32_t L_2 = V_0; if ((((int32_t)L_1) >= ((int32_t)L_2))) { goto IL_002a; } } { int32_t L_3 = (int32_t)__this->get__size_2(); NullCheck((List_1_t2982180240 *)__this); (( void (*) (List_1_t2982180240 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((List_1_t2982180240 *)__this, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); } IL_002a: { return; } } // System.Void System.Collections.Generic.List`1<HoloToolkit.Unity.InputModule.KeyboardManager/KeyCodeEventPair>::.cctor() extern "C" IL2CPP_METHOD_ATTR void List_1__cctor_m2006341828_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { KeyCodeEventPairU5BU5D_t2855334591* L_0 = (KeyCodeEventPairU5BU5D_t2855334591*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), (uint32_t)0); ((List_1_t2982180240_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set__emptyArray_5(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif
4e8b3141970f4ea5723d6f9b10403d50e39aea26
1f0cc5e85e47bdd8d2cf6217ed533978dc9767a2
/Practice4-5/Pointers_Pr7/Pointers_Pr7.cpp
f80bb06f934090ae09e6cee4b939c0cb18e6446d
[]
no_license
sobol-mo/KHPI_Progr_Fundamentals-2
5cc2f8cb05b521cbf472e55673b9cb9fc66004ba
a9e0d5d1c619b08ec93aaaef187d82da98c36da1
refs/heads/main
2023-04-04T20:28:10.887316
2021-03-31T09:20:48
2021-03-31T09:20:48
334,115,341
2
1
null
null
null
null
UTF-8
C++
false
false
1,609
cpp
Pointers_Pr7.cpp
/* Покажчики. Приклад 7 В одновимірному динамічному масиві знайти індекс і адресу максимального елемента використовуючи абсолютну адресацію */ #include <iostream> #include <time.h> /* time */ #include <Windows.h> using namespace std; void main() { SetConsoleCP(1251); SetConsoleOutputCP(1251); srand(time(NULL)); // Встановлення розміру масиву int SIZE = 5; // Резервування місця в пам'яті під масив // з int елементів в кількості SIZE int* pArr = new int[SIZE]; // Запам'ятовування початку масиву int* pArr_start = pArr; // Покажчик на максимальний елемент int* pMax; // Заповнення масиву cout << "Початковий масив: \n"; for (int i = 0; i < SIZE; i++) { *pArr = rand() % 25; cout << i << " " << pArr << " "; cout << *pArr << endl; pArr++; } // Індекс в масиві int iMax, i; // Пошук максимального елемента for (i = 0, iMax = 0, pArr = pArr_start, pMax = pArr_start; i < SIZE; i++) { if (*pArr > *pMax) { pMax = pArr; iMax = i; } pArr++; } cout << "Максимальный элемент:\n"; cout << iMax << " " << pMax << " "; cout << *pMax << endl; // Повернення покажчика на початок масиву знову pArr = pArr_start; // Звільнення пам'яті delete[] pArr; }
cb449284ff31aa4fb6f8a0cd4b92e00d20b4e876
8a1d056a516831d99ccb4eb52053d1cffd97c9e9
/src/gamed/game_module/skill/template/model_action.h
ca174db58db87cebfce2132eaeec7a5857bb5810
[]
no_license
289/a
b964481d2552f11f300b1199062ca62b71edf76e
43d28da99387ba225b476fe51bd7a13245f49d5e
refs/heads/master
2020-04-17T04:22:23.226951
2018-03-21T14:17:08
2018-03-21T14:17:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,516
h
model_action.h
#ifndef SKILL_DATATEMPL_MODEL_ACTION_H_ #define SKILL_DATATEMPL_MODEL_ACTION_H_ #include <stdint.h> #include "shared/net/packet/base_packet.h" #include "shared/net/packet/packet_util.h" #include "shared/net/packet/bytebuffer.h" namespace skill { struct ActionInfo { int32_t frame_num; std::vector<int8_t> attack_frame; std::vector<int32_t> frame_time; NESTED_DEFINE(frame_num, attack_frame, frame_time); bool IsAttackFrame(int32_t frame) { return frame < frame_num && attack_frame[frame]; } int32_t GetAttackFrame(int32_t index = 0) { int32_t count = 0; for (int32_t i = 0; i < frame_num; ++i) { if (IsAttackFrame(i) && count++ == index) { return i; } } return frame_num; } int32_t GetDurationTime(int32_t from, int32_t to) { if (from < 0 || from > to || to > frame_num) { return -1; } int32_t duration = 0; for (int32_t i = from; i < to; ++i) { duration += frame_time[i]; } return duration; } int32_t GetTotalTime() { return GetDurationTime(0, frame_num); } }; typedef std::map<std::string, ActionInfo> ActionInfoMap; typedef std::map<std::string, ActionInfoMap> ModelActionMap; struct ModelActionConf { ModelActionMap model_action_map; NESTED_DEFINE(model_action_map); }; } // namespace skill #endif // SKILL_DATATEMPL_MODEL_ACTION_H_
351536c3eeabddcd9212d06be2352e97201af3cb
7e66195564b4338d836d2a416e50b897d506e976
/task 117.cpp
235379619ba2655a47638fcb73783ffdf5f4d96f
[]
no_license
ZhaziraD/Zhazira
e3facf98a681a1236fed44bc40001cd037cf3c7f
a04cd8924ef4626ea80e31cfa5ad19b775a0d259
refs/heads/master
2020-09-14T09:36:38.660887
2019-11-23T19:22:41
2019-11-23T19:22:41
223,092,171
0
0
null
null
null
null
UTF-8
C++
false
false
235
cpp
task 117.cpp
#include <iostream> using namespace std; int main() { int n, sum=0; cin>>n; int a[n]; for (int i=1; i<=n; i++){ cin>>a[i]; } for (int i=1; i<=n; i++){ if (a[i]==0) break; sum+=a[i]; } cout<<sum; }
dcc62d0dfb541f6ff9beef10b65b18f4aa2d0cb1
0b19bacbb73113240ea862aa2e6aaf22b773a741
/rainbow/src/Scene/Tileset.h
c6fc79e95211080dabe5d4dca193f5dc96a09edb
[]
no_license
fredakilla/Rainbow
b1a64415b2dfa7c3a13ddb3c77a1b2026b3b7f25
096af7d74473a68de4787693c365e98a52a39ff1
refs/heads/master
2020-04-06T10:47:34.105551
2018-11-27T12:55:52
2018-11-27T12:55:52
157,392,000
4
2
null
null
null
null
UTF-8
C++
false
false
715
h
Tileset.h
#pragma once #include "../Core/Serializable.h" namespace rainbow { /** * Defines a text renderer. */ class Tileset : public Serializable { friend class Activator; public: /** * Constructor. */ Tileset(); /** * Destructor. */ ~Tileset(); protected: /** * @see Activator::createObject */ static std::shared_ptr<Serializable> createObject(); /** * @see Serializable::getClassName */ std::string getClassName(); /** * @see Serializable::onSerialize */ void onSerialize(Serializer* serializer); /** * @see Serializable::onDeserialize */ void onDeserialize(Serializer* serializer); }; }
f84f7953bd734e2d0660eeeed101b0595a68c19e
39a1d46fdf2acb22759774a027a09aa9d10103ba
/inference-engine/tests/functional/plugin/conformance/subgraphs_dumper/include/matchers/base_matcher.hpp
bb75c373246f10516816bf03b9741189ebc74168
[ "Apache-2.0" ]
permissive
mashoujiang/openvino
32c9c325ffe44f93a15e87305affd6099d40f3bc
bc3642538190a622265560be6d88096a18d8a842
refs/heads/master
2023-07-28T19:39:36.803623
2021-07-16T15:55:05
2021-07-16T15:55:05
355,786,209
1
3
Apache-2.0
2021-06-30T01:32:47
2021-04-08T06:22:16
C++
UTF-8
C++
false
false
2,764
hpp
base_matcher.hpp
// Copyright (C) 2018-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 // #pragma once #include <utility> #include "ngraph/node.hpp" #include "pugixml.hpp" #include "functional_test_utils/include/functional_test_utils/layer_test_utils/op_info.hpp" namespace SubgraphsDumper { class MatchersManager; class iMatcherConfig { public: using Ptr = std::shared_ptr<iMatcherConfig>; explicit iMatcherConfig(bool is_fallback_config) : is_fallback_config(is_fallback_config) {} iMatcherConfig( std::vector<std::string> ignored_attributes, std::vector<size_t> ignored_ports, bool is_fallback_config, bool ignore_matching = false) : ignored_attributes(std::move(ignored_attributes)), ignored_ports(std::move(ignored_ports)), is_fallback_config(is_fallback_config), ignore_matching(ignore_matching) {} // Empty vectors stands for any of possible values std::vector<std::string> ignored_attributes; std::vector<size_t> ignored_ports; bool is_fallback_config; bool ignore_matching = false; virtual bool op_in_config(const std::shared_ptr<ngraph::Node> &node) = 0; virtual ~iMatcherConfig() = default; }; template <typename... OPTypes> struct MatcherConfig : public iMatcherConfig { public: MatcherConfig() : iMatcherConfig(sizeof...(OPTypes) == 0) {} MatcherConfig(std::vector<std::string> ignored_attributes, std::vector<size_t> ignored_ports, bool ignore_matching = false) : iMatcherConfig( std::move(ignored_attributes), std::move(ignored_ports), sizeof...(OPTypes) == 0, ignore_matching) {} MatcherConfig(bool ignore_matching) : iMatcherConfig({}, {}, sizeof...(OPTypes) == 0, ignore_matching) {} bool op_in_config(const std::shared_ptr<ngraph::Node> &node) override { std::initializer_list<bool> vals{(ngraph::is_type<OPTypes>(node))...}; return std::any_of(vals.begin(), vals.end(), [](bool i) { return i; }); }; }; class Matcher { using Ptr = std::shared_ptr<Matcher>; friend class MatchersManager; public: virtual bool match(const std::shared_ptr<ngraph::Node> &node, const std::shared_ptr<ngraph::Node> &ref, const LayerTestsUtils::OPInfo &op_info) const = 0; virtual ~Matcher() = default; protected: virtual void configure(const pugi::xml_document &cfg) = 0; iMatcherConfig::Ptr get_config(const std::shared_ptr<ngraph::Node> &node) const; std::vector<iMatcherConfig::Ptr> default_configs; virtual bool match_only_configured_ops() const = 0; // TODO: Add setter for external configuration purposes. }; } // namespace SubgraphsDumper
4034cf741fb1ecf5ef192aeabf5c68dc45f99cf6
e637d734d7970005f5ed18f4f624445ae0210ac6
/GradiusCopy/Big_Core.cpp
78fca1915da597c046d68235208ad4283971dcef
[]
no_license
kcj08021/GradiusCopy
30e7ccc37e741935dd8c081841c74deb399e34ee
144df0e4952aa08e18b3de5c6f0f32cb1df8899a
refs/heads/master
2022-09-08T05:05:14.988075
2020-05-25T00:10:31
2020-05-25T00:10:31
266,646,430
0
0
null
null
null
null
UTF-8
C++
false
false
2,257
cpp
Big_Core.cpp
#include "pch.h" #include "Big_Core.h" #include "EnemyBullet.h" Big_Core::Big_Core(): m_Cooltime(0){ } Big_Core::~Big_Core(){ Release(); } void Big_Core::Initialize(){ m_tInfo.fX = 650.f; m_tInfo.fY = 300.f; m_tInfo.fCX = 162.f; m_tInfo.fCY = 162.f; m_Cooltime = 20; m_fSpeed = 3.f; m_iDamage = 100; m_iHP = 150; CTextureManager::GetInstance()->AddTexture(STRING_IMG_MONSTER_BIGCORE, IMG_BIGCORE); } int Big_Core::Update(){ if(m_bIsDead) return m_bIsDead; if(nullptr != CObjectManager::GetInstance()->GetPlayer()){ m_Cooltime--; BossMoving(); if(m_Cooltime <= 0){ if(BulletFire()); m_Cooltime = 100; } } return m_bIsDead; } void Big_Core::Render(HDC hDC){ CGameObject::UpdateRect(); if(CKeyManager::GetInstance()->IsKeyPressing(KEY_CHAR_A)) Rectangle(hDC, m_tRect.left, m_tRect.top, m_tRect.right, m_tRect.bottom); GdiTransparentBlt(hDC, m_tRect.left, m_tRect.top, m_tInfo.fCX, m_tInfo.fCY, CTextureManager::GetInstance()->GetTextureDC(IMG_BIGCORE), 0, 0, 162, 162, RGB(255, 0, 255)); } void Big_Core::Release(){ if(m_bIsDead){ CEffectManager::GetInstance()->ObjectDead(OBJ_BOSS, m_tInfo); PatternMgr::GetInstance()->SetBossDie(true); } } void Big_Core::BossMoving(){ if(m_tInfo.fY < CObjectManager::GetInstance()->GetPlayer()->GetInfo().fY) m_tInfo.fY += m_fSpeed; else if(m_tInfo.fY > CObjectManager::GetInstance()->GetPlayer()->GetInfo().fY) m_tInfo.fY -= m_fSpeed; } bool Big_Core::BulletFire(){ if(m_tInfo.fY == CObjectManager::GetInstance()->GetPlayer()->GetInfo().fY){ CObjectManager::GetInstance()->AddObject(OBJ_ENEMYBULLET, CAbstractFactory<EnemyBullet>::CreateObject(m_tInfo.fX - 100, m_tInfo.fY - 75, PI, BOSS)); CObjectManager::GetInstance()->AddObject(OBJ_ENEMYBULLET, CAbstractFactory<EnemyBullet>::CreateObject(m_tInfo.fX - 150, m_tInfo.fY - 40, PI, BOSS)); CObjectManager::GetInstance()->AddObject(OBJ_ENEMYBULLET, CAbstractFactory<EnemyBullet>::CreateObject(m_tInfo.fX - 150, m_tInfo.fY + 40, PI, BOSS)); CObjectManager::GetInstance()->AddObject(OBJ_ENEMYBULLET, CAbstractFactory<EnemyBullet>::CreateObject(m_tInfo.fX - 100, m_tInfo.fY + 75, PI, BOSS)); return true; } return false; }
83ecfaced21dddaac82071a08e8b874cf92a0d5c
34ad3762042b4e957463286da2921c6478f4810c
/src/util/unique_ptr.h
d2f812bfb2e68c3ffe2e3f51a4839dd39d50a60b
[ "BSD-3-Clause" ]
permissive
DalavanCloud/berrydb
6192d0530a140e750e3110cb5e21d91224ce6334
c5122027334a375422e90cc0eb5c528a8d9bdb91
refs/heads/master
2020-04-17T14:11:45.598555
2019-01-20T07:04:58
2019-01-20T07:04:58
166,647,382
1
0
null
2019-01-20T10:10:24
2019-01-20T10:10:23
null
UTF-8
C++
false
false
1,306
h
unique_ptr.h
// Copyright 2017 The BerryDB Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BERRYDB_UTIL_UNIQUE_PTR_H_ #define BERRYDB_UTIL_UNIQUE_PTR_H_ #include <memory> #include "./platform_deleter.h" #include "berrydb/platform.h" namespace berrydb { /** std::unique_ptr variant that calls Release() to delete a pointer. * * std::unique_ptr (and, by extension, UniquePtr) is extremely cheap, but it is * not completely free, compared to a raw pointer that is known to be non-null. * Both assignment and destruction must check the wrapped pointer is null before * calling the delete operator. The checks contribute to code size and BTB * pollution. * * For these reasons, UniquePtr should not be considered a blanket replacement * for raw pointers, even when the ownership model matches. UniquePtr should be * used: * * 1) In tests, where the above concerns are irrelevant. * 2) In code that would contain the null checks anyways. * 3) In code where the pointer is destroyed rarely (e.g. Stores, not * Transactions) and never / very rarely assigned to. */ template <typename T> using UniquePtr = std::unique_ptr<T, PlatformDeleter<T>>; } // namespace berrydb #endif // BERRYDB_UTIL_UNIQUE_PTR_H_
0521026e8c02b4ecac19be8aa36b2782cf134046
195281d2f41720d40133a24fe17e460e59dba816
/src/src_bksafe/beikesafe/Checkbase/GetComputerInfo.h
c32c57d0a2e845d3f154cd456ed44c8dad02229f
[ "Apache-2.0" ]
permissive
killbug2004/ksm
3e0547437e1f48d14558ab2ec10fad4f367d2a93
6229edcf7376d4da13f4865310fda3b581063eb5
refs/heads/master
2017-10-03T03:04:03.675891
2015-03-20T10:08:22
2015-03-20T10:08:31
null
0
0
null
null
null
null
GB18030
C++
false
false
3,369
h
GetComputerInfo.h
#include <stdio.h> #include <windows.h> #include <stdio.h> #include <iostream> #include <string.h> #include <tchar.h> #ifdef _UNICODE #endif using namespace std; #pragma comment(lib, "wsock32.lib") #define KEY_SET_INFO _T("SYSTEM\\ControlSet001\\Services\\Tcpip\\Parameters") #define KEY_NAME _T("Domain") #define MAX_VALUE_NAME 16383 CString GetOSVersionInfo() { int a=0,b=0,i=0,j=0; _asm { pushad mov ebx,fs:[0x18] ; get self pointer from TEB mov eax,fs:[0x30] ; get pointer to PEB / database mov ebx,[eax+0A8h] ; get OSMinorVersion mov eax,[eax+0A4h] ; get OSMajorVersion mov j,ebx mov i,eax popad } if((i==5)&&(j==0)) { return " Windows 2000"; } else if((i==5)&&(j==1)) { return "Windows XP"; } else if((i==5)&&(j==2)) { return "Windows server 2003"; } else if((i==6)&&(j==0)) { return "Windows Vista"; } else if((i==6)&&(j==1)) { return "Windows 7"; } } typedef struct COMPUTERINFO{ char *computername; char *computerip; TCHAR *domain; CString osversion; }info; TCHAR *getdoamin(); COMPUTERINFO computerinfo() { COMPUTERINFO info ; //info ={ "loverangel", "127.0.0.1", _T("yulong","xp") }; //info.computername =new char; //info.computerip = new char; //info.domain = new TCHAR; //info.osversion = new CString; char *buf = new char[MAX_KEY_LENGTH]; struct hostent *ph = 0; WSADATA w; WSAStartup(0x0101, &w); //这一行必须在使用任何SOCKET函数前写! if(gethostname(buf, 256)) { //fprintf(stderr, "gethostname() fault %d\n", GetLastError());buf info.computername = "Error"; } else { info.computername = buf ; } ph = gethostbyname(buf); //printf("本机IP:%s\n", inet_ntoa(*((struct in_addr *)ph->h_addr_list[0]))); // sprintf(buf,"%s",inet_ntoa(*((struct in_addr *)ph->h_addr_list[0])); //CString ipbuf; //ipbuf.Format(()*((struct in_addr *)ph->h_addr_list[0])); char *ipbuf = new char[MAX_KEY_LENGTH]; sprintf(ipbuf,"%s",inet_ntoa(*((struct in_addr *)ph->h_addr_list[0]))); info.computerip = ipbuf; WSACleanup(); info.domain = getdoamin(); info.osversion = GetOSVersionInfo(); //delete info.computername; //delete info.computerip; //delete info.domain; //delete info.osversion; //delete[] buf; //delete[] ipbuf; return info; } TCHAR *getdoamin() { HKEY hkey; TCHAR *domain; if(RegOpenKeyEx(HKEY_LOCAL_MACHINE,KEY_SET_INFO,0,KEY_READ,&hkey)==ERROR_SUCCESS) //打开域名存储位置 { // printf("打开键值成功\n"); TCHAR shareValue[MAX_VALUE_NAME] ; DWORD shareType; DWORD shareSize = 100; shareType=REG_SZ; // shareSize= strlen(shareValue); //读取域信息 LONG ret0=RegQueryValueEx(hkey,KEY_NAME,NULL,&shareType, (LPBYTE)shareValue, &shareSize); if(ret0==ERROR_SUCCESS) { if(shareSize==1) //Domain的REG_SZ值为空时,代表未加入任何域 { //printf("未加入任何域\n"); //此时shareSize值为1 domain = _T(""); } else { //printf("已加入公司域:"); //printf("%s\n",shareValue); domain = shareValue; } } else { MessageBox(NULL,_T("查询注册表失败..."), _T("读取域信息"), MB_ICONINFORMATION); } RegCloseKey(hkey); } else { MessageBox(NULL,_T("打开注册表失败..."), _T("读取域信息"), MB_ICONINFORMATION); } //delete domain; return domain; }
f918cc4d8b1d89eac66c449d7a459a6614291809
77b25fa438b6f2736e60885603bb303b36ba7cd5
/lab5_queue/add_remove_opposite/queue_driver.cpp
246aabe55c9a8434309d285eee508e6917e4d971
[]
no_license
robotcorner/CPE212-Data-Structures-Cpp
f6d43b7e4a5273c61e32f2268ac1064562518ce7
4df24b8f84a3877305257bf61b2a939a471cea2d
refs/heads/master
2022-02-26T18:29:39.631846
2019-11-11T16:18:58
2019-11-11T16:18:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
932
cpp
queue_driver.cpp
#include "queue.h" #include <iostream> using namespace std; int main() { int item; Queue A_queue(100); cout << endl << "old methods" << endl << endl; for(int i=0;i<10;i++) { cout << "pushed item was " << i << endl; A_queue.Enqueue(i); } for(int i=0;i<10;i++) { A_queue.Dequeue(item); cout << "returned item was " << item << endl; } cout << endl << "old enqueue with opposite dequeue" << endl << endl; for(int i=0;i<10;i++) { cout << "pushed item was " << i << endl; A_queue.Enqueue(i); } for(int i=0;i<10;i++) { A_queue.Dequeue_Opposite(item); cout << "returned item was " << item << endl; } cout << endl << "opposite enqueue with old dequeue" << endl << endl; for(int i=0;i<10;i++) { cout << "pushed item was " << i << endl; A_queue.Enqueue_Opposite(i); } for(int i=0;i<10;i++) { A_queue.Dequeue(item); cout << "returned item was " << item << endl; } }
5d639cbd20e38e541b86a175219f23eb58bdbb7f
1ecf4c8714005f961361f4de2d317efa9ce7e1de
/Algorithm Trainings from Yandex (September 2021)/Linear Search/E-diplomas.cpp
c43f7a160f7fd5b6dbe93b349d391a8852b22117
[ "Unlicense" ]
permissive
successful-try/-
e4aca86bd819bf6a0e459e8a6edcc59827c0d241
c0b8196f036db7916194536684c04f2091785a34
refs/heads/main
2023-08-24T10:06:03.523959
2021-11-01T04:31:23
2021-11-01T04:31:23
373,467,024
0
0
null
null
null
null
UTF-8
C++
false
false
431
cpp
E-diplomas.cpp
#include <iostream> #include <math.h> #include <vector> #include <algorithm> #include <array> #include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; int x; int sec=0; int max_folder = 0; for(int i=0;i<N;++i){ cin >> x; if(x > max_folder){ max_folder = x; } sec+=x; } sec-=max_folder; cout << sec <<endl; return 0; }
ad5998dd9e827efb1cfd4b9a7dedd54bc825cd05
ddcabf7de24bbb4a2383cf19524f4a1af1ff51db
/src/ReadFiles.cpp
943ddc8e035b3ef6199717dd81149053bb0989d2
[ "MIT" ]
permissive
Isurwars/Correlation
5028fb07a9cd00b3078dd11c9f8340341f58e988
1fe7dbf2566317703317ca6b0335002a0c9f3a10
refs/heads/main
2023-04-18T22:24:01.308651
2022-08-15T18:15:42
2022-08-15T18:15:42
266,740,288
17
7
MIT
2022-05-20T11:32:07
2020-05-25T09:36:38
C++
UTF-8
C++
false
false
18,280
cpp
ReadFiles.cpp
/* --------------------------------------------------------------------- * Correlation: An Analysis Tool for Liquids and for Amorphous Solids * Copyright (c) 2013-2021 Isaías Rodríguez <isurwars@gmail.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the MIT License version as published in: * https://github.com/Isurwars/Correlation/blob/main/LICENSE * * 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 "ReadFiles.h" #include <array> #include <fstream> #include <iostream> #include <list> #include <regex> #include <string.h> #include <utility> #include <vector> #include "Atom.h" /* * Generic function to find if an element of any type exists in vector, * if true, then return the index. */ template<typename T> std::pair<bool, int> findInVector(const std::vector<T>& vecOfElements, const T & element) { std::pair<bool, int> result; // Find given element in vector auto it = std::find(vecOfElements.begin(), vecOfElements.end(), element); if (it != vecOfElements.end()) { result.second = std::distance(vecOfElements.begin(), it); result.first = true; } else { result.first = false; result.second = -1; } return result; } // findInVector Cell read_CAR(std::string file_name) { /* * This function reads a CAR file and returns a list of atoms objects * with the element, number and position inside. It also returns the * cell parameters (a, b, c, alpha, beta and gamma) for the periodic * repetition of the cell. */ std::ifstream myfile(file_name); std::string line; Cell tempCell; std::smatch match; /* * CAR file is CASE SENSITIVE, and has a strict policy for position * and spacing, this simplifies the reading of the file by external codes. */ /* * The parameters are in a line that start with PBC, followed by the * six lattice parameters: A, B, C, alpha, beta, gamma. */ std::regex regex_parameters("(^!?PBC)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)"); /* * The atoms start with the element symbol, the first letter is UPPERCASE, * a second optional letter is lowercase, followed by a identifing integer. * Then the absolute coordinates (x, y, z) in Angstroms. */ std::regex regex_atom("^([A-Z][a-z]?)" "(\\d+)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[A-Z]+)" "(\\s\\d+)" "(\\s+[a-z]+\\s+)" "([A-Z][a-z]?)"); if (myfile.is_open()) { while (std::getline(myfile, line)) { if (std::regex_search(line, match, regex_parameters)) { tempCell.lattice_parameters[0] = std::stod(match.str(2).data()); tempCell.lattice_parameters[1] = std::stod(match.str(4).data()); tempCell.lattice_parameters[2] = std::stod(match.str(6).data()); tempCell.lattice_parameters[3] = std::stod(match.str(8).data()); tempCell.lattice_parameters[4] = std::stod(match.str(10).data()); tempCell.lattice_parameters[5] = std::stod(match.str(12).data()); tempCell.SetLatticeVectors(); } if (std::regex_search(line, match, regex_atom)) { Atom tempAtom(match.str(12).data(), { std::stod(match.str(3).data()), std::stod(match.str(5).data()), std::stod(match.str(7).data()) }); tempCell.atoms.push_back(tempAtom); if (!(findInVector(tempCell.elements, tempAtom.element).first)) { tempCell.elements.push_back(tempAtom.element); } } } } else { std::cout << "Unable to read file: " << file_name << " (" << strerror(errno) << ")." << std::endl; exit(1); } return tempCell; } // read_CAR Cell read_CELL(std::string file_name) { /* * This function reads a CELL file and returns a list of atoms objects * with the element, number and position inside. It also returns the * cell parameters (a, b, c, alpha, beta and gamma) for the periodic * repetition of the cell. */ std::ifstream myfile(file_name); std::string line; std::smatch match; Cell tempCell; bool frac_flag = false; /* * CELL files are CasE InSenSitiVE. The file is separeted in "BLOCKS". * Ordering the BLOCKS is not mandatory, and most of the BLOCKS * are optional, while some are mutally exclusive. * Inside the BLOCK the data is stored in a strict order, both in * position and separation, so we can use regex to read the data inside * the BLOCKS, and deal with the disorder between BLOCKS in a different * approach. */ /* * BLOCK starts with %BLOCK "something", CasE InSenSitiVE */ std::regex regex_block("^(%block)\\s+" "([^\n\r]+)", std::regex::icase); /* * BLOCK ends with %ENDBLOCK "something", CasE InSenSitiVE */ std::regex regex_endblock("^(%endblock)\\s+" "([^\n\r]+)", std::regex::icase); /* * There are two lattice block, mutally exclusive: * - LATTICE_CART * The three lattice vectors are provided in a 3x3 matrix: * v_ai v_aj v_ak * v_bi v_bj v_bk * v_ci v_cj v_ck * * - LATTICE_ABC * The 6 lattice parameters are provided in a 3x2 matrix: * A B c * alpha beta gamma */ std::regex regex_lattice_cart("(lattice_cart)", std::regex::icase); std::regex regex_lattice_abc("(lattice_abc)", std::regex::icase); std::regex regex_lattice("(\\s*[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)"); /* * Atoms have two options: absolute coordinates and relative coordinates, * both of them have the following structure: * Element Symbol, X, Y, Z */ std::regex regex_positions_abs("(positions_abs)", std::regex::icase); std::regex regex_positions_frac("(positions_frac)", std::regex::icase); std::regex regex_atom("([A-Z][a-z]?)" "([a-z]?[0-9]?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)"); if (myfile.is_open()) { /* Check if the file is open */ while (std::getline(myfile, line)) { /* Read line by line */ if (std::regex_search(line, match, regex_block)) { /* BLOCK found */ if (std::regex_search(line, match, regex_lattice_cart)) { /* LATTICE_CART case.*/ int index = 0; double aux_v[3][3]; while (!std::regex_search(line, match, regex_endblock)) { std::getline(myfile, line); if (std::regex_search(line, match, regex_lattice)) { aux_v[index][0] = std::stof(match.str(1).data()); aux_v[index][1] = std::stof(match.str(3).data()); aux_v[index][2] = std::stof(match.str(5).data()); index++; } } tempCell.SetFromVectors({ aux_v[0][0], aux_v[0][1], aux_v[0][2] }, { aux_v[1][0], aux_v[1][1], aux_v[1][2] }, { aux_v[2][0], aux_v[2][1], aux_v[2][2] }); } if (std::regex_search(line, match, regex_lattice_abc)) { /* LATTICE_ABC case.*/ int index = 0; while (!std::regex_search(line, match, regex_endblock)) { std::getline(myfile, line); if (std::regex_search(line, match, regex_lattice)) { tempCell.lattice_parameters[0 + 3 * index] = std::stof(match.str(1).data()); tempCell.lattice_parameters[1 + 3 * index] = std::stof(match.str(3).data()); tempCell.lattice_parameters[2 + 3 * index] = std::stof(match.str(5).data()); index++; } } tempCell.SetLatticeVectors(); } if (std::regex_search(line, match, regex_positions_frac)) { /* POSITIONS_FRAC case.*/ frac_flag = true; while (!std::regex_search(line, match, regex_endblock)) { std::getline(myfile, line); if (std::regex_search(line, match, regex_atom)) { Atom tempAtom(match.str(1).data(), { std::stod(match.str(3).data()), std::stod(match.str(5).data()), std::stod(match.str(7).data()) }); tempCell.atoms.push_back(tempAtom); if (!(findInVector(tempCell.elements, tempAtom.element).first)) { tempCell.elements.push_back(tempAtom.element); } } } } if (std::regex_search(line, match, regex_positions_abs)) { /* POSITIONS_ABS case.*/ frac_flag = false; while (!std::regex_search(line, match, regex_endblock)) { std::getline(myfile, line); if (std::regex_search(line, match, regex_atom)) { Atom tempAtom(match.str(1).data(), { std::stod(match.str(3).data()), std::stod(match.str(5).data()), std::stod(match.str(7).data()) }); tempCell.atoms.push_back(tempAtom); if (!(findInVector(tempCell.elements, tempAtom.element).first)) { tempCell.elements.push_back(tempAtom.element); } } } } } } } else { std::cout << "Unable to read file: " << file_name << " (" << strerror(errno) << ")." << std::endl; exit(1); } if (frac_flag) tempCell.CorrectFracPositions(); return tempCell; } // read_CELL Cell read_ONETEP_DAT(std::string file_name) { /* * This function reads a CELL file and returns a list of atoms objects * with the element, number and position inside. It also returns the * cell parameters (a, b, c, alpha, beta and gamma) for the periodic * repetition of the cell. */ std::ifstream myfile(file_name); std::string line; std::smatch match; Cell tempCell; bool frac_flag = false; double p_f = 0.52918; /* * CELL files are CasE InSenSitiVE. The file is separeted in "BLOCKS". * Ordering the BLOCKS is not mandatory, and most of the BLOCKS * are optional, while some are mutally exclusive. * Inside the BLOCK the data is stored in a strict order, both in * position and separation, so we can use regex to read the data inside * the BLOCKS, and deal with the disorder between BLOCKS in a different * approach. */ /* * BLOCK starts with %BLOCK "something", CasE InSenSitiVE */ std::regex regex_block("^(%block)\\s+" "([^\n\r]+)", std::regex::icase); /* * BLOCK ends with %ENDBLOCK "something", CasE InSenSitiVE */ std::regex regex_endblock("^(%endblock)\\s+" "([^\n\r]+)", std::regex::icase); /* * There are two lattice block, mutally exclusive: * - LATTICE_CART * The three lattice vectors are provided in a 3x3 matrix: * v_ai v_aj v_ak * v_bi v_bj v_bk * v_ci v_cj v_ck * * - LATTICE_ABC * The 6 lattice parameters are provided in a 3x2 matrix: * A B c * alpha beta gamma */ std::regex regex_lattice_cart("(lattice_cart)", std::regex::icase); std::regex regex_lattice_abc("(lattice_abc)", std::regex::icase); std::regex regex_lattice("(\\s*[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)"); /* * Onetep default distance units is a0, we need to know if we should * change from a.u. to Å. */ std::regex regex_ang("(ang)", std::regex::icase); /* * Atoms have two options: absolute coordinates and relative coordinates, * both of them have the following structure: * Element Symbol, X, Y, Z */ std::regex regex_positions_abs("(positions_abs)", std::regex::icase); std::regex regex_positions_frac("(positions_frac)", std::regex::icase); std::regex regex_atom("([A-Z][a-z]?)" "([a-z]?[0-9]?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)" "(\\s+[-+]?[0-9]+[.]?[0-9]*([eE][-+]?[0-9]+)?)"); if (myfile.is_open()) { /* Check if the file is open */ while (std::getline(myfile, line)) { /* Read line by line */ if (std::regex_search(line, match, regex_block)) { /* BLOCK found */ if (std::regex_search(line, match, regex_lattice_cart)) { /* LATTICE_CART case.*/ int index = 0; double aux_v[3][3]; while (!std::regex_search(line, match, regex_endblock)) { std::getline(myfile, line); if (std::regex_search(line, match, regex_ang)) { p_f = 1.0; } if (std::regex_search(line, match, regex_lattice)) { aux_v[index][0] = std::stof(match.str(1).data()) * p_f; aux_v[index][1] = std::stof(match.str(3).data()) * p_f; aux_v[index][2] = std::stof(match.str(5).data()) * p_f; index++; } } tempCell.SetFromVectors({ aux_v[0][0], aux_v[0][1], aux_v[0][2] }, { aux_v[1][0], aux_v[1][1], aux_v[1][2] }, { aux_v[2][0], aux_v[2][1], aux_v[2][2] }); } if (std::regex_search(line, match, regex_lattice_abc)) { /* LATTICE_ABC case.*/ int index = 0; while (!std::regex_search(line, match, regex_endblock)) { std::getline(myfile, line); if (std::regex_search(line, match, regex_ang)) { p_f = 1.0; } if (std::regex_search(line, match, regex_lattice)) { tempCell.lattice_parameters[0 + 3 * index] = std::stof(match.str(1).data()) * p_f; tempCell.lattice_parameters[1 + 3 * index] = std::stof(match.str(3).data()) * p_f; tempCell.lattice_parameters[2 + 3 * index] = std::stof(match.str(5).data()) * p_f; index++; } } tempCell.SetLatticeVectors(); } if (std::regex_search(line, match, regex_positions_frac)) { /* POSITIONS_FRAC case.*/ frac_flag = true; while (!std::regex_search(line, match, regex_endblock)) { std::getline(myfile, line); if (std::regex_search(line, match, regex_ang)) { p_f = 1.0; } if (std::regex_search(line, match, regex_atom)) { Atom tempAtom(match.str(1).data(), { std::stod(match.str(3).data()) * p_f, std::stod(match.str(5).data()) * p_f, std::stod(match.str(7).data()) * p_f }); tempCell.atoms.push_back(tempAtom); if (!(findInVector(tempCell.elements, tempAtom.element).first)) { tempCell.elements.push_back(tempAtom.element); } } } } if (std::regex_search(line, match, regex_positions_abs)) { /* POSITIONS_ABS case.*/ frac_flag = false; while (!std::regex_search(line, match, regex_endblock)) { std::getline(myfile, line); if (std::regex_search(line, match, regex_ang)) { p_f = 1.0; } if (std::regex_search(line, match, regex_atom)) { Atom tempAtom(match.str(1).data(), { std::stod(match.str(3).data()) * p_f, std::stod(match.str(5).data()) * p_f, std::stod(match.str(7).data()) * p_f }); tempCell.atoms.push_back(tempAtom); if (!(findInVector(tempCell.elements, tempAtom.element).first)) { tempCell.elements.push_back(tempAtom.element); } } } } } } } else { std::cout << "Unable to read file: " << file_name << " (" << strerror(errno) << ")." << std::endl; exit(1); } if (frac_flag) tempCell.CorrectFracPositions(); return tempCell; } // read_ONETEP_DAT Cell read_CIF(std::string file_name) { /* * This is a Stub for reading a CIF file and return and empty cell. * Since CIF files are mostly used for crystalline materials we don't * only need to read the file, but we also need to calculate the correct * positions of the images in the cell and to verify that no atom is * multiply accounted for, due to the different symmetries. * This will be implemented AFTER the bond angle is finished. */ std::ifstream myfile(file_name); std::string line; Cell tempCell; std::smatch match; return tempCell; } // read_CIF
2ccf628f7da9bc2e7448f0758f64cee94b5e0f39
d217d87eda5567d220bab15e49094d688c77eb08
/src/components/ActionComponent.cpp
48d189f9ebe6345bc686e042cb254ee345650b7e
[]
no_license
TheNinthFox/icw
daf9fcc87631686b45059ee20faa76432f87aed1
ec4f9c1dc80b1b993f36ae23de9bf927dbe361d4
refs/heads/master
2020-04-15T04:40:22.306440
2014-10-19T19:59:11
2014-10-19T19:59:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
656
cpp
ActionComponent.cpp
#include <lib/gameobjects/GameObject.hpp> #include "lib/components/ActionComponent.hpp" ActionComponent::ActionComponent( GameObject* gameObject ) : mActions() , mGameObject( gameObject ) { this->setType( "ActionComponent" ); } void ActionComponent::update( GameObject* object, sf::Time dt ) { } void ActionComponent::addAction( std::string key, std::function<void( GameObject* object )> action ) { mActions.emplace( key, action ); } void ActionComponent::executeAction( std::string key, GameObject* object ) { mActions.at( key )( object ); } GameObject* ActionComponent::getGameObject() const { return mGameObject; }
9ba1de4d485add81d821b58d61e3b8932757e36d
b4aa7fbe0c78a36e0f75c7223f6c84529bbbdb90
/lec4_task/queue.cpp
b9591fc17ca667b1ba0efd4e693bb7cbdaf80a09
[]
no_license
SputnikLee/DataStructuresAndAlgorithms
ad14ca2ed0dd2aac0a3a5a4105dbf6af2cd91cf9
f02162ec2dd53b68c1275b6ecff6873de0a5effd
refs/heads/master
2020-05-23T00:53:30.277048
2019-05-14T08:15:09
2019-05-14T08:15:09
186,578,448
0
0
null
null
null
null
UTF-8
C++
false
false
2,240
cpp
queue.cpp
#include "queue.h" #include <stdlib.h> #include <stdio.h> bool CreateQueue(Queue *queue, int size) { if (size <= 0) return false; queue->values = (double *) malloc(sizeof(double) * size); queue->front = 0; queue->rear = -1; queue->counter = 0; queue->maxSize = size; return true; } //– Creates an empty queue whose capacity is size bool IsEmpty(Queue *queue) { if (queue->counter == 0) return true; else return false; } //– Returns true if the queue is empty and false otherwise bool IsFull(Queue *queue) { if (queue->counter == queue->maxSize) return true; else return false; } //– Returns true if the queue is full and false otherwise bool Enqueue(Queue *queue, double x) { if (IsFull(queue)) { printf("Error: the queue is full.\n"); return false; } queue->rear = (queue->rear + 1) % queue->maxSize; queue->values[queue->rear] = x; queue->counter++; return true; } //– Adds a new element with value x to the rear of the queue //– Returns true if the operation is successful and false otherwise bool Dequeue(Queue *queue, double *x) { if (IsEmpty(queue)) return false; *x = queue->values[queue->front]; queue->values[queue->front] = 0; queue->front = (queue->front + 1) & queue->maxSize; queue->counter--; return true; } //– Removes an element from the front of the queue //– Returns true if the operation is successful and false otherwise // – Passes the value of the front element to x void DisplayQueue(Queue *queue) { if (IsEmpty(queue)) printf("The queue is empty"); else { printf("front -->"); for (int i = queue->front, count = 0; count < queue->counter; i = (i + 1) % queue->maxSize, ++count) { if (count) printf("\t\t"); printf("\t%g", queue->values[i]); if (count == queue->counter) printf("\t\t<--rear\n"); else printf("\n"); } } } //– Prints all the elements of the queue void DestroyQueue(Queue *queue) { free(queue->values); queue->front = 0; queue->rear = 0; queue->counter = 0; queue->maxSize = -1; } //– Frees the memory occupied by the queue
1524cafd876e0ca6e9134302ada5cabd16ffa1f2
1724439e1f3b8e92874ba9f1d67cc4211890a4e4
/module03/ex00/Point.cpp
2648d156415dd1cc4a4c268742436ae98590ab76
[]
no_license
evelon/CPP-Module
3aac6d1ff8bea2ea0f400832c35dc86057d0d704
7534e7d420360a19e411cbd450654f1fdb168552
refs/heads/main
2023-04-25T04:17:20.169564
2021-05-10T11:21:48
2021-05-10T11:21:48
358,794,083
0
0
null
null
null
null
UTF-8
C++
false
false
1,527
cpp
Point.cpp
#include "Point.hpp" Point::Point(): num(0) {} Point::Point(unsigned int un): num(un) { if (num >= 100) this->num = 100; } Point::~Point() {} Point::Point(Point const& point) { this->num = point.num; } Point& Point::operator=(Point const& point) { this->num = point.num; return (*this); } Point Point::operator+(Point const& point) const { Point num(this->getNum() + point.getNum()); if (num >= 100) num = 100; return (num); } Point Point::operator-(Point const& point) const { if (point.num > this->num) return (Point(0)); return (Point(this->num - point.num)); } Point& Point::operator+=(Point const& point) { *this = *this + point; return (*this); } Point& Point::operator-=(Point const& point) { *this = *this - point; return (*this); } bool Point::operator<(Point const& point) const { return (this->getNum() < point.getNum()); } bool Point::operator<=(Point const& point) const { return (this->getNum() <= point.getNum()); } bool Point::operator>(Point const& point) const { return (this->getNum() > point.getNum()); } bool Point::operator>=(Point const& point) const { return (this->getNum() >= point.getNum()); } bool Point::operator==(Point const& point) const { return (this->getNum() == point.getNum()); } bool Point::operator!=(Point const& point) const { return (this->getNum() < point.getNum()); } unsigned int Point::getNum(void) const { return (this->num); } std::ostream& operator<<(std::ostream& os, Point const& point) { os << point.getNum(); return (os); }
4a967f50f50fa324154f9f8e311f66f37b3de198
2ab05fc523d0e5defb90a9e443c33118aa50dd8f
/fo/sort/sort1.cpp
79a3f1f6588100bc06ef6e540599e375d728272b
[]
no_license
NetworkRanger/cpp-stdlib
4d16464b0ae8a4681ca7a10bb08d07db8c6f375c
3c19b96ce59add163bf7c57ea893e03883957ec8
refs/heads/master
2020-03-07T08:27:00.182650
2018-06-20T14:40:24
2018-06-20T14:40:24
127,378,662
3
1
null
null
null
null
UTF-8
C++
false
false
828
cpp
sort1.cpp
#include <iostream> #include <string> #include <set> #include <algorithm> using namespace std; class Person{ public: string firstname()const; string lastname()const; }; //class for function predicate //-operator() returns whether a person is less than another person class PersonSortCriterion{ public: bool operator()(const Person& p1, const Person& p2)const{ //a person is less than another person //-if the last name is less //-if the last name is equal and the first name is less return p1.lastname()<p2.lastname() || (p1.lastname() == p2.lastname() && p1.firstname() < p2.firstname()); } }; int main(){ //create a set with special sorting criterion set<Person, PersonSortCriterion> coll; //do something with the elements for(auto pos = coll.begin();pos != coll.end();++pos){ } return 0; }
b361c0501296964df0e0892fbfe173d7bee9f439
cc6f5216f460f06bdc047fed39ac0e7cebd73cfa
/NTHU_OJ_Codes/9018_-_Tree.cpp
a292e3a9025ba0ca6ba4e76a76bf72431de96e38
[]
no_license
henryyang42/C_CPP_Codes
e90d01b03f248c0fbac55542c3c39083ff8a6fe2
8d4a686f49f4d565427f68b46039ad5d5626dc38
refs/heads/master
2021-01-18T21:43:28.614381
2016-04-10T05:38:00
2016-04-10T05:38:00
16,172,470
0
0
null
null
null
null
UTF-8
C++
false
false
530
cpp
9018_-_Tree.cpp
#include<stdio.h> #include<string.h> char map[1001][1001] = {0}, ct[1001] = {0}; int fg; void dfs(int a){ if(fg++) putchar(32); ct[a] = 1; printf("%d", a); int i; for(i = 0; i < 1001; i++) if(map[a][i] && !ct[i]) dfs(i); } int main(){ int n, i, a, b; while(scanf("%d", &n) > 0, n){ fg = 0; memset(map, 0, sizeof(map)); memset(ct, 0, sizeof(ct)); for(i = 0; i < n; i++){ scanf("%d%d", &a, &b); map[a][b] = 1; } scanf("%d", &a); dfs(a); putchar(10); } return 0; }
0854b20d32b96077bb4ba6dfdc88e702f2b71581
0721eb716ff41621d4b5f55cf1b33a00d3014974
/makeCode/Chapter01/myCode/Game.h
44c418784bce73521950455863f9421c3de26e11
[]
no_license
shigeuchi0901/gamingProg
13a40525e43f9c28fd640c06507250cfa675c189
afbc9dc794b4f6b6da0f6ff4a0443a94031071b3
refs/heads/master
2023-08-14T14:23:00.282661
2021-10-04T23:24:45
2021-10-04T23:24:45
392,527,266
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
1,898
h
Game.h
// 自作:Game インクルード // 2021/08/28 // 重複インクルードを防ぐ #pragma once // SDLライブラリをインクルード #include<SDL.h> #include<vector> // ****************************************** // 構造体宣言 // ****************************************** // ベクトル struct Vector2 { float x; float y; }; // 色彩情報 struct RGB { Uint8 r; Uint8 g; Uint8 b; Uint8 a; }; struct Ball { Vector2 position; Vector2 velocity; }; class Game { public: //インストラクタ、デストラクタ Game(); ~Game(); // 初期化 bool Initialize(); // ゲームループ void RunLoop(); // 終了処理 void Shutdown(); private: //// ゲームループのためのヘルパー関数群ーーーーーーーーーー void ProcessInput(); // ゲームの更新処理 void UpdateGame(); void GenerateOutput(); //// メンバ変数ーーーーーーーーーーーーーーーーーーーーーー // // SDLが作るウィンドウ SDL_Window* mWindow; // ゲームの継続フラグ bool mIsRunning; // レンダラー SDL_Renderer* mRenderer; // パドルの位置 Vector2 mPaddlePos; //// ボールの位置 //Vector2 mBallPoss; // 直前の時間記録用バッファ Uint32 mTicksCount; // パドルの位置更新用変数 int mPaddleDir; //パドルの色 RGB mPaddleColour; //壁の色 RGB mWallColour; //ボールの色 RGB mBallColour; ////ボールの速度 //Vector2 mBallVel; //パドルの速度 float mPaddleVel; //*********************************************** // 2プレイヤー用メンバ //*********************************************** // 右側のパドル位置 Vector2 mPaddlePos2; //右側のパドル位置変更用メンバ int mPaddleDir2; //********************************************** // ボール用動的配列 std::vector<Ball> mBalls; };
db33a14794ac7ad6b4a4061e3ef9d2448c8e90f9
ca598ff79fd13a8855d96284eca1cd2c42c9f565
/src/MappedCSR.h
86715951b6221cd52f4887da575c92da758460e3
[]
no_license
eleakin/reco
e82c105cd40754d7c928a5572ee2f9e030a3181c
d4b3a10920106be8ce26d741409705b62c546986
refs/heads/master
2021-01-25T12:37:49.518260
2018-02-17T08:26:52
2018-02-17T08:26:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
564
h
MappedCSR.h
#include <cstdint> #include <stddef.h> template< typename T> class MappedCSR { public: MappedCSR(); MappedCSR(std::uint32_t n_rows, std::uint32_t n_cols, size_t nnz, std::uint32_t * j, std::uint32_t * p, T * x): n_rows(n_rows), n_cols(n_cols), nnz(nnz), j(j), p(p), x(x) {}; const std::uint32_t n_rows; const std::uint32_t n_cols; const size_t nnz; const std::uint32_t * j; const std::uint32_t * p; T * x; }; using dMappedCSR = MappedCSR<double>; using fMappedCSR = MappedCSR<float>;
cf8ee4a47f6a78a554dbf2ce70e7773d62ff4741
f5d0f2bdeda7d45bc206a0b31ddbb9d078576f66
/content/epPerson.h
033cd8e1dd4efa3c6d7cbe3ba2bb6bff6219855d
[]
no_license
duanwujie/epserver
9f2e905169bfc91193c9e9e1dbcb0eefdebea92e
32c757148ba6ca58a28de310f984294264a5de5a
refs/heads/master
2016-09-06T02:12:23.554129
2014-01-13T01:57:01
2014-01-13T01:57:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,838
h
epPerson.h
/** * @file epPerson.h * @brief 人物基类。 * @author nvngliu@gmail.com * @version 1.0 * @date 2014-01-08 */ #ifndef __EPPERSON_H__ #define __EPPERSON_H__ #include <iostream> /** * @brief 人物基类。 */ class epPerson { public : epPerson (void); virtual ~epPerson(void); /** * @name set * @{ */ bool setName (const std::string&); /** * @brief 设置姓名。 * * @param std::string 姓。 * @param std::string 名。 * * @return 成功返回true,否则返回false。 */ bool setName (const std::string&, const std::string&); /** * @brief 设置性别。 * * @param std::string 性别。 * * @return 成功返回true,否则返回false。 */ bool setSex (const std::string&); /** * @brief 设置年龄。 * * @param int[in] 年龄。 * * @return 成功返回true,否则返回false。 */ bool setAge (const int); /** * @brief 设置民族。 * * @param std::string 民族。 * * @return 成功返回true,否则返回false。 */ bool setRace (const std::string&); /** * @brief 设置生日。 * * @param std::string[in] 生日的字符串形式。 * * @return 成功返回true,否则返回false。 */ bool setBirthday (const std::string&); /** * @brief 设置地区。 * * @param std::string 地区字符串。 * * @return 成功返回true,否则返回false。 */ bool setNative (const std::string&); /** @} */ /** * @name get * @{ */ /** * @brief 获取名字。 * * @return 名字。 */ const std::string getName (void) const; /** * @brief 获取姓。 * * @return 姓。 */ const std::string& getFirstname(void) const; /** * @brief 获取性别。 * * @return 性别。 */ const std::string& getSex (void) const; /** * @brief 获取年龄。 * * @return 年龄。 */ int getAge (void) const; /** * @brief 获取民族。 * * @return 民族。 */ const std::string& getRace (void) const; /** * @brief 获取生日。 * * @return 生日。 */ const std::string& getBirthday (void) const; /** * @brief 获取地区。 * * @return 地区。 */ const std::string& getNative (void) const; /** @} */ /** * @name get by ??? * @{ */ /** @} */ /** * @name Just for debug * @{ */ virtual void dump(void); /** @} */ private : /** * @brief 存放姓。 */ std::string firstName_; /** * @brief 存入名。 */ std::string lastName_; /** * @brief 存放性别。 */ std::string sex_; /** * @brief 存放年龄。 */ int age_; /** * @brief 存放民族。 */ std::string race_; /** * @brief 存放生日的字符串形式。 */ std::string birthday_; /** * @brief 存放国籍,地区。 */ std::string native_; }; #endif // __EPPERSON_H__
90a84848eedddd2701760ab3513479e3ac4321fb
dcb1f00dd38014e0e1d37bed60fa412e29f71140
/wrapper/Core/JobProcessor.h
727ec9120f42578024c06d93cc2cdfb4907b66f5
[]
no_license
hualaw/ServerWebkit
1ed5ac2845ec18ab9d7a7a08cdf610575938ad00
be4c9a47b7c4edaf40a195b058c75903016a45bb
refs/heads/master
2020-03-28T14:29:52.963519
2018-09-12T14:27:08
2018-09-12T14:27:08
148,492,820
0
0
null
null
null
null
UTF-8
C++
false
false
595
h
JobProcessor.h
#ifndef _SERVER_WEBKIT_WRAPPER_JOBPROCESSOR_H_ #define _SERVER_WEBKIT_WRAPPER_JOBPROCESSOR_H_ #include <QTimer> #include "SWGlobal.h" #include "ProtocolAnalyzer.h" class JobProcessor: public QObject { Q_OBJECT public: JobProcessor(QObject *parent = 0); ~JobProcessor(); void clearParams(); public slots: void start(int pid); void stopLoadPage(); void stopTimer(); private: void startTimer(QObject *obj); int winNum; WebkitWrapper *webkit; ProtocolAnalyzer *pa; SWClientSocket *socket; QTimer *timer; }; #endif //_SERVER_WEBKIT_WRAPPER_JOBPROCESSOR_H_
874b2055d83cb2bbd86d3393c494485b94bf155e
553e05ae32b4a2ad15c2b4dcca419773bc86e069
/10_02_jumpFloor/JumpFloor.cpp
f913e45f4ff874f40b0c296c7307305603daa231
[]
no_license
MaggieLee01/Coding
52d825647aa3190bac28d7e9528a74e169ea25f6
6369b38fc01c0f7f8920c0d3f6188f5a91211caa
refs/heads/master
2020-11-28T02:55:15.248215
2020-08-29T00:47:24
2020-08-29T00:47:24
229,686,797
0
0
null
null
null
null
GB18030
C++
false
false
1,139
cpp
JumpFloor.cpp
//剑指offer扩展题目,基于斐波那契数列题目 //已通过牛客网测试系统 #include<iostream> #include<vector> //一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法。 int JumpFloor(int number) { if (number <= 0) return 0; std::vector<int> dict(2, 0); dict[0] = 1; dict[1] = 2; if (number < 3) return dict[number - 1]; int sum = 0; for (int i = 3; i <= number; i++) { sum = dict[0] + dict[1]; dict[0] = dict[1]; dict[1] = sum; } return sum; } //一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。 int JumpFloor01(int number) { if (number <= 0) return 0; std::vector<int> dict(number + 1, 0); dict[0] = 1; dict[1] = 1; for (int i = 2; i <= number; i++) { for (int j = 0; j < i; j++) { dict[i] += dict[j]; } } return dict[number]; } int main(void) { int m = JumpFloor01(0); std::cout << m << std::endl; m = JumpFloor01(1); std::cout << m << std::endl; m = JumpFloor01(2); std::cout << m << std::endl; }
66847179c45ea1063396a1c3ec47d6342fdf0200
b0d31ca03064c51c4c3cb1050061bcc77d5241be
/SML/SMLRunner.h
eaec9667ed5af1aebf7eada597b08326a416e96a
[]
no_license
GEslinger/LinuxClass
443b993555b20a118727afc49b00a0139f34e0d6
51e7e1daf30c330b62c4f03163c781cbb597e8c3
refs/heads/master
2021-01-18T17:37:41.432564
2017-12-13T15:40:52
2017-12-13T15:40:52
100,492,159
0
0
null
null
null
null
UTF-8
C++
false
false
465
h
SMLRunner.h
#include <string> #define inspect(x) std::cerr << #x << " is " << x << " in file " << __FILE__ << " at line " << __LINE__ << std::endl using namespace std; class SMLRunner{ public: SMLRunner(); bool loadFile(string fname); bool exec(); void reset(); private: bool isWord(int w) const; int getCommand(int w) const; int getAddr(int w) const; void handleInput(int address); void overflow(int address); void memDump(); int ACC; int CMD; int MEM[100]; };
9dbfdd12fd10a3ac99c5aa03417e8449d40bd79f
a56774dfacf9b73c8fba294eca5eaab3ce942f90
/src/gpu/ocl/xe_hp_1st_bwd_convolution.cpp
f6e7ae58625b7750f449383cb8d72b10486c0e38
[ "Intel", "BSD-3-Clause", "BSL-1.0", "Apache-2.0", "MIT", "BSD-2-Clause" ]
permissive
sakulish/oneDNN
7dbf2b712aac93295d476d41d3b4f07c91e9110f
049a42b0152e0acca2169f0a45e948ef2d76a01d
refs/heads/master
2023-08-29T04:50:23.756401
2021-11-15T16:30:33
2021-11-15T19:00:50
255,316,755
0
0
Apache-2.0
2020-04-13T12:15:24
2020-04-13T12:15:23
null
UTF-8
C++
false
false
14,710
cpp
xe_hp_1st_bwd_convolution.cpp
/******************************************************************************* * Copyright 2021 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *******************************************************************************/ #include "gpu/ocl/xe_hp_1st_bwd_convolution.hpp" #include "common/c_types_map.hpp" #include "common/dnnl_thread.hpp" #include "common/dnnl_traits.hpp" #include "common/math_utils.hpp" #include "common/reorder.hpp" #include "common/type_helpers.hpp" #include "gpu/ocl/ocl_memory_storage.hpp" using namespace dnnl::impl::memory_tracking::names; namespace dnnl { namespace impl { namespace gpu { namespace ocl { using namespace dnnl::impl::data_type; using namespace dnnl::impl::format_tag; status_t xe_hp_1st_convolution_bwd_weights_t::pd_t::init_conf( engine_t *engine) { using namespace dnnl::impl::format_tag; using namespace data_type; const convolution_desc_t &cd = *desc(); const memory_desc_wrapper src_mdw(src_md()); const memory_desc_wrapper weights_mdw(diff_weights_md()); const memory_desc_wrapper dst_mdw(diff_dst_md()); const memory_desc_wrapper bias_mdw(diff_weights_md(1)); set_default_conf(conf, cd, *src_md(), *diff_weights_md(), *diff_dst_md(), *diff_weights_md(1), *attr()); const bool is_nhwc = src_mdw.matches_one_of_tag(nwc, nhwc, ndhwc) != format_tag::undef || dst_mdw.matches_one_of_tag(nwc, nhwc, ndhwc) != format_tag::undef; const bool is_1stconv = conf.ic_without_padding == 3; const bool is_depthwise = conf.with_groups && (conf.ic_without_padding == 1) && (conf.oc_without_padding == 1); conf.is_nhwc = is_nhwc; conf.is_depthwise = is_depthwise; if (is_1stconv) { conf.ic = conf.ic_without_padding; conf.oc = utils::rnd_up(conf.oc_without_padding, 16); } conf.ngroups_without_padding = conf.ngroups; const bool is_16oc = conf.oc % 16 == 0; conf.mb_block = 1; conf.oc_block = 1; conf.ic_block = 1; conf.od_block = 1; conf.oh_block = 1; conf.ow_block = 1; conf.osp_chunk = 1; conf.mb_chunk = 1; if (is_1stconv && is_16oc && !conf.is_nhwc) conf.ver = ver_1stconv; if (conf.mb % 16 != 0 || conf.oc % 32 != 0 || conf.dilate_w > 0 || conf.kw > 8 || conf.stride_w > 2) return status::unimplemented; switch (conf.ver) { case ver_1stconv: conf.mb_block = 1; conf.oc_block = 16; conf.ic_block = 1; conf.ow_block = 8; break; } bwd_w_compute_block_sizes(conf, engine); auto *compute_engine = utils::downcast<compute::compute_engine_t *>(engine); const bool is_xe_hp_plus = compute_engine->is_xe_hp() || compute_engine->is_xe_hpg(); const bool has_non_uniform_wg = compute_engine->mayiuse_non_uniform_work_groups(); conf.sub_group_size = 8; conf.lws_d[0] = is_xe_hp_plus ? 32 : 16; conf.lws_d[1] = 1; conf.lws_d[2] = 1; conf.kwb = utils::rnd_up(conf.kw, 8); conf.gws_d[0] = conf.ocb * conf.ngroups; conf.gws_d[1] = utils::div_up(conf.kh * conf.kwb * conf.kd * conf.ic, 32); conf.gws_d[2] = conf.nchunk * utils::div_up(conf.ic, conf.icb) * utils::div_up(conf.oc, conf.ocb); maybe_fix_non_uniform_work_sizes(has_non_uniform_wg, conf); format_tag_t src_tag, dst_tag, wei_tag; switch (conf.ver) { case ver_1stconv: assert(!conf.is_depthwise); src_tag = utils::pick(conf.ndims - 3, ncw, nchw, ncdhw); dst_tag = utils::pick(conf.ndims - 3, nCw16c, nChw16c, nCdhw16c); wei_tag = conf.with_groups ? utils::pick(conf.ndims - 3, gOwi16o, gOhwi16o, gOdhwi16o) : utils::pick(conf.ndims - 3, Owi16o, Ohwi16o, Odhwi16o); break; default: return status::unimplemented; } if (src_mdw.format_kind() == format_kind::any) { conf.src_tag = src_tag; } else { conf.src_tag = src_mdw.matches_one_of_tag(src_tag); } if (conf.src_tag != src_tag) return status::unimplemented; if (weights_mdw.format_kind() == format_kind::any) { conf.wei_tag = wei_tag; } else { conf.wei_tag = weights_mdw.matches_one_of_tag(wei_tag); } if (conf.wei_tag != wei_tag) return status::unimplemented; if (dst_mdw.format_kind() == format_kind::any) { conf.dst_tag = dst_tag; } else { conf.dst_tag = dst_mdw.matches_one_of_tag(dst_tag); } if (conf.dst_tag != dst_tag) return status::unimplemented; conf.is_src_nchw = utils::one_of(src_tag, ncw, nchw, ncdhw); conf.is_src_nhwc = utils::one_of(src_tag, nwc, nhwc, ndhwc); bool ok = set_default_formats_common( conf.src_tag, conf.wei_tag, conf.dst_tag); if (!ok) return status::unimplemented; if (is_1stconv && !is_nhwc) { if (data_type::bf16 == conf.weights_data_type) { conf.reorder_wei = true; auto temp_wei_md = *diff_weights_md(); temp_wei_md.data_type = data_type::f32; primitive_attr_t r_attr(default_attr()); if (!r_attr.is_initialized()) return status::out_of_memory; r_attr.set_scratchpad_mode(scratchpad_mode::user); auto st = reorder_primitive_desc_create( rpd_wei_, engine, &temp_wei_md, diff_weights_md(), &r_attr); if (st != status::success) return status::unimplemented; } if (conf.with_bias && data_type::bf16 == conf.bias_data_type) { conf.reorder_bias = true; auto temp_bias_md = *diff_weights_md(1); temp_bias_md.data_type = data_type::f32; primitive_attr_t r_attr(default_attr()); if (!r_attr.is_initialized()) return status::out_of_memory; r_attr.set_scratchpad_mode(scratchpad_mode::user); auto st = reorder_primitive_desc_create(rpd_bia_, engine, &temp_bias_md, diff_weights_md(1), &r_attr); if (st != status::success) return status::unimplemented; } } return status::success; } status_t xe_hp_1st_convolution_bwd_weights_t::pd_t::init_kernel_ctx( compute::kernel_ctx_t &kernel_ctx) const { kernel_ctx.define_int("IS_DW", conf.is_depthwise); kernel_ctx.define_int("BWD_WEIGHTS", 1); kernel_ctx.define_int("G", conf.ngroups); kernel_ctx.define_int("MB", conf.mb); kernel_ctx.define_int("IC", conf.ic); kernel_ctx.define_int("ICB", conf.icb); kernel_ctx.define_int("ID", conf.id); kernel_ctx.define_int("IH", conf.ih); kernel_ctx.define_int("IW", conf.iw); kernel_ctx.define_int("OC", conf.oc); kernel_ctx.define_int("OCB", conf.ocb); kernel_ctx.define_int("OD", conf.od); kernel_ctx.define_int("OH", conf.oh); kernel_ctx.define_int("OW", conf.ow); kernel_ctx.define_int("KD", conf.kd); kernel_ctx.define_int("KH", conf.kh); kernel_ctx.define_int("KW", conf.kw); kernel_ctx.define_int("KWB", conf.kwb); kernel_ctx.define_int("SD", conf.stride_d); kernel_ctx.define_int("SH", conf.stride_h); kernel_ctx.define_int("SW", conf.stride_w); kernel_ctx.define_int("PD", conf.f_pad); kernel_ctx.define_int("PH", conf.t_pad); kernel_ctx.define_int("PW", conf.l_pad); kernel_ctx.define_int("PD_R", conf.back_pad); kernel_ctx.define_int("PH_R", conf.b_pad); kernel_ctx.define_int("PW_R", conf.r_pad); kernel_ctx.define_int("DD", conf.dilate_d); kernel_ctx.define_int("DH", conf.dilate_h); kernel_ctx.define_int("DW", conf.dilate_w); kernel_ctx.define_int("OC_PADDED", conf.oc); kernel_ctx.define_int("OC_WO_PADDING", conf.oc_without_padding); kernel_ctx.define_int("G_WO_PADDING", conf.ngroups_without_padding); kernel_ctx.define_int("OW_BLOCK", conf.ow_block); kernel_ctx.define_int("ODB", conf.odb); kernel_ctx.define_int("OHB", conf.ohb); kernel_ctx.define_int("OWB", conf.owb); kernel_ctx.define_int("WITH_BIAS", conf.with_bias); kernel_ctx.define_int("SUB_GROUP_SIZE", conf.sub_group_size); kernel_ctx.define_int("MB_BLOCK", conf.mb_block); kernel_ctx.define_int("OC_BLOCK", conf.oc_block); kernel_ctx.define_int("IC_BLOCK", conf.ic_block); kernel_ctx.define_int("NCHUNK", conf.nchunk); kernel_ctx.define_int("OSP_CHUNK", conf.osp_chunk); kernel_ctx.define_int("MB_CHUNK", conf.mb_chunk); kernel_ctx.define_int( "MB_CHUNK_SIZE", utils::div_up(conf.mb, conf.mb_chunk)); kernel_ctx.define_int("OW_BLOCK", conf.ow_block); kernel_ctx.define_int("GWS_0", conf.gws_d[0]); kernel_ctx.define_int("GWS_1", conf.gws_d[1]); kernel_ctx.define_int("GWS_2", conf.gws_d[2]); kernel_ctx.define_int("GWS_ORIG_0", conf.gws_orig_d[0]); kernel_ctx.define_int("GWS_ORIG_1", conf.gws_orig_d[1]); kernel_ctx.define_int("GWS_ORIG_2", conf.gws_orig_d[2]); kernel_ctx.define_int("LWS_0", conf.lws_d[0]); kernel_ctx.define_int("LWS_1", conf.lws_d[1]); kernel_ctx.define_int("LWS_2", conf.lws_d[2]); kernel_ctx.add_option("-cl-std=CL2.0"); kernel_ctx.set_data_type(data_type::f32); def_data_type(kernel_ctx, src_md()->data_type, "SRC"); def_data_type(kernel_ctx, diff_dst_md()->data_type, "DST"); def_data_type(kernel_ctx, diff_weights_md(conf.with_bias ? 1 : 0)->data_type, "BIA"); def_data_type(kernel_ctx, data_type::f32, "WEI"); switch (conf.ver) { case ver_1stconv: kernel_ctx.define_int("VER_8OW16C", 1); break; default: break; } return status::success; } status_t xe_hp_1st_convolution_bwd_weights_t::pd_t::init_scratchpad() { auto scratchpad = scratchpad_registry().registrar(); if (!conf.reorder_wei && !conf.reorder_bias) return status::success; if (conf.reorder_wei) { auto temp_wei_md = *diff_weights_md(); temp_wei_md.data_type = data_type::f32; memory_desc_wrapper wei_md_d(temp_wei_md); scratchpad.book(memory_tracking::names::key_conv_bwd_w_1st_wei_reorder, wei_md_d.size(), 1, OCL_BUFFER_ALIGNMENT); scratchpad.book(memory_tracking::names::key_nested_multiple, rpd_wei_->scratchpad_registry()); } if (!conf.reorder_bias) return status::success; auto temp_bias_md = *diff_weights_md(1); temp_bias_md.data_type = data_type::f32; memory_desc_wrapper bia_md_d(temp_bias_md); scratchpad.book(memory_tracking::names::key_conv_bwd_w_1st_bia_reorder, bia_md_d.size(), 1, OCL_BUFFER_ALIGNMENT); scratchpad.book(memory_tracking::names::key_nested_multiple + 1, rpd_bia_->scratchpad_registry()); return status::success; } status_t xe_hp_1st_convolution_bwd_weights_t::execute_backward_weights( const exec_ctx_t &ctx) const { auto *compute_stream = utils::downcast<compute::compute_stream_t *>(ctx.stream()); auto &src = CTX_IN_STORAGE(DNNL_ARG_SRC); auto &diff_dst = CTX_IN_STORAGE(DNNL_ARG_DIFF_DST); auto &diff_weights = CTX_OUT_STORAGE(DNNL_ARG_DIFF_WEIGHTS); auto &diff_bias = CTX_OUT_STORAGE(DNNL_ARG_DIFF_BIAS); const auto &conf = pd()->conf; const uint8_t zero = 0; std::unique_ptr<memory_t> wspace_wei; std::unique_ptr<memory_t> wspace_bia; auto temp_wei_md = *pd()->diff_weights_md(); auto temp_bia_md = *pd()->diff_weights_md(1); std::unique_ptr<memory_storage_t> wspace_ptr_wei; std::unique_ptr<memory_storage_t> wspace_ptr_bia; if (conf.reorder_wei) { wspace_ptr_wei = ctx.get_scratchpad_grantor().get_memory_storage( memory_tracking::names::key_conv_bwd_w_1st_wei_reorder); temp_wei_md.data_type = data_type::f32; } if (conf.reorder_bias) { wspace_ptr_bia = ctx.get_scratchpad_grantor().get_memory_storage( memory_tracking::names::key_conv_bwd_w_1st_bia_reorder); temp_bia_md.data_type = data_type::f32; } memory_desc_wrapper wei_mdw(temp_wei_md); CHECK(compute_stream->fill( conf.reorder_wei ? *wspace_ptr_wei : diff_weights, zero, wei_mdw.size())); if (conf.with_bias) { memory_desc_wrapper bia_mdw(temp_bia_md); CHECK(compute_stream->fill( conf.reorder_bias ? *wspace_ptr_bia : diff_bias, zero, bia_mdw.size())); } compute::kernel_arg_list_t arg_list; arg_list.set(0, src); arg_list.set(1, conf.reorder_wei ? *wspace_ptr_wei : diff_weights); arg_list.set(2, conf.reorder_bias ? *wspace_ptr_bia : diff_bias); arg_list.set(3, diff_dst); status_t status = parallel_for(ctx, compute::nd_range_t(conf.gws_d, conf.lws_d), kernel_, arg_list); if (status != status::success) return status; auto exec_reorder = [&](memory_t *in, memory_t *out, const std::shared_ptr<primitive_t> &prim, int r_num) -> status_t { exec_args_t r_args; r_args[DNNL_ARG_FROM] = memory_arg_t {in, true}; r_args[DNNL_ARG_TO] = memory_arg_t {out, false}; exec_ctx_t r_ctx(ctx, std::move(r_args)); nested_scratchpad_t ns( ctx, memory_tracking::names::key_nested_multiple + r_num, prim); r_ctx.set_scratchpad_grantor(ns.grantor()); return prim->execute(r_ctx); }; if (conf.reorder_wei) { CHECK(safe_ptr_assign(wspace_wei, new memory_t(ctx.stream()->engine(), &temp_wei_md, std::move(wspace_ptr_wei)))); CHECK(exec_reorder(wspace_wei.get(), ctx.output(DNNL_ARG_DIFF_WEIGHTS), wei_reorder_, 0)); } if (conf.reorder_bias) { CHECK(safe_ptr_assign(wspace_bia, new memory_t(ctx.stream()->engine(), &temp_bia_md, std::move(wspace_ptr_bia)))); CHECK(exec_reorder(wspace_bia.get(), ctx.output(DNNL_ARG_DIFF_BIAS), bia_reorder_, 1)); } return status::success; } } // namespace ocl } // namespace gpu } // namespace impl } // namespace dnnl // vim: et ts=4 sw=4 cindent cino+=l0,\:4,N-s
52d39b19ee9fb9ed02764ef8b810321453d512e6
7bb0495ae6c0a9bee1b3903c4a92cadff8fbef96
/start_siritori.cpp
0981665d1a9bac4289b76481e85f0d487705934a
[ "MIT" ]
permissive
TakuKitamura/siritori
829f4681751836b1cca5848abb429d87bace0da0
c5463b71723590572d92496129176edf8720b4bb
refs/heads/master
2021-04-06T09:30:33.834501
2018-03-11T11:42:13
2018-03-11T11:42:13
124,750,573
0
0
null
null
null
null
UTF-8
C++
false
false
5,796
cpp
start_siritori.cpp
#include "siritori_machine.h" #include <iostream> #include <cstdlib> #include <string> #include <random> #include <vector> #include <iomanip> using namespace std; //コマンドライン引数により、通常プレイか学習するかの処理を分岐させる int main(int argc, char *argv[]){ Siritori ins; string arg1; //コマンドライン引数が2つある時 if(argc == 2){ //第二コマンドライン引数を保存 arg1 = argv[1]; } //Player VS CPU の処理 if(arg1 != "-learn"){ //経過ターン数(自分、相手、自分で3ターン)を保存 int turn = 0; //進行中のしりとりの状態を表す //judge_number == 1 : 通常どうり //judge_number == -1 : 入力値不正、すでに出た単語を入力した //judge_number == 0 : 「ん」がついてしりとり終了 int judge_number = 0; string choice_num; //入力文字列 string player_word; //入力文字列 string cpu_word; double q_value = 0; turn = 0; ins.init_evaluation_value(); ins.init_each_words_lines(); cout << "\nPLAYER VS CPU\n" << endl; do{ cout << "先行(1)、後行(2)どちらにしますか。 :"; cin >> setw(1) >> choice_num; cout << "\n"; }while(atoi(choice_num.c_str()) != 1 && atoi(choice_num.c_str()) != 2); //「ん」がついてしりとり終了するまでループ while(1){ if(turn == 0 && atoi(choice_num.c_str()) == 1){ cout << ":"; cin >> setw(60) >> player_word; judge_number = ins.siritori_for_you(player_word,turn); if(judge_number == 1){ ins.add_to_said_words(player_word); turn++; } else if(judge_number == -1){ continue; } else{ break; } } if(turn % 2 == 0 && turn != 0){ cout << ":"; cin >> setw(60) >> player_word; judge_number = ins.siritori_for_you(player_word,turn); if(judge_number == 1){ ins.add_to_said_words(player_word); turn++; } else if(judge_number == -1){ continue; } else{ break; } } else{ while(1){ if(ins.greedy_algorithm()){ cpu_word = ins.choiece_max_evaluation_word(turn); judge_number = ins.siritori_for_cpu(cpu_word,turn); if(judge_number == 1){ ins.update_evaluation_values(turn,q_value); // cout << cpu_word << " です" << endl; ins.add_to_said_words(cpu_word); turn++; break; } else{ q_value = 0; turn = 0; ins.init_each_words_lines(); ins.erase_said_words(); ins.erase_temp_each_word_index(); } } else{ cpu_word = ins.choiece_random_word(turn); judge_number = ins.siritori_for_cpu(cpu_word,turn); if(judge_number == 1){ ins.update_evaluation_values(turn,q_value); // cout << cpu_word <<" です" << endl; ins.add_to_said_words(cpu_word); turn++; break; } else{ q_value = 0; turn = 0; ins.init_each_words_lines(); ins.erase_said_words(); ins.erase_temp_each_word_index(); } } } ins.show_said_words(turn,arg1); // cout << turn << endl; cout << "\n"; } } } //CPU VS CPU の処理 else{ cout << "\nCPU VS CPU\n" << endl; int turn = 0; double q_value = 0; int judge_number = 0; //入力文字列 string cpu_word; string choice_num; turn = 0; q_value = 0; ins.init_evaluation_value(); ins.init_each_words_lines(); int roop_count = 0; string roop_num; string word_limit; do{ cout << "しりとりをする単語数はいくつにしますか。 :"; cin >> setw(4) >> word_limit; cout << "しりとりの往復数はいくつにしますか。 :"; cin >> setw(4) >> roop_num; cout << "\n"; }while(atoi(word_limit.c_str()) < 1 || atoi(roop_num.c_str()) < 1); while(roop_count < atoi(roop_num.c_str())){ turn = 0; q_value = 0; ins.init_each_words_lines(); ins.erase_said_words(); ins.erase_temp_each_word_index(); while(turn < atoi(word_limit.c_str())){ //Q値が最大の単語を選ぶ if(ins.greedy_algorithm()){ cpu_word = ins.choiece_max_evaluation_word(turn); judge_number = ins.siritori_for_cpu(cpu_word,turn); if(judge_number == 1){ ins.update_evaluation_values(turn,q_value); ins.add_to_said_words(cpu_word); turn++; } else{ q_value = 0; turn = 0; ins.init_each_words_lines(); ins.erase_said_words(); ins.erase_temp_each_word_index(); } } else{ cpu_word = ins.choiece_random_word(turn); judge_number = ins.siritori_for_cpu(cpu_word,turn); if(judge_number == 1){ ins.update_evaluation_values(turn,q_value); ins.add_to_said_words(cpu_word); turn++; } else{ q_value = 0; turn = 0; ins.init_each_words_lines(); ins.erase_said_words(); ins.erase_temp_each_word_index(); } } } ins.show_said_words(turn,arg1); cout << "\n"; roop_count++; } } }
5cbe3256bd0165cd840108a97233f5afffc96482
b65acdd4e28bac5b0b0cc088bded08cc80437ad8
/MVSProg/Task48/Project1/Project1/Main.cpp
d3f18b35d4596955f449d6e913deb7e7fe68e431
[]
no_license
YulianStrus/Examples-of-academic-homeworks
44794bb234626319810f444a3115557b4e59d54f
f2fb2b5e02f069ff8f0cbc1a95c472ad2becad4c
refs/heads/master
2023-05-27T16:09:41.220326
2021-06-02T10:04:07
2021-06-02T10:04:07
313,245,187
0
0
null
null
null
null
UTF-8
C++
false
false
1,378
cpp
Main.cpp
#include "iostream" #include <ctime> using namespace std; class Array { int *Arr; int size; public: Array() { size = 5, Arr = new int[size]; } Array(int s) { size = s, Arr = new int[size]; } Array(const Array & other) { this->size = other.size, this->Arr = new int[size]; for (int i=0; i<size; i++) { this->Arr[i] = other.Arr[i]; } } ~Array() { delete[]Arr; } void Init() { for (int i = 0; i < size; i++) { int a; cout << "Enter " << i + 1 << " number: "; cin >> a; Arr[i] = a; } cout << endl; } void Max() { int max = Arr[0]; for (int i = 1; i < size; i++) if (Arr[i] > max) max = Arr[i]; cout << "max: " << max << endl; } void Min() { int min = Arr[0]; for (int i = 1; i < size; i++) if (Arr[i] < min) min = Arr[i]; cout << "max: " << min << endl; } void Sort() { int tmp; bool chg = true; while (chg) { chg = false; for (int i = 0; i < size - 1; i++) if (Arr[i + 1] < Arr[i]) { tmp = Arr[i]; Arr[i] = Arr[i + 1]; Arr[i + 1] = tmp; chg = true; } } } void Show() { for (int i = 0; i < size; i++) cout << Arr[i] << " "; cout << endl; } }; int main() { srand(time(0)); int size; cout << "Enter size: "; cin >> size; Array Arr(size); Arr.Init(); Arr.Show(); Arr.Max(); Arr.Min(); Arr.Sort(); Arr.Show(); system("pause"); return 0; }
af512d41609d05e2ac6f263a0b4575c67dc74c0b
e370e5b2263a13d60766d2422c2d29614a645fd3
/lib/cocos2d-x/scripting/lua/cocos2dx_support/platform/android/CCLuaJavaBridge.h
afc2bb95d85d22ae31e66a5843c933d076880b16
[ "MIT" ]
permissive
zrong/quick-cocos2d-x
77dcb7655fd98a0e3ec9a78c69247921889556a5
dab1f61b6cf8b35e9bf65041d351f16c68262416
refs/heads/zrong
2020-12-11T05:25:45.329451
2014-09-16T09:21:26
2014-09-16T09:21:26
14,011,821
57
78
null
2014-04-24T06:47:48
2013-10-31T08:53:36
C
UTF-8
C++
false
false
4,372
h
CCLuaJavaBridge.h
#ifndef __LUA_JAVA_BRIDGE_H_ #define __LUA_JAVA_BRIDGE_H_ #include <jni.h> #include <string> #include <vector> #include <map> #include "cocos2d.h" #include "platform/android/jni/JniHelper.h" using namespace std; extern "C" { #include "lua.h" } using namespace cocos2d; #define LUAJ_ERR_OK 0 #define LUAJ_ERR_TYPE_NOT_SUPPORT (-1) #define LUAJ_ERR_INVALID_SIGNATURES (-2) #define LUAJ_ERR_METHOD_NOT_FOUND (-3) #define LUAJ_ERR_EXCEPTION_OCCURRED (-4) #define LUAJ_ERR_VM_THREAD_DETACHED (-5) #define LUAJ_ERR_VM_FAILURE (-6) #define LUAJ_REGISTRY_FUNCTION "luaj_function_id" // table[function] = id #define LUAJ_REGISTRY_RETAIN "luaj_function_id_retain" // table[id] = retain count class CCLuaJavaBridge { public: static void luaopen_luaj(lua_State *L); static int retainLuaFunctionById(int functionId); static int releaseLuaFunctionById(int functionId); static int callLuaFunctionById(int functionId, const char *arg); static int callLuaGlobalFunction(const char *functionName, const char *arg); // added by guorui.chen static jobject checkHashMap(lua_State *L); static jobject checkArrayList(lua_State *L); static jobject checkVector(lua_State *L); static string checkObj(lua_State *L); private: typedef enum { TypeInvalid = -1, TypeVoid = 0, TypeInteger = 1, TypeFloat = 2, TypeBoolean = 3, TypeString = 4, TypeVector = 5, TypeFunction= 6, TypeMap = 7, TypeArrayList = 8, } ValueType; typedef vector<ValueType> ValueTypes; typedef union { int intValue; float floatValue; int boolValue; string *stringValue; jobject objectValue; } ReturnValue; class CallInfo { public: CallInfo(const char *className, const char *methodName, const char *methodSig) : m_valid(false) , m_error(LUAJ_ERR_OK) , m_className(className) , m_methodName(methodName) , m_methodSig(methodSig) , m_returnType(TypeVoid) , m_argumentsCount(0) , m_retjs(NULL) , m_env(NULL) , m_classID(NULL) , m_methodID(NULL) { memset(&m_ret, 0, sizeof(m_ret)); m_valid = validateMethodSig() && getMethodInfo(); } ~CallInfo(void); bool isValid(void) { return m_valid; } int getErrorCode(void) { return m_error; } JNIEnv *getEnv(void) { return m_env; } int argumentTypeAtIndex(size_t index) { return m_argumentsType.at(index); } bool execute(void); bool executeWithArgs(jvalue *args); int pushReturnValue(lua_State *L); private: bool m_valid; int m_error; string m_className; string m_methodName; string m_methodSig; int m_argumentsCount; ValueTypes m_argumentsType; ValueType m_returnType; ReturnValue m_ret; jstring m_retjs; JNIEnv *m_env; jclass m_classID; jmethodID m_methodID; bool validateMethodSig(void); bool getMethodInfo(void); ValueType checkType(const string& sig, size_t *pos); }; static int callJavaStaticMethod(lua_State *L); static int retainLuaFunction(lua_State *L, int functionIndex, int *retainCountReturn); static int getMethodInfo(CallInfo *call, const char *className, const char *methodName, const char *paramCode); static int fetchArrayElements(lua_State *L, int index); static int callAndPushReturnValue(lua_State *L, CallInfo *call, jvalue *args); static lua_State *s_luaState; static int s_newFunctionId; class PSJNIHelper{ public: static void createHashMap(); static jobject getHashMap(); static void pushHashMapElement(string key, string value); static void createVector(); static jobject getVector(); static void pushVectorElement(string value); static void createArrayList(); static jobject getArrayList(); static void pushArrayListElement(string value); }; }; #endif /* __LUA_JAVA_BRIDGE_H_ */
8c0c9d63e529d4dae9db75ca0eed6090a1b8c1b7
ce674a1838dda07477faf351e9bf45f3cecf1728
/Oscillator.cpp
faf10ab785adabf4bf7882a3256f0139770d06c3
[]
no_license
egorrrkkkaaa/vkrSynth
49c4688ac02343a4e94a0eb132841f085f5a62e5
809527b724e78858260d16c7997b13a277c44147
refs/heads/main
2023-03-17T17:24:32.075834
2021-03-11T21:39:46
2021-03-11T21:39:46
346,043,663
0
0
null
null
null
null
UTF-8
C++
false
false
2,857
cpp
Oscillator.cpp
#include "Oscillator.h" double Oscillator::mSampleRate = 44100.0; void Oscillator::SetType(Type mode) { mType = mode; } void Oscillator::setFrequency(double frequency) { mFrequency = frequency; updateIncrement(); } void Oscillator::setSampleRate(double sampleRate) { mSampleRate = sampleRate; updateIncrement(); } void Oscillator::synthesize(double* out, int nFrames) { const double twoPI = 2 * pi; switch (mType) { case Sine: for (int i = 0; i < nFrames; i++) { out[i] = sin(Phase); Phase += PhaseRaise; } case Saw: for (int i = 0; i < nFrames; i++) { out[i] = 1 - (2 * Phase / twoPI); Phase += PhaseRaise; while (Phase >= twoPI) { Phase -= twoPI; } } break; case Square: for (int i = 0; i < nFrames; i++) { if (Phase <= pi) { out[i] = 1; } else { out[i] = -1; } Phase += PhaseRaise; while (Phase >= twoPI) { Phase -= twoPI; } } break; case Triangle: for (int i = 0; i < nFrames; i++) { out[i] = 2 * (fabs(-1 + (2 * Phase / twoPI)) - 0.5); Phase += PhaseRaise; while (Phase >= twoPI) { Phase -= twoPI; } } break; } } double Oscillator::nextSample() { double value = naiveWaveformFormType(mType); Phase += PhaseRaise; while (Phase >= twoPI) { Phase -= twoPI; } return value; } void Oscillator::setPitchMod(double amount) { PitchMod = amount; updateIncrement(); } void Oscillator::updateIncrement() { double pitchModAsFrequency = pow(2.0, fabs(PitchMod) * 14.0) - 1; if (PitchMod < 0) { pitchModAsFrequency = -pitchModAsFrequency; } double calculatedFrequency = fmin(fmax(mFrequency + pitchModAsFrequency, 0), mSampleRate/2.0); PhaseRaise = calculatedFrequency * 2 * pi / mSampleRate; } double Oscillator::naiveWaveformFormType(Type mode) { double value; switch (mode) { case Sine: value = sin(Phase); break; case Saw: value = (2.0 * Phase / twoPI) - 1.0; break; case Square: if (Phase < pi) { value = 1.0; } else { value = -1.0; } break; case Triangle: value = -1.0 + (2.0 * Phase / twoPI); value = 2.0 * (fabs(value) - 0.5); break; default: break; } return value; }
be4e29584fe669b3d0431127d71f66b3f538f376
c8958958e5802f3e04ce88bd4064eacb98ce2f97
/键值映射.cpp
5a90dd12800a94fe61f89eade85185d616a21be2
[]
no_license
Kiids/OJ_Practice
08e5ea99066421bfaf5b71e59eea24e282e39a24
e7d36ddb1664635d27db3c37bec952970b77dcb0
refs/heads/master
2023-09-01T11:38:28.834187
2023-06-30T17:12:18
2023-06-30T17:12:18
217,068,695
0
0
null
null
null
null
GB18030
C++
false
false
3,000
cpp
键值映射.cpp
/* 设计一个 map ,满足以下几点: 字符串表示键,整数表示值 返回具有前缀等于给定字符串的键的值的总和 实现一个 MapSum 类: MapSum() 初始化 MapSum 对象 void insert(String key, int val) 插入 key-val 键值对,字符串表示键 key ,整数表示值 val 。如果键 key 已经存在,那么原来的键值对?key-value?将被替代成新的键值对。 int sum(string prefix) 返回所有以该前缀 prefix 开头的键 key 的值的总和。 示例 1: 输入: ["MapSum", "insert", "sum", "insert", "sum"] [[], ["apple", 3], ["ap"], ["app", 2], ["ap"]] 输出: [null, null, 3, null, 5] 解释: MapSum mapSum = new MapSum(); mapSum.insert("apple", 3); mapSum.sum("ap"); // 返回 3 (apple = 3) mapSum.insert("app", 2); mapSum.sum("ap"); // 返回 5 (apple + app = 3 + 2 = 5) 提示: 1 <= key.length, prefix.length <= 50 key 和 prefix 仅由小写英文字母组成 1 <= val <= 1000 最多调用 50 次 insert 和 sum */ class MapSum { map<string, int> m; public: MapSum() { m.clear(); } void insert(string key, int val) { m[key] = val; } int sum(string prefix) { auto r = m.insert({prefix, 0}); auto b = r.first; // b为第一个匹配的key对应的迭代器 if (r.second) // 若以前没有(成功插入)则b后移 { b++; m.erase(prefix); } (*(prefix.end() - 1)) ++; r = m.insert({prefix, 0}); auto e = r.first; // e为最后一个匹配的key对应的迭代器加一 if (r.second) // 若以前没有(成功插入)则e后移 { e++; m.erase(prefix); } int ret = 0; while (b != e) // 累加b到e-1 { ret += b->second; b++; } return ret; } }; /** * Your MapSum object will be instantiated and called as such: * MapSum* obj = new MapSum(); * obj->insert(key,val); * int param_2 = obj->sum(prefix); */ //存储和插入,直接插入map,空间复杂度空间复杂度O(M),insert时间复杂度O(logM),M为要存储的键值对个数。 //求sum,因为map有序,需要累加的key在map中连续,只需要确定符合条件的key在map中的起始位置和结束位置,之后累加。 //起始位置,插入一个prefix键值,如果插入失败,表示map原本就有prefix,map::insert函数返回的迭代器即为起始位置, //如果插入成功,表示map原本不存在prefix,map::insert函数返回的迭代器加上1即为起始位置。 //结束位置,需要先将prefix字符串的最后一个字符加一(例如原本为"abc", 加一后变为"abd"),再插入map中, //位置在最后一个符合条件的key后面,减1就确定最后一个符合条件key的位置。 //sum函数的时间复杂度为O(logM + C), M为要存储的键值对个数,C为匹配到的key值个数。
95c7d55cfdad771327b3629302588f52b82eaa9e
a5abdeeeaaea0e1337a2b5d78f53949c6797ca9a
/CS260/Labs/lab03/lab03.cpp
1c962901e799f88d2d384ee6eb2684b107b9d664
[]
no_license
mollynova/Undergraduate_Work
0afc43a724c74cb565bc09156484155f003e59dd
7e2d1a07f42d445919d1aa0f8dcbcc73c24b03ad
refs/heads/master
2021-01-11T20:48:20.680098
2017-03-25T03:43:38
2017-03-25T03:43:38
79,188,109
0
0
null
null
null
null
UTF-8
C++
false
false
1,030
cpp
lab03.cpp
#include <iostream> #include <iomanip> using namespace std; int main() { // Declare variables int cinStartBalance = 0; int cinInterestRate = 0; int cinNoYears = 0; double endBalance = 0; double StartBalance = 0; double InterestRate = 0; // Get data cout << "Enter starting balance: "; cin >> cinStartBalance; cout << endl << "Enter interest rate: "; cin >> cinInterestRate; cout << endl << "Enter number of years: "; cin >> cinNoYears; cout << endl; // convert? StartBalance = static_cast<double>(cinStartBalance); InterestRate = static_cast<double>(cinInterestRate); // Do computations and output info for(int i = 0; i < cinNoYears; i++){ if (i == 0){ endBalance = (StartBalance) * (1+(InterestRate/100)); cout << "Year " << (i+1) << " $"; cout << setprecision(16) << endBalance << endl; } else { endBalance = endBalance * (1+(InterestRate/100)); cout << "Year " << (i+1) << " $"; cout << setprecision(16) << endBalance << endl; } } //for (int j = 0; j < cinNoYears; j++){ //} return (0); }
d79e75dfb71750597ad534ff5411153ca3a9fe5c
39ca78ecf06ed2e12c0923b580f4fdfa90138b76
/lab1/LAB1/MyRadixSort.cpp
2ec30b7c632ea73e0a83d6dc87d0f1f1d79e35eb
[]
no_license
timxag/DA
258f05c96e8846eaaef1d066bcf6ca899804aa51
6f2507c5133940fae5ea89d1c1f8ac986f97f43b
refs/heads/master
2020-04-27T12:38:42.428187
2019-03-19T15:17:52
2019-03-19T15:17:52
174,338,857
1
0
null
null
null
null
UTF-8
C++
false
false
1,169
cpp
MyRadixSort.cpp
#include "MyRadixSort.h" void MyRadixSort(TItem ** input, const unsigned int * size) { TItem* output = (TItem *) malloc(*size * sizeof(TItem)); int digit[DIGIT_SIZE]; for (int i = 0; i < DIGIT_SIZE; i++) { digit[i] = 0; } int idx = 0; int countMoveToLeft = 3; unsigned int buffer = 0; for (int j = KEY_LEN_IN_BYTES; j > 0; j--){ for (int i = 0; i < *size; i++) { buffer = (*(*input+i)).key << (countMoveToLeft * BYTE); (*(*input+i)).curDigit = buffer >> (COUNT_MOVE_TO_RIGHT * BYTE); idx = (*(*input+i)).curDigit; digit[idx] = digit[idx] + 1; } for (int i = 1; i < DIGIT_SIZE; i++) { digit[i] = digit[i] + digit[i - 1]; } for (int i = *size - 1; i >= 0; i--) { idx = (*(*input+i)).curDigit; digit[idx] = digit[idx] - 1; output[digit[idx]] = (*(*input+i)); } for (int i = 0; i < DIGIT_SIZE; i++) { digit[i] = 0; } TItem* b; b = *input; *input = output; output = b; countMoveToLeft--; } free(output); }
d716b30bd4284d155f9901bc2734e958bccf40cd
a78ce6dbca90fc5521d6f645c0df5284f7e8047c
/76901697/answer.cpp
4ee6856a29ab84ccef7b81679c74d51af6172214
[]
no_license
eddelbuettel/stackoverflow
9bf5cdc097510cb7239290dcb58255f3aa762b9f
de57106c911095509013e47dba8a9893fdaa3f46
refs/heads/master
2023-08-18T05:11:41.956688
2023-08-14T19:42:50
2023-08-14T19:42:50
157,002,433
6
1
null
null
null
null
UTF-8
C++
false
false
180
cpp
answer.cpp
#include <Rcpp/Rcpp> // [[Rcpp::export]] Rcpp::NumericVector myrep(Rcpp::NumericVector x, int n) { return Rcpp::rep(x, n); } /*** R x <- c(1, 2, 3, 4) n <- 3 myrep(x, n) */
069672690c3a27f00d9ba6cf07af4eaa1c58ed1e
7aaa95672f5ebf8bee8bf71d3308563e5a8e46e6
/webapp/WEB-INF/views/Include/CourseDateTime/Time/Time__KUKA17_RD.inc
621ff40a90954e50716cb5b421e0759b97380d52
[]
no_license
huxx-j/BitHomepage
cd7ef799f756d3f181efa10326704b8434a59011
cab6903a5e4fb0790a8c48648b533875f8904b6b
refs/heads/master
2020-03-26T18:26:18.183384
2018-09-12T08:07:58
2018-09-12T08:07:58
144,576,573
0
0
null
null
null
null
UHC
C++
false
false
81
inc
Time__KUKA17_RD.inc
08:50 ~ 18:00 (그룹스터디 포함 22:00까지)<br/> - 총 960시간(6개월)
cda681013e310fd8d6a14298630d98a9d2041886
16c21c25152876dcf88f6951d738e5c2e8a85072
/Classes/Data/UserDataManager.h
71ee431fe1f87b5a6e98f1b015cd479d6960dd59
[]
no_license
lovekill/cocoslean
429ecf318054971d55cef06f16972891e2270ba4
3fd2eebd48872d274680f35877c9c6c9c58b8e85
refs/heads/master
2020-05-16T23:31:48.844559
2015-01-19T11:42:21
2015-01-19T11:42:21
28,776,146
0
0
null
null
null
null
UTF-8
C++
false
false
2,103
h
UserDataManager.h
#ifndef __UserDataManager__ #define __UserDataManager__ #include "../GameInclude.h" #define Target_Count 10 class UserDataManager { private: static UserDataManager* instance; static int target[10]; int originalMaxScore; int originalStage; int playingScore; int playingStage; int playingTarget; int playingPreScore; int playingBouns; int theOnePopStarScore; int payHelpCount; int giftHelpCount; int awardStarHelpTarget; bool isContinue; bool canContinue; bool isMute; string starArrayInfo; void savePlayingScore(); void savePlayingStage(); void saveTarget(); void savePlayingArray(); void saveHelpCount(); public: UserDataManager(); static UserDataManager* getInstance(); void setDefaultValue(); int getMaxScore(); int getStarPerScore(int starOrderIndex); int getScoreInOnePopStar(int popStarCount); int setPlayingStage(); int setPlayingTarget(); int getPlayingStage(); int getPlayingTarget(); int addPlayingScore(int score); int setPlayingBouns(int orderIndex); void setPlayingBouns(); int getPlayingBouns(); //void setPayHelpCount(int helpCount); void setGiftHelpCount(int helpCount); /*int getPayHelpCount();*/ int getGiftHelpCount(); int getHelpCount(); bool canPlayAgainByHelp(); int subtractOnceHelp(); int setPlayingScoreToPrevStageScore(); bool getContinue(); void setContinue(bool isContinue); void setCanContinue(bool canContinue); bool getCanContinue(); void setStarArrayInfo(string str); string getStarArrayInfo(); void saveData(); void initData(); void saveContinue(); void saveMute(); void setMute(bool isMute); bool getMute(); int getCreditsWallInPerTarget(); int getSpendCreditsWallInPerTarget(); void setDefaultAwardStarHelpTarget(); bool awardStarHelpCount(); int getAwardStarHelpTarget(); void saveMaxScore(); int getLocalCoin(); void setLocalCoin(int coinCount); void addCoin(int addCoinCount); void mulCoin(int mulCoinCount); ccColor4B getBgColor() ; }; #endif
3c1fa375fdcc259ca3983ad8a1625851350d1851
333a006838b7142a5f16f3cc480186a52fb22123
/1218_Getline_Three-Calçados/main.cpp
292e905ce2a30380b78e752924b5f6a783dc947e
[]
no_license
AlvimPedro/Algoritimo_Estrutura_de_Dados
d02a2f315a2e4899f7a3c8b8e23bcb90289774ef
50d861c0fa9e03b96c38f3898b67c3753c1c9f3e
refs/heads/master
2023-01-04T11:21:48.794003
2020-11-04T17:25:04
2020-11-04T17:25:04
310,070,681
0
0
null
null
null
null
UTF-8
C++
false
false
1,580
cpp
main.cpp
#include <iostream> #include <string> #include <stdio.h> using namespace std; class sapatos{ public: string n; int contn; int contm; int contf; sapatos(){ n = " "; contn = 0; contm = 0; contf = 0; } void setn(string nn){ n = nn; contn = 0; contm = 0; contf = 0; } void contador(string sapatos){ string delimitador = " "; size_t pos = 0; string parte, parteant = ""; while((pos = sapatos.find(delimitador)) != std::string::npos){ parte = sapatos.substr(0, pos); if(parte == n){ contn++; } if(parteant == n){ if(parte == "M"){ contm++; } if(parte == "F"){ contf++; } } parteant = parte; sapatos.erase(0, pos + delimitador.length()); } if(parte == n){ if(sapatos == "M"){ contm++; } if(sapatos == "F"){ contf++; } } } int getContn(){ return contn; } int getContm(){ return contm; } int getContf(){ return contf; } }; int main(){ string sapato; string n, busca; int cont = 1; sapatos sap; while(getline(cin, n)){ sap.setn(n); getline(cin, sapato); sap.contador(sapato); if(cont != 1){ cout << endl; } cout <<"Caso "<< cont << ":"<< endl << "Pares Iguais: "<<sap.getContn()<< endl << "F: "<< sap.getContf() << endl << "M: "<< sap.getContm() << endl; cont++; } return 0; }
9f12ee300a8d49f08e578132e5a74b5895e71ddd
4218cc8ea49bd0244c78db7282b792d54488d0f2
/PJJ 2011/pesta_bebek.cpp
22281a4e1cec41516715afd67f8e7de4decf9763
[]
no_license
irff/cp-codes
436678ce0d1939e6103c983eb1907078df391808
5c0c3a7710fff48751b4307f3ad0f135d25ea180
refs/heads/master
2020-03-29T14:36:34.904213
2014-10-19T18:27:02
2014-10-19T18:27:02
25,435,733
1
0
null
null
null
null
UTF-8
C++
false
false
664
cpp
pesta_bebek.cpp
#include <cstdio> #include <algorithm> #include <string> #include <cstring> #include <iostream> #include <algorithm> using namespace std; #define R(i,_a,_b) for(int i=int(_a);i<int(_b);i++) int n; string s[1200]; int main() { scanf("%d", &n); getline(cin,s[1001]); R(i,0,n) { getline(cin,s[i]); int len =s[i].length(); R(j,0,len) if(s[i][j]>='A' and s[i][j]<='Z') s[i][j]=s[i][j]-'A'+'a'; string tmp = s[i]; sort(s,s+i+1); R(j,0,i+1) { if(tmp == s[j]) { printf("%d\n", j+1); break; } } } return 0; }
5108aa7fcfdd3c548a0c731f58a0d9e99feaa104
fc808fd9736ceb27c1371c01c353f53950b21367
/include/pipet/extra/cxstring.h
7b805cd1190f44f8b4569b36efc82f582c06f946
[ "Apache-2.0" ]
permissive
kenavolic/pipet
da9c88c13ed8828ef3fc602ee8a06168b25d8cb1
8b323b8410e5126c96fb5b1cb38376d0e78a650a
refs/heads/master
2020-04-25T18:36:01.802910
2019-06-04T10:59:18
2019-06-04T10:59:18
172,989,463
78
3
Apache-2.0
2019-06-04T10:59:19
2019-02-27T21:00:24
C++
UTF-8
C++
false
false
1,469
h
cxstring.h
// Copyright 2018 Ken Avolic <kenavolic@none.com> // // 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. #pragma once #include <cstdint> #include <string> #include <utility> namespace pipet::extra { template <std::size_t N> class cxstring { using data_type = char const (&)[N]; char const m_data[N]; public: constexpr cxstring(data_type s) : cxstring(s, std::make_index_sequence<N>{}) {} constexpr auto size() const { return N; } constexpr auto operator[](std::size_t idx) const { return m_data[idx]; } operator std::string() const { return std::string{m_data, N - 1}; } private: template <typename S, std::size_t... Is> constexpr cxstring(S s, std::index_sequence<Is...>) : m_data{s[Is]...} {} }; // factory method for compiler version without deduction guide template <std::size_t N> constexpr auto make_cxstring(char const (&s)[N]) { return cxstring<N>(s); } } // namespace pipet::extra
10910533a8c37ddb327ad05b26233c04dd2bf524
e75cc18f64db23b9c1d304c39fb74ed083d9feee
/assignment-8/Set.h
cce1fd3de18452ef2880eebbb1d366c3ea58f558
[]
no_license
ChrisProgramming2018/cpp-course
0b790e29ca239639dac70fa163d8af186ba7f7c7
398c0da3e49e67440ab663bb61d45eaf2dd56d2a
refs/heads/master
2020-04-06T12:20:27.792277
2018-12-22T14:42:30
2018-12-22T14:42:30
157,451,729
0
0
null
null
null
null
UTF-8
C++
false
false
932
h
Set.h
// Copyright 2018 // Computer Science // Author: Christian Leininger christianleininger@gmx.de #ifndef ASSIGNMENT_8_SET_H_ #define ASSIGNMENT_8_SET_H_ #include <gtest/gtest.h> template<class T> class Set { private: int _size; T* _elements; FRIEND_TEST(SetTest, constructorT); FRIEND_TEST(SetTest, insertT); FRIEND_TEST(SetTest, eraseT); FRIEND_TEST(SetTest, findT); public: // Constructor Set(); // Deconstructor ~Set(); // Add the given Element n to the Set void insert(T n); // Remove given Element from Set void remove(T n); // returns True if element is found bool find(T n); // int getSize(); }; // A template<> class Set<char> { public: // variable to save size int _size; // constructor for char char* _elements; // Set(); // ~Set(); // insert char void insert(char n); void erase(char n); bool find(char n); }; #endif // ASSIGNMENT_8_SET_H_
eefbd7667c67d7e2f3e4e0913c0571fed8fbd0e1
014c74aac6e6e6e7e86a39eecc299c6a3f89d702
/includes/ara/com/e2e/checker_interface.h
66495b740670136d972cd3c82efe55b410368515
[]
no_license
xuanwolanxue/ucm_client
927e0ee25816b2f6b64a5755a5baca0a91bf5b5d
130f87bff609ad78bbd4224a5781f9999ce36c01
refs/heads/master
2023-03-15T21:10:05.574505
2020-02-17T12:17:38
2020-02-17T12:17:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,301
h
checker_interface.h
// -------------------------------------------------------------------------- // | _ _ _______ .----. _____ _____ | // | /\ | | | |__ __| . ____ . / ____| /\ | __ \ | // | / \ | | | | | | . / __ \ . | (___ / \ | |__) | | // | / /\ \| | | | | | . / / / / v \___ \ / /\ \ | _ / | // | / /__\ \ |__| | | | . / /_/ / . ____) / /__\ \| | \ \ | // | /________\____/ |_| ^ \____/ . |_____/________\_| \_\ | // | . _ _ . | // -------------------------------------------------------------------------- // // All Rights Reserved. // Any use of this source code is subject to a license agreement with the // AUTOSAR development cooperation. // More information is available at www.autosar.org. // // Disclaimer // // This work (specification and/or software implementation) and the material // contained in it, as released by AUTOSAR, is for the purpose of information // only. AUTOSAR and the companies that have contributed to it shall not be // liable for any use of the work. // // The material contained in this work is protected by copyright and other // types of intellectual property rights. The commercial exploitation of the // material contained in this work requires a license to such intellectual // property rights. // // This work may be utilized or reproduced without any modification, in any // form or by any means, for informational purposes only. For any other // purpose, no part of the work may be utilized or reproduced, in any form // or by any means, without permission in writing from the publisher. // // The work has been developed for automotive applications only. It has // neither been developed, nor tested for non-automotive applications. // // The word AUTOSAR and the AUTOSAR logo are registered trademarks. // -------------------------------------------------------------------------- #ifndef ARA_COM_E2E_CHECKER_INTERFACE_H #define ARA_COM_E2E_CHECKER_INTERFACE_H #include <apd/crc/buffer.h> #include <ara/com/e2e/profile_interface.h> #include <ara/com/e2e/state_machine.h> namespace ara { namespace com { namespace profile { /// @brief Profile-independent status of the reception on one single Data in one cycle. /// @note This enumeration left for compatibility with classic platform /// /// @uptrace{SWS_E2E_00347} /// @uptrace{SWS_CM_90421} enum class ProfileCheckStatus : uint8_t { // clang-format off Ok, ///< OK: The checks of the Data in this cycle were successful NoNewData, ///< Error: The Check function has been invoked but no new Data is not available since the last call, according to communication medium Error, ///< Error: error not related to counters occurred (e.g. wrong CRC, wrong length, wrong options, wrong Data ID) Repeated, ///< Error: the checks of the Data in this cycle were successful, with the exception of the repetition OkSomeLost, ///< OK: the checks of the Data in this cycle were successful (including counter check, which was incremented within the allowed configured delta) WrongSequence ///< Error: the checks of the Data in this cycle were successful, with the exception of counter jump, which changed more than the allowed delta // clang-format on }; /// @brief Converts ProfileCheckStatus type to CheckStatus type of StateMachine /// /// @param status profile check status /// /// @return StateMachine CheckStatus type inline ara::com::E2E_state_machine::E2ECheckStatus MapProfileCheckStatusToCheckStatus(ProfileCheckStatus status) { switch (status) { case ProfileCheckStatus::Ok: return com::E2E_state_machine::E2ECheckStatus::Ok; case ProfileCheckStatus::OkSomeLost: return com::E2E_state_machine::E2ECheckStatus::Ok; case ProfileCheckStatus::Error: return com::E2E_state_machine::E2ECheckStatus::Error; case ProfileCheckStatus::Repeated: return com::E2E_state_machine::E2ECheckStatus::Repeated; case ProfileCheckStatus::WrongSequence: return com::E2E_state_machine::E2ECheckStatus::WrongSequence; case ProfileCheckStatus::NoNewData: return com::E2E_state_machine::E2ECheckStatus::NoNewData; }; // FIXME functions that use this were declared noexcept return com::E2E_state_machine::E2ECheckStatus::Error; } namespace profile_interface { /// @brief Interface of E2E checker. /// /// E2E performs check routine on given data. class CheckerInterface : public ProfileInterface { public: /// @brief Default destructor ~CheckerInterface() noexcept override = default; /// @brief Check routine performs validation of E2E header that is supplied within other data in buffer parameter /// /// @param buffer buffer with payload and E2E header /// @param genericProfileCheckStatus Result of check routine virtual void Check(const apd::crc::Buffer& buffer, com::E2E_state_machine::E2ECheckStatus& genericProfileCheckStatus) noexcept = 0; virtual void Reset() noexcept = 0; }; } // namespace profile_interface } // namespace profile } // namespace com } // namespace ara #endif // ARA_COM_E2E_CHECKER_INTERFACE_H
8296414d5665bcd4a31e79ff3b4b333e19df0329
3106e5274aca54c9c9884a2a10589ea8e5040b8d
/DirectX11 sebbansEngine VS2019/Mouse/Mouse.cpp
f3abc9c9aff6a833d6d56d421f4ed6fec8d67b65
[]
no_license
relinkz/DirectX11-sebbansEngine-VS2019
0ada5376da6da78be09019c63f9525e8685d1268
0e43392cc2fb2af0ff2af7ca5018561b3d7233fa
refs/heads/master
2023-08-23T17:07:35.874862
2021-10-17T15:27:39
2021-10-17T15:27:39
408,106,274
0
0
null
null
null
null
UTF-8
C++
false
false
1,955
cpp
Mouse.cpp
#include "Mouse.h" void Mouse::OnLeftPressed(const MousePoint& mousePos) { m_leftIsDown = true; m_eventBuffer.push({ MouseEvent::EventType::LPress, mousePos }); } void Mouse::OnLeftReleased(const MousePoint& mousePos) { m_leftIsDown = false; m_eventBuffer.push({ MouseEvent::EventType::LRelease, mousePos }); } void Mouse::OnRightPressed(const MousePoint& mousePos) { m_rightIsDown = true; m_eventBuffer.push({ MouseEvent::EventType::RPress, mousePos }); } void Mouse::OnRightReleased(const MousePoint& mousePos) { m_rightIsDown = false; m_eventBuffer.push({ MouseEvent::EventType::RRelease, mousePos }); } void Mouse::OnMidPressed(const MousePoint& mousePos) { m_midbuttonDown = true; m_eventBuffer.push({ MouseEvent::EventType::MPress, mousePos }); } void Mouse::OnMidReleased(const MousePoint& mousePos) { m_midbuttonDown = false; m_eventBuffer.push({ MouseEvent::EventType::MRelease, mousePos }); } void Mouse::OnWheelUp(const MousePoint& mousePos) { m_eventBuffer.push({ MouseEvent::EventType::WheelUp, mousePos }); } void Mouse::OnWheelDown(const MousePoint& mousePos) { m_eventBuffer.push({ MouseEvent::EventType::WheelDown, mousePos }); } void Mouse::OnMouseMove(const MousePoint& mousePos) { m_pos = mousePos; m_eventBuffer.push({ MouseEvent::EventType::Move, mousePos }); } void Mouse::OnMouseMoveRaw(const MousePoint& mousePos) { m_eventBuffer.push({ MouseEvent::EventType::RAW_MOVE, mousePos }); } bool Mouse::IsLeftDown() const { return m_leftIsDown; } bool Mouse::IsMidDown() const { return m_midbuttonDown; } bool Mouse::IsRightDown() const { return m_rightIsDown; } const MousePoint Mouse::GetPos() const { return this->m_pos; } bool Mouse::EventBufferIsEmpty() const { return m_eventBuffer.empty(); } const MouseEvent Mouse::ReadEvent() { if (m_eventBuffer.empty()) { return MouseEvent(); } MouseEvent mouseEvent = m_eventBuffer.front(); m_eventBuffer.pop(); return std::move(mouseEvent); }
e4fc901b0a4807986cb2ee90d3eb0028ce746233
87e1bea1a6d4325d922d47bd73302005e26ca01d
/graph/coloring.cpp
9576ba60976a642c9d6d2f7134957d039accdabb
[]
no_license
nazfisa/Problem-Solving
2daaedbc71aadd01dc535eb36d456bff32a7953d
d890ef25d8cb36930dcad116c9d3de7abb9c907e
refs/heads/master
2021-06-12T18:08:23.647474
2020-04-09T13:56:07
2020-04-09T13:56:07
254,376,048
0
0
null
null
null
null
UTF-8
C++
false
false
1,492
cpp
coloring.cpp
#include<bits/stdc++.h> using namespace std; vector<int>adj[10000]; int visited[10000]; int Colored[10000]; void bfs(int s,int n) { int flag=0; for(int i=0; i<n; i++) { visited[i]=0; Colored[i]=0; } queue<int>q; q.push(s); visited[s]=1; Colored[s]=1; while(!q.empty()) { int u=q.front(); for(int i=0; i<adj[u].size(); i++) { int v=adj[u][i]; if(visited[v]==0) { visited[v]=1; q.push(v); } if(Colored[v]==0) { if(Colored[u]==1) { Colored[v]=2; } else if(Colored[u]==2) { Colored[v]=1; } } else if(Colored[v]!=0) { if(Colored[v]==Colored[u]) { flag=1; break; } } } q.pop(); } if(flag==1) { cout<<"NOT BICOLORABLE."<<endl; } else { cout<<"BICOLORABLE."<<endl; } } int main() { int node,edge,x,y; while(1) { cin>>node; if(node==0) break; cin>>edge; for(int i=0;i<node;i++)adj[i].clear(); for(int j=1; j<=edge; j++) { cin>>x>>y; adj[x].push_back(y); adj[y].push_back(x); } bfs(0,node); } }
df755b7e579a12d65a622c13e2437526e3ac62ff
47a4b9901faf9742273b02ba14444d8d555b65a4
/CodeChef/WSITES012.cpp
74016ad81025711e56529cc0f08b82fb8ac18404
[]
no_license
Aulene/Competitive-Programming-Solutions
a028b7b96e024d8547e2ff66801e5377d7fb76cd
81d2705263313755399f2e3b6e01e029d40f61a6
refs/heads/master
2021-06-27T20:03:53.657351
2019-04-25T19:48:29
2019-04-25T19:48:29
101,798,734
3
0
null
null
null
null
UTF-8
C++
false
false
2,714
cpp
WSITES012.cpp
#include<iostream> #include<fstream> #include<cstdio> #include<cstring> #include<cmath> #include<climits> #include<algorithm> #include<vector> #include<map> #include<queue> #include<stack> #include<set> #include<list> using namespace std; struct TrieNode { struct TrieNode *children[26]; bool isLeaf; }; struct TrieNode *getNode(void) { struct TrieNode *pNode = (struct TrieNode *)malloc(sizeof(struct TrieNode)); pNode->isLeaf = false; for(int i=0;i<26;i++) pNode->children[i] = NULL; return pNode; } void insert(struct TrieNode *root, string key) { int length = key.length(); struct TrieNode *pCrawl = root; for (int level = 0; level < length; level++) { int index = (int)key[level] - (int)'a'; if (!pCrawl->children[index]) pCrawl->children[index] = getNode(); pCrawl = pCrawl->children[index]; } pCrawl->isLeaf = true; } int search(struct TrieNode *root, string key) { int level; int length = key.length(); int index; struct TrieNode *pCrawl = root; for (level = 0; level < length; level++) { index = (int)key[level] - (int)'a'; if (!pCrawl->children[index]) return level; pCrawl = pCrawl->children[index]; } return level; } int answ(struct TrieNode *rt, string s) { int l = s.size(), i, childN; struct TrieNode *parentTravel = rt; for(i=0; i<l; i++) { childN = s[i] - 'a'; if(!parentTravel -> children[childN]) return childN; parentTravel = parentTravel -> children[childN]; } return l; } int main() { struct TrieNode *rootAllowed = getNode(); int n; cin>>n; vector<string> allowed; vector<string> blocked; for(int i=0;i<n;i++) { char ch; cin>>ch; string s; cin>>s; if(ch=='-') { blocked.push_back(s); } else { allowed.push_back(s); insert(rootAllowed, s); } } vector<string> ans; map<string,int> m; for(int i=0;i<blocked.size();i++) { int len = answ(rootAllowed, blocked[i]); if(len == blocked[i].length()) { cout<<-1; return 0; } else { len++; if(m.find(blocked[i].substr(0,len))==m.end()) { m[blocked[i].substr(0,len)]=1; ans.push_back(blocked[i].substr(0,len)); } } } sort(ans.begin(), ans.end()); cout<<ans.size()<<"\n";; for(int i=0;i<ans.size();i++) cout<<ans[i]<<"\n"; return 0; }
bb016b2697f2becbe06d3d293dabf40b00810875
bc0fc80e9abc95935f9c51f57716e900ee9975b1
/app/src/main/cpp/com_wind_ndk_opengles_n_PngDecoder.cpp
e4395a01a8940a37451add3018c47a56fdbdfe47
[]
no_license
yqyzxd/ndk-opengles
8d73cb0d59c5f6db53db18895359e6b9e51f69e0
3458a59f4fdb785727d94e092c5a0bdf4b3caf3c
refs/heads/master
2023-04-08T02:11:11.356144
2023-03-29T09:21:20
2023-03-29T09:21:20
235,065,639
4
2
null
null
null
null
UTF-8
C++
false
false
2,589
cpp
com_wind_ndk_opengles_n_PngDecoder.cpp
#include <jni.h> #include <android/asset_manager_jni.h> #include <string.h> #include "libpng/png_decoder.h" #include "pngdecoder/file_png_decoder.h" #include "pngdecoder/asset_png_decoder.h" #include "common/jniutil.h" #include "global.h" #include "GLLooper.h" // // Created by wind on 2023/3/28. // extern "C" JNIEXPORT jobject JNICALL Java_com_wind_ndk_opengles_n_PngDecoder_native_1decode_1from_1file(JNIEnv *env, jobject thiz, jstring jfilename) { char* cFileName= const_cast<char *>(env->GetStringUTFChars(jfilename, 0)); PngDecoder* decoder=new FilePngDecoder(cFileName); env->ReleaseStringUTFChars(jfilename,cFileName); png_bytep bytes =decoder->decode(); int w=decoder->getWidth(); int h=decoder->getHeight(); size_t len = strlen(reinterpret_cast<const char *>(bytes)); jbyteArray byteArray=charToJByteArray(env,bytes,len); jclass rawClass=env->FindClass("com/wind/ndk/opengles/n/PngDecoder"); jmethodID metId=env->GetStaticMethodID(rawClass,"buildRawFromNative", "([BII)Lcom/wind/ndk/opengles/n/PngDecoder$Raw;"); jobject rawObj=env->CallStaticObjectMethod(rawClass,metId,byteArray,w,h); return rawObj; } extern "C" JNIEXPORT jobject JNICALL Java_com_wind_ndk_opengles_n_PngDecoder_native_1decode_1from_1asset(JNIEnv *env, jobject thiz, jstring jfilename, jobject jmgr) { AAssetManager* mgr=AAssetManager_fromJava(env,jmgr); char* cFileName= const_cast<char *>(env->GetStringUTFChars(jfilename, 0)); PngDecoder* decoder=new AssetPngDecoder(mgr,cFileName); env->ReleaseStringUTFChars(jfilename,cFileName); png_bytep bytes=decoder->decode(); int w=decoder->getWidth(); int h=decoder->getHeight(); glLooper->postMessage(kMsgUpdateTexImage,w,h, bytes); ALOGE("native_1decode_1from_1asset %d",bytes); /* if (Pixles!=NULL){ int len=w*h; jbyteArray byteArray=charToJByteArray(env,Pixles,len); //反射创建java层raw对象 jclass rawClass=env->FindClass("com/wind/ndk/opengles/n/PngDecoder"); jmethodID metId=env->GetStaticMethodID(rawClass,"buildRawFromNative", "([BII)Lcom/wind/ndk/opengles/n/PngDecoder$Raw;"); jobject rawObj=env->CallStaticObjectMethod(rawClass,metId,byteArray,w,h); return rawObj; }*/ return nullptr; }
ba8a292af6fd805952db922ec1fcb5fe30b49a11
8606dc001bc49ef5476f4bbf31806587b225e894
/src/states/HouseChoiceInfoMenu.cpp
e8ebaada26f7615474e6a8e2dfca22f20d8df3b9
[]
no_license
libeastwood/doonlunacy
df0d4c660cdbfba2ecb7380200bb9a6ba867924e
9bd2db8ff30dabbdbfea0a15041a1ee3a929511b
refs/heads/master
2021-01-10T08:09:12.438084
2015-10-22T08:12:56
2015-10-22T08:12:56
43,048,291
0
0
null
null
null
null
UTF-8
C++
false
false
2,050
cpp
HouseChoiceInfoMenu.cpp
#include "states/HouseChoiceInfoMenu.h" #include "DataCache.h" #include "GameData.h" #include "Gfx.h" #include "gui2/Frame.h" #include "gui2/Label.h" #include "gui2/Button.h" #include <eastwood/StringFile.h> #include <string> #include <boost/bind.hpp> HouseChoiceInfoMenuState::HouseChoiceInfoMenuState(HOUSETYPE newHouse) : MentatMenuState(HOUSE_SARDAUKAR) { delete m_song; m_song = NULL; if (newHouse == HOUSE_ATREIDES) m_planetAnimation = DataCache::Instance()->getAnimationLabel("Anim_AtreidesPlanet"); else if (newHouse == HOUSE_ORDOS) m_planetAnimation = DataCache::Instance()->getAnimationLabel("Anim_OrdosPlanet"); else if (newHouse == HOUSE_HARKONNEN) m_planetAnimation = DataCache::Instance()->getAnimationLabel("Anim_HarkonnenPlanet"); m_planetAnimation->setPosition(UPoint(128, 48).getScaled()); m_backgroundFrame->addChild(m_planetAnimation); m_butYes = new GraphicButton(DataCache::Instance()->getGameData("UI_MentatYes")->getImage()->getResized(), DataCache::Instance()->getGameData("UI_MentatYes_Pressed")->getImage()->getResized()); m_butYes->setPosition(UPoint(168, 168).getScaled()); m_backgroundFrame->addChild(m_butYes); m_butNo = new GraphicButton(DataCache::Instance()->getGameData("UI_MentatNo")->getImage()->getResized(), DataCache::Instance()->getGameData("UI_MentatNo_Pressed")->getImage()->getResized()); m_butNo->setPosition(UPoint(240, 168).getScaled()); m_butNo->onClick.connect( boost::bind(&HouseChoiceInfoMenuState::doNo, this) ); m_backgroundFrame->addChild(m_butNo); std::string desc = DataCache::Instance()->getBriefingText(0, eastwood::MISSION_DESCRIPTION, newHouse); int linebreak = desc.find("\n",0) + 1; m_textLabel = new TransparentLabel(desc.substr(linebreak,desc.length()-linebreak), 158, 64); m_textLabel->setPosition(UPoint(0,35)); m_backgroundFrame->addChild(m_textLabel); drawSpecificStuff(); } HouseChoiceInfoMenuState::~HouseChoiceInfoMenuState() { } void HouseChoiceInfoMenuState::doNo() { assert(mp_parent != NULL); PopState(); }
ce576b9b50185b1ba24abc12c08f6b34f951499e
6b28df12d3a45c20a19503e0eeb3649460d587f9
/data/873.cpp
969e0c9dd87ea606ed1b33d7e10318b4d1280f1b
[ "MIT" ]
permissive
TianyiChen/rdcpp-data
9bb1f0319de5a22c601192c3eef33e4024b172fe
75c6868c876511e3ce143fdc3c08ddd74c7aa4ea
refs/heads/master
2021-04-15T09:26:01.359253
2018-03-21T18:57:09
2018-03-21T18:57:09
126,216,374
0
0
null
null
null
null
UTF-8
C++
false
false
21,147
cpp
873.cpp
int TFH,wFQ ,YjYKD ,H3 , qWBl//sDt ,hvAI,Nm , EGJn , FKDVS, CXKB , Ub0oXb ,TR , dV ,PXt , d3ql7,vLaA , VoAeM ,O5Vq , DH5Rg4,tRQLi, //6gcVR hEkML// , ia ,M0 ,Ua, UYeR ,ZMj1 , Qtm ,JCfR ,x/*2EKl*/, fbEp,nK , AFxr ,K, d0h/*TF*/ , RO2, ro4b ,Yjl , SLD /*P0*/,Q5Yz, y7yY ,Ec , ozI ,GZ ,LTE, uS , tK8Oo , C7QW//H , LyHq/*xw*/ , QHl,/*6f*/ U,AO/*pYx*/, bvRpM ,NCH,bNm, D4bL , nU, KCY , OM5 ,rNE, ruJ, //D eDEF , x20 ,In,D60m , Er ,DdI18 , nX ,EWv , XyYAvT ,//g IpAF ,//mdc PLWN , bZJV ,fMZT2p/**/, mu , ICl , B6 ,xgn , //G4f IT , LmW , G3UX, s , OC2, ycOR,m9r, yg//I /*QHv*/,bDa;void f_f0() {{volatile int nwD3 , asuX , M ,t ,Pjg5 ,OKS , Mr, V6VB , ZKJX ;{ volatile int X7H , mle ,canp , m ,jl2X , FC , v,Ir6/*vg*/ , kx1 , bKy ; bDa = bKy+X7H + mle +canp +m; { {} } TFH = /*Ri*/jl2X +FC/*oU*/ +v/*N*/+Ir6 +kx1 ;{{ return ;} for (int i=1 ;i< 1 ;++i) ; } } { volatile int D7 ,zODW , TN; {volatile int ij51,Le//xI ; { return ; { } } wFQ =Le+ ij51;}{ {{ volatile int b , UUz ; YjYKD=UUz + b ; {}} {} } } for (int i=1 ; i< 2 ;++i)for (int i=1;i< 3 ;++i /*9*/) for (int i=1 ;//2tq i< 4 ;++i) //V for (int i=1;i<5;++i) H3 /*OGN*/= TN+D7+ zODW /*L*/ ;//b6gE }qWBl=ZKJX + nwD3 + asuX +M; { int w; volatile int f2r ,lV6ik, itmi , sAJL2 ,mv ,qS ,zI /*XVz4*/ , s7Ay,//q6a ZR ,O, AW/*Ip*/; hvAI =AW + f2r+lV6ik +itmi ; {{}return ;} Nm= sAJL2 + mv + qS+//Uku zI ; w =s7Ay+ ZR +O ; {return ; if( true ) { {} }else for (int i=1 ;i<//Y 6/*XyP*/;++i )// {/*Om*/ } { } }/*M*/ } EGJn = t+Pjg5 + OKS+Mr +V6VB; } if (true ) {int IAx;volatile int/*dy*/ rZX3,vCADU4 /*Hz7*///augy , yF , hS0F ,Vv4ls , jGP , /*jig9K*/Bvl7 ,g7 , DFNQ , vg , vYKIIbl ; {int W ; volatile int jyk ,iXQGM//KF3x , T4 ,y// ,GH ,fw/**/,C ; if (true) return ; else{ int tjk;volatile int ht5//h ,LMEo ,ql; tjk= ql +//UQ0 ht5 + LMEo ; }W//q = C+ jyk+ iXQGM// ; if(true );else FKDVS= T4 + y + GH +fw ;//hEot } ;CXKB = vYKIIbl +rZX3+ vCADU4 + yF + hS0F;IAx = Vv4ls+jGP+Bvl7 +g7+ DFNQ + vg; } else/*XsdF*/{ {//U volatile int EDfh ,PH8 , kf9, Bn;{; { volatile int tNe ,yu ; // Ub0oXb = yu +tNe;return ; } } TR =Bn + EDfh + PH8 +kf9 ;{ {{} { } }{} {; }}for (int i=1 ;i<7;++i ) if (true) return /*1ow*/ ; else {volatile int ic , B9tW ; dV =//0HI5 B9tW +ic ; } } { /*I*/{ ; if( true) return ;else{ ;if (true ) {} else{ /*6vS*/} { } }} { { return ;} ;/**/}} { ; return ; } {for// (int i=1;i< 8/*QaaAi*/;++i ) //VFQf { { { {//3CGU } } }}for (int i=1 ; i<9;++i)return ;}} { {{ if( true){ } else{} { volatile int S9aKX , on ,QnS //9P ;;if (true) PXt =QnS +S9aKX+/*v4j*/ on; else{ //tAX } }} { { {}}} return ; }return ; {{volatile int V ,o9h2Z ;for(int i=1 ; i< 10;++i)d3ql7 = o9h2Z+ V ; { }}{return ; } ;{for(int i=1;i< 11/*YrX*/;++i ) { { { } }} }/*3QMd*/} }{int jfE;//sI volatile int dR0p,cIen,xm,QQ;//Z {volatile int //w Gf ,t0pt, L ; return ; vLaA = L + Gf +t0pt //G5i6 ; {return/*ZUv*/ ; for(int i=1;i< 12 ;++i ) {}for(int i=1 ; i< //LnG 13;++i ) ;{}/*LwL*/}} jfE/*uG*/ =QQ //Yc + dR0p + cIen + xm; { { /*Y*/volatile int fwo, rcQc7 ,cFn; VoAeM= cFn /*xI8*/ + fwo+ rcQc7; {//8Yvd for (int i=1;i< 14;++i) { }} } {if( true)for(int i=1 ; i< 15 ;++i) if(true ) if( true) { {} }else{{}} else ;else for (int i=1 ; i< 16;++i ) return ;}} if ( true ) // ;else return ; { for(int i=1 ;i< 17 ;++i) { {} {}if ( true)for(int i=1; i< 18 ;++i// /*q*/) ; else return ; return ; } for(int i=1; i< 19 ;++i ) { return /*n*/ ;return ; { } }if ( true) {{{} { return ;} }for (int i=1 ;i<20 ;++i//OwO ){} return/*DJV*/ ;/*cRE4*/} else for (int i=1 ; i<21 ;++i ) {{ { } /*TZ*/}{for(int /*GIATj*/i=1 ; i< 22;++i ) { //7B }; } } {{{ volatile int ZP ;; O5Vq= ZP ;}}{ }}{ int G ; volatile int eYMo ,E,ybeFpZm,//a6O BfIOd; DH5Rg4 =BfIOd + /*t*/eYMo ;if (true) ; else if(true ) {} else if (true) G= E +ybeFpZm ;else{ }{} }} }{ /*DaE*/ {{ { { }}} { volatile int x69 ,M6ve ; return ; { ;}for (int i=1; i<23 ;++i) tRQLi =M6ve +x69; } if ( true ) {volatile int Vp,/*6a*/xKADt8,j72; hEkML = j72 + Vp+ xKADt8; ;}else if (true/*3T6W*/) {{ } {{ } { /*KgR*/};} }// else{ for(int i=1 ;i<24 ;++i ) {{ }}/*2A*/ for (int i=1 ; i< 25 ;++i ) {volatile int mLeV2m//ecPG , n7b ; { }ia =n7b +mLeV2m; }{for (int i=1; i< 26;++i ){ } }} { { } } } if(true)/*n*/for(int i=1 ; i<27 ;++i) {for//b (int i=1 ; i< 28 ;++i /*p*/) {return ; {} {{ } { };} {} };} else return ; { return ; {{} for (int i=1 ; i< 29;++i )for (int i=1; i< 30;++i ) { } } return ;}{{ {{} {if ( true ) for (int /*k9*/i=1 ; i<31 ;++i){ for(int i=1 ; /*f2*/i< 32;++i ) //0 return ; }else ;}} { }//nCl } { {} }{/*A*/ { } if ( true){; { } }else { { }} }return ; if(true//Wp4 ) for (int i=1 ;i<33 ;++i )return ;else { { volatile int hx ; M0=hx ;//K /*qyP*/}}}} {{ for (int i=1 ;i< //8D 34 ;++i ) { { { }{ }{}}} return/*Vh*/ ; } { return ; { {{}/*0*/ }} {{}{ { { }} } }{ { {} }{return ;//n6R if( true) { } else ; { } } { ;{ volatile int un//kw , xj ;/*r*/{ volatile int Yc ; Ua = /*EaU*/Yc ;}UYeR =/*7L*/ xj+un ; {} /*yBZ*/} { for (int i=1; i<35 ;++i) { } }} // { /**/int cU4//o ; volatile int dU, s5 , Rvo ,m1C ; for (int i=1/*XFE*/ ;i< 36 ;++i ) { }{ } cU4 =m1C + dU+ s5 +Rvo;} } } { int c27 ;//v volatile int rKAjs, //I Q6, PF ,S3 ,yui , pxD /*51U*/, P1EYH,pq2 ; for (int i=1 ; i<37;++i){if (true ) { }else {//owPR if( true) for(int i=1; i< //q 38 ;++i) { int On; volatile int OQ , QhT ;if (true ){} else On =QhT +OQ ;} else {volatile int g6Dq;ZMj1//OFQ = g6Dq ; } }}{ for (int i=1 ;i<39 ;++i){volatile int// HB3m ; for (int i=1 ; i< 40 ;++i )Qtm= HB3m ;}}c27=pq2//Da +rKAjs + Q6+ PF + S3; JCfR =yui +pxD + P1EYH; }if /*AdS*/( true )/**/ {{ volatile int AB,Zqa ; {} x=Zqa + AB ;{ { }} } { return//0wpG ;};{ ; {} } } else return ;} return ; } void f_f1 ()/**/{ {{ return ; ; /*z*/} for/*Z*/(int i=1 ;i< 41;++i){ if (true ) { return ; { for (int i=1 ;i<42;++i ){ /*4u*/ }{/*dfY*/ /*K*/{return ; } }}}else{ volatile int sA3AC3 ,nP ; if ( true ){ }else if ( true )fbEp = nP+ sA3AC3/*pt*/; else { } { } }return/**/ ;{{ }}/**///i0c } { for (int i=1 ; i< 43;++i ); { volatile int //9 iL7,y85 , y0ZT; if (true )//SN8 if( true) /*Q*/if( true )nK//Ix =y0ZT +iL7+ y85 ;else if ( true ) ;else { return ; } else{ } else{} ;}{ //K for(int i=1; /*X*/i< 44 ;++i ) { } } return ; } {//AW {volatile int qW3u , vnc, ss , mJ6 ; for (int i=1 ;// i< 45;++i ) AFxr =mJ6 +qW3u + vnc //AY + ss ;/*G6i*/} { for//8 (int i=1;i</*aU*/46 ;++i) { volatile int //L1 Go ;if(true ) return ; else K= Go;}return ;}{/*p*/ { { //KrdB7 volatile int perfp ; d0h = perfp; } ;}{volatile int T , FL ; RO2 =FL+T ;} /*q1*//*bj*/} }if( true){int EvN ;volatile int Y, He2n//Z , ATGKY , Fdx; /*hm*/; EvN= Fdx+ Y +He2n/**/+ ATGKY; {;}} else{ for (int i=1; i< 47;++i); ;/*i*/{ return ; for (int i=1 ; i< 48 ;++i) return ; } /*Rc*/for (int i=1;i<49;++i ); } }{ { int Io700XRE ; volatile int ZO0a, RM,su; Io700XRE =/*0y*/ su +ZO0a + RM ;/*4E*/{ { for (int i=1; i< 50 ;++i ) {} } return ; } }{{ int qZV;//By volatile int bTUh , bEc ;qZV = bEc + bTUh; /*LeB*/ }{;{{}}; }return ; {for (int i=1; i<51;++i /*2Y*/)return ;return ; } } {volatile int rj, Hg , G4HEa ; ; ; if( true);else //LG5 ro4b=G4HEa+rj + Hg ; /*DM7B*/}/*hu*/{ /*KsD4*/{volatile int cCB, Z/*G*/,rMX ;Yjl = rMX +cCB +Z ;}{ if (true )return ; else if(true) {volatile int N77X /*4EW*/,W21 ; //ekV SLD =/**/ W21 + N77X ;{}return ;} /**/else { }{//j } }return ;} } {return ; { return/*SnC*/ ; {{ int zeEW ; volatile int P,JmCL,aY ;; zeEW//w =aY+P + JmCL ; } if( true ) /*af*/{}else for(int i=1 ; i<52;++i ){ { return ;} { /*V*/}} } return ; for(int i=1; i<53/*Z*/ ;++i){ { ;//4J4 return ; }}/**/} { volatile int H4N ,jCOm8 , awHK , p ; { for (int i=1; i< 54 ;++i) if ( true)//QtBz { int/*xv80*/ H ; volatile int c2W//nUH48 , pO ;H= // pO+ c2W ;; }else return/*66dP*/ ; {; }} return ;Q5Yz//W0 =p + H4N/*M*/+ jCOm8 + awHK /*oP*/ ;{ { { }/*MNY*/ }return ; { { } }}} return ;} { //p { ; if ( true ) { int euZ ;volatile int ukLgd,u1, zHamTt ; for(int i=1 ;i< 55;++i )return ;;euZ= zHamTt/*os*/+ ukLgd +u1 ;}else {{volatile int Kf8R; for (int i=1; i< 56 ;++i ){} {} y7yY = Kf8R ; { }} { for (int // i=1/*lfc*/;i<57;++i ) for(int i=1; i<58;++i) { }{ } return ; }/**/ }} { {{ {volatile int lt ;Ec = /*h3*/ lt;{ }} { {}{}} { }//Y9V } ; } ;;} for (int i=1 ;i< 59;++i ) { { {// {} ;; }}{ {{ } if /*k035t*/( true) for (int i=1 ;/*9*/i< 60/**/;++i){return ; }//5Ztt3A else {//n4vI } {}} { } } ; } } /*c*/ if ( true) for (int i=1 ; i<61 ;++i ){if (true ) { //VGy volatile int vWa/*ZmZ*/,//7WNXg kjU8xK,/*dhn*/buKF;{{ {//pp }} }//t { if(true )if(true/*9N*/ ) { {} } else for //W2iB (int i=1 ; i<62 ;++i ){; }else ;//yy3 return ;}for //K (int i=1; i< 63 ;++i){{ /**/ volatile int QDo ;ozI = QDo // ;{ /*Js*/ } { {}{ }} } { {//gz }} { } } GZ= buKF + vWa+ kjU8xK ; }else {return ; {return ;{/**/ return ; } } };{{ /*zX*/{ return ;{//Wlj }}} if ( true ) { {for(int i=1;i<64 ;++i )return ; }{ }} else return ;{ volatile int Gg ,c ; LTE = c +Gg//SG ;} } if(true ){ { { } { }for (int i=1; i<65 ;++i){}{ {}{} } }{/*A*/volatile int Txb, K5OJyY ; uS = K5OJyY + Txb ; //q8 { volatile int HhB ; for(int i=1 // ;i<66 ;++i//z2V )for (int i=1; i< 67;++i )tK8Oo =HhB ; }} /*si*/{ { int Xa3K ; volatile int PV /*eE*/ ; ;Xa3K= PV ; }if (true) { } else {{//z1 } if( true ) {} else if( true //cJ )/*CT*/ ; else{ /*u1*/} } } { //1N { }/*XyNlq*/{ return /*0M*/ ;} return ; } } else return ; } else {//2RGP volatile int v1k,//k5 a6DY// , X9h7 ,AJ, Itq;{ volatile int dYZ9,gcN,//SAEYw V1k0//ui ; for(int i=1; i< 68 /*QCx*/;++i ) return ;if (true) C7QW = V1k0 //kKr + dYZ9 /*G*/+ gcN ;/*O*/ else {return ; }for(int i=1 //1PC4 ;/*Dg*/ i< 69;++i ) { ; { { { } } } }}{ { if (true ) {; }else{ {}{ } }return ;}; }for (int i=1;i</*GAtC*/ 70 ;++i ) {return ; { return/*xuB*/ ; //wrOzfjU } } LyHq = Itq +v1k +// /*a*/a6DY+ X9h7 + AJ/*MzMO6*/ ;{volatile int lK//m7gl ,FF5v , NU , PewBL ; QHl =PewBL + lK + FF5v + NU; ;//y return ; } }return ;}void f_f2 ()//f { int yHNTM/*SAQ*//*c*/; volatile int dWW , ty ,b4 ,//R LT ,yoYQ/*t3K*/,X1Sh3 ;yHNTM= X1Sh3 + dWW + ty+b4//xNc /*faQ*/+LT+ /*6j*/yoYQ ;{ volatile int /*pC6U*/ jM03 , eye,eSKis /*tCKrZ*/, aDMw , ReA,wg ;{volatile int BVX ,Ys5e , GaYP //s ;{volatile int STg, ZAj , /*U*/jdn;;U=jdn + STg+ZAj ; {if//Njk ( true) for (int i=1 ; i< 71 ;++i /*RE*/)return ; else { }} }AO = GaYP+BVX+ Ys5e ;} {return ;/*ODx*/{ volatile int //u Vl5b,X , dF2Tg;if (true )bvRpM=dF2Tg /*Kt*/+ Vl5b +X;else { if( // true/*bzd*/)for (int i=1 ;i< 72 ;++i ) {return ;/*V9*/} else { {} { } } }/*Xkmk*/return/*LG9z*/ ;/*XVF*/} } if ( true) { for (int i=1 ; i< 73;++i)//cg2 ;{ {volatile int bdh;{ }NCH =bdh; } return ;}{ volatile int Bie , xaK , zP0;//CMCW for (int i=1 ;i< 74 ;++i)for (int i=1 ; i< 75 ;++i ) for/*TiX*/(int i=1/*7L*/; i<76//62 ;++i// ) {for(int i=1; i< 77/*f*/ ;++i) ;; }if(/*lm*/ true) bNm= /**/zP0+ Bie +xaK ;else return ; }}else D4bL =/*bn*/ wg +jM03 + eye+ eSKis + aDMw+ReA; { volatile int djLV/*U2W*/, EN , cr,BBS ;nU//f //EY = BBS+ djLV+ EN +cr /*2*/; {int UPzd ;volatile int diJDVa ,//T lWD,Sx , g ;UPzd =g//F +diJDVa+lWD+Sx ;} {//7 for(int i=1 ; i<78;++i ) {{for (int i=1 ;i<// 79;++i ) {} }}{ } ;}} } { { int AY ; volatile int xU5, I , vAm , CBg , //i qJ , r , H9, tkO ; { return ;{ return ;} } //4 for(int i=1; i<80;++i //YuFeX ) AY /*Xb*/= tkO+xU5+ I + vAm ; return ; KCY = CBg+ qJ + /*eC*/r +H9;; }for(int i=1 ;i<81;++i ) { if ( true){{ { } }//M return ;}else/*7OQ*/ if (/*znkv*/true ) { {{ } }//Z8 }else { if ( true ){int Ghe; volatile int e/*9a*/;Ghe = e ; { volatile int a69j8;OM5=//Ab a69j8;//g { } } } else ; {} } //MFn //tknl //pZUX { { ;} } }return ; } { { //T ;;}//3HPin {/**/ {{//w } if(true){{}}else{ { {} return ; }}{ { {}} } } if ( true )/*n5Jc*/; else return ;; }/*S23*/{ volatile int YyFWs ,XW , VS , ZTh; ; rNE =ZTh +YyFWs+XW+VS;{ for (int i=1 ;/*x*/ i< 82;++i)for(int i=1 ;//8U9 i<83;++i ) { { {}} } for(int i=1;/*SC12*/i<84;++i)return ;} { if (true ) ; else { {}}{ {{}//VF } for//6 (int i=1 ;i< 85 ;++i //NM )//k7BZ { return ; } {} /*7*/ } //6 } } } if ( true)return ;else {{//Ylcz int //P x0X8;volatile int A49,// zV ,BTD4 ;for(int i=1 ;i< 86 ;++i ) if ( true ) { int Jv/*q6t*/;/*6p*/volatile int sd2H , F8cb , Ci; Jv = Ci+sd2H//5 +F8cb;; //D7b } else/*5NE*/ x0X8 =BTD4+A49 + zV ;{ //Yh { volatile int skK , Ff ; ruJ =Ff +skK ; } for(int i=1 /*w*/ ;i< 87 ;++i ) { { }}}return ;{if ( true )for (int i=1 ;i<88 ;++i ){ if ( true/*Qu*/ )if ( true ) if(true ) if ( true)for (int i=1; i< 89;++i) { if (true/*e9*/) { }else { }} //4qM else { return ;} else //z ; else ;else{ int TlrSK//9t ;volatile int C6N ,// ewT1;{ } { /*TK*/ }TlrSK = ewT1 +C6N; }} else return//n ; ;/**/ }; if( true/*SU*/){ return ; } else for (int /*IR*/i=1 ;i<//iZn 90 ;++i ) {return ; { }/**/}}/*qR*/ ; if(true/*21*/) return ;else{{ volatile int NwMU// , jbW , kG; {//fA8 }eDEF= kG + NwMU +//go jbW ;} /*U*/ { int zw; volatile int RO ,pBQy, jRV;{ ;for (int i=1 ; i<91 ;++i) { volatile int qmc ;{ } x20 = qmc ; }} if( true ) { if ( true ){//wo { }} else{ } {} } else zw =jRV+ RO+pBQy; } } } { for //0 (int i=1; i< 92/*w7xnmv*///yXGY ;++i ){ { { int LM ;volatile int BV; LM =BV ;} } {if ( true ){}else for(int i=1; i< 93;++i)for /*0e*/(int i=1; i<94 ;++i ) {if( true ) return ;else {}// }{ // { } //8 }} }return ;{{ { if ( true) return ;else{ }{ }} { int u2k;volatile int tMf;{ ; } if (true )//F9lW for//9Jae (int i=1 ; i<95;++i){ }else for (int i=1 /*br*/; i<//c 96 ;++i )u2k =tMf; }} {for (int i=1;i< 97;++i ) for (int i=1;i< 98 ;++i) { int j/**/ ; volatile int E2rE, Ypxq , n, RHGc , q; if ( true/*ByC*/) ;else j/*Z*/ /**/= q+ E2rE + Ypxq ; for (int i=1;i<99;++i )return ;if ( true) In =n+//1a RHGc ; else return ; } } {volatile int qoJa , Zd , o ;D60m = o+ qoJa +Zd ; {for(int i=1 ;i< 100 ;++i ) { } {} return ;} } {return ;} } { volatile int dqwI , HrQ,XrRRzM ; Er =XrRRzM +dqwI + HrQ;{ { } } for(int i=1 ;i< 101;++i) for /*21g*/(int i=1; i< 102 ;++i ) ; } } return ; }int main () {{ { {; } return 1067379718; }{ ; {volatile int S7s0z//I7 , WgOn , cvR; if(true) //a8dA {;//wtI } else DdI18= /*LftO*/cvR+S7s0z + WgOn//lKe ;{} }{for (int i=1; i< 103;++i) return 1096162008 ; }{ return 1832607198;} }return/*ao*/ 917538085 ; { {{} { { }{{ }if ( true ){} else { }}} } { { }{ {}{} }if( true ) if (true ) {}else {//clt if (true ) ; else {} } else{ {{ }} } } {volatile int jfZ9 ,A, GJlT;//4q nX = GJlT +jfZ9 + A ; }{ return 2024804362; for(int i=1; i< 104;++i) for(int i=1; i<105;++i) { }} ;return 907318673; {return/*pw*/ 1365005199 ; return 1785865790 ;} } { volatile int/*oAQ*/ euaj ,JEEFH,g9kP ; //yE5 ; { { }} EWv= g9kP + euaj+ JEEFH ; } }{int kB ; volatile int ATr, b3m , P4T, KHg ;kB=KHg +ATr +b3m + P4T;{{ return//Du 552978314 ;{ volatile int qzc, DWc ; { } for(int i=1 ; i<106;++i) XyYAvT =DWc/*ed*/+ qzc; { } {int tS;/*8Cp*/volatile int EAQy,//X goQR , UwKa ; if //5t (true){} else{ } tS = UwKa//bl +//JpWy EAQy //P5 +goQR; } return//p 970036028; } } return 2144026247 ; { ;/**/ }}{ { ; { }//qFh return 899201254; }if(true){ {//6g }}/*Glv*/else {{} } } if (//a true ){ for(int i=1//v ; i<//36A 107;++i ){ int jFQf;volatile int kcg,oNJg , ecfc; { { }} //C if ( true) //mg return 1840358194;else jFQf = ecfc + kcg + oNJg ; } { { { }//23 /*Zy4D*/} } {volatile int/*UfM*/ mLSu ,F,QJc,PWI6 ;{/*LKm*/}for (int i=1 ; i<108;++i )IpAF =PWI6 + mLSu + F+ QJc ;} } else return 1850370570 ;{for (int i=1; i< 109 ;++i ){ { } }//M { {return 1539572450//fat ; } { { } } if /*TWS*/(true )// if( /*xGmZt*/ true ) {// //2pWC volatile int MaAu , N ;{} if( true ) {} else if ( true ) if ( true )for (int i=1; i< 110;++i // ) { { } }else PLWN =//L3X N + MaAu ; else if /*Hed*/ ( true){ { }/*O*/ }else return 992615380;for (int i=1 ;i<111;++i ) { }if (true ) {//BK } else {}} else {{} }else { } for (int i=1 ; i< 112 ;++i){ {} } }; return 785799154 ;{ for(int i=1 ; i< 113;++i ) { if//gGeg (true) { //XlH { //T3 }}else{} {return 738906270;//D5 }{} } }}}for (int i=1 ;i< 114 ;++i ) if (true) { int QEOU ;volatile int cG ,NGpvxMqy ,UDqmR , Tj2b, AnHSH, YE6 , JkNsE , tPV, cTVb0/*Lzd*/,SBU;/*u0*/ { volatile int iSZd1,PIC5 , gSGU,M3N /*RMy*/,DTzk9,em6ks , /*7f*/CR ,pk0IRy//h , t5 ,L5 , GG,ldl ,MC; for (int i=1; i<115 ;++i) {//uV { { } }/*f*/ for(int i=1 ;i< 116;++i//Ny )/*mm8*/for(int /*aWN*/i=1;i< 117;++i) ;}{ int r4L ;volatile int FMeI5 //cfA //Niwk , nt4 , B6e,Wa ,xG2 ;//VJu r4L=xG2 + FMeI5+nt4 + B6e+ Wa;} if(true ) bZJV=MC +iSZd1 + PIC5+ gSGU ;else if( true ) if( true) return 55614536; else fMZT2p =M3N +DTzk9//DZP + em6ks+ CR+/*J*/pk0IRy/*eB*/; else { {volatile int kfM, sM7qUo; mu =sM7qUo + kfM; }{ } } {//w { {}for (int i=1 ;i< 118 ;++i ) { } } { }if(true ){}else {} {{ }}} if(true//K // ) for (int /*4x*/i=1 ; i</*9*/ 119;++i )/**/ICl = //lY t5 + L5 +GG+ ldl ; else{{ {}}{/*Qch*/{} { } }}}QEOU = SBU+cG +NGpvxMqy+ UDqmR + Tj2b ;for (int i=1 ;i< 120;++i ){ return 1197451379;if ( true ) /*s*/ ; else // { volatile int tBXKKz , aPi,U0Ms ; B6/*KU*/=/*9*/U0Ms+ tBXKKz+ aPi ; {for (int i=1;//nZr i< 121;++i ){ volatile int FV ; xgn =FV/*ShI*/; }} } } /*hX*/for(int i=1; i</*jgI*/122 ;++i)IT= AnHSH + YE6 +JkNsE /*cdpI*/+ tPV + //l cTVb0; return 784709414 ; if (true ) if ( /*QA*/true) {{{int zj4KJ ; volatile int YtH0/**/;if ( true/*zMmtI*/){}else for(int i=1; //aCy i<123 ;++i )zj4KJ=YtH0; {}} {volatile int qtc,hpW; if( true )if(true ) { }else LmW = hpW+ qtc ; else ;}} ; } else { //ly { {} if ( true ) {return 573107831; }else for (int i=1 ;i< 124 ;++i) if (true) ; else// if(/*BM*/true/*Oj*/) { if( true) return 76155911 ;/*bF*/ else return 1020925151 ;} else { }}for (int i=1 ; i< 125 ;++i //WC ) return 21489211 ; //E }//Ks else{ volatile int ZDJk , Y9,j1 ,SQ ;if ( // true ) { {} }else { {} } if (true) {{{ } }}else G3UX = SQ/*AhB*/+ ZDJk+ Y9+ j1 ; }/*VV*/} else { { for(int i=1;i< 126 ;++i ){{ }}//yn { int/*lz*/ DRW ; volatile int x5H/*9*/ , S4Z2, JF, KO, //W Me //UBE ,OR, sv , jhWQ ; DRW= jhWQ + x5H/*EP*/+/*rv*/S4Z2+JF ;s= KO +Me//Z +/*UD*/ OR+ sv ;//v {{ { }{ }}}}} { volatile int uoE3 ,ek3If , a5 ; OC2 =a5/*QB*/+uoE3+ek3If ; { for (int i=1/**/;//T i<127;++i){ } {if (true /*ARq*/);//9pP8 else ; //PjS {for (int i=1; i< 128;++i ) {} } }{ }{ }{} ;} {return 512455277; } for (int i=1 ; i< 129 /*f*/;++i) { ; }} {if (true) /**/ { volatile int up , pYA ,VoJ ;{} ycOR = VoJ+up +pYA ; {//YQ } /**/ return 1430742506 ; if (true ) { }else{}}/*tu*/else { { ;}{ return 987771040 ; {{}{ } //A }}{ } return 727138908/**/ // ; } { if ( true )if (true ) ; else if (true ){ return 662810179 /*t*/; }else return 708679624;else // { {} }} } ;/*S*/} {volatile int /*1*/ gL, oh,wQGQi,//N8Z1YI UEQS5,YiSX; /*5L*/m9r//aQ /*p*/ =YiSX//y + gL+ oh +wQGQi + UEQS5;return 1224327856;for (int i=1;i<//3 //4BN 130/*npB*/ ;++i/*M*/) if (/**/true//O ) //UB { for (int i=1; i<131 ;++i ){ { int x3S ; volatile int OS8e , xaXB//8 ;x3S =xaXB + //Bgn OS8e; } } ;for(int i=1/*Os*/ ; i<132 ;++i)for(int /*qD*/ i=1 ; i< 133 ;++i) {{/*k*/ } }//aTg { {} if( true ){}else { } ;/**/}} else{ volatile int sacd, C0 ,/*2BO*/RcL ; yg =RcL +sacd +C0; for(int i=1; i< 134 ;++i )return 1109946516;{ { return 1269813300;/*yjE*/} //mc } { return 1993823090/*z*/ ; { if ( true){}else ; }{ return 1682754103 ; }} } }{ ;;/*hu*/ return 1813248625;for (int i=1; i<135 ;++i ){{ { } { ; }//vFnA } //RB { { }/*4*/}} } return 988354700 ; ;}
d872f11427af07e5cab1d77f184d0e74d6b179e4
17fa06a77a97d899be65b3cf915f8bbe14ad82fe
/1035.cpp
71a17f73b0d3ad850e16c88da2eaa9e1784e52f4
[]
no_license
tahuruzzoha-tuhin/CP-Solving
f3954c700903a0e8f24674b2c69056b2c5df35eb
18293e22f9ddaa16a688dafb48a5a4b391782a5e
refs/heads/main
2023-01-31T02:45:02.472680
2020-12-14T12:25:21
2020-12-14T12:25:21
304,370,136
0
0
null
null
null
null
UTF-8
C++
false
false
710
cpp
1035.cpp
// Problem: Selection Test 1 // Contest: URI Online Judge - Beginner // URL: https://www.urionlinejudge.com.br/judge/en/problems/view/1035 // Memory Limit: 1024 MB // Time Limit: 1000 ms // // Powered by CP Editor (https://cpeditor.org) /* Read 4 integer values A, B, C and D. Then if B is greater than C and D is greater than A and if the sum of C and D is greater than the sum of A and B and if C and D were positives values and if A is even, write the message “Valores aceitos” (Accepted values). Otherwise, write the message “Valores nao aceitos” (Values not accepted). Input Four integer numbers A, B, C and D. Output Show the corresponding message after the validation of the values​​. */
eccc5f2229c07048738dbd3c1cfdf952d8d2e404
2d5c49c5171055727b7d28fdcab3bfe96a376f92
/lightoj/1141 - Number Transformation.cpp
fcf6322143ff433ad3ed26a3f06b02b6beb0073d
[]
no_license
mahfuzmohammad/ProblemSolving
70dfe2b5f23e1934adcf3e96228e84a2abf89f75
324d02d0a81c3521833b9ed2670c084adad536f0
refs/heads/master
2021-01-10T07:48:40.895308
2015-07-24T22:52:17
2015-07-24T22:52:17
36,975,135
0
0
null
null
null
null
UTF-8
C++
false
false
2,195
cpp
1141 - Number Transformation.cpp
#include <iostream> #include <cstdio> #include <cstring> #include <string> #include <vector> #include <cmath> #include <stack> #include <queue> #include <algorithm> #define SIZE 1000000 #define IMPOSSIBLE 100000 using namespace std; int cost[102][1002]; bool arr[SIZE + 1]; vector<int> primes; vector<int> primFact[1002]; int PrimeSize; void reset() { for(int i = 0; i <= 100; i++) for(int j = 0; j <= 1000; j++) if(i == j) cost[i][j] = 0; else cost[i][j] = IMPOSSIBLE; } void sieve(){ int sqofSize = sqrt(SIZE); for(int i = 3; i <= sqofSize; i += 2){ if(arr[i] == 0){ int ii = i * i; int i2 = 2 * i; for(int j = ii; j <= SIZE; j += i2){ arr[j] = true; } } } } bool isPrime(int n){ if(n == 2) return true; if(n % 2 == 1 && !arr[n]) return true; return false; } void genPrimes() { sieve(); for(int i = 2; i <= SIZE; i++) if(isPrime(i)) primes.push_back(i); PrimeSize = primes.size(); } void primeFactorize(int n){ for(int i = 0; primes[i] < n; i++){ if(n % primes[i] == 0) { primFact[n].push_back(primes[i]); } } } void BFS(int a) { queue<int> q; cost[a][a] = 0; q.push(a); while(!q.empty()) { int u = q.front(); q.pop(); for(int i = 0; i < primFact[u].size(); i++){ if((u + primFact[u][i] <= 1000) && (cost[a][u + primFact[u][i]] >= cost[a][u] + 1)){ cost[a][u + primFact[u][i]] = cost[a][u] + 1; q.push(u + primFact[u][i]); //cout << u << " " << u + primFact[u][i] << endl; } } } } void genCost() { reset(); genPrimes(); for(int i = 1; i <= 1000; i++){ primeFactorize(i); } for(int i = 1; i <= 100; i++){ BFS(i); } } int main() { //freopen("input.txt", "r", stdin); genCost(); int T, s, t; scanf("%d", &T); for(int i = 1; i <= T; i++){ scanf("%d %d", &s, &t); printf("Case %d: %d\n", i, ((cost[s][t] == IMPOSSIBLE)?-1:cost[s][t])); } return 0; }
db92ebf6086117a307177ea6bac27e06751be1ba
5249775f7a72ddeae332c36651461484711456e9
/esp8266-firmware/src/config.cpp
314d7e756eb5660db7ef52b6719d6e65c42544d2
[]
no_license
jzcruiser/WakeUpLight
14139c47a6394eb6869aa4ffd36a990cdc83bfe0
f798e91af33c5de1fd87b09db17a539a0a8054c1
refs/heads/master
2021-06-14T17:43:55.503546
2016-12-13T10:39:25
2016-12-13T10:39:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,064
cpp
config.cpp
#include <Arduino.h> #include <ESP8266WiFi.h> #include <ESP8266mDNS.h> #include <WiFiUdp.h> #include <FS.h> #include <ArduinoOTA.h> #include "config.h" #include "alarm.h" void loadSettings() { } /** * Reads the wifi settings from wifi_conf.txt where the ssid * and password must be saved as ssid:password **/ bool loadWifiSettings(String *ssid, String *pass) { File wifiSettings = SPIFFS.open("/wifi_conf.txt", "r"); if (!wifiSettings) { // TODO handle error } String content = wifiSettings.readString(); wifiSettings.close(); // Remove the line ending content.trim(); // Get the position of the split character uint8_t split = content.indexOf(':'); uint8_t length = content.length(); // Extract the settings from the string *ssid = content.substring(0, split); *pass = content.substring(split + 1, length); Serial.println("Loaded wifi SSID: " + *ssid); Serial.println("Loaded wifi password" + *pass); } /** * Saves the wifi settings in wifi_conf.txt where the ssid * and password must be saved as ssid:password **/ bool saveWifiSettings(String *ssid, String *pass) { File wifiSettings = SPIFFS.open("/wifi_conf.txt", "w"); wifiSettings.print(*ssid); wifiSettings.print(':'); wifiSettings.println(*pass); wifiSettings.close(); } /** * Loads the alarm times from alarm_conf.txt. The config file * must have all the alarms in one string on the first line in * the following format: monday=7:00;tuesday=18:00;..... **/ void loadAlarms(alarm *alarms) { // Open the alarms settings file and read the contents File alarmSettings = SPIFFS.open("/alarm_conf.txt", "r"); String content = alarmSettings.readString(); alarmSettings.close(); uint8_t x = 0; for (int i = 0; i <= 6; i++) { uint8_t pos = content.indexOf(';', x); String substring = content.substring(x, pos); extractAlarmTimeFromString(&substring, &alarms[i]); x = pos + 1; } } void saveAlarms(alarm *alarms) { String content = ""; for (int i = 0; i < 7; i++) { appendAlarmTimeToString(&content, &alarms[i]); } File alarmSettings = SPIFFS.open("/alarm_conf.txt", "w"); alarmSettings.print(content); alarmSettings.close(); } static void appendAlarmTimeToString(String *string, alarm *alarm) { *string += "&&"; *string += "="; *string += String(alarm->hour); *string += ':'; *string += String(alarm->minute); *string += ','; *string += String(alarm->enabled); *string += ';'; } static void extractAlarmTimeFromString(String *string, alarm *alarm) { uint8_t splitter = string->indexOf('='); uint8_t splitter1 = string->indexOf(','); String substring = string->substring(splitter + 1, splitter1); splitter = substring.indexOf(':'); String hour = substring.substring(0, splitter); String minute = substring.substring(splitter + 1); Serial.println(hour + " " + minute); alarm->hour = hour.toInt(); alarm->minute = minute.toInt(); char a = string->charAt(splitter1 + 1); if (a == '1'){ alarm->enabled = true; } else { alarm->enabled = false; } }
dd155b2dc671dc1b62eaab9f30263b425fdaaad3
cded010b2c75394834cc9aa4ba667e4d8bcb4aa3
/origin_solution/2.3.7622.cpp
fb2d0bf0eaa205f18a8d41447137050697a342d2
[ "MIT" ]
permissive
hsefz2018/NOIP-openjudge
8a8a7ed4c68a341ee84465af7b271bea3e8d78bb
b606d399b780959caadcf0094b90fa9163f30029
refs/heads/master
2020-04-11T09:11:19.557091
2016-11-18T14:14:49
2016-11-18T14:14:49
40,962,056
12
5
null
null
null
null
UTF-8
C++
false
false
1,279
cpp
2.3.7622.cpp
// Submission #3463146 #include <cstdio> #include <algorithm> #include <utility> static const int MAXN = 131072; namespace fenwick { int n; int f[MAXN] = { 0 }; #define lowbit(__x) ((__x) & -(__x)) void add(int idx, int inc) { while (idx <= n) { f[idx] += inc; idx += lowbit(idx); } } // [1, end] int prefixsum(int end) { int ans = 0; while (end) { ans += f[end]; end -= lowbit(end); } return ans; } // [start, end] int sum(int start, int end) { return prefixsum(end) - prefixsum(start - 1); } int at(int idx) { return sum(idx, idx); } #undef lowbit } namespace discretizer { template<typename T> int *sort(int n, T *a) { std::pair<T, int> list[MAXN]; for (int i = 0; i < n; ++i) list[i] = std::make_pair(a[i], i); std::sort(list, list + n); int *ret = new int[n]; for (int i = 0; i < n; ++i) ret[list[i].second] = i + 1; return ret; } } int main() { int n, a[MAXN]; scanf("%d", &n); for (int i = 0; i < n; ++i) scanf("%d", &a[i]); int *b = discretizer::sort(n, a); fenwick::n = n; long long ans = 0; for (int i = 0; i < n; ++i) { fenwick::add(b[i], 1); ans += fenwick::sum(b[i] + 1, n); } printf("%lld\n", ans); return 0; }
17a9b00b1a95221ddd9821536c7c24f4350695a4
6489a8cc4a7c591cd073b5820a5cfc8dbcc6c0b5
/X-Ray/CSE_Abstract.h
6f6cd493dc929ad4c3c89d27336db085875ff8f1
[]
no_license
Alex009/soProject
c6e744e8140078a09b6325f6df9f4ae40df35ddc
975879900610cffd021f800caf057bd42b557ee1
refs/heads/master
2023-03-07T00:26:20.541740
2021-02-17T11:58:11
2021-02-17T11:58:11
339,708,580
2
0
null
null
null
null
WINDOWS-1251
C++
false
false
177
h
CSE_Abstract.h
/* * S.T.A.L.K.E.R.- CSE_Abstract class * Disassembly by: * 009 (Михайлов Алексей) */ class CSE_Abstract { public: CSE_Abstract(void); ~CSE_Abstract(void); };
17b047cb1d376ce9aeab47edf8c39b96223cace2
dcf87b85c4874ffa4a186a444e9b4b8ec30666d1
/arch/operands.hpp
08802e312df147fb16237a88e88318d2256ee468
[ "BSD-3-Clause" ]
permissive
jilvan1234/VTIL-Architecture
9b3e78c5566a6c0e0f5b16c718351d5911045053
eee8e00139d5cb893b02d4d45decd64c8f767494
refs/heads/master
2022-04-21T19:20:15.458016
2020-04-23T12:24:00
2020-04-23T12:24:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,005
hpp
operands.hpp
// Copyright (c) 2020 Can Boluk and contributors of the VTIL Project // 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 mosquitto 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. // #pragma once #include <string> #include <vtil/math> #include "register_desc.hpp" namespace vtil { // Operand structure either holds an immediate or a register. // #pragma pack(push, 4) struct operand { // If operand is a register: // register_desc reg = {}; // If operand is an immediate: // struct { union { int64_t i64; uint64_t u64; }; bitcnt_t bit_count = 0; } imm; // Default constructor / move / copy. // operand() = default; operand( operand&& ) = default; operand( const operand& ) = default; operand& operator=( operand&& ) = default; operand& operator=( const operand& ) = default; // Operand type is constructed either by a register view or an immediate // followed by an explicit size. // template<typename T, std::enable_if_t<!std::is_same_v<std::remove_cvref_t<T>, operand>, int> = 0> operand( T&& reg ) : reg( register_cast<std::remove_cvref_t<T>>{}( reg ) ) {} operand( int64_t v, bitcnt_t bit_count ) : imm( { v, bit_count } ) {} // Getter for the operand size (in bytes). // size_t size() const { bitcnt_t bit_cnt = is_register() ? reg.bit_count : imm.bit_count; if ( bit_cnt == 1 ) return 1; else return bit_cnt / 8; } // Conversion to human-readable format. // std::string to_string() const { return is_register() ? reg.to_string() : format::hex( imm.i64 ); } // Simple helpers to determine the type of operand. // bool is_register() const { return reg.is_valid(); } bool is_immediate() const { return imm.bit_count != 0; } bool is_valid() const { if ( is_register() ) { if ( reg.bit_offset % 8 ) return false; if ( reg.bit_count != 1 && ( reg.bit_count % 8 ) ) return false; return true; } return is_immediate(); } // Basic comparison operators. // bool operator!=( const operand& o ) const { return !operator==( o ); }; bool operator==( const operand& o ) const { return is_register() ? reg == o.reg : ( imm.u64 == o.imm.u64 && imm.bit_count == o.imm.bit_count ); } bool operator<( const operand& o ) const { return is_register() ? reg < o.reg : ( imm.u64 < o.imm.u64 || imm.bit_count < o.imm.bit_count ); } }; #pragma pack(pop) };
f2bd2bffd5ef83180d1bb94f81485d87bb3b440f
671d9db359dc1bafbb505e4f5904d8abb9817424
/SDKs/SourceDir/Windows Kits/10/Source/10.0.17763.0/ucrt/convert/atoldbl.cpp
abd260026a56a6fc7926345882744654333673ac
[]
no_license
tritao/WindowsSDK
f22659f39de23192b95806c06ad2b5850b1df5bd
07983c7ba4f6861d15e23f195744c60c0c249ce0
refs/heads/master
2021-08-17T16:48:33.611875
2020-04-19T23:20:31
2020-04-21T23:39:58
166,725,918
4
2
null
null
null
null
UTF-8
C++
false
false
27,713
cpp
atoldbl.cpp
// // atoldbl.cpp // // Copyright (c) Microsoft Corporation. All rights reserved. // // The _atoldbl and _atoldbl_l functions, which convert a string representation // of a floating point number into a 10-byte _LDOUBLE object. // #include <corecrt_internal.h> #include <float.h> #include <corecrt_internal_fltintrn.h> #include <corecrt_internal_strtox.h> #include <locale.h> #include <math.h> #include <stdlib.h> #include <string.h> #define PTR_12(x) ((uint8_t*)(&(x)->ld12)) #define MSB_USHORT ((uint16_t) 0x8000) #define MSB_ULONG ((uint32_t) 0x80000000) #define TMAX10 5200 /* maximum temporary decimal exponent */ #define TMIN10 -5200 /* minimum temporary decimal exponent */ #define LD_MAX_EXP_LEN 4 /* maximum number of decimal exponent digits */ #define LD_MAX_MAN_LEN 24 /* maximum length of mantissa (decimal)*/ #define LD_MAX_MAN_LEN1 25 /* MAX_MAN_LEN+1 */ #define LD_BIAS 0x3fff /* exponent bias for long double */ #define LD_BIASM1 0x3ffe /* LD_BIAS - 1 */ #define LD_MAXEXP 0x7fff /* maximum biased exponent */ #define D_BIAS 0x3ff /* exponent bias for double */ #define D_BIASM1 0x3fe /* D_BIAS - 1 */ #define D_MAXEXP 0x7ff /* maximum biased exponent */ // Macros for manipulation of a 12-byte long double number (an ordinary 10-byte // long double plus two extra bytes of mantissa). // byte layout: // // +-----+--------+--------+-------+ // |XT(2)|MANLO(4)|MANHI(4)|EXP(2) | // +-----+--------+--------+-------+ // |<-UL_LO->|<-UL_MED->|<-UL_HI ->| // (4) (4) (4) #define ALIGN(x) ((unsigned long _UNALIGNED*)(x)) #define U_EXP_12(p) ((uint16_t *)(PTR_12(p) + 10)) #define UL_MANHI_12(p) ((uint32_t _UNALIGNED*)(PTR_12(p) + 6)) #define UL_MANLO_12(p) ((uint32_t _UNALIGNED*)(PTR_12(p) + 2)) #define U_XT_12(p) ((uint16_t *)(PTR_12(p) )) // Pointers to the four low, mid, and high order bytes of the extended mantissa #define UL_LO_12(p) ((uint32_t*)(PTR_12(p) )) #define UL_MED_12(p) ((uint32_t*)(PTR_12(p) + 4)) #define UL_HI_12(p) ((uint32_t*)(PTR_12(p) + 8)) // Pointers to the uint8_t, uint16_t, and uint32_t of order i (LSB = 0; MSB = 9) #define UCHAR_12(p, i) ((uint8_t *)( PTR_12(p) + (i))) #define USHORT_12(p, i) ((uint16_t*)((uint8_t*)PTR_12(p) + (i))) #define ULONG_12(p, i) ((uint32_t*)((uint8_t*)PTR_12(p) + (i))) #define TEN_BYTE_PART(p) ((uint8_t *)( PTR_12(p) + 2 )) // Manipulation of a 10-byte long double number #define U_EXP_LD(p) ((uint16_t*)(_PTR_LD(p) + 8)) #define UL_MANHI_LD(p) ((uint32_t*)(_PTR_LD(p) + 4)) #define UL_MANLO_LD(p) ((uint32_t*)(_PTR_LD(p) )) // Manipulation of a 64bit IEEE double #define U_SHORT4_D(p) ((uint16_t*)(p) + 3) #define UL_HI_D(p) ((uint32_t*)(p) + 1) #define UL_LO_D(p) ((uint32_t*)(p) ) #define PUT_INF_12(p, sign) \ *UL_HI_12 (p) = (sign) ? 0xffff8000 : 0x7fff8000; \ *UL_MED_12(p) = 0; \ *UL_LO_12 (p) = 0; #define PUT_ZERO_12(p) \ *UL_HI_12 (p) = 0; \ *UL_MED_12(p) = 0; \ *UL_LO_12 (p) = 0; #define ISZERO_12(p) \ ((*UL_HI_12 (p) & 0x7fffffff) == 0 && \ *UL_MED_12(p) == 0 && \ *UL_LO_12 (p) == 0) #define PUT_INF_LD(p, sign) \ *U_EXP_LD (p) = (sign) ? 0xffff : 0x7fff; \ *UL_MANHI_LD(p) = 0x8000; \ *UL_MANLO_LD(p) = 0; #define PUT_ZERO_LD(p) \ *U_EXP_LD (p) = 0; \ *UL_MANHI_LD(p) = 0; \ *UL_MANLO_LD(p) = 0; #define ISZERO_LD(p) \ ((*U_EXP_LD (p) & 0x7fff) == 0 && \ *UL_MANHI_LD(p) == 0 && \ *UL_MANLO_LD(p) == 0) static _LDBL12 const ld12_pow10_positive[] = { /*P0001*/ {{0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xA0,0x02,0x40}}, /*P0002*/ {{0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC8,0x05,0x40}}, /*P0003*/ {{0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFA,0x08,0x40}}, /*P0004*/ {{0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x9C,0x0C,0x40}}, /*P0005*/ {{0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x50,0xC3,0x0F,0x40}}, /*P0006*/ {{0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x24,0xF4,0x12,0x40}}, /*P0007*/ {{0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x80,0x96,0x98,0x16,0x40}}, /*P0008*/ {{0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x20,0xBC,0xBE,0x19,0x40}}, /*P0016*/ {{0x00,0x00, 0x00,0x00,0x00,0x04,0xBF,0xC9,0x1B,0x8E,0x34,0x40}}, /*P0024*/ {{0x00,0x00, 0x00,0xA1,0xED,0xCC,0xCE,0x1B,0xC2,0xD3,0x4E,0x40}}, /*P0032*/ {{0x20,0xF0, 0x9E,0xB5,0x70,0x2B,0xA8,0xAD,0xC5,0x9D,0x69,0x40}}, /*P0040*/ {{0xD0,0x5D, 0xFD,0x25,0xE5,0x1A,0x8E,0x4F,0x19,0xEB,0x83,0x40}}, /*P0048*/ {{0x71,0x96, 0xD7,0x95,0x43,0x0E,0x05,0x8D,0x29,0xAF,0x9E,0x40}}, /*P0056*/ {{0xF9,0xBF, 0xA0,0x44,0xED,0x81,0x12,0x8F,0x81,0x82,0xB9,0x40}}, /*P0064*/ {{0xBF,0x3C, 0xD5,0xA6,0xCF,0xFF,0x49,0x1F,0x78,0xC2,0xD3,0x40}}, /*P0128*/ {{0x6F,0xC6, 0xE0,0x8C,0xE9,0x80,0xC9,0x47,0xBA,0x93,0xA8,0x41}}, /*P0192*/ {{0xBC,0x85, 0x6B,0x55,0x27,0x39,0x8D,0xF7,0x70,0xE0,0x7C,0x42}}, /*P0256*/ {{0xBC,0xDD, 0x8E,0xDE,0xF9,0x9D,0xFB,0xEB,0x7E,0xAA,0x51,0x43}}, /*P0320*/ {{0xA1,0xE6, 0x76,0xE3,0xCC,0xF2,0x29,0x2F,0x84,0x81,0x26,0x44}}, /*P0384*/ {{0x28,0x10, 0x17,0xAA,0xF8,0xAE,0x10,0xE3,0xC5,0xC4,0xFA,0x44}}, /*P0448*/ {{0xEB,0xA7, 0xD4,0xF3,0xF7,0xEB,0xE1,0x4A,0x7A,0x95,0xCF,0x45}}, /*P0512*/ {{0x65,0xCC, 0xC7,0x91,0x0E,0xA6,0xAE,0xA0,0x19,0xE3,0xA3,0x46}}, /*P1024*/ {{0x0D,0x65, 0x17,0x0C,0x75,0x81,0x86,0x75,0x76,0xC9,0x48,0x4D}}, /*P1536*/ {{0x58,0x42, 0xE4,0xA7,0x93,0x39,0x3B,0x35,0xB8,0xB2,0xED,0x53}}, /*P2048*/ {{0x4D,0xA7, 0xE5,0x5D,0x3D,0xC5,0x5D,0x3B,0x8B,0x9E,0x92,0x5A}}, /*P2560*/ {{0xFF,0x5D, 0xA6,0xF0,0xA1,0x20,0xC0,0x54,0xA5,0x8C,0x37,0x61}}, /*P3072*/ {{0xD1,0xFD, 0x8B,0x5A,0x8B,0xD8,0x25,0x5D,0x89,0xF9,0xDB,0x67}}, /*P3584*/ {{0xAA,0x95, 0xF8,0xF3,0x27,0xBF,0xA2,0xC8,0x5D,0xDD,0x80,0x6E}}, /*P4096*/ {{0x4C,0xC9, 0x9B,0x97,0x20,0x8A,0x02,0x52,0x60,0xC4,0x25,0x75}} }; static _LDBL12 const ld12_pow10_negative[] = { /*N0001*/ {{0xCD,0xCC, 0xCD,0xCC,0xCC,0xCC,0xCC,0xCC,0xCC,0xCC,0xFB,0x3F}}, /*N0002*/ {{0x71,0x3D, 0x0A,0xD7,0xA3,0x70,0x3D,0x0A,0xD7,0xA3,0xF8,0x3F}}, /*N0003*/ {{0x5A,0x64, 0x3B,0xDF,0x4F,0x8D,0x97,0x6E,0x12,0x83,0xF5,0x3F}}, /*N0004*/ {{0xC3,0xD3, 0x2C,0x65,0x19,0xE2,0x58,0x17,0xB7,0xD1,0xF1,0x3F}}, /*N0005*/ {{0xD0,0x0F, 0x23,0x84,0x47,0x1B,0x47,0xAC,0xC5,0xA7,0xEE,0x3F}}, /*N0006*/ {{0x40,0xA6, 0xB6,0x69,0x6C,0xAF,0x05,0xBD,0x37,0x86,0xEB,0x3F}}, /*N0007*/ {{0x33,0x3D, 0xBC,0x42,0x7A,0xE5,0xD5,0x94,0xBF,0xD6,0xE7,0x3F}}, /*N0008*/ {{0xC2,0xFD, 0xFD,0xCE,0x61,0x84,0x11,0x77,0xCC,0xAB,0xE4,0x3F}}, /*N0016*/ {{0x2F,0x4C, 0x5B,0xE1,0x4D,0xC4,0xBE,0x94,0x95,0xE6,0xC9,0x3F}}, /*N0024*/ {{0x92,0xC4, 0x53,0x3B,0x75,0x44,0xCD,0x14,0xBE,0x9A,0xAF,0x3F}}, /*N0032*/ {{0xDE,0x67, 0xBA,0x94,0x39,0x45,0xAD,0x1E,0xB1,0xCF,0x94,0x3F}}, /*N0040*/ {{0x24,0x23, 0xC6,0xE2,0xBC,0xBA,0x3B,0x31,0x61,0x8B,0x7A,0x3F}}, /*N0048*/ {{0x61,0x55, 0x59,0xC1,0x7E,0xB1,0x53,0x7C,0x12,0xBB,0x5F,0x3F}}, /*N0056*/ {{0xD7,0xEE, 0x2F,0x8D,0x06,0xBE,0x92,0x85,0x15,0xFB,0x44,0x3F}}, /*N0064*/ {{0x24,0x3F, 0xA5,0xE9,0x39,0xA5,0x27,0xEA,0x7F,0xA8,0x2A,0x3F}}, /*N0128*/ {{0x7D,0xAC, 0xA1,0xE4,0xBC,0x64,0x7C,0x46,0xD0,0xDD,0x55,0x3E}}, /*N0192*/ {{0x63,0x7B, 0x06,0xCC,0x23,0x54,0x77,0x83,0xFF,0x91,0x81,0x3D}}, /*N0256*/ {{0x91,0xFA, 0x3A,0x19,0x7A,0x63,0x25,0x43,0x31,0xC0,0xAC,0x3C}}, /*N0320*/ {{0x21,0x89, 0xD1,0x38,0x82,0x47,0x97,0xB8,0x00,0xFD,0xD7,0x3B}}, /*N0384*/ {{0xDC,0x88, 0x58,0x08,0x1B,0xB1,0xE8,0xE3,0x86,0xA6,0x03,0x3B}}, /*N0448*/ {{0xC6,0x84, 0x45,0x42,0x07,0xB6,0x99,0x75,0x37,0xDB,0x2E,0x3A}}, /*N0512*/ {{0x33,0x71, 0x1C,0xD2,0x23,0xDB,0x32,0xEE,0x49,0x90,0x5A,0x39}}, /*N1024*/ {{0xA6,0x87, 0xBE,0xC0,0x57,0xDA,0xA5,0x82,0xA6,0xA2,0xB5,0x32}}, /*N1536*/ {{0xE2,0x68, 0xB2,0x11,0xA7,0x52,0x9F,0x44,0x59,0xB7,0x10,0x2C}}, /*N2048*/ {{0x25,0x49, 0xE4,0x2D,0x36,0x34,0x4F,0x53,0xAE,0xCE,0x6B,0x25}}, /*N2560*/ {{0x8F,0x59, 0x04,0xA4,0xC0,0xDE,0xC2,0x7D,0xFB,0xE8,0xC6,0x1E}}, /*N3072*/ {{0x9E,0xE7, 0x88,0x5A,0x57,0x91,0x3C,0xBF,0x50,0x83,0x22,0x18}}, /*N3584*/ {{0x4E,0x4B, 0x65,0x62,0xFD,0x83,0x8F,0xAF,0x06,0x94,0x7D,0x11}}, /*N4096*/ {{0xE4,0x2D, 0xDE,0x9F,0xCE,0xD2,0xC8,0x04,0xDD,0xA6,0xD8,0x0A}} }; // Adds x and y, storing the result in *sum. Returns true if overflow occurred; // false otherwise. static __forceinline bool __cdecl add_uint32_carry(uint32_t const x, uint32_t const y, uint32_t* const sum) throw() { uint32_t const r = x + y; *sum = r; return r < x || r < y; // carry } // Adds *x and *y as 12-byte integers, storing the result in *x. Overflow is ignored. static __forceinline void __cdecl add_ld12(_LDBL12* const x, _LDBL12 const* const y) throw() { if (add_uint32_carry(*UL_LO_12(x), *UL_LO_12(y), UL_LO_12(x))) { if (add_uint32_carry(*UL_MED_12(x), 1, UL_MED_12(x))) { ++*UL_HI_12(x); } } if (add_uint32_carry(*UL_MED_12(x), *UL_MED_12(y), UL_MED_12(x))) { ++*UL_HI_12(x); } // Ignore next carry -- assume no overflow will occur add_uint32_carry(*UL_HI_12(x), *UL_HI_12(y), UL_HI_12(x)); } // Shifts *p N bits to the left. The number is shifted as a 12-byte integer. template <uint32_t N> static __forceinline void __cdecl shl_ld12(_LDBL12* const p) throw() { uint32_t const total_bits{sizeof(uint32_t) * CHAR_BIT}; uint32_t const msb_bits{N}; uint32_t const lsb_bits{total_bits - N}; static_assert(msb_bits <= total_bits, "shift too large"); uint32_t const lsb_mask{(1 << (lsb_bits - 1)) - 1}; uint32_t const msb_mask{static_cast<uint32_t>(-1) ^ lsb_mask}; uint32_t const lo_carry {(*UL_LO_12 (p) & msb_mask) >> lsb_bits}; uint32_t const med_carry{(*UL_MED_12(p) & msb_mask) >> lsb_bits}; *UL_LO_12 (p) = (*UL_LO_12 (p) << msb_bits); *UL_MED_12(p) = (*UL_MED_12(p) << msb_bits) | lo_carry; *UL_HI_12 (p) = (*UL_HI_12 (p) << msb_bits) | med_carry; } // Shifts *p one bit to the right. The number is shifted as a 12-byte integer. static __forceinline void __cdecl shr_ld12(_LDBL12* const p) throw() { uint32_t const c2 = *UL_HI_12 (p) & 0x1 ? MSB_ULONG : 0; uint32_t const c1 = *UL_MED_12(p) & 0x1 ? MSB_ULONG : 0; *UL_HI_12 (p) >>= 1; *UL_MED_12(p) = *UL_MED_12(p) >> 1 | c2; *UL_LO_12 (p) = *UL_LO_12 (p) >> 1 | c1; } // Multiplies *px and *py, storing the result in *px. static __forceinline void __cdecl multiply_ld12(_LDBL12* const px, _LDBL12 const* const py) throw() { _LDBL12 tempman; // This is actually a 12-byte mantissa, not a 12-byte long double *UL_LO_12 (&tempman) = 0; *UL_MED_12(&tempman) = 0; *UL_HI_12 (&tempman) = 0; uint16_t expx = *U_EXP_12(px); uint16_t expy = *U_EXP_12(py); uint16_t const sign = (expx ^ expy) & static_cast<uint16_t>(0x8000); expx &= 0x7fff; expy &= 0x7fff; uint16_t expsum = expx + expy; if (expx >= LD_MAXEXP || expy >= LD_MAXEXP || expsum > LD_MAXEXP + LD_BIASM1) { // Overflow to infinity PUT_INF_12(px, sign); return; } if (expsum <= LD_BIASM1 - 63) { // Underflow to zero PUT_ZERO_12(px); return; } if (expx == 0) { // If this is a denormal temp real then the mantissa was shifted right // once to set bit 63 to zero. ++expsum; // Correct for this if (ISZERO_12(px)) { // Put positive sign: *U_EXP_12(px) = 0; return; } } if (expy == 0) { ++expsum; // Because arg2 is denormal if (ISZERO_12(py)) { PUT_ZERO_12(px); return; } } int roffs = 0; for (int i = 0; i < 5; ++i) { int poffs = i << 1; int qoffs = 8; for (int j = 5 - i; j > 0; --j) { bool carry = false; uint16_t* const p = USHORT_12(px, poffs); uint16_t* const q = USHORT_12(py, qoffs); uint32_t* const r = ULONG_12(&tempman, roffs); uint32_t const prod = static_cast<uint32_t>(*p) * static_cast<uint32_t>(*q); #if defined _M_X64 || defined _M_ARM // handle misalignment problems if (i & 0x1) // i is odd { uint32_t sum = 0; carry = add_uint32_carry(*ALIGN(r), prod, &sum); *ALIGN(r) = sum; } else // i is even { carry = add_uint32_carry(*r, prod, r); } #else carry = add_uint32_carry(*r, prod, r); #endif if (carry) { // roffs should be less than 8 in this case ++*USHORT_12(&tempman, roffs + 4); } poffs += 2; qoffs -= 2; } roffs += 2; } expsum -= LD_BIASM1; // Normalize while (static_cast<int16_t>(expsum) > 0 && (*UL_HI_12(&tempman) & MSB_ULONG) == 0) { shl_ld12<1>(&tempman); expsum--; } if (static_cast<int16_t>(expsum) <= 0) { bool sticky = false; expsum--; while (static_cast<int16_t>(expsum) < 0) { if (*U_XT_12(&tempman) & 0x1) sticky = true; shr_ld12(&tempman); expsum++; } if (sticky) { *U_XT_12(&tempman) |= 0x1; } } if (*U_XT_12(&tempman) > 0x8000 || (*UL_LO_12(&tempman) & 0x1ffff) == 0x18000) { // Round up: if (*UL_MANLO_12(&tempman) == UINT32_MAX) { *UL_MANLO_12(&tempman) = 0; if (*UL_MANHI_12(&tempman) == UINT32_MAX) { *UL_MANHI_12(&tempman) = 0; if (*U_EXP_12(&tempman) == UINT16_MAX) { // 12-byte mantissa overflow: *U_EXP_12(&tempman) = MSB_USHORT; ++expsum; } else { ++*U_EXP_12(&tempman); } } else { ++*UL_MANHI_12(&tempman); } } else { ++*UL_MANLO_12(&tempman); } } // Check for exponent overflow: if (expsum >= 0x7fff) { PUT_INF_12(px, sign); return; } // Put result in px: *U_XT_12 (px) = *USHORT_12(&tempman, 2); *UL_MANLO_12(px) = *UL_MED_12(&tempman); *UL_MANHI_12(px) = *UL_HI_12 (&tempman); *U_EXP_12 (px) = expsum | sign; } // Multiplies *pld12 by 10^pow. static __forceinline void __cdecl multiply_ten_pow_ld12(_LDBL12* const pld12, int pow) throw() { if (pow == 0) return; _LDBL12 const* pow_10p = ld12_pow10_positive - 8; if (pow < 0) { pow = -pow; pow_10p = ld12_pow10_negative-8; } while (pow != 0) { pow_10p += 7; int const last3 = pow & 0x7; // The three least significant bits of pow pow >>= 3; if (last3 == 0) continue; _LDBL12 const* py = pow_10p + last3; _LDBL12 unround; // Do an exact 12byte multiplication: if (*U_XT_12(py) >= 0x8000) { // Copy number: unround = *py; // Unround adjacent byte: --*UL_MANLO_12(&unround); // Point to new operand: py = &unround; } multiply_ld12(pld12, py); } } // Multiplies *ld12 by 2^power. static __forceinline void __cdecl multiply_two_pow_ld12(_LDBL12* const ld12, int const power) throw() { _LDBL12 multiplicand{}; *U_XT_12 (&multiplicand) = 0; *UL_MANLO_12(&multiplicand) = 0; *UL_MANHI_12(&multiplicand) = (1u << (sizeof(uint32_t) * CHAR_BIT - 1)); *U_EXP_12 (&multiplicand) = static_cast<uint16_t>(power + LD_BIAS); multiply_ld12(ld12, &multiplicand); } // These multiply a 12-byte integer stored in an _LDBL12 by N. N must be 10 or 16. template <uint32_t N> static __forceinline void __cdecl multiply_ld12_by(_LDBL12*) throw(); template <> __forceinline void __cdecl multiply_ld12_by<10>(_LDBL12* const ld12) throw() { _LDBL12 const original_ld12 = *ld12; shl_ld12<2>(ld12); add_ld12(ld12, &original_ld12); shl_ld12<1>(ld12); } template <> __forceinline void __cdecl multiply_ld12_by<16>(_LDBL12* const ld12) throw() { shl_ld12<4>(ld12); } // Converts a mantissa into an _LDBL12. The mantissa to be converted must be // represented as an array of BCD digits, one per byte, read from the byte range // [mantissa, mantissa + mantissa_count). template <uint32_t Base> static __forceinline void __cdecl convert_mantissa_to_ld12( uint8_t const* const mantissa, size_t const mantissa_count, _LDBL12* const ld12 ) throw() { *UL_LO_12 (ld12) = 0; *UL_MED_12(ld12) = 0; *UL_HI_12 (ld12) = 0; uint8_t const* const mantissa_last = mantissa + mantissa_count; for (uint8_t const* it = mantissa; it != mantissa_last; ++it) { multiply_ld12_by<Base>(ld12); // Add the new digit into the mantissa: _LDBL12 digit_ld12{}; *UL_LO_12 (&digit_ld12) = *it; *UL_MED_12(&digit_ld12) = 0; *UL_HI_12 (&digit_ld12) = 0; add_ld12(ld12, &digit_ld12); } uint16_t expn = LD_BIASM1 + 80; // Normalize mantissa. First shift word-by-word: while (*UL_HI_12(ld12) == 0) { *UL_HI_12 (ld12) = *UL_MED_12(ld12) >> 16; *UL_MED_12(ld12) = *UL_MED_12(ld12) << 16 | *UL_LO_12(ld12) >> 16; *UL_LO_12 (ld12) <<= 16; expn -= 16; } while ((*UL_HI_12(ld12) & MSB_USHORT) == 0) { shl_ld12<1>(ld12); --expn; } *U_EXP_12(ld12) = expn; } namespace __crt_strtox { void __cdecl assemble_floating_point_zero(bool const is_negative, _LDBL12& result) throw() { uint16_t const sign_bit{static_cast<uint16_t>(is_negative ? MSB_USHORT : 0x0000)}; // Zero is all zero bits with an optional sign bit: *U_XT_12 (&result) = 0; *UL_MANLO_12(&result) = 0; *UL_MANHI_12(&result) = 0; *U_EXP_12 (&result) = sign_bit; } void __cdecl assemble_floating_point_infinity(bool const is_negative, _LDBL12& result) throw() { uint16_t const sign_bit{static_cast<uint16_t>(is_negative ? MSB_USHORT : 0x0000)}; // Infinity has an all-zero mantissa and an all-one exponent *U_XT_12 (&result) = 0; *UL_MANLO_12(&result) = 0; *UL_MANHI_12(&result) = 0; *U_EXP_12 (&result) = static_cast<uint16_t>(LD_MAXEXP) | sign_bit; } void __cdecl assemble_floating_point_qnan(bool const is_negative, _LDBL12& result) throw() { uint16_t const sign_bit{static_cast<uint16_t>(is_negative ? MSB_USHORT : 0x0000)}; *U_XT_12 (&result) = 0xffff; *UL_MANLO_12(&result) = 0xffffffff; *UL_MANHI_12(&result) = 0xffffffff; *U_EXP_12 (&result) = static_cast<uint16_t>(LD_MAXEXP) | sign_bit; } void __cdecl assemble_floating_point_snan(bool const is_negative, _LDBL12& result) throw() { uint16_t const sign_bit{static_cast<uint16_t>(is_negative ? MSB_USHORT : 0x0000)}; *U_XT_12 (&result) = 0xffff; *UL_MANLO_12(&result) = 0xffffffff; *UL_MANHI_12(&result) = 0xbfffffff; *U_EXP_12 (&result) = static_cast<uint16_t>(LD_MAXEXP) | sign_bit; } void __cdecl assemble_floating_point_ind(_LDBL12& result) throw() { uint16_t const sign_bit{static_cast<uint16_t>(MSB_USHORT)}; *U_XT_12 (&result) = 0x0000; *UL_MANLO_12(&result) = 0x00000000; *UL_MANHI_12(&result) = 0xc0000000; *U_EXP_12 (&result) = static_cast<uint16_t>(LD_MAXEXP) | sign_bit; } static SLD_STATUS __cdecl common_convert_to_ldbl12( floating_point_string const& immutable_data, bool const is_hexadecimal, _LDBL12 & result ) throw() { floating_point_string data = immutable_data; // Cap the number of digits to LD_MAX_MAN_LEN, and round the last digit: if (data._mantissa_count > LD_MAX_MAN_LEN) { if (data._mantissa[LD_MAX_MAN_LEN] >= (is_hexadecimal ? 8 : 5)) { ++data._mantissa[LD_MAX_MAN_LEN - 1]; } data._mantissa_count = LD_MAX_MAN_LEN; } // The input exponent is an adjustment from the left (so 12.3456 is represented // as a mantiss a of 123456 with an exponent of 2), but the legacy functions // used here expect an adjustment from the right (so 12.3456 is represented // with an exponent of -4). int const exponent_adjustment_multiplier = is_hexadecimal ? 4 : 1; data._exponent -= data._mantissa_count * exponent_adjustment_multiplier; if (is_hexadecimal) { convert_mantissa_to_ld12<16>(data._mantissa, data._mantissa_count, &result); multiply_two_pow_ld12(&result, data._exponent); } else { convert_mantissa_to_ld12<10>(data._mantissa, data._mantissa_count, &result); multiply_ten_pow_ld12(&result, data._exponent); } if (data._is_negative) { *U_EXP_12(&result) |= 0x8000; } // If the combination of the mantissa and the exponent produced an infinity, // we've overflowed the range of the _LDBL12. if ((*U_EXP_12(&result) & LD_MAXEXP) == LD_MAXEXP) { return SLD_OVERFLOW; } return SLD_OK; } SLD_STATUS __cdecl convert_decimal_string_to_floating_type( floating_point_string const& data, _LDBL12 & result ) throw() { return common_convert_to_ldbl12(data, false, result); } SLD_STATUS __cdecl convert_hexadecimal_string_to_floating_type( floating_point_string const& data, _LDBL12 & result ) throw() { return common_convert_to_ldbl12(data, true, result); } } // namespace __crt_strtox using namespace __crt_strtox; static int __cdecl transform_into_return_value(SLD_STATUS const status) throw() { switch (status) { case SLD_OVERFLOW: return _OVERFLOW; case SLD_UNDERFLOW: return _UNDERFLOW; default: return 0; } } // The internal mantissa length in ints #define INTRNMAN_LEN 3 // Internal mantissaa representation for string conversion routines typedef uint32_t* mantissa_t; // Tests whether a mantissa ends in nbit zeroes. Returns true if all mantissa // bits after (and including) nbit are zero; returns false otherwise. static __forceinline bool __cdecl mantissa_has_zero_tail(mantissa_t const mantissa, int const nbit) throw() { int nl = nbit / 32; int const nb = 31 - nbit % 32; // // |<---- tail to be checked ---> // // -- ------------------------ ---- // |... | | ... | // -- ------------------------ ---- // ^ ^ ^ // | | |<----nb-----> // man nl nbit // uint32_t const bitmask = ~(UINT32_MAX << nb); if (mantissa[nl] & bitmask) return false; ++nl; for (; nl < INTRNMAN_LEN; ++nl) { if (mantissa[nl]) return false; } return true; } // Increments a mantissa. The nbit argument specifies the end of the part to // be incremented. Returns true if overflow occurs; false otherwise. static __forceinline bool __cdecl increment_mantissa(mantissa_t const mantissa, int const nbit) throw() { int nl = nbit / 32; int const nb = 31 - nbit % 32; // // |<--- part to be incremented -->| // // --------------------------------- // |... | | ... | // --------------------------------- // ^ ^ ^ // | | |<--nb--> // man nl nbit // uint32_t const one = static_cast<uint32_t>(1) << nb; bool carry = add_uint32_carry(mantissa[nl], one, &mantissa[nl]); --nl; for (; nl >= 0 && carry; --nl) { carry = add_uint32_carry(mantissa[nl], 1, &mantissa[nl]); } return carry; } // Rounds a mantissa to the given precision. Returns true if overflow occurs; // returns false otherwise. static __forceinline bool __cdecl round_mantissa(mantissa_t const mantissa, int const precision) throw() { // The order of the n'th bit is n-1, since the first bit is bit 0 // therefore decrement precision to get the order of the last bit // to be kept int const nbit = precision - 1; int const rndbit = nbit + 1; int const nl = rndbit / 32; int const nb = 31 - rndbit % 32; // Get value of round bit uint32_t const rndmask = static_cast<uint32_t>(1) << nb; bool retval = false; if ((mantissa[nl] & rndmask) && !mantissa_has_zero_tail(mantissa, rndbit)) { // round up retval = increment_mantissa(mantissa, nbit); } // Fill rest of mantissa with zeroes mantissa[nl] &= UINT32_MAX << nb; for (int i = nl + 1; i < INTRNMAN_LEN; ++i) { mantissa[i] = 0; } return retval; } static void __cdecl convert_ld12_to_ldouble( _LDBL12 const* const pld12, _LDOUBLE* const result ) throw() { // This implementation is based on the fact that the _LDBL12 format is // identical to the long double and has 2 extra bytes of mantissa uint16_t exponent = *U_EXP_12(pld12) & static_cast<uint16_t>(0x7fff); uint16_t const sign = *U_EXP_12(pld12) & static_cast<uint16_t>(0x8000); uint32_t mantissa[] = { *UL_MANHI_12(pld12), *UL_MANLO_12(pld12), uint32_t ((*U_XT_12(pld12)) << 16) }; if (round_mantissa(mantissa, 64)) { // The MSB of the mantissa is explicit and should be 1 // since we had a carry, the mantissa is now 0. mantissa[0] = MSB_ULONG; ++exponent; } *UL_MANHI_LD(result) = mantissa[0]; *UL_MANLO_LD(result) = mantissa[1]; *U_EXP_LD (result) = sign | exponent; } extern "C" int __cdecl _atoldbl_l(_LDOUBLE* const result, char* const string, _locale_t const locale) { _LocaleUpdate locale_update(locale); _LDBL12 intermediate_result{}; SLD_STATUS const conversion_status = parse_floating_point( locale_update.GetLocaleT(), make_c_string_character_source(string, nullptr), &intermediate_result); convert_ld12_to_ldouble(&intermediate_result, result); return transform_into_return_value(conversion_status); } extern "C" int __cdecl _atoldbl(_LDOUBLE* const result, char* const string) { return _atoldbl_l(result, string, nullptr); }
660e652bd2de7f095fc74912739bd387a194c0ca
fe2836176ca940977734312801f647c12e32a297
/etutor/Solved/AR26/main.cpp
6275caeabc6e0be753b48d1f34605e4fc4b869ba
[]
no_license
henrybear327/Sandbox
ef26d96bc5cbcdc1ce04bf507e19212ca3ceb064
d77627dd713035ab89c755a515da95ecb1b1121b
refs/heads/master
2022-12-25T16:11:03.363028
2022-12-10T21:08:41
2022-12-10T21:08:41
53,817,848
2
0
null
null
null
null
UTF-8
C++
false
false
512
cpp
main.cpp
#include <cstdio> #include <cstring> int main() { int n, m; scanf("%d %d", &n, &m); char inp[100000]; fgets(inp, 100000, stdin); int b = 0, g = 0; for (int i = 0; i < n; i++) { fgets(inp, 100000, stdin); int len = strlen(inp) - 1; for (int j = 0; j < len; j++) { if (inp[j] - '0' == 0) g++; else if (inp[j] - '0' == 1) b++; } } printf("%d\n", g > b ? 0 : g == b ? 2 : 1); return 0; }
d60ea457e36fecde51f7b0597dc7cc0b59fbf231
7c3735966c62a401f3450f5b584118004be84e06
/src/Lab/PilusSexuel.cpp
809218851693cb1900f35f18df8322220e791c46
[]
no_license
YannDubs/modellingBacterias
d10fdc35ccb3410347a1a4507dc7d8fcd61a6726
7d44c4090bdfdab2a889f4ad8c8abd7d0542087c
refs/heads/master
2020-06-13T04:29:38.699017
2017-01-04T22:17:59
2017-01-04T22:17:59
75,448,932
0
0
null
null
null
null
UTF-8
C++
false
false
410
cpp
PilusSexuel.cpp
#include "PilusSexuel.hpp" #include "Utility/Utility.hpp" //CONSCTRUCTEUR PilusSexuel::PilusSexuel (Vec2d const& position, double const& radius) : CircularBody (position, radius) {} //METHODES VIRTUELLE OVERRIDE void PilusSexuel ::drawOn (sf::RenderTarget& target, MutableColor const& color) const { auto const circle = buildCircle (m_position, m_radius, color.getColor()); target.draw (circle); }
809623db3d49ca2f86dc6f5a7014af3d2d4b0de5
a39fa273e79917c9172d970d66d09c97804bccdd
/C++ Builder example/CBuilder6(BCB6)彻底研究/Charp4/Unit4_3.h
fb40b5999a681e1481984c92d90c41dd739de98c
[]
no_license
jash-git/Jash-good-idea-20210419-001
617f54765b265c75671a5362b4d2cf51f8b36bbf
d93be27fb6a61946ea302a149c50745a0879c415
refs/heads/master
2023-05-03T07:27:00.701673
2021-05-18T01:34:00
2021-05-18T01:34:00
359,301,299
14
4
null
null
null
null
UTF-8
C++
false
false
1,464
h
Unit4_3.h
//--------------------------------------------------------------------------- #ifndef Unit4_3H #define Unit4_3H //--------------------------------------------------------------------------- #include <Classes.hpp> #include <Controls.hpp> #include <StdCtrls.hpp> #include <Forms.hpp> #include <ComCtrls.hpp> #include <ImgList.hpp> #include <ToolWin.hpp> //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TLabel *Label1; TCoolBar *CoolBar1; TToolBar *ToolBar1; TToolButton *ToolButton1; TToolButton *ToolButton2; TToolButton *ToolButton3; TToolButton *ToolButton6; TToolButton *ToolButton7; TToolButton *ToolButton8; TToolBar *ToolBar2; TToolButton *ToolButton4; TToolButton *ToolButton5; TToolButton *ToolButton9; TToolButton *ToolButton10; TImageList *ImageList1; TImageList *ImageList2; void __fastcall CoolBar1DockOver(TObject *Sender, TDragDockObject *Source, int X, int Y, TDragState State, bool &Accept); private: // User declarations public: // User declarations __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif
eb971aa897429b8c447626466053b33a64ae7fa0
b14d5833a79518a40d302e5eb40ed5da193cf1b2
/cpp/extern/xercesc++/2.6.0/src/xercesc/util/Compilers/GCCDefs.cpp
58d65de1e52b28cfca2f0452efea5fdcf64ff919
[ "Apache-2.0" ]
permissive
andyburke/bitflood
dcb3fb62dad7fa5e20cf9f1d58aaa94be30e82bf
fca6c0b635d07da4e6c7fbfa032921c827a981d6
refs/heads/master
2016-09-10T02:14:35.564530
2011-11-17T09:51:49
2011-11-17T09:51:49
2,794,411
1
0
null
null
null
null
UTF-8
C++
false
false
2,242
cpp
GCCDefs.cpp
/* * Copyright 1999-2000,2004 The Apache Software Foundation. * * 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. */ /* * $Log: GCCDefs.cpp,v $ * Revision 1.4 2004/09/08 13:56:32 peiyongz * Apache License Version 2.0 * * Revision 1.3 2004/03/15 17:06:06 amassari * - Added support for MinGW (bug#23176) * * Revision 1.2 2002/11/18 20:38:11 tng * [Bug 14612] GCCDefs clashes with cygwin's string.h for stricmp and strnicmp. * * Revision 1.1.1.1 2002/02/01 22:22:18 peiyongz * sane_include * * Revision 1.4 2000/07/29 05:41:00 jberry * Fixups for Mac OS * * Revision 1.3 2000/03/02 19:55:08 roddey * This checkin includes many changes done while waiting for the * 1.1.0 code to be finished. I can't list them all here, but a list is * available elsewhere. * * Revision 1.2 2000/02/06 07:48:17 rahulj * Year 2K copyright swat. * * Revision 1.1.1.1 1999/11/09 01:07:32 twl * Initial checkin * * Revision 1.2 1999/11/08 20:45:23 rahul * Swat for adding in Product name and CVS comment log variable. * */ // --------------------------------------------------------------------------- // Includes // --------------------------------------------------------------------------- #include <xercesc/util/Compilers/GCCDefs.hpp> #include <strings.h> #include <string.h> #if !defined(__CYGWIN__) && !defined(__MINGW32__) int stricmp(const char* const str1, const char* const str2) { return strcasecmp(str1, str2); } int strnicmp(const char* const str1, const char* const str2, const unsigned int count) { if (count == 0) return 0; return strncasecmp( str1, str2, (size_t)count); } #endif // ! __CYGWIN__
dc5ce4ed46a8ef5490aeb570dd5183ec07a2f553
7d5538864d38167b2cb66764b4ea5c85bee0c918
/atcoder/abc/163/a.cpp
afac63cf59b518995e883e10ab8c61788665e753
[]
no_license
iPolyomino/contest
ec63acef925bf4a9b562aab46fc247d0fe7a71b9
96bea95174cc320f0620da322a25668ac5c500cd
refs/heads/master
2023-07-09T01:19:33.026494
2023-06-24T01:06:13
2023-06-24T01:06:13
163,596,349
0
0
null
null
null
null
UTF-8
C++
false
false
133
cpp
a.cpp
#include <bits/stdc++.h> using namespace std; int main() { double R; cin >> R; printf("%.10f\n", 2.0 * M_PI * R); return 0; }
a0c9347163f1d62010d78038c56e5f2e7ecc4497
23147784ffa77ebe32d3ae72fc4e7e6d5ba3eac9
/Cannonball_b_3_4/cannonball.cpp
0193fc813d4bf6214e90be3cef428dad6f0ca0ad
[]
no_license
vincemansel/Cpp_Daily_Code
27bccaf9ca47eb47fb4890f5fd3d010ca0e3d4e8
a93a8f3273988edf6860b750d28f1f28685f60c4
refs/heads/master
2021-01-25T08:42:58.871871
2011-10-27T05:16:27
2011-10-27T05:16:27
2,457,215
0
0
null
null
null
null
UTF-8
C++
false
false
639
cpp
cannonball.cpp
// // cannonball.cpp // cannonball // // Created by Vince Mansel on 10/10/11. // Copyright 2011 Wave Ocean Software. All rights reserved. // #include <iostream> #include "simpio.h" int Cannonball(int height); int main() { while (true) { cout << "Enter height: "; int height = GetInteger(); if (height == 0) break; int balls = Cannonball(height); cout << balls << " cannonballs for height " << height << "." << endl; } return 0; } int Cannonball(int height) { if (height == 1) { return 1; } return height * height + Cannonball(height - 1); }
c981fb7b2fd650fde81fcec12d981450b09d0a73
acc79864d3ee7ac32d332b116ac2f8b705fb484b
/sources/plugins/scs/scscodecompleter.h
e7ca49d34a50a953184f077ae2dfbafc97c2ab93
[ "MIT" ]
permissive
deniskoronchik/kbe
9f1cc708ae652ca8c920ae01b33f277d464a0500
b9840b35377107eed837e38e78ee6408dd115040
refs/heads/master
2021-01-19T05:50:32.797057
2018-11-11T14:08:07
2018-11-11T14:08:07
2,690,935
8
40
null
null
null
null
UTF-8
C++
false
false
509
h
scscodecompleter.h
/* * This source file is part of an OSTIS project. For the latest info, see http://ostis.net * Distributed under the MIT License * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT) */ #pragma once #include <QObject> #include <QCompleter> class SCsCodeCompleter : public QCompleter { Q_OBJECT public: explicit SCsCodeCompleter(QObject *parent = 0); virtual ~SCsCodeCompleter(); static const int MinCompletetionLength = 3; signals: public slots: };
96f95f2184ff2b4425fa85013e039262c02d1779
6a398157faf845f48f2df2c7d43d5052a571db26
/src/RandomSample.cpp
4f3aad94798f80a46e4eb0d843f22636bf5512f2
[]
no_license
wentaoy2/SimpleRayTracer
9acf104d9dd5fcc41e9917a63f1bf732f0ce9589
303aa48f94b598885a044881801a4f2c74128118
refs/heads/master
2020-04-02T17:45:50.023750
2019-09-09T22:22:20
2019-09-09T22:22:20
154,670,954
0
0
null
null
null
null
UTF-8
C++
false
false
5,450
cpp
RandomSample.cpp
#include <string> #include "RandomSample.h" #include <fstream> #include <iostream> #include <random> #include <stdlib.h> #include <Eigen/Dense> #define _USE_MATH_DEFINES #include <math.h> using namespace std; using namespace Eigen; float randomFloat(float a, float b) { float random = ((float)rand()) / (float)RAND_MAX; float diff = b - a; float r = random * diff; return a + r; } int randInt(int Min, int Max) { return rand() % (Max + 1 - Min) + Min; } Sampler::Sampler(int ns, int nset) { num_samples = ns; num_sets = nset; count = 0; jump = 0; samples.reserve(num_samples * num_sets); setup_shuffled_indices(); generateSamples(); } Sampler::Sampler(const int ns) { num_samples = ns; num_sets = 20; count = 0; jump = 0; samples.reserve(num_samples * num_sets); setup_shuffled_indices(); generateSamples(); } Sampler::Sampler() { num_samples = 4; num_sets = 20; count = 0; jump = 0; samples.reserve(num_samples * num_sets); setup_shuffled_indices(); generateSamples(); } void Sampler::setup_shuffled_indices() { shuffledIndices.reserve(num_samples * num_sets); vector<int> indices; for (int j = 0; j < num_samples; j++) indices.push_back(j); for (int p = 0; p < num_sets; p++) { random_shuffle(indices.begin(), indices.end()); for (int j = 0; j < num_samples; j++) shuffledIndices.push_back(indices[j]); } } void Sampler::generateSamples() { int n = (int)sqrt((float)num_samples); float width = 1.0 / ((float)num_samples); //Vector2d temp = Vector2d(0.0,0.0); for (int i = 0; i < num_samples * num_sets; i++) { Vector2d temp = Vector2d(0.0, 0.0); samples.push_back(temp); } for (int set = 0; set < num_sets; set++) { for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { samples[i * n + j + set * num_samples][0] = (i * n + j) * width + randomFloat(0.0, width); samples[i * n + j + set * num_samples][1] = (j * n + i) * width + randomFloat(0.0, width); } } } for (int set = 0; set < num_sets; set++) { for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { int k = randInt(j, n - 1); float t = samples[i * n + j + set * num_samples][0]; samples[i * n + j + set * num_samples][0] = samples[i * n + k + set * num_samples][0]; samples[i * n + k + set * num_samples][0] = t; } } } for (int set = 0; set < num_sets; set++) { for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { int k = randInt(j, n - 1); float t = samples[i * n + j + set * num_samples][1]; samples[i * n + j + set * num_samples][1] = samples[i * n + k + set * num_samples][1]; samples[i * n + k + set * num_samples][1] = t; } } } } void Sampler::generateDisk(void) { int size = samples.size(); float r, phi; Vector2d sp; diskSamples.reserve(size); for (int j = 0; j < size; j++) { // map sample point to [-1, 1] X [-1,1] sp[0] = 2.0 * samples[j][0] - 1.0; sp[1] = 2.0 * samples[j][1] - 1.0; if (sp[0] > -sp[1]) { // sectors 1 and 2 if (sp[0] > sp[1]) { // sector 1 r = sp[0]; phi = sp[1] / sp[0]; } else { // sector 2 r = sp[1]; phi = 2 - sp[0] / sp[1]; } } else { // sectors 3 and 4 if (sp[0] < sp[1]) { // sector 3 r = -sp[0]; phi = 4 + sp[1] / sp[0]; } else { // sector 4 r = -sp[1]; if (sp[1] != 0.0) // avoid division by zero at origin phi = 6 - sp[0] / sp[1]; else phi = 0.0; } } phi *= M_PI / 4.0; diskSamples[j][0] = r * cos(phi); diskSamples[j][1] = r * sin(phi); } //samples.erase(samples.begin(), samples.end()); } void Sampler::generateHemi(float exp) { int size = samples.size(); hemisphereSamples.reserve(num_samples * num_sets); for (int j = 0; j < size; j++) { float cos_phi = cos(2.0 * M_PI * samples[j][0]); float sin_phi = sin(2.0 * M_PI * samples[j][0]); float cos_theta = pow((1.0 - samples[j][1]), 1.0 / (exp + 1.0)); float sin_theta = sqrt(1.0 - cos_theta * cos_theta); float pu = sin_theta * cos_phi; float pv = sin_theta * sin_phi; float pw = cos_theta; hemisphereSamples.push_back(Vector3d(pu, pv, pw)); } } void Sampler::generateSphere() { float r1, r2; float x, y, z; float r, phi; sphereSamples.reserve(num_samples * num_sets); for (int j = 0; j < num_samples * num_sets; j++) { r1 = samples[j][0]; r2 = samples[j][1]; z = 1.0 - 2.0 * r1; r = sqrt(1.0 - z * z); phi = 2 * M_PI * r2; x = r * cos(phi); y = r * sin(phi); sphereSamples.push_back(Vector3d(x, y, z)); } } Vector2d Sampler::sampleSquare() { if (count % num_samples == 0) jump = (rand() % num_sets) * num_samples; return (samples[jump + shuffledIndices[jump + count++ % num_samples]]); } Vector2d Sampler::sampleDisk() { if (count % num_samples == 0) jump = (rand() % num_sets) * num_samples; return (diskSamples[jump + shuffledIndices[jump + count++ % num_samples]]); } Vector3d Sampler::sampleHemi() { if (count % num_samples == 0) jump = (rand() % num_sets) * num_samples; return (hemisphereSamples[jump + shuffledIndices[jump + count++ % num_samples]]); } Vector3d Sampler::sampleSphere() { if (count % num_samples == 0) jump = (rand() % num_sets) * num_samples; return (sphereSamples[jump + shuffledIndices[jump + count++ % num_samples]]); }